Home | History | Annotate | Download | only in TableGen

Lines Matching refs:SubOpIdx

373     int SubOpIdx;
383 : Token(T), Class(nullptr), SubOpIdx(-1),
558 int findAsmOperand(StringRef N, int SubOpIdx) const {
561 return Op.SrcOpName == N && Op.SubOpIdx == SubOpIdx;
736 int SubOpIdx);
737 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
1140 int SubOpIdx) {
1142 if (SubOpIdx != -1)
1143 Rec = cast<DefInit>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
1144 return getOperandClass(Rec, SubOpIdx);
1148 AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
1646 if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1655 NewAsmOp.SubOpIdx = SI;
1660 Op->SubOpIdx = 0;
1665 Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
1683 Op->SubOpIdx = Idx.second;
1703 Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
1708 Op.SubOpIdx);
1746 if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1753 assert(AsmOperands[SrcOperand+AI].SubOpIdx == (int)AI &&