Home
last modified time | relevance | path

Searched refs:DebugFileDirectory (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp689 cl::list<std::string> DebugFileDirectory( in run() local
809 BIDFetcher = std::make_unique<DebuginfodFetcher>(DebugFileDirectory); in run()
811 BIDFetcher = std::make_unique<object::BuildIDFetcher>(DebugFileDirectory); in run()
828 if (ObjectFilenames.empty() && !Debuginfod && DebugFileDirectory.empty()) { in run()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h67 std::vector<std::string> DebugFileDirectory; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp138 static cl::list<std::string> DebugFileDirectory( variable
980 if (!BinaryFilename.empty() && (DebugInfod || !DebugFileDirectory.empty())) in mergeInstrProfile()
984 !DebugFileDirectory.empty()) { in mergeInstrProfile()
1011 BIDFetcher = std::make_unique<DebuginfodFetcher>(DebugFileDirectory); in mergeInstrProfile()
1015 } else if (!DebugFileDirectory.empty()) { in mergeInstrProfile()
1016 BIDFetcher = std::make_unique<object::BuildIDFetcher>(DebugFileDirectory); in mergeInstrProfile()
/freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp499 Opts.DebugFileDirectory = Args.getAllArgValues(OPT_debug_file_directory_EQ); in llvm_symbolizer_main()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp49 BIDFetcher(std::make_unique<BuildIDFetcher>(Opts.DebugFileDirectory)) {} in LLVMSymbolizer()