Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp88 ReportModuleExportsHelper(std::set<ClangModulesDeclVendor::ModuleID> &exports,
107 typedef std::set<ModuleID> ImportedModuleSet;
159 std::set<ClangModulesDeclVendor::ModuleID> &exports, in ReportModuleExportsHelper()
161 if (exports.count(reinterpret_cast<ClangModulesDeclVendor::ModuleID>(module))) in ReportModuleExportsHelper()
164 exports.insert(reinterpret_cast<ClangModulesDeclVendor::ModuleID>(module)); in ReportModuleExportsHelper()
177 std::set<ClangModulesDeclVendor::ModuleID> exports_set; in ReportModuleExports()
181 for (ModuleID module : exports_set) { in ReportModuleExports()
368 typedef std::map<ModuleID, ssize_t> ModulePriorityMap; in ForEachMacro()
373 for (ModuleID module : modules) { in ForEachMacro()
410 module_priorities.find(reinterpret_cast<ModuleID>(module)); in ForEachMacro()
[all …]
H A DClangModulesDeclVendor.h34 typedef uintptr_t ModuleID; typedef
35 typedef std::vector<ModuleID> ModuleVector;
H A DClangPersistentVariables.h62 void AddHandLoadedClangModule(ClangModulesDeclVendor::ModuleID module) { in AddHandLoadedClangModule()
H A DClangUserExpression.cpp356 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in SetupDeclVendor()
H A DClangExpressionParser.cpp129 for (ClangModulesDeclVendor::ModuleID module : exported_modules) { in moduleImport()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DModule.h184 std::string ModuleID; ///< Human readable identifier for the module variable
200 explicit Module(StringRef ModuleID, LLVMContext& C);
210 const std::string &getModuleIdentifier() const { return ModuleID; } in getModuleIdentifier()
227 StringRef getName() const { return ModuleID; } in getName()
273 void setModuleIdentifier(StringRef ID) { ModuleID = ID; } in setModuleIdentifier()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCUDANV.cpp521 SmallString<64> ModuleID; in makeModuleCtorFunction() local
522 llvm::raw_svector_ostream OS(ModuleID); in makeModuleCtorFunction()
525 makeConstantString(ModuleID.str(), "", ModuleIDSectionName, 32); in makeModuleCtorFunction()
529 Twine("__fatbinwrap") + ModuleID, FatbinWrapper); in makeModuleCtorFunction()
534 RegisterLinkedBinaryName += ModuleID; in makeModuleCtorFunction()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DExternalPreprocessorSource.h43 virtual Module *getModule(unsigned ModuleID) = 0;
/freebsd-12.1/contrib/llvm/tools/lli/
H A Dlli.cpp249 const std::string &ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() local
251 if (!getCacheFilename(ModuleID, CacheName)) in notifyObjectCompiled()
264 const std::string &ModuleID = M->getModuleIdentifier(); in getObject() local
266 if (!getCacheFilename(ModuleID, CacheName)) in getObject()
/freebsd-12.1/contrib/llvm/lib/LTO/
H A DLTO.cpp71 StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList, in computeLTOCacheKey() argument
145 auto ModHash = Index.getModuleHash(ModuleID); in computeLTOCacheKey()
1000 auto ModuleID = BM.getModuleIdentifier(); in runThinLTOBackendThread() local
1002 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) || in runThinLTOBackendThread()
1003 all_of(CombinedIndex.getModuleHash(ModuleID), in runThinLTOBackendThread()
1011 computeLTOCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, in runThinLTOBackendThread()
H A DThinLTOCodeGenerator.cpp298 StringRef CachePath, const ModuleSummaryIndex &Index, StringRef ModuleID, in ModuleCacheEntry() argument
307 if (!Index.modulePaths().count(ModuleID)) in ModuleCacheEntry()
311 if (all_of(Index.getModuleHash(ModuleID), in ModuleCacheEntry()
325 computeLTOCacheKey(Key, Conf, Index, ModuleID, ImportList, ExportList, in ModuleCacheEntry()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionSourceCode.cpp210 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in GetText()
/freebsd-12.1/contrib/llvm/include/llvm/LTO/
H A DLTO.h68 const ModuleSummaryIndex &Index, StringRef ModuleID,
/freebsd-12.1/contrib/llvm/lib/IR/
H A DModule.cpp75 : Context(C), Materializer(), ModuleID(MID), SourceFileName(MID), DL("") { in Module()
H A DCore.cpp222 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName() argument
223 return wrap(new Module(ModuleID, *GlobalContext)); in LLVMModuleCreateWithName()
226 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext() argument
228 return wrap(new Module(ModuleID, *unwrap(C))); in LLVMModuleCreateWithNameInContext()
/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DCore.h644 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
652 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp8358 unsigned ModuleID = Lex.getUIntVal(); in ParseModuleReference() local
8359 auto I = ModuleIdMap.find(ModuleID); in ParseModuleReference()