Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/lit/
Dlit-char-helpers.c85 ecma_char_t current_sp = array_sp[middle]; in search_char_in_interval_array() local
87 if (current_sp <= c && c <= current_sp + lengths[middle]) in search_char_in_interval_array()
92 if (c > current_sp) in search_char_in_interval_array()
570 ecma_char_t current_sp = lit_character_pair_ranges[middle]; in search_in_bidirectional_conversion_tables() local
572 … if (current_sp <= character && character < current_sp + lit_character_pair_range_lengths[middle]) in search_in_bidirectional_conversion_tables()
574 int char_dist = character - current_sp; in search_in_bidirectional_conversion_tables()
576 if ((character - current_sp) % 2 == 0) in search_in_bidirectional_conversion_tables()
578 output_buffer_p[0] = is_lowercase ? (ecma_char_t) (current_sp + char_dist + 1) : character; in search_in_bidirectional_conversion_tables()
582 output_buffer_p[0] = is_lowercase ? character : (ecma_char_t) (current_sp + char_dist - 1); in search_in_bidirectional_conversion_tables()
588 if (character > current_sp) in search_in_bidirectional_conversion_tables()
/third_party/node/deps/v8/src/execution/ppc/
Dsimulator-ppc.cc5552 uintptr_t current_sp = get_register(sp); in PopAddress() local
5553 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
5555 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/third_party/node/deps/v8/src/execution/loong64/
Dsimulator-loong64.cc5377 int64_t current_sp = get_register(sp); in PopAddress() local
5378 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
5380 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/third_party/node/deps/v8/src/execution/arm/
Dsimulator-arm.cc6323 int current_sp = get_register(sp); in PopAddress() local
6324 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
6326 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/third_party/node/deps/v8/src/execution/riscv64/
Dsimulator-riscv64.cc7129 int64_t current_sp = get_register(sp); in PopAddress() local
7130 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
7132 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/third_party/node/deps/v8/src/execution/arm64/
Dsimulator-arm64.cc300 intptr_t current_sp = sp(); in PopAddress() local
301 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
304 set_sp(current_sp + 2 * kXRegSize); in PopAddress()
/third_party/node/deps/v8/src/execution/mips/
Dsimulator-mips.cc7110 int current_sp = get_register(sp); in PopAddress() local
7111 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
7113 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/third_party/node/deps/v8/src/execution/mips64/
Dsimulator-mips64.cc7544 int64_t current_sp = get_register(sp); in PopAddress() local
7545 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
7547 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()
/third_party/node/deps/v8/src/execution/s390/
Dsimulator-s390.cc2740 uintptr_t current_sp = get_register(sp); in PopAddress() local
2741 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress()
2743 set_register(sp, current_sp + sizeof(uintptr_t)); in PopAddress()