Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Uses

22 static void PrintDefList(const std::vector<Record*> &Uses,
25 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
26 OS << getQualifiedName(Uses[i]) << ", ";
183 // Emit all of the instruction's implicit uses and defs.
187 std::vector<Record*> Uses = Inst->getValueAsListOfDefs("Uses");
188 if (!Uses.empty()) {
189 unsigned &IL = EmittedLists[Uses];
190 if (!IL) PrintDefList(Uses, IL = ++ListNumber, OS);
313 // Emit the implicit uses and defs lists...
314 std::vector<Record*> UseList = Inst.TheDef->getValueAsListOfDefs("Uses");