Home
last modified time | relevance | path

Searched refs:backtrace (Results 1 – 25 of 73) sorted by relevance

123

/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/netbsd-core/
H A DTestNetBSDCore.py115 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 DTestNoReturnModuleEnd.py27 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 DTestAArch64UnwindPAC.py37 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 Dstack_unwinding01.lldbinit3 thread backtrace
5 thread backtrace
7 thread backtrace
/llvm-project-15.0.7/libunwind/test/
H A Dlibunwind_01.pass.cpp21 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 Dsegv_handler_fuchsia.cpp17 backtrace::PrintBacktrace_t /* PrintBacktrace */, in installSignalHandlers()
18 backtrace::SegvBacktrace_t /* SegvBacktrace */) {} in installSignalHandlers()
H A Dsegv_handler.h25 gwp_asan::backtrace::PrintBacktrace_t PrintBacktrace,
26 gwp_asan::backtrace::SegvBacktrace_t SegvBacktrace);
H A Dbacktrace_linux_libc.cpp25 return backtrace(reinterpret_cast<void **>(TraceBuffer), Size); in Backtrace()
60 namespace backtrace { namespace
H A Dbacktrace_fuchsia.cpp14 namespace backtrace { namespace
H A Dbacktrace.h16 namespace backtrace {
H A Dsegv_handler_posix.cpp30 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 Dharness.h90 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 Dcrash-report.test1 # 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 Dcrash-report-crashfile.m20 // 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 Dcrash-report-null.test6 // 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 DQueueItem.h116 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 Dunwind-via-stack-cfi.test19 thread backtrace
20 # CHECK-LABEL: thread backtrace
H A Dunwind-via-stack-win-no-memory-info.yaml7 # RUN: -o "thread backtrace" -b | FileCheck %s
9 # CHECK-LABEL: thread backtrace
H A Dunwind-via-raSearch.test40 thread backtrace
41 # CHECK-LABEL: thread backtrace
H A Dunwind-via-stack-win.test52 thread backtrace
53 # CHECK-LABEL: thread backtrace
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/
H A DTestLinuxCore.py617 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 DDiagnosticOptions.def83 /// 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 DCMakeLists.txt57 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 Dcrashlog-stacktraces.c18 int i, frames = backtrace(callstack, 128); in death_function()
/llvm-project-15.0.7/compiler-rt/test/msan/
H A Dbacktrace.cpp12 int sz = backtrace(buf, sizeof(buf) / sizeof(*buf)); in f()

123