Lines Matching refs:OpKind
78 class OpKind { class
83 OpKind() : Repr(OK_Invalid) {} in OpKind() function in __anon817e0e5b0311::OperandsSignature::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()
90 static OpKind getImm(unsigned V) { in getImm()
93 OpKind K; K.Repr = OK_Imm+V; return K; in getImm()
118 SmallVector<OpKind, 3> Operands;
144 Result.Operands.push_back(OpKind::getImm(0)); in getWithoutImmCodes()
184 Operands.push_back(OpKind::getImm(0)); in initialize()
189 Operands.push_back(OpKind::getFP()); in initialize()
224 Operands.push_back(OpKind::getImm(PredNo)); in initialize()
236 Operands.push_back(OpKind::getFP()); in initialize()
280 Operands.push_back(OpKind::getReg()); in initialize()