Lines Matching refs:Repr
80 char Repr; member in __anon817e0e5b0311::OperandsSignature::OpKind
83 OpKind() : Repr(OK_Invalid) {} in OpKind()
85 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <()
86 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==()
88 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg()
89 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP()
93 OpKind K; K.Repr = OK_Imm+V; return K; in getImm()
96 bool isReg() const { return Repr == OK_Reg; } in isReg()
97 bool isFP() const { return Repr == OK_FP; } in isFP()
98 bool isImm() const { return Repr >= OK_Imm; } in isImm()
100 unsigned getImmCode() const { assert(isImm()); return Repr-OK_Imm; } in getImmCode()