Home
last modified time | relevance | path

Searched refs:new_sp (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Dstacktrace_arm-inl.inc39 void **new_sp = (void**) old_sp[-1];
42 // pointer new_sp isn't clearly bogus
46 if (new_sp <= old_sp) return nullptr;
48 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return nullptr;
52 if (new_sp == old_sp) return nullptr;
54 if ((new_sp > old_sp)
55 && ((uintptr_t)new_sp - (uintptr_t)old_sp > 1000000)) return nullptr;
57 if ((uintptr_t)new_sp & (sizeof(void *) - 1)) return nullptr;
58 return new_sp;
Dstacktrace_powerpc-inl.inc72 void **new_sp = (void **) *old_sp;
76 // pointer new_sp isn't clearly bogus
80 if (new_sp <= old_sp) return nullptr;
82 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return nullptr;
86 if (new_sp == old_sp) return nullptr;
88 if ((new_sp > old_sp)
89 && ((uintptr_t)new_sp - (uintptr_t)old_sp > 1000000)) return nullptr;
91 if ((uintptr_t)new_sp % kStackAlignment != 0) return nullptr;
128 if (new_sp != nullptr &&
130 StacktracePowerPCGetLR(new_sp) == kernel_sigtramp_rt64_address) {
[all …]
/third_party/libunwind/src/hppa/
DGresume.c37 my_rt_sigreturn (void *new_sp, int in_syscall) in my_rt_sigreturn() argument
46 : "r"(new_sp), "r"(r20), "r"(r25) in my_rt_sigreturn()
/third_party/libunwind/src/ppc32/
DGresume.c37 my_rt_sigreturn (void *new_sp) in my_rt_sigreturn() argument
/third_party/libunwind/src/ppc64/
DGresume.c37 my_rt_sigreturn (void *new_sp) in my_rt_sigreturn() argument
/third_party/node/deps/v8/src/regexp/
Dregexp-interpreter.cc150 void set_sp(int new_sp) { in set_sp() argument
151 DCHECK_LE(new_sp, sp()); in set_sp()
152 data_.resize_no_init(new_sp); in set_sp()
/third_party/node/deps/v8/src/execution/arm64/
Dsimulator-arm64.cc290 intptr_t new_sp = sp() - 2 * kXRegSize; in PushAddress() local
291 uintptr_t* alignment_slot = reinterpret_cast<uintptr_t*>(new_sp + kXRegSize); in PushAddress()
293 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
295 set_sp(new_sp); in PushAddress()
296 return new_sp; in PushAddress()
/third_party/node/deps/v8/src/execution/ppc/
Dsimulator-ppc.cc5544 uintptr_t new_sp = get_register(sp) - sizeof(uintptr_t); in PushAddress() local
5545 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
5547 set_register(sp, new_sp); in PushAddress()
5548 return new_sp; in PushAddress()
/third_party/node/deps/v8/src/execution/loong64/
Dsimulator-loong64.cc5369 int64_t new_sp = get_register(sp) - sizeof(uintptr_t); in PushAddress() local
5370 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
5372 set_register(sp, new_sp); in PushAddress()
5373 return new_sp; in PushAddress()
/third_party/node/deps/v8/src/execution/arm/
Dsimulator-arm.cc6315 int new_sp = get_register(sp) - sizeof(uintptr_t); in PushAddress() local
6316 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
6318 set_register(sp, new_sp); in PushAddress()
6319 return new_sp; in PushAddress()
/third_party/node/deps/v8/src/execution/riscv64/
Dsimulator-riscv64.cc7121 int64_t new_sp = get_register(sp) - sizeof(uintptr_t); in PushAddress() local
7122 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
7124 set_register(sp, new_sp); in PushAddress()
7125 return new_sp; in PushAddress()
/third_party/node/deps/v8/src/execution/mips/
Dsimulator-mips.cc7102 int new_sp = get_register(sp) - sizeof(uintptr_t); in PushAddress() local
7103 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
7105 set_register(sp, new_sp); in PushAddress()
7106 return new_sp; in PushAddress()
/third_party/node/deps/v8/src/execution/mips64/
Dsimulator-mips64.cc7536 int64_t new_sp = get_register(sp) - sizeof(uintptr_t); in PushAddress() local
7537 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
7539 set_register(sp, new_sp); in PushAddress()
7540 return new_sp; in PushAddress()
/third_party/node/deps/v8/src/execution/s390/
Dsimulator-s390.cc2732 uintptr_t new_sp = get_register(sp) - sizeof(uintptr_t); in PushAddress() local
2733 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress()
2735 set_register(sp, new_sp); in PushAddress()
2736 return new_sp; in PushAddress()