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

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITObjectCacheTest.cpp 41 const std::string ModuleID = M->getModuleIdentifier();
42 if (ObjMap.find(ModuleID) != ObjMap.end())
45 ObjMap[ModuleID] = copyBuffer(Obj);
68 const std::string ModuleID = M->getModuleIdentifier();
69 StringMap<const MemoryBuffer *>::iterator it = ObjMap.find(ModuleID);
  /external/llvm/include/llvm/IR/
Module.h 205 std::string ModuleID; ///< Human readable identifier for the module
218 explicit Module(StringRef ModuleID, LLVMContext& C);
228 const std::string &getModuleIdentifier() const { return ModuleID; }
260 void setModuleIdentifier(StringRef ID) { ModuleID = ID; }
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 683 // Get the ModuleID
684 const std::string ModuleID = M->getModuleIdentifier();
687 if (0 == ModuleID.compare(0, 3, "IR:")) {
688 std::string IRFileName = ModuleID.substr(3);
705 // Get the ModuleID
706 const std::string ModuleID = M->getModuleIdentifier();
709 if (0 == ModuleID.compare(0, 3, "IR:")) {
710 std::string IRFileName = ModuleID.substr(3);
910 // Get the ModuleID so we can identify IR input files
911 const std::string ModuleID = M->getModuleIdentifier()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 707 // Get the ModuleID
708 const std::string ModuleID = M->getModuleIdentifier();
711 if (0 == ModuleID.compare(0, 3, "IR:")) {
712 std::string IRFileName = ModuleID.substr(3);
729 // Get the ModuleID
730 const std::string ModuleID = M->getModuleIdentifier();
733 if (0 == ModuleID.compare(0, 3, "IR:")) {
734 std::string IRFileName = ModuleID.substr(3);
1046 // Get the ModuleID so we can identify IR input files
1047 const std::string ModuleID = M->getModuleIdentifier()
    [all...]

Completed in 454 milliseconds