Home | History | Annotate | Download | only in TableGen

Lines Matching refs:OpKind

78   class OpKind {
83 OpKind() : Repr(OK_Invalid) {}
85 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
86 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
88 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; }
89 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; }
90 static OpKind getImm(unsigned V) {
93 OpKind K; K.Repr = OK_Imm+V; return K;
118 SmallVector<OpKind, 3> Operands;
144 Result.Operands.push_back(OpKind::getImm(0));
184 Operands.push_back(OpKind::getImm(0));
189 Operands.push_back(OpKind::getFP());
224 Operands.push_back(OpKind::getImm(PredNo));
236 Operands.push_back(OpKind::getFP());
280 Operands.push_back(OpKind::getReg());