Searched refs:stack_top (Results 1 - 19 of 19) sorted by relevance

/haiku-buildtools/binutils/gas/testsuite/gas/nios2/
H A Dcomplex.s4 ldw r2, 2 + (stack_top-3)(r3)
H A Dcomplex.d12 8: R_NIOS2_S16 stack_top-0x1
H A Dcomplex-r2.d14 8: R_NIOS2_S16 stack_top-0x1
/haiku-buildtools/gcc/libsanitizer/lsan/
H A Dlsan.h19 uptr stack_top = 0, stack_bottom = 0; \
22 stack_top = t->stack_end(); \
26 /* context */ 0, stack_top, stack_bottom, fast); \
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_stacktrace.cc47 static inline bool IsValidFrame(uptr frame, uptr stack_top, uptr stack_bottom) { argument
48 return frame > stack_bottom && frame < stack_top - 2 * sizeof (uhwptr);
55 uptr stack_top,
58 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
60 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
63 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
75 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top, argument
80 if (stack_top < 4096) return; // Sanity check for stack top.
81 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
86 while (IsValidFrame((uptr)frame, stack_top, botto
54 GetCanonicFrame(uptr bp, uptr stack_top, uptr stack_bottom) argument
[all...]
H A Dsanitizer_stacktrace_libcdep.cc55 uptr stack_top, uptr stack_bottom,
74 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
54 Unwind(uptr max_depth, uptr pc, uptr bp, void *context, uptr stack_top, uptr stack_bottom, bool request_fast_unwind) argument
H A Dsanitizer_mac.cc153 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, argument
155 CHECK(stack_top);
173 *stack_top = (uptr)stackaddr;
174 *stack_bottom = *stack_top - stacksize;
255 uptr stack_top, stack_bottom; local
256 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
258 *stk_size = stack_top - stack_bottom;
H A Dsanitizer_stacktrace.h71 void Unwind(uptr max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
75 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
H A Dsanitizer_linux_libcdep.cc73 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, argument
75 CHECK(stack_top);
103 *stack_top = end;
116 *stack_top = (uptr)stackaddr + stacksize;
302 uptr stack_top, stack_bottom; local
303 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
305 *stk_size = stack_top - stack_bottom;
H A Dsanitizer_win.cc67 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, argument
69 CHECK(stack_top);
76 *stack_top = (uptr)mbi.BaseAddress + mbi.RegionSize;
435 uptr stack_top, stack_bottom;
436 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
438 *stk_size = stack_top - stack_bottom;
H A Dsanitizer_unwind_posix_libcdep.cc32 uptr stack_top; member in struct:__sanitizer::__anon2238
H A Dsanitizer_common.h48 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
/haiku-buildtools/gcc/libsanitizer/asan/
H A Dasan_stack.h40 uptr stack_top = t->stack_top();
43 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
H A Dasan_thread.h63 uptr stack_top() { return stack_top_; } function in class:__asan::AsanThread
H A Dasan_thread.cc316 *stack_end = t->stack_top();
H A Dasan_rtl.cc741 uptr top = curr_thread->stack_top();
/haiku-buildtools/gcc/gcc/
H A Dtree-ssa-live.h244 int *stack_top; member in struct:tree_live_info_d
H A Dtree-ssa-live.c1029 live->stack_top = live->work_stack;
1094 *(live->stack_top)++ = pred_bb->index;
1118 while (live->stack_top != live->work_stack)
1120 b = *--(live->stack_top);
H A Dipa-cp.c670 int nnodes, stack_top; variable
675 ipa_topo_info () : order(NULL), stack(NULL), nnodes(0), stack_top(0),
688 gcc_checking_assert (topo->stack_top == 0);
712 topo->stack[topo->stack_top++] = node;
721 if (topo->stack_top)
724 topo->stack_top--;
725 node = topo->stack[topo->stack_top];

Completed in 209 milliseconds