| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangModulesDeclVendor.cpp | 88 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 D | ClangModulesDeclVendor.h | 34 typedef uintptr_t ModuleID; typedef 35 typedef std::vector<ModuleID> ModuleVector;
|
| H A D | ClangPersistentVariables.h | 62 void AddHandLoadedClangModule(ClangModulesDeclVendor::ModuleID module) { in AddHandLoadedClangModule()
|
| H A D | ClangUserExpression.cpp | 356 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in SetupDeclVendor()
|
| H A D | ClangExpressionParser.cpp | 129 for (ClangModulesDeclVendor::ModuleID module : exported_modules) { in moduleImport()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Module.h | 184 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 D | CGCUDANV.cpp | 521 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 D | ExternalPreprocessorSource.h | 43 virtual Module *getModule(unsigned ModuleID) = 0;
|
| /freebsd-12.1/contrib/llvm/tools/lli/ |
| H A D | lli.cpp | 249 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 D | LTO.cpp | 71 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 D | ThinLTOCodeGenerator.cpp | 298 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 D | ExpressionSourceCode.cpp | 210 for (ClangModulesDeclVendor::ModuleID module : hand_imported_modules) { in GetText()
|
| /freebsd-12.1/contrib/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 68 const ModuleSummaryIndex &Index, StringRef ModuleID,
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Module.cpp | 75 : Context(C), Materializer(), ModuleID(MID), SourceFileName(MID), DL("") { in Module()
|
| H A D | Core.cpp | 222 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 D | Core.h | 644 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID); 652 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
|
| /freebsd-12.1/contrib/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 8358 unsigned ModuleID = Lex.getUIntVal(); in ParseModuleReference() local 8359 auto I = ModuleIdMap.find(ModuleID); in ParseModuleReference()
|