Home
last modified time | relevance | path

Searched full:symbolize (Results 1 – 25 of 149) sorted by relevance

123456

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
Dxray-extract.cpp44 static cl::opt<bool> ExtractSymbolize("symbolize", cl::value_desc("symbolize"),
46 cl::desc("symbolize functions"),
49 cl::desc("alias for -symbolize"),
90 symbolize::LLVMSymbolizer::Options Opts( in __anon6df76ed40202()
91 symbolize::FunctionNameKind::LinkageName, true, true, false, ""); in __anon6df76ed40202()
92 symbolize::LLVMSymbolizer Symbolizer(Opts); in __anon6df76ed40202()
Dxray-converter.cpp17 #include "llvm/DebugInfo/Symbolize/Symbolize.h"
58 ConvertSymbolize("symbolize",
59 cl::desc("symbolize function ids from the input log"),
62 cl::desc("Alias for -symbolize"),
92 Symbolize ? FuncIdHelper.SymbolOrNumber(R.FuncId) in exportAsYAML()
238 uint32_t TId, uint32_t PId, bool Symbolize, in writeTraceViewerRecord() argument
248 (Symbolize ? FuncIdHelper.SymbolOrNumber(FuncId) in writeTraceViewerRecord()
256 (Symbolize ? FuncIdHelper.SymbolOrNumber(FuncId) in writeTraceViewerRecord()
304 writeTraceViewerRecord(Version, OS, R.FuncId, R.TId, R.PId, Symbolize, in exportAsChromeTraceEventFormat()
320 Symbolize, FuncIdHelper, EventTimestampUs, in exportAsChromeTraceEventFormat()
[all …]
Dxray-converter.h26 bool Symbolize; variable
29 TraceConverter(FuncIdConversionHelper &FuncIdHelper, bool Symbolize = false)
30 : FuncIdHelper(FuncIdHelper), Symbolize(Symbolize) {} in FuncIdHelper()
Dfunc-id-helper.h17 #include "llvm/DebugInfo/Symbolize/Symbolize.h"
30 symbolize::LLVMSymbolizer &Symbolizer;
36 symbolize::LLVMSymbolizer &Symbolizer, in FuncIdConversionHelper()
/external/syzkaller/pkg/symbolizer/
Dsymbolizer_test.go150 // First, symbolize all PCs one-by-one.
156 frames, err := symbolize(input, scanner, []uint64{addr.pc})
167 // Symbolize PCs in 2 groups.
169 frames, err := symbolize(input, scanner, allPCs[:i])
173 frames2, err := symbolize(input, scanner, allPCs[i:])
183 // Symbolize a huge pile of PCs (test for pipe overflows).
188 frames, err := symbolize(input, scanner, lots)
/external/compiler-rt/lib/asan/scripts/
Dasan_symbolize.py51 def symbolize(self, addr, binary, offset): member in Symbolizer
52 """Symbolize the given address (pair of binary and offset).
95 def symbolize(self, addr, binary, offset): member in LLVMSymbolizer
96 """Overrides Symbolizer.symbolize."""
153 def symbolize(self, addr, binary, offset): member in Addr2LineSymbolizer
154 """Overrides Symbolizer.symbolize."""
221 def symbolize(self, addr, binary, offset): member in DarwinSymbolizer
222 """Overrides Symbolizer.symbolize."""
249 def symbolize(self, addr, binary, offset): member in ChainSymbolizer
250 """Overrides Symbolizer.symbolize."""
[all …]
/external/compiler-rt/test/asan/TestCases/Posix/
Dasan-symbolize-sanity-test.cc9 // RUN: %env_asan_opts=symbolize=0 not %run %t 2>&1 | %asan_symbolize | FileCheck %s
40 // CHECK: #0 {{.*}} in inc2 {{.*}}asan-symbolize-sanity-test.cc:[[@LINE+21]] in main()
41 // CHECK: #1 {{.*}} in main {{.*}}asan-symbolize-sanity-test.cc:[[@LINE-4]] in main()
44 // CHECK: #{{.*}} in main {{.*}}asan-symbolize-sanity-test.cc:[[@LINE-9]] in main()
/external/libchrome/libchrome_tools/patch/
Dsymbolize.patch2 +++ b/base/third_party/symbolize/symbolize.h
18 +#error "symbolize support was removed from libchrome"
/external/syzkaller/tools/syz-symbolize/
Dsymbolize.go26 fmt.Fprintf(os.Stderr, "usage: syz-symbolize [flags] kernel_log_file\n")
49 if err := reporter.Symbolize(rep); err != nil {
50 fmt.Fprintf(os.Stderr, "failed to symbolize report: %v\n", err)
/external/llvm/lib/DebugInfo/Symbolize/
DDIPrinter.cpp1 //===- lib/DebugInfo/Symbolize/DIPrinter.cpp ------------------------------===//
15 #include "llvm/DebugInfo/Symbolize/DIPrinter.h"
31 namespace symbolize { namespace
110 } // end namespace symbolize
DCMakeLists.txt4 Symbolize.cpp
7 ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/Symbolize
DSymbolizableObjectFile.h16 #include "llvm/DebugInfo/Symbolize/SymbolizableModule.h"
24 namespace symbolize {
79 } // namespace symbolize
/external/llvm/include/llvm/DebugInfo/Symbolize/
DSymbolize.h1 //===-- Symbolize.h --------------------------------------------- C++ -----===//
16 #include "llvm/DebugInfo/Symbolize/SymbolizableModule.h"
25 namespace symbolize {
108 } // namespace symbolize
/external/llvm/tools/sanstats/
Dsanstats.cpp15 #include "llvm/DebugInfo/Symbolize/Symbolize.h"
61 symbolize::LLVMSymbolizer::Options SymbolizerOptions; in ReadModule()
64 symbolize::LLVMSymbolizer Symbolizer(SymbolizerOptions); in ReadModule()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/Symbolize/
DDIPrinter.cpp1 //===- lib/DebugInfo/Symbolize/DIPrinter.cpp ------------------------------===//
15 #include "llvm/DebugInfo/Symbolize/DIPrinter.h"
31 namespace symbolize { namespace
120 } // end namespace symbolize
DCMakeLists.txt4 Symbolize.cpp
7 ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/Symbolize
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/Symbolize/
DSymbolize.h1 //===- Symbolize.h ----------------------------------------------*- C++ -*-===//
17 #include "llvm/DebugInfo/Symbolize/SymbolizableModule.h"
30 namespace symbolize {
120 } // end namespace symbolize
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-symbolizer/
Dllvm-symbolizer.cpp14 // to symbolize stack traces in their error reports.
19 #include "llvm/DebugInfo/Symbolize/DIPrinter.h"
20 #include "llvm/DebugInfo/Symbolize/Symbolize.h"
33 using namespace symbolize;
/external/llvm/tools/llvm-symbolizer/
Dllvm-symbolizer.cpp14 // to symbolize stack traces in their error reports.
19 #include "llvm/DebugInfo/Symbolize/DIPrinter.h"
20 #include "llvm/DebugInfo/Symbolize/Symbolize.h"
35 using namespace symbolize;
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_flags_test.cc133 EXPECT_TRUE(cf.symbolize); in TEST()
136 cf.symbolize = false; in TEST()
141 parser.ParseString("symbolize=1:coverage_direct=false log_path='path/two'"); in TEST()
142 EXPECT_TRUE(cf.symbolize); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/sanstats/
Dsanstats.cpp15 #include "llvm/DebugInfo/Symbolize/Symbolize.h"
61 symbolize::LLVMSymbolizer::Options SymbolizerOptions; in ReadModule()
64 symbolize::LLVMSymbolizer Symbolizer(SymbolizerOptions); in ReadModule()
/external/skia/infra/bots/recipe_modules/flavor/examples/full.expected/
DTest-Mac10.13-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-ASAN.json148 "ASAN_OPTIONS": "symbolize=1",
151 "LSAN_OPTIONS": "symbolize=1 print_suppressions=1",
153 "UBSAN_OPTIONS": "symbolize=1 print_stacktrace=1"
DPerf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN.json153 "ASAN_OPTIONS": "symbolize=1 detect_leaks=1",
156 "LSAN_OPTIONS": "symbolize=1 print_suppressions=1",
158 "UBSAN_OPTIONS": "symbolize=1 print_stacktrace=1"
/external/skqp/infra/bots/recipe_modules/flavor/examples/full.expected/
DPerf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN.json153 "ASAN_OPTIONS": "symbolize=1 detect_leaks=1",
156 "LSAN_OPTIONS": "symbolize=1 print_suppressions=1",
158 "UBSAN_OPTIONS": "symbolize=1 print_stacktrace=1"
DTest-Mac-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-ASAN.json148 "ASAN_OPTIONS": "symbolize=1",
151 "LSAN_OPTIONS": "symbolize=1 print_suppressions=1",
153 "UBSAN_OPTIONS": "symbolize=1 print_stacktrace=1"

123456