HomeSort by: relevance | last modified time | path
    Searched refs:stack_top (Results 1 - 25 of 80) sorted by relevancy

1 2 3 4

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stacktrace.cc 51 uptr stack_top,
54 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
56 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
59 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
71 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top,
77 if (stack_top < 4096) return; // Sanity check for stack top.
78 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
83 while (IsValidFrame((uptr)frame, stack_top, bottom) &&
91 if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) ||
109 frame = GetCanonicFrame((uptr)frame[0], stack_top, bottom)
    [all...]
sanitizer_stacktrace_sparc.cc 25 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top,
31 if (stack_top < 4096) return; // Sanity check for stack top.
39 while (IsValidFrame((uptr)frame, stack_top, bottom) &&
sanitizer_stacktrace.h 100 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
109 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
122 static inline bool IsValidFrame(uptr frame, uptr stack_top, uptr stack_bottom) {
123 return frame > stack_bottom && frame < stack_top - 2 * sizeof (uhwptr);
sanitizer_rtems.cc 76 uptr *stack_top, uptr *stack_bottom) {
86 *stack_top = *stack_bottom + size;
91 uptr stack_top, stack_bottom; local
92 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
94 *stk_size = stack_top - stack_bottom;
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stacktrace.cpp 76 uptr stack_top,
78 CHECK_GT(stack_top, stack_bottom);
80 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
82 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
85 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
97 void BufferedStackTrace::UnwindFast(uptr pc, uptr bp, uptr stack_top,
99 // TODO(yln): add arg sanity check for stack_top/stack_bottom
104 if (stack_top < 4096) return; // Sanity check for stack top.
105 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
110 while (IsValidFrame((uptr)frame, stack_top, bottom) &
    [all...]
sanitizer_stacktrace_sparc.cpp 28 void BufferedStackTrace::UnwindFast(uptr pc, uptr bp, uptr stack_top,
30 // TODO(yln): add arg sanity check for stack_top/stack_bottom
35 if (stack_top < 4096) return; // Sanity check for stack top.
59 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) &&
sanitizer_stacktrace.h 133 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
147 void UnwindFast(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
170 static inline bool IsValidFrame(uptr frame, uptr stack_top, uptr stack_bottom) {
171 return frame > stack_bottom && frame < stack_top - kFrameSize;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_stacktrace.cpp 75 uptr stack_top,
77 CHECK_GT(stack_top, stack_bottom);
79 if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
81 if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
84 if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
96 void BufferedStackTrace::UnwindFast(uptr pc, uptr bp, uptr stack_top,
98 // TODO(yln): add arg sanity check for stack_top/stack_bottom
103 if (stack_top < 4096) return; // Sanity check for stack top.
104 uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
109 while (IsValidFrame((uptr)frame, stack_top, bottom) &
    [all...]
sanitizer_stacktrace_sparc.cpp 28 void BufferedStackTrace::UnwindFast(uptr pc, uptr bp, uptr stack_top,
30 // TODO(yln): add arg sanity check for stack_top/stack_bottom
41 if (stack_top < 4096) return; // Sanity check for stack top.
65 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) &&
sanitizer_stacktrace.h 134 void Unwind(u32 max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
148 void UnwindFast(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
171 static inline bool IsValidFrame(uptr frame, uptr stack_top, uptr stack_bottom) {
172 return frame > stack_bottom && frame < stack_top - kFrameSize;
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan.h 51 uptr stack_top = 0, stack_bottom = 0; local
54 stack_top = t->stack_end();
57 if (!SANITIZER_MIPS || IsValidFrame(bp, stack_top, stack_bottom)) {
58 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan.cpp 38 uptr stack_top = 0, stack_bottom = 0;
40 stack_top = t->stack_end();
43 if (SANITIZER_MIPS && !IsValidFrame(bp, stack_top, stack_bottom))
46 Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_stack.h 43 uptr stack_top = t->stack_top();
46 if (!SANITIZER_MIPS || IsValidFrame(bp, stack_top, stack_bottom)) {
47 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom,
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan.cpp 37 uptr stack_top = 0, stack_bottom = 0;
39 stack_top = t->stack_end();
42 if (SANITIZER_MIPS && !IsValidFrame(bp, stack_top, stack_bottom))
45 Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_stack.cpp 69 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(),
75 !IsValidFrame(bp, t->stack_top(), t->stack_bottom()))
77 Unwind(max_depth, pc, bp, context, t ? t->stack_top() : 0,
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_stack.cpp 69 Unwind(max_depth, pc, bp, nullptr, t->stack_top(), t->stack_bottom(),
75 !IsValidFrame(bp, t->stack_top(), t->stack_bottom()))
77 Unwind(max_depth, pc, bp, context, t ? t->stack_top() : 0,
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_fuchsia.cpp 60 uptr stack_bottom, stack_top; member in struct:__hwasan::Thread::InitState
82 .stack_top =
99 .stack_top = stack_bottom + stack_size,
108 CHECK_NE(state->stack_top, 0);
110 stack_top_ = state->stack_top;
hwasan_thread.h 44 uptr stack_top() { return stack_top_; } function in class:__hwasan::Thread
46 uptr stack_size() { return stack_top() - stack_bottom(); }
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_fuchsia.cpp 57 uptr stack_bottom, stack_top; member in struct:__hwasan::Thread::InitState
79 .stack_top =
96 .stack_top = stack_bottom + stack_size,
105 CHECK_NE(state->stack_top, 0);
107 stack_top_ = state->stack_top;
hwasan_thread.h 44 uptr stack_top() { return stack_top_; } function in class:__hwasan::Thread
46 uptr stack_size() { return stack_top() - stack_bottom(); }
hwasan_thread.cpp 114 (void *)this, stack_bottom(), stack_top(),
115 stack_top() - stack_bottom(), tls_begin(), tls_end());
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_thread.h 31 uptr stack_top() { return stack_top_; } function in class:__msan::MsanThread
  /src/usr.sbin/acpitools/aml/
aml_name.c 67 struct aml_local_stack *stack_top = NULL; variable in typeref:struct:aml_local_stack
428 stack->next = stack_top;
429 stack_top = stack;
437 result = stack_top;
438 stack_top = result->next;
460 if (stack_top == NULL)
462 return (&stack_top->localvalue[idx]);
470 stack = stack_top;
484 result->chain = stack_top->temporary;
485 stack_top->temporary = result
    [all...]
  /src/external/mpl/dhcp/dist/keama/
json.c 46 cfile->stack_top = 0;
120 cfile->stack_top--;
185 cfile->stack_top--;
keama.c 174 if (cfile->stack_top > 0) {
188 if (pc->stack_top + 2 >= pc->stack_size) {
197 pc->stack_top++;
198 pc->stack[pc->stack_top] = elem;

Completed in 31 milliseconds

1 2 3 4