Searched refs:UseList (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/ |
D | Value.h | 77 Use *UseList; variable 143 bool use_empty() const { return UseList == 0; } in use_empty() 144 use_iterator use_begin() { return use_iterator(UseList); } in use_begin() 145 const_use_iterator use_begin() const { return const_use_iterator(UseList); } in use_begin() 179 void addUse(Use &U) { U.addToList(&UseList); } in addUse()
|
/external/llvm/utils/TableGen/ |
D | InstrInfoEmitter.cpp | 341 std::vector<Record*> UseList = Inst.TheDef->getValueAsListOfDefs("Uses"); in emitRecord() local 342 if (UseList.empty()) in emitRecord() 345 OS << "ImplicitList" << EmittedLists[UseList] << ", "; in emitRecord()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAGNodes.h | 335 SDUse *UseList; 391 bool use_empty() const { return UseList == NULL; } 478 return use_iterator(UseList); 669 void addUse(SDUse &U) { U.addToList(&UseList); } 682 ValueList(VTs.VTs), UseList(NULL), 697 UseList(NULL), NumOperands(0), NumValues(VTs.NumVTs),
|
/external/llvm/lib/VMCore/ |
D | Value.cpp | 46 UseList(0), Name(0) { in Value() 308 Use &U = *UseList; in replaceAllUsesWith()
|
/external/llvm/lib/CodeGen/ |
D | ScheduleDAGInstrs.cpp | 238 std::vector<SUnit*> &UseList = Uses[*Alias]; in addPhysRegDataDeps() local 239 for (unsigned i = 0, e = UseList.size(); i != e; ++i) { in addPhysRegDataDeps() 240 SUnit *UseSU = UseList[i]; in addPhysRegDataDeps()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 1628 SmallVector<const User*, 8> UseList; in WriteUseList() local 1629 UseList.reserve(UseListSize); in WriteUseList() 1633 UseList.push_back(U); in WriteUseList() 1637 std::sort(UseList.begin(), UseList.end(), bitcodereader_order); in WriteUseList()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 895 EntryNode.UseList = 0; in clear()
|