Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModule.h172 GlobalListType GlobalList; ///< The Global Variables in the module variable
525 const GlobalListType &getGlobalList() const { return GlobalList; } in getGlobalList()
527 GlobalListType &getGlobalList() { return GlobalList; } in getGlobalList()
530 return &Module::GlobalList; in getSublistAccess()
582 global_iterator global_begin() { return GlobalList.begin(); } in global_begin()
583 const_global_iterator global_begin() const { return GlobalList.begin(); } in global_begin()
584 global_iterator global_end () { return GlobalList.end(); } in global_end()
585 const_global_iterator global_end () const { return GlobalList.end(); } in global_end()
586 bool global_empty() const { return GlobalList.empty(); } in global_empty()
DModuleSummaryIndex.h1366 for (auto &GlobalList : *this) {
1367 auto GUID = GlobalList.first;
1368 for (auto &Summary : GlobalList.second.SummaryList) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DModuleSummaryIndex.cpp75 for (auto &GlobalList : *this) { in collectDefinedFunctionsForModule()
76 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule()
77 for (auto &GlobSummary : GlobalList.second.SummaryList) { in collectDefinedFunctionsForModule()
DAsmWriter.cpp1038 for (auto &GlobalList : *TheIndex) in processIndex()
1039 CreateGUIDSlot(GlobalList.first); in processIndex()
2712 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2713 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2714 for (auto &Summary : GlobalList.second.SummaryList) in printModuleSummaryIndex()
2719 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2720 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2721 auto VI = TheIndex->getValueInfo(GlobalList); in printModuleSummaryIndex()
DModule.cpp83 GlobalList.clear(); in ~Module()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DModuleSummaryAnalysis.cpp785 for (auto &GlobalList : Index) { in buildModuleSummaryIndex() local
787 if (GlobalList.second.SummaryList.empty()) in buildModuleSummaryIndex()
790 assert(GlobalList.second.SummaryList.size() == 1 && in buildModuleSummaryIndex()
792 auto &Summary = GlobalList.second.SummaryList[0]; in buildModuleSummaryIndex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DFunctionImport.cpp761 for (auto &GlobalList : Index) { in ComputeCrossModuleImportForModuleFromIndex() local
763 if (GlobalList.second.SummaryList.empty()) in ComputeCrossModuleImportForModuleFromIndex()
766 auto GUID = GlobalList.first; in ComputeCrossModuleImportForModuleFromIndex()
767 assert(GlobalList.second.SummaryList.size() == 1 && in ComputeCrossModuleImportForModuleFromIndex()
769 auto &Summary = GlobalList.second.SummaryList[0]; in ComputeCrossModuleImportForModuleFromIndex()