Lines Matching refs:FPFormat
75 // FPFormat - This specifies what form this FP instruction has. This is used by
77 class FPFormat<bits<3> val> {
80 def NotFP : FPFormat<0>;
81 def ZeroArgFP : FPFormat<1>;
82 def OneArgFP : FPFormat<2>;
83 def OneArgFPRW : FPFormat<3>;
84 def TwoArgFP : FPFormat<4>;
85 def CompareFP : FPFormat<5>;
86 def CondMovFP : FPFormat<6>;
87 def SpecialFP : FPFormat<7>;
260 FPFormat FPForm = NotFP; // What flavor of FP instruction is this?
400 class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern,