Home | History | Annotate | Download | only in TableGen

Lines Matching refs:OpKind

72   class OpKind {
77 OpKind() : Repr(OK_Invalid) {}
79 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
80 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
82 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; }
83 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; }
84 static OpKind getImm(unsigned V) {
87 OpKind K; K.Repr = OK_Imm+V; return K;
112 SmallVector<OpKind, 3> Operands;
138 Result.Operands.push_back(OpKind::getImm(0));
177 Operands.push_back(OpKind::getImm(0));
182 Operands.push_back(OpKind::getFP());
217 Operands.push_back(OpKind::getImm(PredNo));
229 Operands.push_back(OpKind::getFP());
271 Operands.push_back(OpKind::getReg());