Searched refs:uhwptr (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cpp48 static inline uhwptr *GetCanonicFrame(uptr bp,
54 uhwptr *bp_prev = (uhwptr *)bp;
66 return (uhwptr*)bp;
78 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
90 uhwptr *caller_frame = (uhwptr*)frame[0];
92 !IsAligned((uptr)caller_frame, sizeof(uhwptr)))
94 uhwptr pc1 = caller_frame[2];
96 uhwptr pc
[all...]
H A Dsanitizer_stacktrace_sparc.cpp55 while (next_bp != bp && IsAligned(next_bp, sizeof(uhwptr)) && i++ < 8) {
57 next_bp = (uptr)((uhwptr *)next_bp)[14] + STACK_BIAS;
65 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) &&
67 uhwptr pc1 = ((uhwptr *)bp)[15];
79 bp = (uptr)((uhwptr *)bp)[14] + STACK_BIAS;
H A Dsanitizer_stacktrace.h148 return frame > stack_bottom && frame < stack_top - 2 * sizeof (uhwptr);
H A Dsanitizer_internal_defs.h145 typedef unsigned long long uhwptr; typedef in namespace:__sanitizer
147 typedef uptr uhwptr; typedef in namespace:__sanitizer

Completed in 114 milliseconds