Home | History | Annotate | Download | only in TableGen

Lines Matching full:opkind

76   class OpKind {
81 OpKind() : Repr(OK_Invalid) {}
83 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
84 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
86 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; }
87 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; }
88 static OpKind getImm(unsigned V) {
91 OpKind K; K.Repr = OK_Imm+V; return K;
116 SmallVector<OpKind, 3> Operands;
142 Result.Operands.push_back(OpKind::getImm(0));
182 Operands.push_back(OpKind::getImm(0));
187 Operands.push_back(OpKind::getFP());
222 Operands.push_back(OpKind::getImm(PredNo));
234 Operands.push_back(OpKind::getFP());
278 Operands.push_back(OpKind::getReg());