HomeSort by relevance Sort by last modified time
    Searched refs:DefList (Results 1 - 3 of 3) sorted by null

  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 37 std::vector<Record*> DefList =
39 std::sort(DefList.begin(), DefList.end(), LessRecord());
41 for (unsigned i = 0, N = DefList.size(); i < N; i++)
42 ItinClassMap[DefList[i]->getName()] = i;
347 std::vector<Record*> DefList = Inst.TheDef->getValueAsListOfDefs("Defs");
348 if (DefList.empty())
351 OS << "ImplicitList" << EmittedLists[DefList] << ", ";
SubtargetEmitter.cpp 29 std::vector<Record*> DefList = Records.getAllDerivedDefinitions(ClassName);
30 std::sort(DefList.begin(), DefList.end(), LessRecord());
32 unsigned N = DefList.size();
48 Record *Def = DefList[i];
60 Record *Def = DefList[i];
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 291 std::vector<SUnit *> &DefList = Defs[*Alias];
292 for (unsigned i = 0, e = DefList.size(); i != e; ++i) {
293 SUnit *DefSU = DefList[i];
321 std::vector<SUnit *> &DefList = Defs[MO.getReg()];
325 if (!UnitLatencies && DefList.empty()) {
375 DefList.clear();
379 // to the DefList making dependence checking quadratic in the size of
381 // DefList.
383 while (!DefList.empty() && DefList.back()->isCall
    [all...]

Completed in 350 milliseconds