Home
last modified time | relevance | path

Searched refs:GlobalList (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/IR/
DModuleSummaryIndex.cpp72 for (auto &GlobalList : *this) { in collectDefinedFunctionsForModule()
73 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule()
74 for (auto &GlobSummary : GlobalList.second) { in collectDefinedFunctionsForModule()
90 for (auto &GlobalList : *this) { in collectDefinedGVSummariesPerModule()
91 auto GUID = GlobalList.first; in collectDefinedGVSummariesPerModule()
92 for (auto &Summary : GlobalList.second) { in collectDefinedGVSummariesPerModule()
DModule.cpp61 GlobalList.clear(); in ~Module()
/external/swiftshader/third_party/LLVM/include/llvm/
DModule.h163 GlobalListType GlobalList; ///< The Global Variables in the module
424 const GlobalListType &getGlobalList() const { return GlobalList; }
426 GlobalListType &getGlobalList() { return GlobalList; }
428 return &Module::GlobalList;
453 global_iterator global_begin() { return GlobalList.begin(); }
454 const_global_iterator global_begin() const { return GlobalList.begin(); }
455 global_iterator global_end () { return GlobalList.end(); }
456 const_global_iterator global_end () const { return GlobalList.end(); }
457 bool global_empty() const { return GlobalList.empty(); }
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DModule.h169 GlobalListType GlobalList; ///< The Global Variables in the module variable
510 const GlobalListType &getGlobalList() const { return GlobalList; } in getGlobalList()
512 GlobalListType &getGlobalList() { return GlobalList; } in getGlobalList()
515 return &Module::GlobalList; in getSublistAccess()
567 global_iterator global_begin() { return GlobalList.begin(); } in global_begin()
568 const_global_iterator global_begin() const { return GlobalList.begin(); } in global_begin()
569 global_iterator global_end () { return GlobalList.end(); } in global_end()
570 const_global_iterator global_end () const { return GlobalList.end(); } in global_end()
571 bool global_empty() const { return GlobalList.empty(); } in global_empty()
/external/llvm/include/llvm/IR/
DModule.h172 GlobalListType GlobalList; ///< The Global Variables in the module
488 const GlobalListType &getGlobalList() const { return GlobalList; }
490 GlobalListType &getGlobalList() { return GlobalList; }
492 return &Module::GlobalList;
535 global_iterator global_begin() { return GlobalList.begin(); }
536 const_global_iterator global_begin() const { return GlobalList.begin(); }
537 global_iterator global_end () { return GlobalList.end(); }
538 const_global_iterator global_end () const { return GlobalList.end(); }
539 bool global_empty() const { return GlobalList.empty(); }
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DModuleSummaryIndex.cpp37 for (auto &GlobalList : *this) { in collectDefinedFunctionsForModule()
38 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule()
39 for (auto &GlobSummary : GlobalList.second.SummaryList) { in collectDefinedFunctionsForModule()
55 for (auto &GlobalList : *this) { in collectDefinedGVSummariesPerModule()
56 auto GUID = GlobalList.first; in collectDefinedGVSummariesPerModule()
57 for (auto &Summary : GlobalList.second.SummaryList) { in collectDefinedGVSummariesPerModule()
DAsmWriter.cpp1025 for (auto &GlobalList : *TheIndex) in processIndex()
1026 CreateGUIDSlot(GlobalList.first); in processIndex()
2632 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2633 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2634 for (auto &Summary : GlobalList.second.SummaryList) in printModuleSummaryIndex()
2639 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2640 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2641 auto VI = TheIndex->getValueInfo(GlobalList); in printModuleSummaryIndex()
DModule.cpp82 GlobalList.clear(); in ~Module()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DModuleSummaryAnalysis.cpp553 for (auto &GlobalList : Index) { in buildModuleSummaryIndex() local
555 if (GlobalList.second.SummaryList.empty()) in buildModuleSummaryIndex()
558 assert(GlobalList.second.SummaryList.size() == 1 && in buildModuleSummaryIndex()
560 auto &Summary = GlobalList.second.SummaryList[0]; in buildModuleSummaryIndex()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DFunctionImport.cpp583 for (auto &GlobalList : Index) { in ComputeCrossModuleImportForModuleFromIndex() local
585 if (GlobalList.second.SummaryList.empty()) in ComputeCrossModuleImportForModuleFromIndex()
588 auto GUID = GlobalList.first; in ComputeCrossModuleImportForModuleFromIndex()
589 assert(GlobalList.second.SummaryList.size() == 1 && in ComputeCrossModuleImportForModuleFromIndex()
591 auto &Summary = GlobalList.second.SummaryList[0]; in ComputeCrossModuleImportForModuleFromIndex()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DModule.cpp55 GlobalList.clear(); in ~Module()