HomeSort by relevance Sort by last modified time
    Searched defs:ModuleID (Results 1 - 5 of 5) sorted by null

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITObjectCacheTest.cpp 40 const std::string ModuleID = M->getModuleIdentifier();
41 if (ObjMap.find(ModuleID) != ObjMap.end())
44 ObjMap[ModuleID] = copyBuffer(Obj);
67 const std::string ModuleID = M->getModuleIdentifier();
68 StringMap<const MemoryBuffer *>::iterator it = ObjMap.find(ModuleID);
  /external/llvm/tools/lli/
lli.cpp 267 const std::string ModuleID = M->getModuleIdentifier();
269 if (!getCacheFilename(ModuleID, CacheName))
283 const std::string ModuleID = M->getModuleIdentifier();
285 if (!getCacheFilename(ModuleID, CacheName))
  /external/llvm/include/llvm/IR/
Module.h 206 std::string ModuleID; ///< Human readable identifier for the module
228 explicit Module(StringRef ModuleID, LLVMContext& C);
238 const std::string &getModuleIdentifier() const { return ModuleID; }
260 /// seeded via -rng-seed=<uint64> and is salted with the ModuleID.
269 void setModuleIdentifier(StringRef ID) { ModuleID = ID; }
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 684 // Get the ModuleID
685 const std::string ModuleID = M->getModuleIdentifier();
688 if (0 == ModuleID.compare(0, 3, "IR:")) {
689 std::string IRFileName = ModuleID.substr(3);
706 // Get the ModuleID
707 const std::string ModuleID = M->getModuleIdentifier();
710 if (0 == ModuleID.compare(0, 3, "IR:")) {
711 std::string IRFileName = ModuleID.substr(3);
911 // Get the ModuleID so we can identify IR input files
912 const std::string ModuleID = M->getModuleIdentifier()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 708 // Get the ModuleID
709 const std::string ModuleID = M->getModuleIdentifier();
712 if (0 == ModuleID.compare(0, 3, "IR:")) {
713 std::string IRFileName = ModuleID.substr(3);
730 // Get the ModuleID
731 const std::string ModuleID = M->getModuleIdentifier();
734 if (0 == ModuleID.compare(0, 3, "IR:")) {
735 std::string IRFileName = ModuleID.substr(3);
1047 // Get the ModuleID so we can identify IR input files
1048 const std::string ModuleID = M->getModuleIdentifier()
    [all...]

Completed in 77 milliseconds