Home
last modified time | relevance | path

Searched refs:ModuleID (Results 1 – 25 of 1036) sorted by relevance

12345678910>>...42

/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dbyval_load_align.ll12 %struct.ModuleID = type { [32 x i8], [32 x i8], i16 }
14 @sID = internal constant %struct.ModuleID { [32 x i8] c"TEST\00\00\00\00\00\00\00\00\00\00\00\00\00…
19 tail call void @Logger(i8 signext 97, %struct.ModuleID* byval(%struct.ModuleID) @sID) #2
23 declare void @Logger(i8 signext, %struct.ModuleID* byval(%struct.ModuleID)) #1
/llvm-project-15.0.7/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h44 struct ModuleID { struct
57 bool operator==(const ModuleID &Other) const { argument
63 std::size_t operator()(const ModuleID &MID) const { in operator()
83 ModuleID ID;
114 std::vector<ModuleID> ClangModuleDeps;
137 llvm::function_ref<std::string(const ModuleID &, ModuleOutputKind)>
190 ModuleID handleTopLevelModule(const Module *M);
H A DDependencyScanningTool.h28 ModuleID ID;
43 std::vector<ModuleID> ClangModuleDeps;
54 llvm::function_ref<std::string(const ModuleID &, ModuleOutputKind)>
/llvm-project-15.0.7/llvm/test/Other/ChangePrinters/
H A Dprint-changed-diff.ll142 ; CHECK-DIFF-SIMPLE: ModuleID = {{.+}}
145 ; CHECK-DIFF-SIMPLE-NOT: ModuleID = {{.+}}
153 ; CHECK-DIFF-SIMPLE-NOT: ModuleID = {{.+}}
168 ; CHECK-DIFF-FUNC-FILTER-NOT: ModuleID = {{.+}}
179 ; CHECK-DIFF-PRINT-MOD-SCOPE: ModuleID = {{.+}}
261 ; CHECK-DIFF-QUIET-SIMPLE-NOT: ModuleID = {{.+}}
269 ; CHECK-DIFF-QUIET-SIMPLE-NOT: ModuleID = {{.+}}
355 ; CHECK-CDIFF-SIMPLE: ModuleID = {{.+}}
358 ; CHECK-CDIFF-SIMPLE-NOT: ModuleID = {{.+}}
366 ; CHECK-CDIFF-SIMPLE-NOT: ModuleID = {{.+}}
[all …]
/llvm-project-15.0.7/llvm/test/Other/
H A Dchange-printer.ll111 ; CHECK-SIMPLE-NEXT: ; ModuleID = {{.+}}
125 ; CHECK-FUNC-FILTER-NEXT: ; ModuleID = {{.+}}
131 ; CHECK-PRINT-MOD-SCOPE-NEXT: ModuleID = {{.+}}
133 ; CHECK-PRINT-MOD-SCOPE-NEXT: ModuleID = {{.+}}
135 ; CHECK-PRINT-MOD-SCOPE-NEXT: ModuleID = {{.+}}
144 ; CHECK-FILTER-MULT-FUNC-NEXT: ; ModuleID = {{.+}}
152 ; CHECK-FILTER-PASSES-NEXT: ; ModuleID = {{.+}}
158 ; CHECK-FILTER-MULT-PASSES-NEXT: ; ModuleID = {{.+}}
169 ; CHECK-FILTER-FUNC-PASSES-NEXT: ; ModuleID = {{.+}}
191 ; CHECK-SIMPLE-BEFORE-NEXT: ; ModuleID = {{.+}}
[all …]
H A Dprint-module-scope.ll17 ; CFG-NEXT: ModuleID =
22 ; CFG-NEXT: ModuleID =
28 ; FOO-NEXT: ModuleID =
H A Dscc-pass-printer.ll20 ; INL-MOD-NEXT: ModuleID =
29 ; INL-MOD-NEXT: ModuleID =
38 ; INL-MOD-NEXT: ModuleID =
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITObjectCacheTest.cpp29 const std::string ModuleID = M->getModuleIdentifier(); in notifyObjectCompiled() local
30 if (ObjMap.find(ModuleID) != ObjMap.end()) in notifyObjectCompiled()
33 ObjMap[ModuleID] = copyBuffer(Obj); in notifyObjectCompiled()
56 const std::string ModuleID = M->getModuleIdentifier(); in getObjectInternal() local
57 StringMap<const MemoryBuffer *>::iterator it = ObjMap.find(ModuleID); in getObjectInternal()
/llvm-project-15.0.7/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp261 static llvm::json::Array toJSONSorted(std::vector<ModuleID> V) { in toJSONSorted()
262 llvm::sort(V, [](const ModuleID &A, const ModuleID &B) { in toJSONSorted()
268 for (const ModuleID &MID : V) in toJSONSorted()
299 ? FD.getCommandLine([&](const ModuleID &MID, ModuleOutputKind MOK) { in mergeDeps()
335 [&](const ModuleID &MID, ModuleOutputKind MOK) { in printFullOutput()
364 std::string lookupModuleOutput(const ModuleID &MID, ModuleOutputKind MOK) { in lookupModuleOutput()
385 std::string constructPCMPath(ModuleID MID) const { in constructPCMPath()
401 ModuleID ID;
422 std::vector<ModuleID> ModuleDeps;
429 std::unordered_map<ModuleID, std::string, ModuleIDHasher> PCMPaths;
/llvm-project-15.0.7/llvm/test/Bindings/llvm-c/
H A Dcalc.test5 ;CHECK: ModuleID = 'test'
12 ;CHECK: ModuleID = 'arg1'
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.h36 typedef uintptr_t ModuleID; typedef
37 typedef std::vector<ModuleID> ModuleVector;
H A DClangModulesDeclVendor.cpp104 typedef llvm::DenseSet<ModuleID> ExportedModuleSet;
124 typedef llvm::DenseSet<ModuleID> ImportedModuleSet;
200 if (exports.count(reinterpret_cast<ClangModulesDeclVendor::ModuleID>(module))) in ReportModuleExportsHelper()
203 exports.insert(reinterpret_cast<ClangModulesDeclVendor::ModuleID>(module)); in ReportModuleExportsHelper()
219 for (ModuleID module : exports_set) in ReportModuleExports()
423 typedef std::map<ModuleID, ssize_t> ModulePriorityMap; in ForEachMacro()
428 for (ModuleID module : modules) in ForEachMacro()
463 module_priorities.find(reinterpret_cast<ModuleID>(module)); in ForEachMacro()
475 reinterpret_cast<ModuleID>(top_level_module)); in ForEachMacro()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dnext-objc-dispatch.m29 // CHECK-FRAGILE_LEGACY: ModuleID
35 // CHECK-NONFRAGILE_LEGACY: ModuleID
41 // CHECK-NONFRAGILE_NONLEGACY: ModuleID
/llvm-project-15.0.7/llvm/test/tools/llvm-reduce/
H A Dremove-module-data.ll9 ; CHECK-FILE: ModuleID
16 ; CHECK-FINAL-NOT: ModuleID
/llvm-project-15.0.7/llvm/test/Transforms/WholeProgramDevirt/Inputs/
H A Ddevirt-bad-index.ll1 ; ModuleID = '/tmp/devirt-index.bc'
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DModule.h194 std::string ModuleID; ///< Human readable identifier for the module variable
218 explicit Module(StringRef ModuleID, LLVMContext& C);
228 const std::string &getModuleIdentifier() const { return ModuleID; } in getModuleIdentifier()
245 StringRef getName() const { return ModuleID; } in getName()
291 void setModuleIdentifier(StringRef ID) { ModuleID = std::string(ID); } in setModuleIdentifier()
/llvm-project-15.0.7/llvm/test/Other/X86/
H A Dinline-asm-newline-terminator.ll3 ; ModuleID = 't.c'
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DExternalPreprocessorSource.h42 virtual Module *getModule(unsigned ModuleID) = 0;
/llvm-project-15.0.7/llvm/test/Transforms/GlobalOpt/
H A Datexit.ll3 ; CHECK: ModuleID
/llvm-project-15.0.7/llvm/test/Bitcode/Inputs/
H A Dthinlto-function-summary-callgraph.ll1 ; ModuleID = 'thinlto-function-summary-callgraph2.ll'
/llvm-project-15.0.7/llvm/test/Assembler/
H A Dsummary-flags2.ll4 ; ModuleID = 'index.bc'
/llvm-project-15.0.7/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp125 llvm::function_ref<std::string(const ModuleID &, ModuleOutputKind)> in getCanonicalCommandLine() argument
152 for (ModuleID MID : ClangModuleDeps) in getCanonicalCommandLine()
252 ModuleID ModuleDepCollectorPP::handleTopLevelModule(const Module *M) { in handleTopLevelModule()
409 ModuleID ImportID = handleTopLevelModule(Import->getTopLevelModule()); in addModuleDep()
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dcompiler-ident.ll3 ; ModuleID = 'compiler-ident.c'
/llvm-project-15.0.7/lld/test/COFF/Inputs/
H A Dfailmismatch1.ll1 ; ModuleID = 'test.cpp'
/llvm-project-15.0.7/llvm/test/ThinLTO/X86/Inputs/
H A Dpr35472.ll1 ; ModuleID = 'b.cpp'

12345678910>>...42