Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h178 GlobalListType GlobalList; ///< The Global Variables in the module variable
563 void removeGlobalVariable(GlobalVariable *GV) { GlobalList.remove(GV); } in removeGlobalVariable()
565 void eraseGlobalVariable(GlobalVariable *GV) { GlobalList.erase(GV); } in eraseGlobalVariable()
569 insertGlobalVariable(GlobalList.end(), GV); in insertGlobalVariable()
574 GlobalList.insert(Where, GV); in insertGlobalVariable()
585 const GlobalListType &getGlobalList() const { return GlobalList; } in getGlobalList()
587 GlobalListType &getGlobalList() { return GlobalList; } in getGlobalList()
590 return &Module::GlobalList; in getSublistAccess()
677 global_iterator global_begin() { return GlobalList.begin(); } in global_begin()
678 const_global_iterator global_begin() const { return GlobalList.begin(); } in global_begin()
[all …]
H A DModuleSummaryIndex.h1938 for (const auto &GlobalList : *this) {
1939 auto GUID = GlobalList.first;
1940 for (const auto &Summary : GlobalList.second.SummaryList) {
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DDetailedRecordsBackend.cpp75 const auto GlobalList = Records.getGlobals(); in printVariables() local
76 printSectionHeading("Global Variables", GlobalList.size(), OS); in printVariables()
79 for (const auto &Var : GlobalList) in printVariables()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp86 GlobalList.clear(); in operator =()
87 GlobalList.splice(GlobalList.begin(), Other.GlobalList); in operator =()
115 GlobalList.clear(); in ~Module()
H A DModuleSummaryIndex.cpp163 for (auto &GlobalList : *this) { in collectDefinedFunctionsForModule()
164 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule()
165 for (auto &GlobSummary : GlobalList.second.SummaryList) { in collectDefinedFunctionsForModule()
H A DAsmWriter.cpp1170 for (auto &GlobalList : *TheIndex) in processIndex()
1171 CreateGUIDSlot(GlobalList.first); in processIndex()
3224 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
3225 auto GUID = GlobalList.first; in printModuleSummaryIndex()
3226 for (auto &Summary : GlobalList.second.SummaryList) in printModuleSummaryIndex()
3231 for (auto &GlobalList : *TheIndex) { in printModuleSummaryIndex()
3232 auto GUID = GlobalList.first; in printModuleSummaryIndex()
3233 auto VI = TheIndex->getValueInfo(GlobalList); in printModuleSummaryIndex()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp764 for (const auto &GlobalList : CombinedIndex) { in initImportList() local
766 if (GlobalList.second.SummaryList.empty()) in initImportList()
769 auto GUID = GlobalList.first; in initImportList()
770 for (const auto &Summary : GlobalList.second.SummaryList) { in initImportList()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp1101 for (auto &GlobalList : Index) { in buildModuleSummaryIndex() local
1103 if (GlobalList.second.SummaryList.empty()) in buildModuleSummaryIndex()
1106 assert(GlobalList.second.SummaryList.size() == 1 && in buildModuleSummaryIndex()
1108 auto &Summary = GlobalList.second.SummaryList[0]; in buildModuleSummaryIndex()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1368 for (const auto &GlobalList : Index) { in ComputeCrossModuleImportForModuleFromIndexForTest() local
1370 if (GlobalList.second.SummaryList.empty()) in ComputeCrossModuleImportForModuleFromIndexForTest()
1373 auto GUID = GlobalList.first; in ComputeCrossModuleImportForModuleFromIndexForTest()
1374 assert(GlobalList.second.SummaryList.size() == 1 && in ComputeCrossModuleImportForModuleFromIndexForTest()
1376 auto &Summary = GlobalList.second.SummaryList[0]; in ComputeCrossModuleImportForModuleFromIndexForTest()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPKinds.def125 __OMP_FUNCTION_TYPE(GlobalList, false, Void, VoidPtr, Int32, VoidPtr)