/third_party/mesa3d/src/util/ |
D | u_debug_stack_android.cpp | 50 debug_backtrace_capture(debug_stack_frame *backtrace, in debug_backtrace_capture() argument 63 backtrace[i].procname = NULL; in debug_backtrace_capture() 75 backtrace[i].procname = intern_symbol(frame->func_name.c_str()); in debug_backtrace_capture() 76 backtrace[i].start_ip = frame->pc; in debug_backtrace_capture() 77 backtrace[i].off = frame->func_offset; in debug_backtrace_capture() 78 backtrace[i].map = intern_symbol(frame->map.Name().c_str()); in debug_backtrace_capture() 79 backtrace[i].map_off = frame->rel_pc; in debug_backtrace_capture() 81 backtrace[i].procname = NULL; in debug_backtrace_capture() 91 debug_backtrace_dump(const debug_stack_frame *backtrace, in debug_backtrace_dump() argument 95 if (backtrace[i].procname) in debug_backtrace_dump() [all …]
|
D | u_debug_stack.c | 89 debug_backtrace_capture(struct debug_stack_frame *backtrace, in debug_backtrace_capture() argument 112 backtrace[i].start_ip = pip.start_ip; in debug_backtrace_capture() 113 backtrace[i].off = ip - pip.start_ip; in debug_backtrace_capture() 114 backtrace[i].procname = symbol_name_cached(&cursor, &pip); in debug_backtrace_capture() 120 backtrace[i].start_ip = 0; in debug_backtrace_capture() 149 debug_backtrace_dump(const struct debug_stack_frame *backtrace, in debug_backtrace_dump() argument 156 if (!backtrace[i].start_ip) in debug_backtrace_dump() 158 filename = frame_info(&backtrace[i], &offset); in debug_backtrace_dump() 160 backtrace[i].procname, backtrace[i].off, in debug_backtrace_dump() 161 frame_ip(&backtrace[i])); in debug_backtrace_dump() [all …]
|
D | u_debug_stack.h | 75 debug_backtrace_capture(struct debug_stack_frame *backtrace, 80 debug_backtrace_dump(const struct debug_stack_frame *backtrace, 85 const struct debug_stack_frame *backtrace,
|
/third_party/elfutils/tests/ |
D | backtrace-subr.sh | 115 testfiles backtrace.$arch.{exec,core} 116 tempfiles backtrace.$arch.{bt,err} 117 echo ./backtrace ./backtrace.$arch.{exec,core} 118 …testrun ${abs_builddir}/backtrace -e ./backtrace.$arch.exec --core=./backtrace.$arch.core 1>backtr… 119 cat backtrace.$arch.{bt,err} 120 check_unsupported backtrace.$arch.err backtrace.$arch.core 121 check_all backtrace.$arch.{bt,err} backtrace.$arch.core 122 check_backtracegen backtrace.$arch.bt backtrace.$arch.core 132 …(set +ex; testrun ${abs_builddir}/backtrace --backtrace-exec=${abs_builddir}/$child 1>$child.bt 2>… 197 …(set +ex; testrun ${abs_builddir}/backtrace -e ${abs_builddir}/$child --core=$core 1>$core.bt 2>$c… [all …]
|
D | Makefile.am | 51 varlocs backtrace backtrace-child \ program 52 backtrace-data backtrace-dwarf debuglink debugaltlink \ 72 check_PROGRAMS += backtrace-child-biarch 76 backtrace-child-biarch$(EXEEXT): backtrace-child.c 157 run-backtrace-native.sh run-backtrace-data.sh run-backtrace-dwarf.sh \ 158 run-backtrace-native-biarch.sh run-backtrace-native-core.sh \ 159 run-backtrace-native-core-biarch.sh run-backtrace-core-x86_64.sh \ 160 run-backtrace-fp-core-x86_64.sh \ 161 run-backtrace-fp-core-aarch64.sh \ 162 run-backtrace-fp-core-ppc64le.sh \ [all …]
|
D | .gitignore | 24 /backtrace 25 /backtrace-child 26 /backtrace-child-biarch 27 /backtrace-data 28 /backtrace-dwarf 30 /core-dump-backtrace.lock
|
D | ChangeLog | 26 * backtrace-subr.sh: Use grep -E instead of egrep, use grep -F 403 * backtrace.c (callback_verify): Check for pthread_kill as first 766 * run-backtrace-core-aarch64.sh: Likewise. 767 * run-backtrace-core-i386.sh: Likewise. 768 * run-backtrace-core-ppc.sh: Likewise. 769 * run-backtrace-core-s390.sh: Likewise. 770 * run-backtrace-core-s390x.sh: Likewise. 771 * run-backtrace-core-sparc.sh: Likewise. 772 * run-backtrace-core-x32.sh: Likewise. 773 * run-backtrace-core-x86_64.sh: Likewise. [all …]
|
D | run-backtrace-native.sh | 18 . $srcdir/backtrace-subr.sh 20 check_native backtrace-child
|
D | run-backtrace-native-core.sh | 18 . $srcdir/backtrace-subr.sh 20 check_native_core backtrace-child
|
D | run-backtrace-native-biarch.sh | 23 . $srcdir/backtrace-subr.sh 25 check_native backtrace-child-biarch
|
D | run-backtrace-native-core-biarch.sh | 23 . $srcdir/backtrace-subr.sh 25 check_native_core backtrace-child-biarch
|
D | run-backtrace-dwarf.sh | 18 . $srcdir/backtrace-subr.sh 27 (set +ex; testrun ${abs_builddir}/backtrace-dwarf 1>dwarf.bt 2>dwarf.err; true)
|
D | run-backtrace-data.sh | 18 . $srcdir/backtrace-subr.sh 26 testrun ${abs_builddir}/backtrace-data 1>data.bt 2>data.err;
|
/third_party/mesa3d/src/util/tests/ |
D | u_debug_stack_test.cpp | 33 struct debug_stack_frame backtrace[16]; in func_a() local 36 debug_backtrace_capture(backtrace, 0, 16); in func_a() 37 debug_backtrace_dump(backtrace, 16); in func_a() 43 struct debug_stack_frame backtrace[16]; in func_b() local 48 debug_backtrace_capture(backtrace, 0, 16); in func_b() 49 debug_backtrace_dump(backtrace, 16); in func_b() 60 struct debug_stack_frame backtrace[16]; in TEST() local 66 debug_backtrace_capture(backtrace, 0, 16); in TEST() 67 debug_backtrace_print(stderr, backtrace, 16); in TEST() 70 debug_backtrace_capture(backtrace, 0, 16); in TEST() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactorDebugInfo.cpp | 139 auto const &backtrace = getCallerBacktrace(); in EmitLocation() local 140 syncScope(backtrace); in EmitLocation() 141 builder->SetCurrentDebugLocation(getLocation(backtrace, backtrace.size() - 1)); in EmitLocation() 142 emitPrintLocation(backtrace); in EmitLocation() 153 void DebugInfo::syncScope(Backtrace const &backtrace) in syncScope() argument 170 if(backtrace.size() < diScope.size()) in syncScope() 172 shrink(backtrace.size()); in syncScope() 179 auto const &newLocation = backtrace[i]; in syncScope() 205 while(backtrace.size() > diScope.size()) in syncScope() 208 auto location = backtrace[i]; in syncScope() [all …]
|
D | ReactorDebugInfo.cpp | 122 void emitPrintLocation(const Backtrace &backtrace) in emitPrintLocation() argument 126 if(backtrace.size() == 0) in emitPrintLocation() 130 Location currLocation = backtrace[backtrace.size() - 1]; in emitPrintLocation()
|
/third_party/libunwind/libunwind/doc/ |
D | unw_backtrace.tex | 8 …rger-Tang}{Programming Library}{unw\_backtrace}unw\_backtrace -- return backtrace for the calling … 19 \Type{int} \Func{backtrace}(\Type{void~**}\Var{buffer}, \Type{int}~\Var{size});\\ 23 \Func{unw\_backtrace}() is a convenient routine for obtaining the backtrace for 28 called \Func{backtrace}(). The prototype for this function is usually obtained 30 \Func{backtrace}() is not provided by \Prog{libunwind}. \Prog{libunwind} weakly 31 aliases \Func{backtrace}() to \Func{unw\_backtrace}(), so when a program 32 calling \Func{backtrace}() is linked against \Prog{libunwind}, it may end up
|
/third_party/skia/third_party/externals/abseil-cpp/patches/ |
D | 0003-delete-static-initializer-in-stacktrace.patch | 7 // As such, we suppress usage of backtrace during this early stage of execution. 13 - // Force the first backtrace to happen early to get the one-time shared lib 15 - // to use backtrace from a signal handler if we crash somewhere later. 16 - backtrace(unused_stack, 1);
|
/third_party/rust/crates/bitflags/tests/compile-fail/impls/ |
D | eq.stderr.beta | 13 …ates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) 27 … originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) 41 …ates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) 55 … originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
/third_party/musl/libc-test/src/functionalext/backtrace/ |
D | unittest_backtrace.c | 65 EXPECT_EQ("backtrace_1001", ZERO_RESULT, backtrace(frames, ZERO_LENGTH)); in backtrace_1001() 71 return backtrace(frames, VALID_LENGTH); in backtrace_1002_supplement() 82 int bt_size = backtrace(bt_buffer, BT_BUF_SIZE); in backtrace_1003()
|
/third_party/rust/crates/proc-macro-error/tests/ui/ |
D | proc_macro_hack.stderr | 7 …= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more … 15 …= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more … 26 …= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for mor…
|
/third_party/skia/third_party/externals/dawn/src/tests/ |
D | DawnNativeTest.cpp | 25 const auto& backtrace = error->GetBacktrace(); in AddFatalDawnFailure() local 27 backtrace.at(0).file, backtrace.at(0).line, in AddFatalDawnFailure()
|
/third_party/skia/third_party/externals/swiftshader/third_party/libbacktrace/ |
D | CMakeLists.txt | 17 src/backtrace.c 18 src/backtrace.h 30 src/backtrace-supported.h
|
/third_party/node/deps/v8/src/base/debug/ |
D | stack_trace_fuchsia.cc | 29 std::string backtrace = ToString(); in Print() local 30 OS::Print("%s\n", backtrace.c_str()); in Print()
|
/third_party/musl/third_party/openbsd/ |
D | .upstream_base_commits | 4 gnu/lib/libexecinfo/backtrace.c openbsd gnu/lib/libexecinfo/backtrace.c 771fbea0148a7fe458cf2c657ed…
|