| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/netbsd-core/ |
| H A D | TestNetBSDCore.py | 115 def check_backtrace(self, thread, filename, backtrace): argument 116 self.assertGreaterEqual(thread.GetNumFrames(), len(backtrace)) 118 for i in range(len(backtrace)): 121 if not backtrace[i].startswith('_'): 127 backtrace[i][0])) 156 backtrace = ["bar", "foo", "main"] 157 self.check_backtrace(thread, filename, backtrace) 180 backtrace = ["bar", "foo", "lwp_main"] 181 self.check_backtrace(thread, filename, backtrace) 210 backtrace = ["bar", "foo", "lwp_main"] [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/module-end/ |
| H A D | TestNoReturnModuleEnd.py | 27 backtrace = [ 32 self.assertEqual(thread.GetNumFrames(), len(backtrace)) 33 for i in range(len(backtrace)): 38 self.assertEqual(symbol.GetName(), backtrace[i][0]) 40 self.assertEquals(function_start + backtrace[i][1], frame.GetPC())
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/unwind/aarch64_unwind_pac/ |
| H A D | TestAArch64UnwindPAC.py | 37 backtrace = ["func_c", "func_b", "func_a", "main", "__libc_start_main", "_start"] 38 self.assertEqual(thread.GetNumFrames(), len(backtrace)) 42 self.assertEqual(frame.GetFunctionName(), backtrace[frame_idx]) 46 line_number("main.c", "Frame " + backtrace[frame_idx]))
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/NativePDB/Inputs/ |
| H A D | stack_unwinding01.lldbinit | 3 thread backtrace 5 thread backtrace 7 thread backtrace
|
| /llvm-project-15.0.7/libunwind/test/ |
| H A D | libunwind_01.pass.cpp | 21 void backtrace(int lower_bound) { in backtrace() function 51 backtrace(i); in test1() 57 backtrace(i); in test2() 64 backtrace(i); in test3()
|
| /llvm-project-15.0.7/compiler-rt/lib/gwp_asan/optional/ |
| H A D | segv_handler_fuchsia.cpp | 17 backtrace::PrintBacktrace_t /* PrintBacktrace */, in installSignalHandlers() 18 backtrace::SegvBacktrace_t /* SegvBacktrace */) {} in installSignalHandlers()
|
| H A D | segv_handler.h | 25 gwp_asan::backtrace::PrintBacktrace_t PrintBacktrace, 26 gwp_asan::backtrace::SegvBacktrace_t SegvBacktrace);
|
| H A D | backtrace_linux_libc.cpp | 25 return backtrace(reinterpret_cast<void **>(TraceBuffer), Size); in Backtrace() 60 namespace backtrace { namespace
|
| H A D | backtrace_fuchsia.cpp | 14 namespace backtrace { namespace
|
| H A D | backtrace.h | 16 namespace backtrace {
|
| H A D | segv_handler_posix.cpp | 30 using gwp_asan::backtrace::PrintBacktrace_t; 31 using gwp_asan::backtrace::SegvBacktrace_t;
|
| /llvm-project-15.0.7/compiler-rt/lib/gwp_asan/tests/ |
| H A D | harness.h | 90 Opts.Backtrace = gwp_asan::backtrace::getBacktraceFunction(); in SetUp() 96 gwp_asan::backtrace::getPrintBacktraceFunction(), in SetUp() 97 gwp_asan::backtrace::getSegvBacktraceFunction()); in SetUp()
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | crash-report.test | 1 # REQUIRES: backtrace 9 # CHECK: PLEASE submit a bug report to {{.*}} and include the crash backtrace
|
| /llvm-project-15.0.7/clang/test/Driver/ |
| H A D | crash-report-crashfile.m | 20 // CRASH_ENV: PLEASE submit a bug report to {{.*}} and include the crash backtrace, preprocessed so… 26 // CRASH_ENV-NEXT: note: diagnostic msg: Crash backtrace is located in 34 // CRASH_FLAG-NEXT: note: diagnostic msg: Crash backtrace is located in
|
| H A D | crash-report-null.test | 6 // CHECK: PLEASE submit a bug report to {{.*}} and include the crash backtrace, preprocessed source…
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | QueueItem.h | 116 void SetEnqueueingBacktrace(std::vector<lldb::addr_t> backtrace) { in SetEnqueueingBacktrace() argument 117 m_backtrace = backtrace; in SetEnqueueingBacktrace()
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/Breakpad/ |
| H A D | unwind-via-stack-cfi.test | 19 thread backtrace 20 # CHECK-LABEL: thread backtrace
|
| H A D | unwind-via-stack-win-no-memory-info.yaml | 7 # RUN: -o "thread backtrace" -b | FileCheck %s 9 # CHECK-LABEL: thread backtrace
|
| H A D | unwind-via-raSearch.test | 40 thread backtrace 41 # CHECK-LABEL: thread backtrace
|
| H A D | unwind-via-stack-win.test | 52 thread backtrace 53 # CHECK-LABEL: thread backtrace
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/ |
| H A D | TestLinuxCore.py | 617 backtrace = ["bar", "foo", "_start"] 618 self.assertEqual(thread.GetNumFrames(), len(backtrace)) 619 for i in range(len(backtrace)): 622 self.assertEqual(frame.GetFunctionName(), backtrace[i]) 624 line_number("main.c", "Frame " + backtrace[i])) 627 backtrace[i][0]))
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | DiagnosticOptions.def | 83 /// Limit depth of macro expansion backtrace. 85 /// Limit depth of instantiation backtrace. 87 /// Limit depth of constexpr backtrace.
|
| /llvm-project-15.0.7/compiler-rt/lib/gwp_asan/ |
| H A D | CMakeLists.txt | 57 optional/backtrace.h 93 # As above, build the pre-implemented optional backtrace support libraries.
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Darwin/ |
| H A D | crashlog-stacktraces.c | 18 int i, frames = backtrace(callstack, 128); in death_function()
|
| /llvm-project-15.0.7/compiler-rt/test/msan/ |
| H A D | backtrace.cpp | 12 int sz = backtrace(buf, sizeof(buf) / sizeof(*buf)); in f()
|