mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
27 lines
882 B
C++
27 lines
882 B
C++
|
//===-- sanitizer_stacktrace_libcdep.cc -----------------------------------===//
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file is shared between AddressSanitizer and ThreadSanitizer
|
||
|
// run-time libraries.
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "sanitizer_stacktrace.h"
|
||
|
|
||
|
namespace __sanitizer {
|
||
|
|
||
|
void StackTrace::Unwind(uptr max_depth, uptr pc, uptr bp, uptr stack_top,
|
||
|
uptr stack_bottom, bool request_fast_unwind) {
|
||
|
if (!WillUseFastUnwind(request_fast_unwind))
|
||
|
SlowUnwindStack(pc, max_depth);
|
||
|
else
|
||
|
FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
|
||
|
|
||
|
top_frame_bp = size ? bp : 0;
|
||
|
}
|
||
|
|
||
|
} // namespace __sanitizer
|