/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | FunctionImportUtils.cpp | 78 VI, SGV->getParent()->getModuleIdentifier()); in shouldPromoteLocalToGlobal() 122 ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier())); in getPromotedName() 231 if (FS->modulePath() == M.getModuleIdentifier()) { in processGlobalForThinLTO() 268 ImportIndex.findSummaryInModule(VI, M.getModuleIdentifier())); in processGlobalForThinLTO()
|
H A D | MetaRenamer.cpp | 137 for (auto C : M.getModuleIdentifier()) in MetaRename()
|
H A D | CloneModule.cpp | 59 std::make_unique<Module>(M.getModuleIdentifier(), M.getContext()); in CloneModule()
|
H A D | SymbolRewriter.cpp | 185 M.getModuleIdentifier() + ": " + Error); in performOnModule()
|
/freebsd/contrib/llvm-project/llvm/lib/Linker/ |
H A D | IRMover.cpp | 1232 SrcM->getModuleIdentifier() + in linkNamedMDNodes() 1235 DstM.getModuleIdentifier() + "' is not\n"); in linkNamedMDNodes() 1341 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1342 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() 1363 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1364 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() 1392 << "' from " << SrcM->getModuleIdentifier() << " with '" in linkModuleFlagsMetadata() 1393 << *DstOp->getOperand(2) << "' from " << DstM.getModuleIdentifier() in linkModuleFlagsMetadata() 1446 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1447 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTO.cpp | 582 return Mods[0].getModuleIdentifier(); in getName() 1022 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier(); in addThinLTO() 1027 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(), in addThinLTO() 1030 BM.getModuleIdentifier(); in addThinLTO() 1033 LLVM_DEBUG(dbgs() << "Module " << BM.getModuleIdentifier() << "\n"); in addThinLTO() 1044 BM.getModuleIdentifier()); in addThinLTO() 1052 GUID, BM.getModuleIdentifier())) in addThinLTO() 1060 GUID, BM.getModuleIdentifier())) { in addThinLTO() 1067 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second) in addThinLTO() 1078 if (BM.getModuleIdentifier().contains(Name)) { in addThinLTO() [all …]
|
H A D | ThinLTOCodeGenerator.cpp | 204 SMDiagnostic Err = SMDiagnostic(Mod.getModuleIdentifier(), in loadModuleFromInput() 230 SMDiagnostic Err = SMDiagnostic(TheModule.getModuleIdentifier(), in crossImportIntoModule() 679 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in promote() 757 auto &ImportList = ImportLists[TheModule.getModuleIdentifier()]; in crossModuleImport() 772 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in gatherImportedSummariesForModule() 810 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in emitImports() 861 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in internalize()
|
H A D | LTOBackend.cpp | 115 if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) { in addSaveTemps() 120 PathPrefix = M.getModuleIdentifier() + "."; in addSaveTemps() 403 AddStream(Task, Mod.getModuleIdentifier()); in codegen() 716 if (Summary->modulePath() == M.getModuleIdentifier()) in initImportList()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | Layer.cpp | 93 << "$." << M.getModuleIdentifier() << ".__inits." << Counter++; in IRMaterializationUnit() 111 [](const Module &M) -> StringRef { return M.getModuleIdentifier(); }); in getName()
|
H A D | CompileUtils.cpp | 57 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 | 521 << InitFunctionPrefix << M.getModuleIdentifier(); in operator ()() 524 << DeInitFunctionPrefix << M.getModuleIdentifier(); in operator ()()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DiagnosticPrinter.cpp | 105 Stream << M.getModuleIdentifier(); in operator <<()
|
H A D | LegacyPassManager.cpp | 218 OS << " on module '" << M->getModuleIdentifier() << "'.\n"; in print() 1542 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier()); in runOnModule() 1578 M.getModuleIdentifier()); in runOnModule() 1586 removeDeadPasses(MP, M.getModuleIdentifier(), ON_MODULE_MSG); in runOnModule()
|
H A D | DiagnosticInfo.cpp | 89 DP << "ignoring invalid debug info in " << getModule().getModuleIdentifier(); in print()
|
H A D | Module.cpp | 126 Salt += sys::path::filename(getModuleIdentifier()); in createRNG()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CallPrinter.cpp | 149 std::string(CGInfo->getModule()->getModuleIdentifier()); in getGraphName() 228 Filename = (std::string(M.getModuleIdentifier()) + ".callgraph.dot"); in doCallGraphDOTPrinting()
|
H A D | LazyCallGraph.cpp | 156 LLVM_DEBUG(dbgs() << "Building CG for module: " << M.getModuleIdentifier() in LazyCallGraph() 2027 OS << "Printing the call graph for module: " << M.getModuleIdentifier() in run() 2062 OS << "digraph \"" << DOT::EscapeString(M.getModuleIdentifier()) << "\" {\n"; in run()
|
/freebsd/contrib/llvm-project/llvm/tools/lli/ |
H A D | lli.cpp | 313 const std::string &ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() 329 const std::string &ModuleID = M->getModuleIdentifier(); in getObject() 815 raw_fd_ostream Out(M.getModuleIdentifier() + ".ll", EC, in createIRDebugDumper() 818 errs() << "Couldn't open " << M.getModuleIdentifier() in createIRDebugDumper() 891 M->setModuleIdentifier("file:" + M->getModuleIdentifier()); in loadModule()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionImport.cpp | 1705 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1773 SrcModule->getModuleIdentifier())})); in importFunctions() 1841 SrcModule->getModuleIdentifier())})); in importFunctions() 1892 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1895 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1919 ComputeCrossModuleImportForModuleFromIndexForTest(M.getModuleIdentifier(), in doImportingForModuleForTest() 1922 ComputeCrossModuleImportForModuleForTest(M.getModuleIdentifier(), in doImportingForModuleForTest()
|
H A D | SampleProfile.cpp | 2063 Ctx.diagnose(DiagnosticInfoSampleProfile(M.getModuleIdentifier(), Msg, in doInitialization() 2122 Ctx.diagnose(DiagnosticInfoSampleProfile(M.getModuleIdentifier(), Msg)); in rejectHighStalenessProfile()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | OcamlGCPrinter.cpp | 52 const std::string &MId = M.getModuleIdentifier(); in EmitCamlGlobal()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/ |
H A D | BitcodeReader.h | 136 StringRef getModuleIdentifier() const { return ModuleIdentifier; } in getModuleIdentifier() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Module.h | 267 const std::string &getModuleIdentifier() const { return ModuleID; } in getModuleIdentifier() function
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RegAllocPBQP.cpp | 832 F.getParent()->getModuleIdentifier() + "." + F.getName().str(); in runOnMachineFunction()
|