Searched defs:current_pc (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/mips/
H A Dsimulator-mips.cc1943 int32_t current_pc = get_pc(); local
2187 current_pc+Instruction::kInstrSize);
2195 current_pc+Instruction::kInstrSize);
2197 set_register(31, current_pc + 2 * Instruction::kInstrSize);
2312 int32_t current_pc = get_pc(); local
2344 next_pc = current_pc + (imm16 << 2) + Instruction::kInstrSize;
2346 next_pc = current_pc + kBranchReturnOffset;
2380 next_pc = current_pc + (imm16 << 2) + Instruction::kInstrSize;
2382 set_register(31, current_pc + kBranchReturnOffset);
2385 next_pc = current_pc
[all...]
H A Dlithium-codegen-mips.cc4859 int current_pc = masm()->pc_offset(); local
4861 if (current_pc < last_lazy_deopt_pc_ + patch_size) {
4862 int padding_size = last_lazy_deopt_pc_ + patch_size - current_pc;
/external/qemu/
H A Dexec.c959 target_ulong current_pc = 0; local
1011 cpu_get_tb_cpu_state(env, &current_pc, &current_cs_base,
1046 tb_gen_code(env, current_pc, current_cs_base, current_flags, 1);
1090 target_ulong current_pc = 0; local
1119 cpu_get_tb_cpu_state(env, &current_pc, &current_cs_base,
1133 tb_gen_code(env, current_pc, current_cs_base, current_flags, 1);
/external/v8/src/arm/
H A Dlithium-codegen-arm.cc4923 int current_pc = masm()->pc_offset(); local
4925 if (current_pc < last_lazy_deopt_pc_ + patch_size) {
4926 int padding_size = last_lazy_deopt_pc_ + patch_size - current_pc;
/external/v8/src/ia32/
H A Dlithium-codegen-ia32.cc4768 int current_pc = masm()->pc_offset(); local
4770 if (current_pc < last_lazy_deopt_pc_ + patch_size) {
4771 int padding_size = last_lazy_deopt_pc_ + patch_size - current_pc;
/external/v8/src/x64/
H A Dlithium-codegen-x64.cc4549 int current_pc = masm()->pc_offset(); local
4550 if (current_pc < last_lazy_deopt_pc_ + space_needed) {
4551 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc;

Completed in 320 milliseconds