Searched refs:current_sp (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 440 const Register& current_sp = __ StackPointer(); in EmitReturnSequence() local 442 DCHECK(!current_sp.Is(csp)); in EmitReturnSequence() 443 __ Mov(current_sp, fp); in EmitReturnSequence() 444 __ Ldp(fp, lr, MemOperand(current_sp, 2 * kXRegSize, PostIndex)); in EmitReturnSequence() 450 __ Add(current_sp, current_sp, ip0); in EmitReturnSequence()
|
/external/valgrind/memcheck/ |
D | mc_errors.c | 749 Addr current_sp = VG_(get_SP)(tid); in MC_() local 750 just_below_esp = is_just_below_ESP( current_sp, a ); in MC_() 760 if (MC_(in_ignored_range_below_sp)( current_sp, a, szB )) in MC_()
|
/external/v8/src/arm64/ |
D | simulator-arm64.cc | 330 intptr_t current_sp = sp(); in PopAddress() local 331 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() 334 set_sp(current_sp + 2 * kXRegSize); in PopAddress()
|
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 4209 uintptr_t current_sp = get_register(sp); in PopAddress() local 4210 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() 4212 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 4840 int current_sp = get_register(sp); in PopAddress() local 4841 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() 4843 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
|
/external/v8/src/mips64/ |
D | simulator-mips64.cc | 5142 int64_t current_sp = get_register(sp); in PopAddress() local 5143 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() 5145 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
|
/external/v8/src/arm/ |
D | simulator-arm.cc | 5778 int current_sp = get_register(sp); in PopAddress() local 5779 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() 5781 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
|
/external/v8/src/s390/ |
D | simulator-s390.cc | 5910 uintptr_t current_sp = get_register(sp); in PopAddress() local 5911 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() 5913 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
|