Home
last modified time | relevance | path

Searched refs:GlobalList (Results 1 – 20 of 20) 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/llvm-project/llvm/include/llvm/IR/
DModule.h180 GlobalListType GlobalList; ///< The Global Variables in the module variable
531 const GlobalListType &getGlobalList() const { return GlobalList; } in getGlobalList()
533 GlobalListType &getGlobalList() { return GlobalList; } in getGlobalList()
536 return &Module::GlobalList; in getSublistAccess()
588 global_iterator global_begin() { return GlobalList.begin(); } in global_begin()
589 const_global_iterator global_begin() const { return GlobalList.begin(); } in global_begin()
590 global_iterator global_end () { return GlobalList.end(); } in global_end()
591 const_global_iterator global_end () const { return GlobalList.end(); } in global_end()
592 size_t global_size () const { return GlobalList.size(); } in global_size()
593 bool global_empty() const { return GlobalList.empty(); } in global_empty()
DModuleSummaryIndex.h1476 for (auto &GlobalList : *this) {
1477 auto GUID = GlobalList.first;
1478 for (auto &Summary : GlobalList.second.SummaryList) {
/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-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) {
/external/llvm-project/llvm/lib/TableGen/
DDetailedRecordsBackend.cpp74 const auto GlobalList = Records.getGlobals(); in printVariables() local
75 printSectionHeading("Global Variables", GlobalList.size(), OS); in printVariables()
78 for (const auto &Var : GlobalList) { in printVariables()
/external/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()
/external/llvm-project/llvm/lib/IR/
DModuleSummaryIndex.cpp127 for (auto &GlobalList : *this) { in collectDefinedFunctionsForModule()
128 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule()
129 for (auto &GlobSummary : GlobalList.second.SummaryList) { in collectDefinedFunctionsForModule()
DAsmWriter.cpp1082 for (auto &GlobalList : *TheIndex) in processIndex()
1083 CreateGUIDSlot(GlobalList.first); in processIndex()
2902 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2903 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2904 for (auto &Summary : GlobalList.second.SummaryList) in printModuleSummaryIndex()
2909 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2910 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2911 auto VI = TheIndex->getValueInfo(GlobalList); in printModuleSummaryIndex()
DModule.cpp84 GlobalList.clear(); in ~Module()
/external/llvm-project/llvm/lib/LTO/
DLTOBackend.cpp693 for (const auto &GlobalList : CombinedIndex) { in loadReferencedModules() local
695 if (GlobalList.second.SummaryList.empty()) in loadReferencedModules()
698 auto GUID = GlobalList.first; in loadReferencedModules()
699 for (const auto &Summary : GlobalList.second.SummaryList) { in loadReferencedModules()
/external/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()
/external/llvm-project/llvm/lib/Transforms/IPO/
DFunctionImport.cpp786 for (auto &GlobalList : Index) { in ComputeCrossModuleImportForModuleFromIndex() local
788 if (GlobalList.second.SummaryList.empty()) in ComputeCrossModuleImportForModuleFromIndex()
791 auto GUID = GlobalList.first; in ComputeCrossModuleImportForModuleFromIndex()
792 assert(GlobalList.second.SummaryList.size() == 1 && in ComputeCrossModuleImportForModuleFromIndex()
794 auto &Summary = GlobalList.second.SummaryList[0]; in ComputeCrossModuleImportForModuleFromIndex()
/external/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()
/external/llvm-project/llvm/lib/Analysis/
DModuleSummaryAnalysis.cpp797 for (auto &GlobalList : Index) { in buildModuleSummaryIndex() local
799 if (GlobalList.second.SummaryList.empty()) in buildModuleSummaryIndex()
802 assert(GlobalList.second.SummaryList.size() == 1 && in buildModuleSummaryIndex()
804 auto &Summary = GlobalList.second.SummaryList[0]; in buildModuleSummaryIndex()
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMPKinds.def226 __OMP_FUNCTION_TYPE(GlobalList, false, Void, VoidPtr, Int32, VoidPtr)