Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DModule.h180 GlobalListType GlobalList; ///< The Global Variables in the module variable
544 const GlobalListType &getGlobalList() const { return GlobalList; } in getGlobalList()
546 GlobalListType &getGlobalList() { return GlobalList; } in getGlobalList()
549 return &Module::GlobalList; in getSublistAccess()
601 global_iterator global_begin() { return GlobalList.begin(); } in global_begin()
602 const_global_iterator global_begin() const { return GlobalList.begin(); } in global_begin()
603 global_iterator global_end () { return GlobalList.end(); } in global_end()
604 const_global_iterator global_end () const { return GlobalList.end(); } in global_end()
605 size_t global_size () const { return GlobalList.size(); } in global_size()
606 bool global_empty() const { return GlobalList.empty(); } in global_empty()
H A DModuleSummaryIndex.h1503 for (auto &GlobalList : *this) {
1504 auto GUID = GlobalList.first;
1505 for (auto &Summary : GlobalList.second.SummaryList) {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DLTOBackend.cpp693 for (const auto &GlobalList : CombinedIndex) { in initImportList() local
695 if (GlobalList.second.SummaryList.empty()) in initImportList()
698 auto GUID = GlobalList.first; in initImportList()
699 for (const auto &Summary : GlobalList.second.SummaryList) { in initImportList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DModuleSummaryIndex.cpp149 for (auto &GlobalList : *this) { in collectDefinedFunctionsForModule()
150 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule()
151 for (auto &GlobSummary : GlobalList.second.SummaryList) { in collectDefinedFunctionsForModule()
H A DAsmWriter.cpp1090 for (auto &GlobalList : *TheIndex) in processIndex()
1091 CreateGUIDSlot(GlobalList.first); in processIndex()
2937 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2938 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2939 for (auto &Summary : GlobalList.second.SummaryList) in printModuleSummaryIndex()
2944 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
2945 auto GUID = GlobalList.first; in printModuleSummaryIndex()
2946 auto VI = TheIndex->getValueInfo(GlobalList); in printModuleSummaryIndex()
H A DModule.cpp84 GlobalList.clear(); in ~Module()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp821 for (auto &GlobalList : Index) { in ComputeCrossModuleImportForModuleFromIndex() local
823 if (GlobalList.second.SummaryList.empty()) in ComputeCrossModuleImportForModuleFromIndex()
826 auto GUID = GlobalList.first; in ComputeCrossModuleImportForModuleFromIndex()
827 assert(GlobalList.second.SummaryList.size() == 1 && in ComputeCrossModuleImportForModuleFromIndex()
829 auto &Summary = GlobalList.second.SummaryList[0]; in ComputeCrossModuleImportForModuleFromIndex()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp794 for (auto &GlobalList : Index) { in buildModuleSummaryIndex() local
796 if (GlobalList.second.SummaryList.empty()) in buildModuleSummaryIndex()
799 assert(GlobalList.second.SummaryList.size() == 1 && in buildModuleSummaryIndex()
801 auto &Summary = GlobalList.second.SummaryList[0]; in buildModuleSummaryIndex()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMPKinds.def112 __OMP_FUNCTION_TYPE(GlobalList, false, Void, VoidPtr, Int32, VoidPtr)