Home
last modified time | relevance | path

Searched refs:ModuleName (Results 1 – 25 of 90) sorted by relevance

1234

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-symbolizer/
Dllvm-symbolizer.cpp103 std::string &ModuleName, uint64_t &ModuleOffset) { in parseCommand() argument
105 ModuleName = ""; in parseCommand()
124 ModuleName = std::string(pos, end - pos); in parseCommand()
128 ModuleName = std::string(pos, name_length); in parseCommand()
132 ModuleName = ClBinaryName; in parseCommand()
170 std::string ModuleName; in main() local
172 if (!parseCommand(StringRef(InputString), IsData, ModuleName, in main()
185 auto ResOrErr = Symbolizer.symbolizeData(ModuleName, ModuleOffset); in main()
189 Symbolizer.symbolizeInlinedCode(ModuleName, ModuleOffset, ClDwpName); in main()
194 Symbolizer.symbolizeCode(ModuleName, ModuleOffset, ClDwpName); in main()
/external/llvm/tools/llvm-symbolizer/
Dllvm-symbolizer.cpp99 std::string &ModuleName, uint64_t &ModuleOffset) { in parseCommand() argument
104 ModuleName = ""; in parseCommand()
125 ModuleName = std::string(pos, end - pos); in parseCommand()
129 ModuleName = std::string(pos, name_length); in parseCommand()
133 ModuleName = ClBinaryName; in parseCommand()
174 std::string ModuleName; in main() local
176 if (!parseCommand(StringRef(InputString), IsData, ModuleName, in main()
189 auto ResOrErr = Symbolizer.symbolizeData(ModuleName, ModuleOffset); in main()
192 auto ResOrErr = Symbolizer.symbolizeInlinedCode(ModuleName, ModuleOffset); in main()
196 auto ResOrErr = Symbolizer.symbolizeCode(ModuleName, ModuleOffset); in main()
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DDynamicLibrary.inc46 static BOOL CALLBACK ELM_Callback(WIN32_ELMCB_PCSTR ModuleName,
53 if (stricmp(ModuleName, "msvci70") != 0 &&
54 stricmp(ModuleName, "msvcirt") != 0 &&
55 stricmp(ModuleName, "msvcp50") != 0 &&
56 stricmp(ModuleName, "msvcp60") != 0 &&
57 stricmp(ModuleName, "msvcp70") != 0 &&
58 stricmp(ModuleName, "msvcr70") != 0 &&
62 stricmp(ModuleName, "msvcrt") != 0 &&
64 stricmp(ModuleName, "msvcrt20") != 0 &&
65 stricmp(ModuleName, "msvcrt40") != 0) {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp57 LLVMSymbolizer::symbolizeCode(const std::string &ModuleName, in symbolizeCode() argument
60 if (auto InfoOrErr = getOrCreateModuleInfo(ModuleName, DWPName)) in symbolizeCode()
83 LLVMSymbolizer::symbolizeInlinedCode(const std::string &ModuleName, in symbolizeInlinedCode() argument
86 if (auto InfoOrErr = getOrCreateModuleInfo(ModuleName, DWPName)) in symbolizeInlinedCode()
112 Expected<DIGlobal> LLVMSymbolizer::symbolizeData(const std::string &ModuleName, in symbolizeData() argument
115 if (auto InfoOrErr = getOrCreateModuleInfo(ModuleName)) in symbolizeData()
373 LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName, in getOrCreateModuleInfo() argument
375 const auto &I = Modules.find(ModuleName); in getOrCreateModuleInfo()
379 std::string BinaryName = ModuleName; in getOrCreateModuleInfo()
381 size_t ColonPos = ModuleName.find_last_of(':'); in getOrCreateModuleInfo()
[all …]
/external/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp54 Expected<DILineInfo> LLVMSymbolizer::symbolizeCode(const std::string &ModuleName, in symbolizeCode() argument
57 if (auto InfoOrErr = getOrCreateModuleInfo(ModuleName)) in symbolizeCode()
80 LLVMSymbolizer::symbolizeInlinedCode(const std::string &ModuleName, in symbolizeInlinedCode() argument
83 if (auto InfoOrErr = getOrCreateModuleInfo(ModuleName)) in symbolizeInlinedCode()
109 Expected<DIGlobal> LLVMSymbolizer::symbolizeData(const std::string &ModuleName, in symbolizeData() argument
112 if (auto InfoOrErr = getOrCreateModuleInfo(ModuleName)) in symbolizeData()
365 LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) { in getOrCreateModuleInfo() argument
366 const auto &I = Modules.find(ModuleName); in getOrCreateModuleInfo()
370 std::string BinaryName = ModuleName; in getOrCreateModuleInfo()
372 size_t ColonPos = ModuleName.find_last_of(':'); in getOrCreateModuleInfo()
[all …]
/external/llvm/lib/DebugInfo/PDB/Raw/
DModInfo.cpp73 : ModuleName(Info.ModuleName), ObjFileName(Info.ObjFileName), in ModInfo()
83 if (auto EC = Reader.readZeroString(Info.ModuleName)) in initialize()
117 StringRef ModInfo::getModuleName() const { return ModuleName; } in getModuleName()
122 uint32_t M = ModuleName.str().size() + 1; in getRecordLength()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCSymbolWasm.h22 std::string ModuleName; variable
39 ModuleName("env") {} in MCSymbolWasm()
61 const StringRef getModuleName() const { return ModuleName; } in getModuleName()
62 void setModuleName(StringRef Name) { ModuleName = Name; } in setModuleName()
/external/clang/include/clang/Frontend/
DDiagnosticRenderer.h96 StringRef ModuleName,
99 StringRef ModuleName,
114 void emitImportStackRecursively(SourceLocation Loc, StringRef ModuleName,
167 StringRef ModuleName,
171 StringRef ModuleName,
DTextDiagnostic.h102 StringRef ModuleName,
106 StringRef ModuleName,
/external/llvm/include/llvm/DebugInfo/Symbolize/
DSymbolize.h52 Expected<DILineInfo> symbolizeCode(const std::string &ModuleName,
54 Expected<DIInliningInfo> symbolizeInlinedCode(const std::string &ModuleName,
56 Expected<DIGlobal> symbolizeData(const std::string &ModuleName,
72 getOrCreateModuleInfo(const std::string &ModuleName);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/Symbolize/
DSymbolize.h60 Expected<DILineInfo> symbolizeCode(const std::string &ModuleName,
63 Expected<DIInliningInfo> symbolizeInlinedCode(const std::string &ModuleName,
66 Expected<DIGlobal> symbolizeData(const std::string &ModuleName,
84 getOrCreateModuleInfo(const std::string &ModuleName, StringRef DWPName = "");
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DDbiModuleDescriptorBuilder.cpp41 DbiModuleDescriptorBuilder::DbiModuleDescriptorBuilder(StringRef ModuleName, in DbiModuleDescriptorBuilder() argument
44 : MSF(Msf), ModuleName(ModuleName) { in DbiModuleDescriptorBuilder()
92 uint32_t M = ModuleName.size() + 1; in calculateSerializedLength()
132 if (auto EC = ModiWriter.writeCString(ModuleName)) in commit()
DDbiModuleDescriptor.cpp35 if (auto EC = Reader.readCString(Info.ModuleName)) in initialize()
84 StringRef DbiModuleDescriptor::getModuleName() const { return ModuleName; } in getModuleName()
89 uint32_t M = ModuleName.str().size() + 1; in getRecordLength()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiModuleDescriptorBuilder.h42 DbiModuleDescriptorBuilder(StringRef ModuleName, uint32_t ModIndex,
62 StringRef getModuleName() const { return ModuleName; } in getModuleName()
91 std::string ModuleName; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyTargetStreamer.cpp106 StringRef ModuleName) { in emitImportModule() argument
107 OS << "\t.import_module\t" << Sym->getName() << ", " << ModuleName << '\n'; in emitImportModule()
183 StringRef ModuleName) { in emitImportModule() argument
184 Sym->setModuleName(ModuleName); in emitImportModule()
DWebAssemblyTargetStreamer.h51 virtual void emitImportModule(MCSymbolWasm *Sym, StringRef ModuleName) = 0;
73 void emitImportModule(MCSymbolWasm *Sym, StringRef ModuleName) override;
90 void emitImportModule(MCSymbolWasm *Sym, StringRef ModuleName) override;
/external/clang/tools/libclang/
DBuildSystem.cpp97 std::string ModuleName; member
111 MMD->ModuleName = name; in clang_ModuleMapDescriptor_setFrameworkModuleName()
134 OS << "framework module " << MMD->ModuleName << " {\n"; in clang_ModuleMapDescriptor_writeToBuffer()
/external/clang/lib/Frontend/
DDiagnosticRenderer.cpp236 StringRef ModuleName, in emitImportStackRecursively() argument
238 if (ModuleName.empty()) { in emitImportStackRecursively()
250 emitImportLocation(Loc, PLoc, ModuleName, SM); in emitImportStackRecursively()
600 StringRef ModuleName, in emitImportLocation() argument
605 Message << "in module '" << ModuleName; in emitImportLocation()
616 StringRef ModuleName, in emitBuildingModuleLocation() argument
622 Message << "while building module '" << ModuleName << "' imported from " in emitBuildingModuleLocation()
625 Message << "while building module '" << ModuleName << "':"; in emitBuildingModuleLocation()
DCompilerInstance.cpp1349 void ReadModuleName(StringRef ModuleName) override { in loadModuleFile()
1351 CI.getPreprocessor().getIdentifierInfo(ModuleName)); in loadModuleFile()
1415 StringRef ModuleName = Path[0].first->getName(); in loadModule() local
1423 if (LastModuleImportResult && ModuleName != getLangOpts().CurrentModule) in loadModule()
1437 } else if (ModuleName == getLangOpts().CurrentModule) { in loadModule()
1439 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName); in loadModule()
1443 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName); in loadModule()
1446 << ModuleName in loadModule()
1462 << ModuleName; in loadModule()
1492 if (Pos->first == ModuleName) in loadModule()
[all …]
/external/clang/lib/Lex/
DHeaderSearch.cpp128 std::string HeaderSearch::getModuleFileName(StringRef ModuleName, in getModuleFileName() argument
139 llvm::sys::path::append(Result, ModuleName + ".pcm"); in getModuleFileName()
160 llvm::sys::path::append(Result, ModuleName + "-" + HashStr + ".pcm"); in getModuleFileName()
165 Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) { in lookupModule() argument
167 Module *Module = ModMap.findModule(ModuleName); in lookupModule()
178 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework"); in lookupModule()
183 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem); in lookupModule()
201 Module = ModMap.findModule(ModuleName); in lookupModule()
210 llvm::sys::path::append(NestedModuleMapDirName, ModuleName); in lookupModule()
214 Module = ModMap.findModule(ModuleName); in lookupModule()
[all …]
/external/syzkaller/vendor/google.golang.org/appengine/internal/
Didentity_classic.go36 func ModuleName(ctx netcontext.Context) string { func
41 return appengine.ModuleName(c)
/external/clang/lib/CodeGen/
DModuleBuilder.cpp70 CodeGeneratorImpl(DiagnosticsEngine &diags, llvm::StringRef ModuleName, in CodeGeneratorImpl() argument
77 CoverageInfo(CoverageInfo), M(new llvm::Module(ModuleName, C)) { in CodeGeneratorImpl()
313 DiagnosticsEngine &Diags, llvm::StringRef ModuleName, in CreateLLVMCodeGen() argument
317 return new CodeGeneratorImpl(Diags, ModuleName, HeaderSearchOpts, in CreateLLVMCodeGen()
/external/compiler-rt/make/
Dlib_info.mk19 $($(key).ModuleName)))
23 $(call Append,ModuleSubDirKeys.$($(key).ModuleName),$(key)))
/external/mesa3d/src/gallium/auxiliary/util/
Ddbghelp.h27 PSTR ModuleName; member
306 …typedef BOOL (CALLBACK *PSYM_ENUMMODULES_CALLBACK64)(PSTR ModuleName,DWORD64 BaseOfDll,PVOID UserC…
309 …typedef BOOL (CALLBACK *PENUMLOADED_MODULES_CALLBACK64)(PSTR ModuleName,DWORD64 ModuleBase,ULONG M…
322 …typedef BOOL (CALLBACK *PSYM_ENUMMODULES_CALLBACK)(PSTR ModuleName,ULONG BaseOfDll,PVOID UserConte…
325 …typedef BOOL (CALLBACK *PENUMLOADED_MODULES_CALLBACK)(PSTR ModuleName,ULONG ModuleBase,ULONG Modul…
392 CHAR ModuleName[32]; member
416 WCHAR ModuleName[32]; member
446 CHAR ModuleName[32]; member
459 WCHAR ModuleName[32]; member
698 …BOOL IMAGEAPI SymGetLineFromName64(HANDLE hProcess,PSTR ModuleName,PSTR FileName,DWORD dwLineNumbe…
[all …]
/external/syzkaller/vendor/google.golang.org/appengine/
Didentity.go30 func ModuleName(c context.Context) string { func
31 return internal.ModuleName(c)

1234