Home
last modified time | relevance | path

Searched refs:stack_end (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/v8/src/heap/base/
Dstack.cc65 const void* stack_end, void* address) { in IterateAsanFakeFrameIfNecessary() argument
78 if (stack_start >= real_stack_frame && real_stack_frame >= stack_end) { in IterateAsanFakeFrameIfNecessary()
99 void* stack_end = __builtin___get_unsafe_stack_ptr(); in IterateUnsafeStackIfNecessary() local
101 CHECK_GT(stack_start, stack_end); in IterateUnsafeStackIfNecessary()
102 CHECK_EQ(0u, reinterpret_cast<uintptr_t>(stack_end) & in IterateUnsafeStackIfNecessary()
106 void** current = reinterpret_cast<void**>(stack_end); in IterateUnsafeStackIfNecessary()
127 intptr_t* stack_end) { in IteratePointersImpl() argument
134 void** current = reinterpret_cast<void**>(stack_end); in IteratePointersImpl()
145 stack->stack_start(), stack_end, address); in IteratePointersImpl()
162 uintptr_t stack_end) const { in IteratePointersUnsafe()
[all …]
Dstack.h44 void IteratePointersUnsafe(StackVisitor* visitor, uintptr_t stack_end) const;
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
D1-5.c161 intptr_t stack_start, stack_end, current_pos; in threaded()
164 stack_end = in threaded()
171 (void *)stack_end, stack_end - stack_start); in threaded()
174 if ((stack_start > current_pos) || (current_pos > stack_end)) { in threaded()
/third_party/node/deps/v8/src/heap/cppgc/
Dmarking-verifier.cc45 Heap::Config::StackState stack_state, uintptr_t stack_end, in Run() argument
57 heap_.stack()->IteratePointersUnsafe(this, stack_end); in Run()
Dheap-base.h198 void SetStackEndOfCurrentGC(uintptr_t stack_end) { in SetStackEndOfCurrentGC() argument
199 stack_end_of_current_gc_ = stack_end; in SetStackEndOfCurrentGC()
/third_party/musl/src/gwp_asan/linux/
Dgwp_asan.c308 size_t stack_end = (size_t)(__pthread_self()->stack); in libc_gwp_asan_unwind_fast() local
315 num_frames, current_frame_addr, stack_end, frame->fp, frame->lr); in libc_gwp_asan_unwind_fast()
324 frame->fp >= stack_end || frame->fp % sizeof(void*) != 0) { in libc_gwp_asan_unwind_fast()
/third_party/musl/porting/linux/user/src/gwp_asan/
Dgwp_asan.c308 size_t stack_end = (size_t)(__pthread_self()->stack); in libc_gwp_asan_unwind_fast() local
315 num_frames, current_frame_addr, stack_end, frame->fp, frame->lr); in libc_gwp_asan_unwind_fast()
324 frame->fp >= stack_end || frame->fp % sizeof(void*) != 0) { in libc_gwp_asan_unwind_fast()
/third_party/rust/crates/libc/src/unix/haiku/
Dnative.rs270 pub stack_end: *mut ::c_void