Lines Matching refs:Repr
90 char Repr; member in __anonda4984e70311::OperandsSignature::OpKind
93 OpKind() : Repr(OK_Invalid) {} in OpKind()
95 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <()
96 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==()
98 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg()
99 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP()
103 OpKind K; K.Repr = OK_Imm+V; return K; in getImm()
106 bool isReg() const { return Repr == OK_Reg; } in isReg()
107 bool isFP() const { return Repr == OK_FP; } in isFP()
108 bool isImm() const { return Repr >= OK_Imm; } in isImm()
110 unsigned getImmCode() const { assert(isImm()); return Repr-OK_Imm; } in getImmCode()