Searched refs:ModuleName (Results 1 - 25 of 36) sorted by relevance

12

/external/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp50 static bool parseCommand(bool &IsData, std::string &ModuleName, argument
60 ModuleName = "";
75 ModuleName = FilePath;
96 std::string ModuleName; local
98 while (parseCommand(IsData, ModuleName, ModuleOffset)) {
100 IsData ? Symbolizer.symbolizeData(ModuleName, ModuleOffset)
101 : Symbolizer.symbolizeCode(ModuleName, ModuleOffset);
H A DLLVMSymbolize.h50 symbolizeCode(const std::string &ModuleName, uint64_t ModuleOffset);
52 symbolizeData(const std::string &ModuleName, uint64_t ModuleOffset);
54 ModuleInfo *getOrCreateModuleInfo(const std::string &ModuleName);
H A DLLVMSymbolize.cpp152 std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName, argument
154 ModuleInfo *Info = getOrCreateModuleInfo(ModuleName);
173 std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName, argument
179 if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) {
213 LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) { argument
214 ModuleMapTy::iterator I = Modules.find(ModuleName);
218 ObjectFile *Obj = getObjectFile(ModuleName);
221 Modules.insert(make_pair(ModuleName, (ModuleInfo *)0));
233 getDarwinDWARFResourceForModule(ModuleName);
243 Modules.insert(make_pair(ModuleName, Inf
[all...]
/external/llvm/lib/Support/Windows/
H A 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, "msvcrt4
[all...]
/external/compiler-rt/lib/tsan/
H A DMakefile.mk10 ModuleName := tsan macro
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.h23 const char *ModuleName; member in class:__ubsan::ModuleLocation
27 ModuleLocation() : ModuleName(0), Offset(0) {}
28 ModuleLocation(const char *ModuleName, uptr Offset) argument
29 : ModuleName(ModuleName), Offset(Offset) {}
30 const char *getModuleName() const { return ModuleName; }
H A DMakefile.mk10 ModuleName := ubsan macro
/external/clang/include/clang/CodeGen/
H A DModuleBuilder.h42 const std::string &ModuleName,
/external/clang/lib/CodeGen/
H A DModuleBuilder.cpp39 CodeGeneratorImpl(DiagnosticsEngine &diags, const std::string& ModuleName, argument
43 M(new llvm::Module(ModuleName, C)) {}
126 const std::string& ModuleName,
130 return new CodeGeneratorImpl(Diags, ModuleName, CGO, TO, C);
125 CreateLLVMCodeGen(DiagnosticsEngine &Diags, const std::string& ModuleName, const CodeGenOptions &CGO, const TargetOptions &TO, llvm::LLVMContext& C) argument
/external/compiler-rt/lib/arm/
H A DMakefile.mk10 ModuleName := builtins macro
/external/compiler-rt/lib/i386/
H A DMakefile.mk10 ModuleName := builtins macro
/external/compiler-rt/lib/interception/
H A DMakefile.mk10 ModuleName := interception macro
/external/compiler-rt/lib/ppc/
H A DMakefile.mk10 ModuleName := builtins macro
/external/compiler-rt/lib/profile/
H A DMakefile.mk10 ModuleName := profile macro
/external/compiler-rt/lib/sanitizer_common/
H A DMakefile.mk10 ModuleName := sanitizer_common macro
/external/compiler-rt/lib/x86_64/
H A DMakefile.mk10 ModuleName := builtins macro
/external/clang/include/clang/Frontend/
H A DDiagnosticRenderer.h98 StringRef ModuleName,
101 StringRef ModuleName,
115 void emitImportStackRecursively(SourceLocation Loc, StringRef ModuleName,
169 StringRef ModuleName,
173 StringRef ModuleName,
H A DTextDiagnostic.h105 StringRef ModuleName,
109 StringRef ModuleName,
/external/compiler-rt/lib/asan/
H A DMakefile.mk10 ModuleName := asan macro
/external/compiler-rt/lib/msan/
H A DMakefile.mk10 ModuleName := msan macro
/external/compiler-rt/lib/tsan/rtl/
H A DMakefile.mk10 ModuleName := tsan macro
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp924 StringRef ModuleName = Path[0].first->getName(); local
935 } else if (ModuleName == getLangOpts().CurrentModule) {
937 Module = PP->getHeaderSearchInfo().getModuleMap().findModule(ModuleName);
941 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName);
946 ModuleFileName = PP->getHeaderSearchInfo().getModuleFileName(ModuleName);
950 << ModuleName
969 if (Pos->first == ModuleName)
979 CyclePath += ModuleName;
982 << ModuleName << CyclePath;
989 getPreprocessorOpts().FailedModules->hasAlreadyFailed(ModuleName)) {
[all...]
H A DDiagnosticRenderer.cpp273 StringRef ModuleName,
289 emitImportLocation(Loc, PLoc, ModuleName, SM);
485 StringRef ModuleName,
490 Message << "in module '" << ModuleName << "' imported from "
498 StringRef ModuleName,
503 Message << "while building module '" << ModuleName << "' imported from "
272 emitImportStackRecursively(SourceLocation Loc, StringRef ModuleName, const SourceManager &SM) argument
483 emitImportLocation(SourceLocation Loc, PresumedLoc PLoc, StringRef ModuleName, const SourceManager &SM) argument
496 emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc, StringRef ModuleName, const SourceManager &SM) argument
/external/compiler-rt/make/
H A Dlib_info.mk19 $($(key).ModuleName)))
23 $(call Append,ModuleSubDirKeys.$($(key).ModuleName),$(key)))
/external/clang/lib/Lex/
H A DHeaderSearch.cpp123 std::string HeaderSearch::getModuleFileName(StringRef ModuleName) { argument
130 llvm::sys::path::append(Result, ModuleName + ".pcm");
134 Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) { argument
136 Module *Module = ModMap.findModule(ModuleName);
147 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework");
152 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
168 Module = ModMap.findModule(ModuleName);
177 llvm::sys::path::append(NestedModuleMapDirName, ModuleName);
180 Module = ModMap.findModule(ModuleName);
353 StringRef ModuleName(Filenam
447 StringRef ModuleName = llvm::sys::path::stem(TopFrameworkDir->getName()); local
764 StringRef ModuleName = llvm::sys::path::stem(TopFrameworkDir->getName()); local
[all...]

Completed in 799 milliseconds

12