Lines Matching defs:OpKind
90 class OpKind {
95 OpKind() : Repr(OK_Invalid) {}
97 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
98 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
100 static OpKind getReg() {
101 OpKind K;
105 static OpKind getFP() {
106 OpKind K;
110 static OpKind getImm(unsigned V) {
113 OpKind K;
142 SmallVector<OpKind, 3> Operands;
168 Result.Operands.push_back(OpKind::getImm(0));
210 Operands.push_back(OpKind::getImm(0));
215 Operands.push_back(OpKind::getFP());
244 Operands.push_back(OpKind::getImm(PredNo));
255 Operands.push_back(OpKind::getFP());
299 Operands.push_back(OpKind::getReg());