Lines Matching refs:Repr
74 char Repr; member in __anonc8589b870111::OperandsSignature::OpKind
77 OpKind() : Repr(OK_Invalid) {} in OpKind()
79 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <()
80 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==()
82 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg()
83 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP()
87 OpKind K; K.Repr = OK_Imm+V; return K; in getImm()
90 bool isReg() const { return Repr == OK_Reg; } in isReg()
91 bool isFP() const { return Repr == OK_FP; } in isFP()
92 bool isImm() const { return Repr >= OK_Imm; } in isImm()
94 unsigned getImmCode() const { assert(isImm()); return Repr-OK_Imm; } in getImmCode()