HomeSort by: relevance | last modified time | path
    Searched refs:getModuleIdentifier (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectCache/
LLJITWithObjectCache.cpp 30 CachedObjects[M->getModuleIdentifier()] = MemoryBuffer::getMemBufferCopy(
35 auto I = CachedObjects.find(M->getModuleIdentifier());
37 dbgs() << "No object for " << M->getModuleIdentifier()
42 dbgs() << "Object for " << M->getModuleIdentifier()
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DiagnosticPrinter.cpp 105 Stream << M.getModuleIdentifier();
LegacyPassManager.cpp 222 OS << " on module '" << M->getModuleIdentifier() << "'.\n";
1541 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier());
1577 M.getModuleIdentifier());
1585 removeDeadPasses(MP, M.getModuleIdentifier(), ON_MODULE_MSG);
DiagnosticInfo.cpp 88 DP << "ignoring invalid debug info in " << getModule().getModuleIdentifier();
Module.cpp 104 Salt += sys::path::filename(getModuleIdentifier());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionImportUtils.cpp 63 VI, SGV->getParent()->getModuleIdentifier());
97 ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier()));
206 if (FS->modulePath() == M.getModuleIdentifier()) {
243 ImportIndex.findSummaryInModule(VI, M.getModuleIdentifier()));
MetaRenamer.cpp 89 for (auto C : M.getModuleIdentifier())
CloneModule.cpp 51 std::make_unique<Module>(M.getModuleIdentifier(), M.getContext());
SymbolRewriter.cpp 188 M.getModuleIdentifier() + ": " + Error);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
CompileUtils.cpp 56 std::move(ObjBufferSV), M.getModuleIdentifier() + "-jitted-objectbuffer");
Layer.cpp 91 << "$." << M.getModuleIdentifier() << ".__inits." << Counter++;
109 [](const Module &M) -> StringRef { return M.getModuleIdentifier(); });
CompileOnDemandLayer.cpp 63 M.setModuleIdentifier((M.getModuleIdentifier() + Suffix).str());
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallPrinter.cpp 143 std::string(CGInfo->getModule()->getModuleIdentifier());
273 Filename = (std::string(M.getModuleIdentifier()) + ".callgraph.dot");
LazyCallGraph.cpp 159 LLVM_DEBUG(dbgs() << "Building CG for module: " << M.getModuleIdentifier()
1998 OS << "Printing the call graph for module: " << M.getModuleIdentifier()
2033 OS << "digraph \"" << DOT::EscapeString(M.getModuleIdentifier()) << "\" {\n";
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
ThinLTOCodeGenerator.cpp 199 SMDiagnostic Err = SMDiagnostic(Mod.getModuleIdentifier(),
225 SMDiagnostic Err = SMDiagnostic(TheModule.getModuleIdentifier(),
665 auto ModuleIdentifier = TheModule.getModuleIdentifier();
735 auto &ImportList = ImportLists[TheModule.getModuleIdentifier()];
750 auto ModuleIdentifier = TheModule.getModuleIdentifier();
783 auto ModuleIdentifier = TheModule.getModuleIdentifier();
825 auto ModuleIdentifier = TheModule.getModuleIdentifier();
LTO.cpp 501 return Mods[0].getModuleIdentifier();
892 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(),
904 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier();
912 GUID, BM.getModuleIdentifier()))
920 GUID, BM.getModuleIdentifier())) {
927 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
938 if (BM.getModuleIdentifier().contains(Name)) {
939 ThinLTO.ModulesToCompile->insert({BM.getModuleIdentifier(), BM});
940 llvm::errs() << "[ThinLTO] Selecting " << BM.getModuleIdentifier()
1222 auto ModuleID = BM.getModuleIdentifier();
    [all...]
LTOBackend.cpp 109 if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) {
114 PathPrefix = M.getModuleIdentifier() + ".";
702 if (Summary->modulePath() == M.getModuleIdentifier())
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
IRMover.cpp 1295 SrcM->getModuleIdentifier() + "' and '" +
1296 DstM.getModuleIdentifier() + "'");
1313 SrcM->getModuleIdentifier() + "' and '" +
1314 DstM.getModuleIdentifier() + "'");
1333 << "' from " << SrcM->getModuleIdentifier() << " with '"
1334 << *DstOp->getOperand(2) << "' from " << DstM.getModuleIdentifier()
1368 SrcM->getModuleIdentifier() + "' and '" +
1369 DstM.getModuleIdentifier() + "'");
1443 SrcM->getModuleIdentifier() + "' is '" +
1445 DstM.getModuleIdentifier() + "' is '"
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 52 const std::string &MId = M.getModuleIdentifier();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeReader.h 95 StringRef getModuleIdentifier() const { return ModuleIdentifier; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionImport.cpp 1186 << DestModule.getModuleIdentifier() << "\n");
1320 << DestModule.getModuleIdentifier() << "\n");
1323 << DestModule.getModuleIdentifier() << "\n");
1345 ComputeCrossModuleImportForModuleFromIndex(M.getModuleIdentifier(), *Index,
1348 ComputeCrossModuleImportForModule(M.getModuleIdentifier(), *Index,
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 685 const std::string ModuleID = M->getModuleIdentifier();
707 const std::string ModuleID = M->getModuleIdentifier();
911 const std::string ModuleID = M->getModuleIdentifier();
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 704 const std::string ModuleID = M->getModuleIdentifier();
726 const std::string ModuleID = M->getModuleIdentifier();
952 const std::string ModuleID = M->getModuleIdentifier();
  /src/external/apache2/llvm/dist/llvm/tools/lli/
lli.cpp 310 const std::string &ModuleID = M->getModuleIdentifier();
326 const std::string &ModuleID = M->getModuleIdentifier();
794 raw_fd_ostream Out(M.getModuleIdentifier() + ".ll", EC,
797 errs() << "Couldn't open " << M.getModuleIdentifier()
833 M->setModuleIdentifier("file:" + M->getModuleIdentifier());
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Module.h 227 const std::string &getModuleIdentifier() const { return ModuleID; }
243 /// wrapper around getModuleIdentifier().

Completed in 57 milliseconds

1 2