Lines Matching defs:Repr
92 char Repr;
95 OpKind() : Repr(OK_Invalid) {}
97 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
98 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
102 K.Repr = OK_Reg;
107 K.Repr = OK_FP;
112 "Too many integer predicates for the 'Repr' char");
114 K.Repr = OK_Imm + V;
118 bool isReg() const { return Repr == OK_Reg; }
119 bool isFP() const { return Repr == OK_FP; }
120 bool isImm() const { return Repr >= OK_Imm; }
124 return Repr - OK_Imm;