Home
last modified time | relevance | path

Searched refs:ModuleID (Results 1 – 17 of 17) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
HDClangModulesDeclVendor.cpp89 ReportModuleExportsHelper(std::set<ClangModulesDeclVendor::ModuleID> &exports,
108 typedef std::set<ModuleID> ImportedModuleSet;
167 std::set<ClangModulesDeclVendor::ModuleID> &exports, in ReportModuleExportsHelper()
169 if (exports.count(reinterpret_cast<ClangModulesDeclVendor::ModuleID>(module))) in ReportModuleExportsHelper()
172 exports.insert(reinterpret_cast<ClangModulesDeclVendor::ModuleID>(module)); in ReportModuleExportsHelper()
185 std::set<ClangModulesDeclVendor::ModuleID> exports_set; in ReportModuleExports()
189 for (ModuleID module : exports_set) { in ReportModuleExports()
399 typedef std::map<ModuleID, ssize_t> ModulePriorityMap; in ForEachMacro()
404 for (ModuleID module : modules) { in ForEachMacro()
441 module_priorities.find(reinterpret_cast<ModuleID>(module)); in ForEachMacro()
[all …]
HDClangModulesDeclVendor.h37 typedef uintptr_t ModuleID; typedef
38 typedef std::vector<ModuleID> ModuleVector;
HDClangPersistentVariables.h70 void AddHandLoadedClangModule(ClangModulesDeclVendor::ModuleID module) { in AddHandLoadedClangModule()
HDClangExpressionSourceCode.cpp326 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in GetText()
HDClangUserExpression.cpp361 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in SetupDeclVendor()
HDClangExpressionParser.cpp140 for (ClangModulesDeclVendor::ModuleID module : exported_modules) in moduleImport()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDModule.h185 std::string ModuleID; ///< Human readable identifier for the module variable
201 explicit Module(StringRef ModuleID, LLVMContext& C);
211 const std::string &getModuleIdentifier() const { return ModuleID; } in getModuleIdentifier()
228 StringRef getName() const { return ModuleID; } in getName()
274 void setModuleIdentifier(StringRef ID) { ModuleID = ID; } in setModuleIdentifier()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
HDExternalPreprocessorSource.h42 virtual Module *getModule(unsigned ModuleID) = 0;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGCUDANV.cpp691 SmallString<64> ModuleID; in makeModuleCtorFunction() local
692 llvm::raw_svector_ostream OS(ModuleID); in makeModuleCtorFunction()
695 makeConstantString(ModuleID.str(), "", ModuleIDSectionName, 32); in makeModuleCtorFunction()
699 Twine("__fatbinwrap") + ModuleID, FatbinWrapper); in makeModuleCtorFunction()
704 RegisterLinkedBinaryName += ModuleID; in makeModuleCtorFunction()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/
HDlli.cpp250 const std::string &ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() local
252 if (!getCacheFilename(ModuleID, CacheName)) in notifyObjectCompiled()
265 const std::string &ModuleID = M->getModuleIdentifier(); in getObject() local
267 if (!getCacheFilename(ModuleID, CacheName)) in getObject()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
HDLTO.cpp74 StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList, in computeLTOCacheKey() argument
148 auto ModHash = Index.getModuleHash(ModuleID); in computeLTOCacheKey()
1118 auto ModuleID = BM.getModuleIdentifier(); in runThinLTOBackendThread() local
1120 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) || in runThinLTOBackendThread()
1121 all_of(CombinedIndex.getModuleHash(ModuleID), in runThinLTOBackendThread()
1129 computeLTOCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, in runThinLTOBackendThread()
HDThinLTOCodeGenerator.cpp315 StringRef CachePath, const ModuleSummaryIndex &Index, StringRef ModuleID, in ModuleCacheEntry() argument
324 if (!Index.modulePaths().count(ModuleID)) in ModuleCacheEntry()
328 if (all_of(Index.getModuleHash(ModuleID), in ModuleCacheEntry()
342 computeLTOCacheKey(Key, Conf, Index, ModuleID, ImportList, ExportList, in ModuleCacheEntry()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
HDLTO.h71 const ModuleSummaryIndex &Index, StringRef ModuleID,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDModule.cpp74 : Context(C), Materializer(), ModuleID(MID), SourceFileName(MID), DL("") { in Module()
HDCore.cpp230 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName() argument
231 return wrap(new Module(ModuleID, *GlobalContext)); in LLVMModuleCreateWithName()
234 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext() argument
236 return wrap(new Module(ModuleID, *unwrap(C))); in LLVMModuleCreateWithNameInContext()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/
HDCore.h649 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
657 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
HDLLParser.cpp8875 unsigned ModuleID = Lex.getUIntVal(); in ParseModuleReference() local
8876 auto I = ModuleIdMap.find(ModuleID); in ParseModuleReference()