| /openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithObjectCache/ |
| H A D | LLJITWithObjectCache.cpp | 30 CachedObjects[M->getModuleIdentifier()] = MemoryBuffer::getMemBufferCopy( in notifyObjectCompiled() 35 auto I = CachedObjects.find(M->getModuleIdentifier()); in getObject() 37 dbgs() << "No object for " << M->getModuleIdentifier() in getObject() 42 dbgs() << "Object for " << M->getModuleIdentifier() in getObject()
|
| /openbsd-src/gnu/llvm/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 | 128 for (auto C : M.getModuleIdentifier()) in MetaRename()
|
| H A D | CloneModule.cpp | 54 std::make_unique<Module>(M.getModuleIdentifier(), M.getContext()); in CloneModule()
|
| H A D | SymbolRewriter.cpp | 187 M.getModuleIdentifier() + ": " + Error); in performOnModule()
|
| /openbsd-src/gnu/llvm/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 1251 SrcM->getModuleIdentifier() + in linkNamedMDNodes() 1254 DstM.getModuleIdentifier() + "' is not\n"); in linkNamedMDNodes() 1360 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1361 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() 1382 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1383 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() 1411 << "' from " << SrcM->getModuleIdentifier() << " with '" in linkModuleFlagsMetadata() 1412 << *DstOp->getOperand(2) << "' from " << DstM.getModuleIdentifier() in linkModuleFlagsMetadata() 1465 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata() 1466 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/LTO/ |
| H A D | LTO.cpp | 505 return Mods[0].getModuleIdentifier(); in getName() 924 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier(); in addThinLTO() 929 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(), in addThinLTO() 932 BM.getModuleIdentifier(); in addThinLTO() 945 BM.getModuleIdentifier()); in addThinLTO() 953 GUID, BM.getModuleIdentifier())) in addThinLTO() 961 GUID, BM.getModuleIdentifier())) { in addThinLTO() 968 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second) in addThinLTO() 979 if (BM.getModuleIdentifier().contains(Name)) { in addThinLTO() 980 ThinLTO.ModulesToCompile->insert({BM.getModuleIdentifier(), BM}); in addThinLTO() [all …]
|
| H A D | ThinLTOCodeGenerator.cpp | 201 SMDiagnostic Err = SMDiagnostic(Mod.getModuleIdentifier(), in loadModuleFromInput() 227 SMDiagnostic Err = SMDiagnostic(TheModule.getModuleIdentifier(), in crossImportIntoModule() 701 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in promote() 772 auto &ImportList = ImportLists[TheModule.getModuleIdentifier()]; in crossModuleImport() 787 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in gatherImportedSummariesForModule() 820 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in emitImports() 862 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in internalize()
|
| H A D | LTOBackend.cpp | 114 if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) { in addSaveTemps() 119 PathPrefix = M.getModuleIdentifier() + "."; in addSaveTemps() 396 AddStream(Task, Mod.getModuleIdentifier()); in codegen() 701 if (Summary->modulePath() == M.getModuleIdentifier()) in initImportList()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/ |
| H A D | ReduceModuleData.cpp | 20 if (!Program.getModuleIdentifier().empty() && !O.shouldKeep()) in clearModuleData()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | DiagnosticPrinter.cpp | 105 Stream << M.getModuleIdentifier(); in operator <<()
|
| H A D | LegacyPassManager.cpp | 217 OS << " on module '" << M->getModuleIdentifier() << "'.\n"; in print() 1532 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier()); in runOnModule() 1568 M.getModuleIdentifier()); in runOnModule() 1576 removeDeadPasses(MP, M.getModuleIdentifier(), ON_MODULE_MSG); in runOnModule()
|
| H A D | DiagnosticInfo.cpp | 88 DP << "ignoring invalid debug info in " << getModule().getModuleIdentifier(); in print()
|
| /openbsd-src/gnu/llvm/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 | 573 << InitFunctionPrefix << M.getModuleIdentifier(); in operator ()() 576 << DeInitFunctionPrefix << M.getModuleIdentifier(); in operator ()()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | CallPrinter.cpp | 148 std::string(CGInfo->getModule()->getModuleIdentifier()); in getGraphName() 227 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() 2016 OS << "Printing the call graph for module: " << M.getModuleIdentifier() in run() 2051 OS << "digraph \"" << DOT::EscapeString(M.getModuleIdentifier()) << "\" {\n"; in run()
|
| /openbsd-src/gnu/llvm/llvm/tools/lli/ |
| H A D | lli.cpp | 319 const std::string &ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() 335 const std::string &ModuleID = M->getModuleIdentifier(); in getObject() 788 raw_fd_ostream Out(M.getModuleIdentifier() + ".ll", EC, in createDebugDumper() 791 errs() << "Couldn't open " << M.getModuleIdentifier() in createDebugDumper() 827 M->setModuleIdentifier("file:" + M->getModuleIdentifier()); in loadModule()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/ |
| H A D | FunctionImport.cpp | 1257 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1390 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1393 << DestModule.getModuleIdentifier() << "\n"); in importFunctions() 1415 ComputeCrossModuleImportForModuleFromIndex(M.getModuleIdentifier(), *Index, in doImportingForModule() 1418 ComputeCrossModuleImportForModule(M.getModuleIdentifier(), *Index, in doImportingForModule()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | OcamlGCPrinter.cpp | 52 const std::string &MId = M.getModuleIdentifier(); in EmitCamlGlobal()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Bitcode/ |
| H A D | BitcodeReader.h | 135 StringRef getModuleIdentifier() const { return ModuleIdentifier; } in getModuleIdentifier() function
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| H A D | toy.cpp | 685 const std::string ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() 707 const std::string ModuleID = M->getModuleIdentifier(); in getObject() 911 const std::string ModuleID = M->getModuleIdentifier(); in compileModule()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| H A D | toy.cpp | 704 const std::string ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() 726 const std::string ModuleID = M->getModuleIdentifier(); in getObject() 952 const std::string ModuleID = M->getModuleIdentifier(); in compileModule()
|