Home
last modified time | relevance | path

Searched refs:current_sp (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/ppc/
Dsimulator-ppc.cc4143 uintptr_t current_sp = get_register(sp); in PopAddress() local
4144 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
4146 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/external/v8/src/arm64/
Dsimulator-arm64.cc266 intptr_t current_sp = sp(); in PopAddress() local
267 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
270 set_sp(current_sp + 2 * kXRegSize); in PopAddress()
/external/v8/src/arm/
Dsimulator-arm.cc5883 int current_sp = get_register(sp); in PopAddress() local
5884 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
5886 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/external/v8/src/mips/
Dsimulator-mips.cc7105 int current_sp = get_register(sp); in PopAddress() local
7106 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
7108 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/external/v8/src/mips64/
Dsimulator-mips64.cc7471 int64_t current_sp = get_register(sp); in PopAddress() local
7472 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
7474 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/external/v8/src/s390/
Dsimulator-s390.cc2624 uintptr_t current_sp = get_register(sp); in PopAddress() local
2625 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
2627 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()