| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| HD | ClangModulesDeclVendor.cpp | 89 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 …]
|
| HD | ClangModulesDeclVendor.h | 37 typedef uintptr_t ModuleID; typedef 38 typedef std::vector<ModuleID> ModuleVector;
|
| HD | ClangPersistentVariables.h | 70 void AddHandLoadedClangModule(ClangModulesDeclVendor::ModuleID module) { in AddHandLoadedClangModule()
|
| HD | ClangExpressionSourceCode.cpp | 326 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in GetText()
|
| HD | ClangUserExpression.cpp | 361 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in SetupDeclVendor()
|
| HD | ClangExpressionParser.cpp | 140 for (ClangModulesDeclVendor::ModuleID module : exported_modules) in moduleImport()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | Module.h | 185 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/ |
| HD | ExternalPreprocessorSource.h | 42 virtual Module *getModule(unsigned ModuleID) = 0;
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | CGCUDANV.cpp | 691 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/ |
| HD | lli.cpp | 250 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/ |
| HD | LTO.cpp | 74 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()
|
| HD | ThinLTOCodeGenerator.cpp | 315 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/ |
| HD | LTO.h | 71 const ModuleSummaryIndex &Index, StringRef ModuleID,
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ |
| HD | Module.cpp | 74 : Context(C), Materializer(), ModuleID(MID), SourceFileName(MID), DL("") { in Module()
|
| HD | Core.cpp | 230 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/ |
| HD | Core.h | 649 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID); 657 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/ |
| HD | LLParser.cpp | 8875 unsigned ModuleID = Lex.getUIntVal(); in ParseModuleReference() local 8876 auto I = ModuleIdMap.find(ModuleID); in ParseModuleReference()
|