Lines Matching defs:SubOpIdx
399 int SubOpIdx;
409 : Token(T), Class(nullptr), SubOpIdx(-1),
594 int findAsmOperand(StringRef N, int SubOpIdx) const {
596 return Op.SrcOpName == N && Op.SubOpIdx == SubOpIdx;
782 int SubOpIdx);
783 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
1193 int SubOpIdx) {
1195 if (SubOpIdx != -1)
1196 Rec = cast<DefInit>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
1197 return getOperandClass(Rec, SubOpIdx);
1200 ClassInfo *AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
1726 if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1735 NewAsmOp.SubOpIdx = SI;
1741 Op->SubOpIdx = 0;
1746 Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
1765 Op->SubOpIdx = Idx.second;
1785 Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
1790 getOperandClass(CGA.ResultOperands[i].getRecord(), Op.SubOpIdx);
1834 if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1841 assert(AsmOperands[SrcOperand + AI].SubOpIdx == (int)AI &&