Lines Matching defs:OpIndex
22 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, int OpIndex,
27 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
34 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, int OpIndex,
38 expandCheckImmOperandSimple(OS, OpIndex, FunctionMapper);
42 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
50 int OpIndex,
56 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
62 void PredicateExpander::expandCheckImmOperandLT(raw_ostream &OS, int OpIndex,
67 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
74 void PredicateExpander::expandCheckImmOperandGT(raw_ostream &OS, int OpIndex,
79 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
86 void PredicateExpander::expandCheckRegOperand(raw_ostream &OS, int OpIndex,
93 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
105 int OpIndex,
111 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
118 int OpIndex) {
121 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex
210 void PredicateExpander::expandCheckIsRegOperand(raw_ostream &OS, int OpIndex) {
212 << "getOperand(" << OpIndex << ").isReg() ";
215 void PredicateExpander::expandCheckIsVRegOperand(raw_ostream &OS, int OpIndex) {
217 << "getOperand(" << OpIndex << ").getReg().isVirtual()";
220 void PredicateExpander::expandCheckIsImmOperand(raw_ostream &OS, int OpIndex) {
222 << "getOperand(" << OpIndex << ").isImm() ";
335 return expandCheckIsRegOperand(OS, Rec->getValueAsInt("OpIndex"));
338 return expandCheckIsVRegOperand(OS, Rec->getValueAsInt("OpIndex"));
341 return expandCheckIsImmOperand(OS, Rec->getValueAsInt("OpIndex"));
344 return expandCheckRegOperand(OS, Rec->getValueAsInt("OpIndex"),
349 return expandCheckRegOperandSimple(OS, Rec->getValueAsInt("OpIndex"),
353 return expandCheckInvalidRegOperand(OS, Rec->getValueAsInt("OpIndex"));
356 return expandCheckImmOperand(OS, Rec->getValueAsInt("OpIndex"),
361 return expandCheckImmOperand(OS, Rec->getValueAsInt("OpIndex"),
366 return expandCheckImmOperandLT(OS, Rec->getValueAsInt("OpIndex"),
371 return expandCheckImmOperandGT(OS, Rec->getValueAsInt("OpIndex"),
376 return expandCheckImmOperandSimple(OS, Rec->getValueAsInt("OpIndex"),