Home | History | Annotate | Download | only in TableGen

Lines Matching refs:OpsList

2491     DagInit *OpsList = Frag->getValueAsDag("Operands");
2492 DefInit *OpsOp = dyn_cast<DefInit>(OpsList->getOperator());
2503 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
2504 if (!isa<DefInit>(OpsList->getArg(j)) ||
2505 cast<DefInit>(OpsList->getArg(j))->getDef()->getName() != "node")
2507 if (OpsList->getArgName(j).empty())
2509 if (!OperandsSet.count(OpsList->getArgName(j)))
2510 P->error("'" + OpsList->getArgName(j) +
2512 OperandsSet.erase(OpsList->getArgName(j));
2513 Args.push_back(OpsList->getArgName(j));