Searched refs:end_sim_pc (Results 1 - 14 of 14) sorted by relevance
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.h | 238 // Executes ARM instructions until the PC reaches end_sim_pc. 273 // below (bad_lr, end_sim_pc). 294 end_sim_pc = -2 enumerator
|
H A D | simulator-arm.cc | 444 if (pc == Simulator::end_sim_pc) { in ExecDebugCommand() 836 return ((registers_[pc] == bad_lr) || (registers_[pc] == end_sim_pc)); in has_bad_pc() 6188 while (program_counter != end_sim_pc) { in Execute() 6197 while (program_counter != end_sim_pc) { in Execute() 6220 set_register(lr, end_sim_pc); in CallInternal()
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.h | 207 // Executes PPC instructions until the PC reaches end_sim_pc. 239 // below (bad_lr, end_sim_pc). 250 end_sim_pc = -2 enumerator
|
H A D | simulator-ppc.cc | 826 return ((special_reg_pc_ == bad_lr) || (special_reg_pc_ == end_sim_pc)); in has_bad_pc() 5345 while (program_counter != end_sim_pc) { in Execute() 5354 while (program_counter != end_sim_pc) { in Execute() 5389 special_reg_lr_ = end_sim_pc; in CallInternal()
|
/third_party/node/deps/v8/src/execution/loong64/ |
H A D | simulator-loong64.h | 265 // Executes LOONG64 instructions until the PC reaches end_sim_pc. 295 // below (bad_ra, end_sim_pc). 307 end_sim_pc = -2, enumerator
|
H A D | simulator-loong64.cc | 346 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) { in Debug() 1446 return ((registers_[pc] == bad_ra) || (registers_[pc] == end_sim_pc)); in has_bad_pc() 5222 while (program_counter != end_sim_pc) { in Execute() 5231 while (program_counter != end_sim_pc) { in Execute() 5254 set_register(ra, end_sim_pc); in CallInternal()
|
/third_party/node/deps/v8/src/execution/mips64/ |
H A D | simulator-mips64.h | 301 // Executes MIPS instructions until the PC reaches end_sim_pc. 331 // below (bad_ra, end_sim_pc). 343 end_sim_pc = -2, enumerator
|
H A D | simulator-mips64.cc | 315 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) { in Debug() 1545 return ((registers_[pc] == bad_ra) || (registers_[pc] == end_sim_pc)); in has_bad_pc() 7287 // We don't check for end_sim_pc. First it should not be met as the current 7313 // We don't check for end_sim_pc. First it should not be met as the current pc 7378 while (program_counter != end_sim_pc) { 7387 while (program_counter != end_sim_pc) { 7410 set_register(ra, end_sim_pc);
|
/third_party/node/deps/v8/src/execution/mips/ |
H A D | simulator-mips.h | 299 // Executes MIPS instructions until the PC reaches end_sim_pc. 329 // below (bad_ra, end_sim_pc). 341 end_sim_pc = -2, enumerator
|
H A D | simulator-mips.cc | 340 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) { in Debug() 1614 return ((registers_[pc] == bad_ra) || (registers_[pc] == end_sim_pc)); in has_bad_pc() 6868 // We don't check for end_sim_pc. First it should not be met as the current 6895 // We don't check for end_sim_pc. First it should not be met as the current pc 6955 while (program_counter != end_sim_pc) { 6964 while (program_counter != end_sim_pc) { 6987 set_register(ra, end_sim_pc);
|
/third_party/node/deps/v8/src/execution/riscv64/ |
H A D | simulator-riscv64.h | 468 // Executes RISC-V instructions until the PC reaches end_sim_pc. 498 // below (bad_ra, end_sim_pc). 510 end_sim_pc = -2, enumerator
|
H A D | simulator-riscv64.cc | 1644 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) { in Debug() 2498 return ((registers_[pc] == bad_ra) || (registers_[pc] == end_sim_pc)); in has_bad_pc() 6966 while (program_counter != end_sim_pc) { 6989 set_register(ra, end_sim_pc);
|
/third_party/node/deps/v8/src/execution/s390/ |
H A D | simulator-s390.h | 166 // Executes S390 instructions until the PC reaches end_sim_pc. 198 // below (bad_lr, end_sim_pc). 209 end_sim_pc = -2 enumerator
|
H A D | simulator-s390.cc | 1755 return ((special_reg_pc_ == bad_lr) || (special_reg_pc_ == end_sim_pc)); in has_bad_pc() 2486 while (program_counter != end_sim_pc) { in Execute() 2494 while (program_counter != end_sim_pc) { in Execute() 2537 registers_[14] = end_sim_pc; in CallInternal() 2648 registers_[14] = end_sim_pc; in CallImpl() 4993 if (r2_val != bad_lr && r2_val != end_sim_pc) r2_val &= 0x7FFFFFFF; in EVALUATE()
|
Completed in 74 milliseconds