Lines Matching defs:OpIndex

21 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, int OpIndex,
26 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
33 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, int OpIndex,
37 expandCheckImmOperandSimple(OS, OpIndex, FunctionMapper);
41 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
49 int OpIndex,
55 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
61 void PredicateExpander::expandCheckRegOperand(raw_ostream &OS, int OpIndex,
68 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
81 int OpIndex,
87 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
94 int OpIndex) {
95 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
191 void PredicateExpander::expandCheckIsRegOperand(raw_ostream &OS, int OpIndex) {
193 << "getOperand(" << OpIndex << ").isReg() ";
196 void PredicateExpander::expandCheckIsImmOperand(raw_ostream &OS, int OpIndex) {
198 << "getOperand(" << OpIndex << ").isImm() ";
309 return expandCheckIsRegOperand(OS, Rec->getValueAsInt("OpIndex"));
312 return expandCheckIsImmOperand(OS, Rec->getValueAsInt("OpIndex"));
315 return expandCheckRegOperand(OS, Rec->getValueAsInt("OpIndex"),
320 return expandCheckRegOperandSimple(OS, Rec->getValueAsInt("OpIndex"),
324 return expandCheckInvalidRegOperand(OS, Rec->getValueAsInt("OpIndex"));
327 return expandCheckImmOperand(OS, Rec->getValueAsInt("OpIndex"),
332 return expandCheckImmOperand(OS, Rec->getValueAsInt("OpIndex"),
337 return expandCheckImmOperandSimple(OS, Rec->getValueAsInt("OpIndex"),