Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Uses

75 static void PrintDefList(const std::vector<Record*> &Uses,
78 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
79 OS << getQualifiedName(Uses[i]) << ", ";
360 // Emit all of the instruction's implicit uses and defs.
363 std::vector<Record*> Uses = Inst->getValueAsListOfDefs("Uses");
364 if (!Uses.empty()) {
365 unsigned &IL = EmittedLists[Uses];
366 if (!IL) PrintDefList(Uses, IL = ++ListNumber, OS);
523 // Emit the implicit uses and defs lists...
524 std::vector<Record*> UseList = Inst.TheDef->getValueAsListOfDefs("Uses");