Home
last modified time | relevance | path

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

1234

/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutdebug.c296 const char *ModuleName, in AcpiDebugPrint() argument
335 AcpiOsPrintf ("%9s-%04d ", ModuleName, LineNumber); in AcpiDebugPrint()
397 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
440 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
452 LineNumber, FunctionName, ModuleName, ComponentId, in ACPI_EXPORT_SYMBOL()
481 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
494 LineNumber, FunctionName, ModuleName, ComponentId, in ACPI_EXPORT_SYMBOL()
521 const char *ModuleName, in AcpiUtTraceStr() argument
534 LineNumber, FunctionName, ModuleName, ComponentId, in AcpiUtTraceStr()
561 const char *ModuleName, in AcpiUtTraceU32() argument
[all …]
H A Dutxferror.c184 const char *ModuleName, in AcpiError() argument
224 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
275 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
354 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
394 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
446 const char *ModuleName, in ACPI_EXPORT_SYMBOL()
H A Duterror.c188 const char *ModuleName, in AcpiUtPredefinedWarning() argument
237 const char *ModuleName, in AcpiUtPredefinedInfo() argument
286 const char *ModuleName, in AcpiUtPredefinedBiosError() argument
336 const char *ModuleName, in AcpiUtPrefixedNamespaceError() argument
407 const char *ModuleName, in AcpiUtNamespaceError() argument
478 const char *ModuleName, in AcpiUtMethodError() argument
/freebsd/sys/contrib/dev/acpica/include/
H A Dacutils.h251 AcpiOsPrintf (" (%8.8X/%s-%u)\n", ACPI_CA_VERSION, ModuleName, LineNumber)
564 const char *ModuleName,
571 const char *ModuleName,
579 const char *ModuleName,
587 const char *ModuleName,
595 const char *ModuleName,
602 const char *ModuleName,
610 const char *ModuleName,
618 const char *ModuleName,
626 const char *ModuleName,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCaching.cpp41 const Twine &ModuleName) -> Expected<AddStreamFn> { in localCache() argument
58 AddBuffer(Task, ModuleName, std::move(*MBOrErr)); in localCache()
81 std::string ModuleName; in localCache() member
86 std::string ModuleName, unsigned Task) in localCache()
89 ModuleName(ModuleName), Task(Task) {} in localCache()
142 AddBuffer(Task, ModuleName, std::move(*MBOrErr)); in localCache()
147 return [=](size_t Task, const Twine &ModuleName) in localCache()
171 AddBuffer, std::move(*Temp), std::string(EntryPath), ModuleName.str(), in localCache()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCaching.h60 unsigned Task, const Twine &ModuleName)>;
67 unsigned Task, StringRef Key, const Twine &ModuleName)>;
91 const Twine &ModuleName) { in operator()
93 return CacheFunction(Task, Key, ModuleName); in operator()
108 using AddBufferFn = std::function<void(unsigned Task, const Twine &ModuleName,
120 AddBufferFn AddBuffer = [](size_t Task, const Twine &ModuleName,
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_symbolize.cpp64 bool __sanitizer_symbolize_code(const char *ModuleName, uint64_t ModuleOffset, in __sanitizer_symbolize_code()
70 llvm::symbolize::Request Request{ModuleName, ModuleOffset}; in __sanitizer_symbolize_code()
78 ModuleName, in __sanitizer_symbolize_code()
85 ModuleName, in __sanitizer_symbolize_code()
96 bool __sanitizer_symbolize_data(const char *ModuleName, uint64_t ModuleOffset, in __sanitizer_symbolize_data()
102 llvm::symbolize::Request Request{ModuleName, ModuleOffset}; in __sanitizer_symbolize_data()
109 ModuleName, in __sanitizer_symbolize_data()
119 bool __sanitizer_symbolize_frame(const char *ModuleName, uint64_t ModuleOffset, in __sanitizer_symbolize_demangle()
125 llvm::symbolize::Request Request{ModuleName, ModuleOffset}; in __sanitizer_symbolize_demangle()
132 ModuleName, in __sanitizer_symbolize_set_demangle()
63 __sanitizer_symbolize_code(const char * ModuleName,uint64_t ModuleOffset,char * Buffer,int MaxLength) __sanitizer_symbolize_code() argument
92 __sanitizer_symbolize_data(const char * ModuleName,uint64_t ModuleOffset,char * Buffer,int MaxLength) __sanitizer_symbolize_data() argument
[all...]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp70 static llvm::StringRef ExpandModuleName(llvm::StringRef ModuleName, in ExpandModuleName() argument
72 if (ModuleName == "-" && !CGO.MainFileName.empty()) in ExpandModuleName()
74 return ModuleName; in ExpandModuleName()
78 CodeGeneratorImpl(DiagnosticsEngine &diags, llvm::StringRef ModuleName, in CodeGeneratorImpl() argument
87 M(new llvm::Module(ExpandModuleName(ModuleName, CGO), C)) { in CodeGeneratorImpl()
136 llvm::Module *StartModule(llvm::StringRef ModuleName, in StartModule() argument
139 M.reset(new llvm::Module(ExpandModuleName(ModuleName, CodeGenOpts), C)); in StartModule()
358 llvm::Module *CodeGenerator::StartModule(llvm::StringRef ModuleName, in StartModule() argument
360 return static_cast<CodeGeneratorImpl*>(this)->StartModule(ModuleName, C); in StartModule()
364 clang::CreateLLVMCodeGen(DiagnosticsEngine &Diags, llvm::StringRef ModuleName, in CreateLLVMCodeGen() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp374 std::string ModuleName = stringFromPath(Path); in ActOnModuleDecl() local
376 ModuleName += ":"; in ActOnModuleDecl()
377 ModuleName += stringFromPath(Partition); in ActOnModuleDecl()
382 getLangOpts().CurrentModule != ModuleName) { in ActOnModuleDecl()
390 const_cast<LangOptions&>(getLangOpts()).CurrentModule = ModuleName; in ActOnModuleDecl()
400 if (auto *M = Map.findOrLoadModule(ModuleName)) { in ActOnModuleDecl()
401 Diag(Path[0].getLoc(), diag::err_module_redefinition) << ModuleName; in ActOnModuleDecl()
412 Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName); in ActOnModuleDecl()
425 PP.getIdentifierInfo(ModuleName)); in ActOnModuleDecl()
435 const_cast<LangOptions&>(getLangOpts()).CurrentModule = ModuleName; in ActOnModuleDecl()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningTool.h158 StringRef ModuleName, const std::vector<std::string> &CommandLine,
195 void handleVisibleModule(std::string ModuleName) override { in handleVisibleModule() argument
196 VisibleModules.push_back(ModuleName); in handleVisibleModule()
206 ModuleName = Provided ? Provided->ModuleName : ""; in handleProvidedAndRequiredStdCXXModules()
208 [](const auto &Module) { return Module.ModuleName; }); in handleProvidedAndRequiredStdCXXModules()
217 std::string ModuleName; variable
H A DModuleDepCollector.h40 std::string ModuleName; member
45 : ModuleName(M->getTopLevelModuleName()), in PrebuiltModuleDep()
95 std::string ModuleName; member
108 return std::tie(ModuleName, ContextHash) ==
109 std::tie(Other.ModuleName, Other.ContextHash);
113 return std::tie(ModuleName, ContextHash) <
114 std::tie(Other.ModuleName, Other.ContextHash);
122 std::string ModuleName; member
407 return hash_combine(ID.ModuleName, ID.ContextHash); in hash_value()
H A DDependencyScanningWorker.h62 virtual void handleVisibleModule(std::string ModuleName) = 0;
116 StringRef ModuleName);
137 StringRef ModuleName);
161 std::optional<StringRef> ModuleName);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp91 LLVMSymbolizer::symbolizeCode(StringRef ModuleName, in symbolizeCode() argument
93 return symbolizeCodeCommon(ModuleName, ModuleOffset); in symbolizeCode()
142 LLVMSymbolizer::symbolizeInlinedCode(StringRef ModuleName, in symbolizeInlinedCode() argument
144 return symbolizeInlinedCodeCommon(ModuleName, ModuleOffset); in symbolizeInlinedCode()
187 LLVMSymbolizer::symbolizeData(StringRef ModuleName, in symbolizeData() argument
189 return symbolizeDataCommon(ModuleName, ModuleOffset); in symbolizeData()
228 LLVMSymbolizer::symbolizeFrame(StringRef ModuleName, in symbolizeFrame() argument
230 return symbolizeFrameCommon(ModuleName, ModuleOffset); in symbolizeFrame()
276 LLVMSymbolizer::findSymbol(StringRef ModuleName, StringRef Symbol, in findSymbol() argument
278 return findSymbolCommon(ModuleName, Symbol, Offset); in findSymbol()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp162 std::string &ModuleName, object::BuildID &BuildID, in parseCommand() argument
164 ModuleName = BinaryName; in parseCommand()
218 ModuleName = Name; in parseCommand()
223 ModuleName = getSpaceDelimitedWord(InputString); in parseCommand()
224 if (ModuleName.empty()) in parseCommand()
282 void executeCommand(StringRef ModuleName, const T &ModuleSpec, Command Cmd, in executeCommand() argument
290 ModuleName, Symbol.empty() ? std::make_optional(Offset) : std::nullopt, in executeCommand()
330 static void printUnknownLineInfo(std::string ModuleName, DIPrinter &Printer) { in printUnknownLineInfo() argument
331 Request SymRequest = {ModuleName, std::nullopt, StringRef()}; in printUnknownLineInfo()
341 std::string ModuleName; in symbolizeInput() local
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DDiagnosticRenderer.h92 StringRef ModuleName) = 0;
94 StringRef ModuleName) = 0;
107 void emitImportStackRecursively(FullSourceLoc Loc, StringRef ModuleName);
152 StringRef ModuleName) override;
155 StringRef ModuleName) override;
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp571 void ReadModuleName(StringRef ModuleName) override { in ReadModuleName()
574 LoadedModules.push_back(ModuleName.str()); in ReadModuleName()
1154 SourceLocation ImportLoc, StringRef ModuleName, FrontendInputFile Input, in cloneForModuleCompileImpl() argument
1177 Invocation->getLangOpts().ModuleName = in cloneForModuleCompileImpl()
1178 getInvocation().getLangOpts().ModuleName; in cloneForModuleCompileImpl()
1181 Invocation->getLangOpts().CurrentModule = std::string(ModuleName); in cloneForModuleCompileImpl()
1233 if (llvm::is_contained(DiagOpts.SystemHeaderWarningsModules, ModuleName)) in cloneForModuleCompileImpl()
1246 ModuleName, FullSourceLoc(ImportLoc, getSourceManager())); in cloneForModuleCompileImpl()
1270 StringRef ModuleName, in compileModule() argument
1273 llvm::TimeTraceScope TimeScope("Module Compile", ModuleName); in compileModule()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CGData/
H A DStableFunctionMap.h37 std::string ModuleName; member
44 const std::string ModuleName, unsigned InstCount, in StableFunction()
46 : Hash(Hash), FunctionName(FunctionName), ModuleName(ModuleName), in StableFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h84 symbolizeCode(StringRef ModuleName, object::SectionedAddress ModuleOffset);
92 symbolizeInlinedCode(StringRef ModuleName,
101 symbolizeData(StringRef ModuleName, object::SectionedAddress ModuleOffset);
108 symbolizeFrame(StringRef ModuleName, object::SectionedAddress ModuleOffset);
116 findSymbol(StringRef ModuleName, StringRef Symbol, uint64_t Offset);
139 getOrCreateModuleInfo(StringRef ModuleName);
175 StringRef ModuleName);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.cpp43 DbiModuleDescriptorBuilder::DbiModuleDescriptorBuilder(StringRef ModuleName, in DbiModuleDescriptorBuilder() argument
46 : MSF(Msf), ModuleName(std::string(ModuleName)) { in DbiModuleDescriptorBuilder()
115 uint32_t M = ModuleName.size() + 1; in calculateSerializedLength()
155 if (auto EC = ModiWriter.writeCString(ModuleName)) in commit()
H A DDbiModuleDescriptor.cpp26 if (auto EC = Reader.readCString(Info.ModuleName)) in initialize()
75 StringRef DbiModuleDescriptor::getModuleName() const { return ModuleName; }
80 uint32_t M = ModuleName.str().size() + 1; in getRecordLength()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DThreadSafeModule.cpp27 std::string ModuleName; in cloneToContext() local
30 ModuleName = M.getModuleIdentifier(); in cloneToContext()
59 TmpM->setModuleIdentifier(ModuleName); in cloneToContext()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp210 std::string HeaderSearch::getPrebuiltModuleFileName(StringRef ModuleName, in getPrebuiltModuleFileName() argument
213 auto i(HSOpts.PrebuiltModuleFiles.find(ModuleName)); in getPrebuiltModuleFileName()
225 if (ModuleName.contains(':')) in getPrebuiltModuleFileName()
229 llvm::sys::path::append(Result, ModuleName.split(':').first + "-" + in getPrebuiltModuleFileName()
230 ModuleName.split(':').second + in getPrebuiltModuleFileName()
233 llvm::sys::path::append(Result, ModuleName + ".pcm"); in getPrebuiltModuleFileName()
244 StringRef ModuleName = Module->Name; in getPrebuiltImplicitModuleFileName() local
252 getCachedModuleFileNameImpl(ModuleName, ModuleMapPath, CachePath); in getPrebuiltImplicitModuleFileName()
259 std::string HeaderSearch::getCachedModuleFileName(StringRef ModuleName, in getCachedModuleFileName() argument
261 return getCachedModuleFileNameImpl(ModuleName, ModuleMapPath, in getCachedModuleFileName()
[all …]
H A DPragma.cpp787 llvm::SmallVectorImpl<IdentifierLoc> &ModuleName) { in LexModuleName() argument
790 if (LexModuleNameComponent(PP, Tok, NameComponent, ModuleName.empty())) in LexModuleName()
792 ModuleName.push_back(NameComponent); in LexModuleName()
806 IdentifierInfo *ModuleName = ModuleNameLoc.getIdentifierInfo(); in HandlePragmaModuleBuild() local
870 TheModuleLoader.createModuleFromSource(Loc, ModuleName->getName(), in HandlePragmaModuleBuild()
1109 llvm::SmallVector<IdentifierLoc, 8> ModuleName; in HandlePragma() local
1110 if (LexModuleName(PP, Tok, ModuleName)) in HandlePragma()
1114 for (auto IIAndLoc : ModuleName) { in HandlePragma()
1707 llvm::SmallVector<IdentifierLoc, 8> ModuleName; in HandlePragma() local
1708 if (LexModuleName(PP, Tok, ModuleName)) in HandlePragma()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp43 void handleVisibleModule(std::string ModuleName) override {} in handleVisibleModule() argument
160 StringRef ModuleName, const std::vector<std::string> &CommandLine, in getModuleDependencies() argument
166 Controller, ModuleName); in getModuleDependencies()
176 TU.ID.ModuleName = std::move(ModuleName); in takeTranslationUnitDeps()
H A DDependencyScanningWorker.cpp114 void visitImport(StringRef ModuleName, StringRef Filename) override { in visitImport() argument
115 if (PrebuiltModuleFiles.insert({ModuleName.str(), Filename.str()}).second) in visitImport()
385 bool DisableFree, std::optional<StringRef> ModuleName = std::nullopt) in DependencyScanningAction() argument
388 DisableFree(DisableFree), ModuleName(ModuleName) {} in DependencyScanningAction()
541 else if (ModuleName) in runInvocation()
542 Action = std::make_unique<GetDependenciesByModuleNameAction>(*ModuleName); in runInvocation()
588 std::optional<StringRef> ModuleName; member in __anona07bc58e0111::DependencyScanningAction
656 StringRef ModuleName) { in computeDependencies() argument
665 DiagPrinter, ModuleName)) in computeDependencies()
735 std::optional<StringRef> ModuleName) { in scanDependencies() argument
[all …]

1234