Home
last modified time | relevance | path

Searched refs:getModuleIdentifier (Results 1 – 25 of 46) sorted by relevance

12

/llvm-project/llvm/examples/OrcV2Examples/LLJITWithObjectCache/
H A DLLJITWithObjectCache.cpp30 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()
/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITObjectCacheTest.cpp29 const std::string ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled()
38 ModulesLookedUp.insert(M->getModuleIdentifier()); in getObject()
50 return ModulesLookedUp.contains(M->getModuleIdentifier()); in wasModuleLookedUp()
55 const std::string ModuleID = M->getModuleIdentifier(); in getObjectInternal()
/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionImportUtils.cpp78 VI, SGV->getParent()->getModuleIdentifier()); in shouldPromoteLocalToGlobal()
122 ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier())); in getPromotedName()
252 ImportIndex.findSummaryInModule(VI, M.getModuleIdentifier())); in processGlobalForThinLTO()
H A DMetaRenamer.cpp137 for (auto C : M.getModuleIdentifier()) in MetaRename()
H A DCloneModule.cpp59 std::make_unique<Module>(M.getModuleIdentifier(), M.getContext()); in CloneModule()
H A DSymbolRewriter.cpp185 M.getModuleIdentifier() + ": " + Error); in performOnModule()
/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp1220 SrcM->getModuleIdentifier() +
1223 DstM.getModuleIdentifier() + "' is not\n"); in linkNamedMDNodes()
1329 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata()
1330 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata()
1351 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata()
1352 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata()
1379 << "' from " << SrcM->getModuleIdentifier() << " with '" in linkModuleFlagsMetadata()
1380 << *DstOp->getOperand(2) << "' from " << DstM.getModuleIdentifier() in linkModuleFlagsMetadata()
1435 << "' from " << SrcM->getModuleIdentifier() << ", and '" in linkModuleFlagsMetadata()
1436 << *DstOp->getOperand(2) << "' from " + DstM.getModuleIdentifier(); in linkModuleFlagsMetadata()
[all...]
/llvm-project/llvm/lib/LTO/
H A DLTO.cpp584 return Mods[0].getModuleIdentifier(); in getSingleBitcodeModule()
1043 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier(); in addThinLTO()
1048 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(), in addThinLTO()
1051 BM.getModuleIdentifier(); in addThinLTO()
1054 LLVM_DEBUG(dbgs() << "Module " << BM.getModuleIdentifier() << "\n"); in addThinLTO()
1065 BM.getModuleIdentifier()); in addThinLTO()
1073 GUID, BM.getModuleIdentifier())) in addThinLTO()
1081 GUID, BM.getModuleIdentifier())) { in addThinLTO()
1088 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second) in getMaxTasks()
1099 if (BM.getModuleIdentifier() in checkPartiallySplit()
[all...]
H A DThinLTOCodeGenerator.cpp201 SMDiagnostic Err = SMDiagnostic(Mod.getModuleIdentifier(), in loadModuleFromInput()
227 SMDiagnostic Err = SMDiagnostic(TheModule.getModuleIdentifier(), in crossImportIntoModule()
672 auto ModuleIdentifier = TheModule.getModuleIdentifier();
750 auto &ImportList = ImportLists[TheModule.getModuleIdentifier()]; in crossModuleImport()
765 auto ModuleIdentifier = TheModule.getModuleIdentifier();
803 auto ModuleIdentifier = TheModule.getModuleIdentifier();
853 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in internalize()
H A DLTOBackend.cpp116 if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) { in addSaveTemps()
121 PathPrefix = M.getModuleIdentifier() + "."; in addSaveTemps()
431 AddStream(Task, Mod.getModuleIdentifier()); in splitCodeGen()
761 if (Summary->modulePath() == M.getModuleIdentifier())
/llvm-project/mlir/lib/ExecutionEngine/
H A DExecutionEngine.cpp67 cachedObjects[m->getModuleIdentifier()] = MemoryBuffer::getMemBufferCopy( in notifyObjectCompiled()
72 auto i = cachedObjects.find(m->getModuleIdentifier()); in getObject()
74 LLVM_DEBUG(dbgs() << "No object for " << m->getModuleIdentifier() in getObject()
78 LLVM_DEBUG(dbgs() << "Object for " << m->getModuleIdentifier() in getObject()
/llvm-project/llvm/tools/llvm-reduce/deltas/
H A DReduceModuleData.cpp20 if (!Program.getModuleIdentifier().empty() && !O.shouldKeep()) in clearModuleData()
/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLayer.cpp93 << "$." << M.getModuleIdentifier() << ".__inits." << Counter++; in IRMaterializationUnit()
111 [](const Module &M) -> StringRef { return M.getModuleIdentifier(); }); in getName()
H A DCompileUtils.cpp54 std::move(ObjBufferSV), M.getModuleIdentifier() + "-jitted-objectbuffer", in operator ()()
H A DCompileOnDemandLayer.cpp
/llvm-project/llvm/lib/IR/
H A DDiagnosticPrinter.cpp110 Stream << M.getModuleIdentifier();
H A DLegacyPassManager.cpp216 OS << " on module '" << M->getModuleIdentifier() << "'.\n"; in print()
1508 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier());
1544 M.getModuleIdentifier()); in runOnModule()
1552 removeDeadPasses(MP, M.getModuleIdentifier(), ON_MODULE_MSG); in runOnModule()
H A DDiagnosticInfo.cpp121 DP << "ignoring invalid debug info in " << getModule().getModuleIdentifier(); in DiagnosticLocation()
/llvm-project/llvm/lib/Analysis/
H A DCallPrinter.cpp149 std::string(CGInfo->getModule()->getModuleIdentifier()); in getGraphName()
228 Filename = (std::string(M.getModuleIdentifier()) + ".callgraph.dot"); in doCallGraphDOTPrinting()
/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1821 << DestModule.getModuleIdentifier() << "\n"); in importFunctions()
1869 SrcModule->getModuleIdentifier())})); in importFunctions()
1931 SrcModule->getModuleIdentifier())})); in doImportingForModuleForTest()
1981 << DestModule.getModuleIdentifier() << "\n");
1984 << DestModule.getModuleIdentifier() << "\n");
2009 ComputeCrossModuleImportForModuleFromIndexForTest(M.getModuleIdentifier(),
2012 ComputeCrossModuleImportForModuleForTest(M.getModuleIdentifier(),
/llvm-project/llvm/tools/lli/
H A Dlli.cpp314 const std::string &ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled()
330 const std::string &ModuleID = M->getModuleIdentifier(); in getObject()
816 raw_fd_ostream Out(M.getModuleIdentifier() + ".ll", EC, in createIRDebugDumper()
819 errs() << "Couldn't open " << M.getModuleIdentifier() in createIRDebugDumper()
892 M->setModuleIdentifier("file:" + M->getModuleIdentifier()); in loadModule()
/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp52 const std::string &MId = M.getModuleIdentifier(); in EmitCamlGlobal()
/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h136 StringRef getModuleIdentifier() const { return ModuleIdentifier; } in getModuleIdentifier() function
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp685 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()
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp704 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()

12