| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | FunctionImportUtils.cpp | 63 VI, SGV->getParent()->getModuleIdentifier()); in shouldPromoteLocalToGlobal() 97 ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier())); in getPromotedName() 206 if (FS->modulePath() == M.getModuleIdentifier()) { in processGlobalForThinLTO() 243 ImportIndex.findSummaryInModule(VI, M.getModuleIdentifier())); in processGlobalForThinLTO()
|
| H A D | MetaRenamer.cpp | 89 for (auto C : M.getModuleIdentifier()) in MetaRename()
|
| H A D | CloneModule.cpp | 51 std::make_unique<Module>(M.getModuleIdentifier(), M.getContext()); in CloneModule()
|
| H A D | SymbolRewriter.cpp | 188 M.getModuleIdentifier() + ": " + Error); in performOnModule()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 1300 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1301 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() 1318 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1319 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() 1338 << "' from " << SrcM->getModuleIdentifier() << " with '" in linkModuleFlagsMetadata() 1339 << *DstOp->getOperand(2) << "' from " << DstM.getModuleIdentifier() in linkModuleFlagsMetadata() 1373 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1374 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() 1448 SrcM->getModuleIdentifier() + "' is '" + in run() 1450 DstM.getModuleIdentifier() + "' is '" + in run() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTO.cpp | 501 return Mods[0].getModuleIdentifier(); in getName() 892 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(), in addThinLTO() 904 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier(); in addThinLTO() 912 GUID, BM.getModuleIdentifier())) in addThinLTO() 920 GUID, BM.getModuleIdentifier())) { in addThinLTO() 927 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second) in addThinLTO() 938 if (BM.getModuleIdentifier().contains(Name)) { in addThinLTO() 939 ThinLTO.ModulesToCompile->insert({BM.getModuleIdentifier(), BM}); in addThinLTO() 1222 auto ModuleID = BM.getModuleIdentifier(); in runThinLTOBackendThread() 1248 StringRef ModulePath = BM.getModuleIdentifier(); in start() [all …]
|
| H A D | ThinLTOCodeGenerator.cpp | 202 SMDiagnostic Err = SMDiagnostic(Mod.getModuleIdentifier(), in loadModuleFromInput() 228 SMDiagnostic Err = SMDiagnostic(TheModule.getModuleIdentifier(), in crossImportIntoModule() 735 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in promote() 805 auto &ImportList = ImportLists[TheModule.getModuleIdentifier()]; in crossModuleImport() 820 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in gatherImportedSummariesForModule() 853 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in emitImports() 895 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in internalize()
|
| H A D | LTOBackend.cpp | 109 if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) { in addSaveTemps() 114 PathPrefix = M.getModuleIdentifier() + "."; in addSaveTemps() 702 if (Summary->modulePath() == M.getModuleIdentifier()) in initImportList()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Layer.cpp | 91 << "$." << M.getModuleIdentifier() << ".__inits." << Counter++; in IRMaterializationUnit() 109 [](const Module &M) -> StringRef { return M.getModuleIdentifier(); }); in getName()
|
| H A D | CompileUtils.cpp | 56 std::move(ObjBufferSV), M.getModuleIdentifier() + "-jitted-objectbuffer"); in operator ()()
|
| H A D | CompileOnDemandLayer.cpp | 63 M.setModuleIdentifier((M.getModuleIdentifier() + Suffix).str()); in extractSubModule()
|
| H A D | LLJIT.cpp | 469 << InitFunctionPrefix << M.getModuleIdentifier(); in operator ()()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DiagnosticPrinter.cpp | 105 Stream << M.getModuleIdentifier(); in operator <<()
|
| H A D | LegacyPassManager.cpp | 222 OS << " on module '" << M->getModuleIdentifier() << "'.\n"; in print() 1541 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier()); in runOnModule() 1577 M.getModuleIdentifier()); in runOnModule() 1585 removeDeadPasses(MP, M.getModuleIdentifier(), ON_MODULE_MSG); in runOnModule()
|
| H A D | DiagnosticInfo.cpp | 86 DP << "ignoring invalid debug info in " << getModule().getModuleIdentifier(); in print()
|
| H A D | Module.cpp | 104 Salt += sys::path::filename(getModuleIdentifier()); in createRNG()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | CallPrinter.cpp | 143 std::string(CGInfo->getModule()->getModuleIdentifier()); in getGraphName() 273 Filename = (std::string(M.getModuleIdentifier()) + ".callgraph.dot"); in runOnModule()
|
| H A D | LazyCallGraph.cpp | 159 LLVM_DEBUG(dbgs() << "Building CG for module: " << M.getModuleIdentifier() in LazyCallGraph() 1998 OS << "Printing the call graph for module: " << M.getModuleIdentifier() in run() 2033 OS << "digraph \"" << DOT::EscapeString(M.getModuleIdentifier()) << "\" {\n"; in run()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/lli/ |
| H A D | lli.cpp | 307 const std::string &ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() 323 const std::string &ModuleID = M->getModuleIdentifier(); in getObject() 792 raw_fd_ostream Out(M.getModuleIdentifier() + ".ll", EC, in createDebugDumper() 795 errs() << "Couldn't open " << M.getModuleIdentifier() in createDebugDumper() 831 M->setModuleIdentifier("file:" + M->getModuleIdentifier()); in loadModule()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | FunctionImport.cpp | 1186 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1320 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1323 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1345 ComputeCrossModuleImportForModuleFromIndex(M.getModuleIdentifier(), *Index, in doImportingForModule() 1348 ComputeCrossModuleImportForModule(M.getModuleIdentifier(), *Index, in doImportingForModule()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | OcamlGCPrinter.cpp | 52 const std::string &MId = M.getModuleIdentifier(); in EmitCamlGlobal()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitcode/ |
| H A D | BitcodeReader.h | 95 StringRef getModuleIdentifier() const { return ModuleIdentifier; } in getModuleIdentifier() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Module.h | 227 const std::string &getModuleIdentifier() const { return ModuleID; } in getModuleIdentifier() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RegAllocPBQP.cpp | 831 F.getParent()->getModuleIdentifier() + "." + F.getName().str(); in runOnMachineFunction()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenAction.cpp | 850 << CurLinkModule->getModuleIdentifier() << MsgStorage; in DiagnosticHandlerImpl()
|