Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DFunctionImportUtils.cpp63 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 DMetaRenamer.cpp89 for (auto C : M.getModuleIdentifier()) in MetaRename()
H A DCloneModule.cpp51 std::make_unique<Module>(M.getModuleIdentifier(), M.getContext()); in CloneModule()
H A DSymbolRewriter.cpp188 M.getModuleIdentifier() + ": " + Error); in performOnModule()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Linker/
H A DIRMover.cpp1295 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata()
1296 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata()
1313 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata()
1314 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata()
1333 << "' from " << SrcM->getModuleIdentifier() << " with '" in linkModuleFlagsMetadata()
1334 << *DstOp->getOperand(2) << "' from " << DstM.getModuleIdentifier() in linkModuleFlagsMetadata()
1368 SrcM->getModuleIdentifier() + "' and '" + in linkModuleFlagsMetadata()
1369 DstM.getModuleIdentifier() + "'"); in linkModuleFlagsMetadata()
1443 SrcM->getModuleIdentifier() + "' is '" + in run()
1445 DstM.getModuleIdentifier() + "' is '" + in run()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DLTO.cpp501 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()
940 llvm::errs() << "[ThinLTO] Selecting " << BM.getModuleIdentifier() in addThinLTO()
1222 auto ModuleID = BM.getModuleIdentifier(); in runThinLTOBackendThread()
[all …]
H A DThinLTOCodeGenerator.cpp199 SMDiagnostic Err = SMDiagnostic(Mod.getModuleIdentifier(), in loadModuleFromInput()
225 SMDiagnostic Err = SMDiagnostic(TheModule.getModuleIdentifier(), in crossImportIntoModule()
665 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in promote()
735 auto &ImportList = ImportLists[TheModule.getModuleIdentifier()]; in crossModuleImport()
750 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in gatherImportedSummariesForModule()
783 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in emitImports()
825 auto ModuleIdentifier = TheModule.getModuleIdentifier(); in internalize()
H A DLTOBackend.cpp109 if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) { in addSaveTemps()
114 PathPrefix = M.getModuleIdentifier() + "."; in addSaveTemps()
702 if (Summary->modulePath() == M.getModuleIdentifier()) in initImportList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DLayer.cpp91 << "$." << M.getModuleIdentifier() << ".__inits." << Counter++; in IRMaterializationUnit()
109 [](const Module &M) -> StringRef { return M.getModuleIdentifier(); }); in getName()
H A DCompileUtils.cpp56 std::move(ObjBufferSV), M.getModuleIdentifier() + "-jitted-objectbuffer"); in operator ()()
H A DCompileOnDemandLayer.cpp63 M.setModuleIdentifier((M.getModuleIdentifier() + Suffix).str()); in extractSubModule()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCallPrinter.cpp143 std::string(CGInfo->getModule()->getModuleIdentifier()); in getGraphName()
273 Filename = (std::string(M.getModuleIdentifier()) + ".callgraph.dot"); in runOnModule()
H A DLazyCallGraph.cpp159 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDiagnosticPrinter.cpp105 Stream << M.getModuleIdentifier(); in operator <<()
H A DLegacyPassManager.cpp222 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 DDiagnosticInfo.cpp88 DP << "ignoring invalid debug info in " << getModule().getModuleIdentifier(); in print()
H A DModule.cpp104 Salt += sys::path::filename(getModuleIdentifier()); in createRNG()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lli/
H A Dlli.cpp310 const std::string &ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled()
326 const std::string &ModuleID = M->getModuleIdentifier(); in getObject()
794 raw_fd_ostream Out(M.getModuleIdentifier() + ".ll", EC, in createDebugDumper()
797 errs() << "Couldn't open " << M.getModuleIdentifier() in createDebugDumper()
833 M->setModuleIdentifier("file:" + M->getModuleIdentifier()); in loadModule()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1186 << 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp52 const std::string &MId = M.getModuleIdentifier(); in EmitCamlGlobal()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h95 StringRef getModuleIdentifier() const { return ModuleIdentifier; } in getModuleIdentifier() function
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DModule.h227 const std::string &getModuleIdentifier() const { return ModuleID; } in getModuleIdentifier() function

12