HomeSort by: relevance | last modified time | path
    Searched defs:ModuleID (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/
ModuleDepCollector.h 33 struct ModuleID {
49 ModuleID ID;
72 std::vector<ModuleID> ClangModuleDeps;
92 std::function<StringRef(ModuleID)> LookupPCMPath,
93 std::function<const ModuleDeps &(ModuleID)> LookupModuleDeps) const;
105 llvm::ArrayRef<ModuleID> Modules,
106 std::function<StringRef(ModuleID)> LookupPCMPath,
107 std::function<const ModuleDeps &(ModuleID)> LookupModuleDeps,
149 ModuleID handleTopLevelModule(const Module *M);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Assembler.cpp 32 static constexpr const char ModuleID[] = "ExegesisInfoTest";
157 auto Mod = std::make_unique<Module>(ModuleID, *Context);
  /src/external/apache2/llvm/dist/llvm/tools/lli/
lli.cpp 310 const std::string &ModuleID = M->getModuleIdentifier();
312 if (!getCacheFilename(ModuleID, CacheName))
326 const std::string &ModuleID = M->getModuleIdentifier();
328 if (!getCacheFilename(ModuleID, CacheName))
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Module.h 193 std::string ModuleID; ///< Human readable identifier for the module
217 explicit Module(StringRef ModuleID, LLVMContext& C);
227 const std::string &getModuleIdentifier() const { return ModuleID; }
236 /// For other compiles it is the same as the ModuleID, which would
244 StringRef getName() const { return ModuleID; }
269 /// ModuleID and the provided pass salt. The returned RNG should not
290 void setModuleIdentifier(StringRef ID) { ModuleID = std::string(ID); }
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTO.cpp 80 StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList,
144 auto ModHash = Index.getModuleHash(ModuleID);
1222 auto ModuleID = BM.getModuleIdentifier();
1224 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
1225 all_of(CombinedIndex.getModuleHash(ModuleID),
1233 computeLTOCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCUDANV.cpp 870 SmallString<64> ModuleID;
871 llvm::raw_svector_ostream OS(ModuleID);
874 std::string(ModuleID.str()), "", ModuleIDSectionName, 32);
878 Twine("__fatbinwrap") + ModuleID, FatbinWrapper);
880 // void __cudaRegisterLinkedBinary%ModuleID%(void (*)(void *), void *,
883 RegisterLinkedBinaryName += ModuleID;
  /src/external/apache2/llvm/dist/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);
910 // Get the ModuleID so we can identify IR input files
911 const std::string ModuleID = M->getModuleIdentifier()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 703 // Get the ModuleID
704 const std::string ModuleID = M->getModuleIdentifier();
707 if (0 == ModuleID.compare(0, 3, "IR:")) {
708 std::string IRFileName = ModuleID.substr(3);
725 // Get the ModuleID
726 const std::string ModuleID = M->getModuleIdentifier();
729 if (0 == ModuleID.compare(0, 3, "IR:")) {
730 std::string IRFileName = ModuleID.substr(3);
951 // Get the ModuleID so we can identify IR input files
952 const std::string ModuleID = M->getModuleIdentifier()
    [all...]

Completed in 25 milliseconds