/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
D | stacktrace_arm-inl.inc | 39 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;
|
D | stacktrace_powerpc-inl.inc | 72 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/ |
D | Gresume.c | 37 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/ |
D | Gresume.c | 37 my_rt_sigreturn (void *new_sp) in my_rt_sigreturn() argument
|
/third_party/libunwind/src/ppc64/ |
D | Gresume.c | 37 my_rt_sigreturn (void *new_sp) in my_rt_sigreturn() argument
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-interpreter.cc | 150 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/ |
D | simulator-arm64.cc | 290 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/ |
D | simulator-ppc.cc | 5544 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/ |
D | simulator-loong64.cc | 5369 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/ |
D | simulator-arm.cc | 6315 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/ |
D | simulator-riscv64.cc | 7121 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/ |
D | simulator-mips.cc | 7102 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/ |
D | simulator-mips64.cc | 7536 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/ |
D | simulator-s390.cc | 2732 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()
|