Searched refs:current_pc (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/mips/ |
D | simulator-mips.cc | 1943 int32_t current_pc = get_pc(); in DecodeTypeRegister() local 2187 current_pc+Instruction::kInstrSize); in DecodeTypeRegister() 2195 current_pc+Instruction::kInstrSize); in DecodeTypeRegister() 2197 set_register(31, current_pc + 2 * Instruction::kInstrSize); in DecodeTypeRegister() 2312 int32_t current_pc = get_pc(); in DecodeTypeImmediate() local 2344 next_pc = current_pc + (imm16 << 2) + Instruction::kInstrSize; in DecodeTypeImmediate() 2346 next_pc = current_pc + kBranchReturnOffset; in DecodeTypeImmediate() 2380 next_pc = current_pc + (imm16 << 2) + Instruction::kInstrSize; in DecodeTypeImmediate() 2382 set_register(31, current_pc + kBranchReturnOffset); in DecodeTypeImmediate() 2385 next_pc = current_pc + kBranchReturnOffset; in DecodeTypeImmediate() [all …]
|
D | lithium-codegen-mips.cc | 4859 int current_pc = masm()->pc_offset(); in EnsureSpaceForLazyDeopt() local 4861 if (current_pc < last_lazy_deopt_pc_ + patch_size) { in EnsureSpaceForLazyDeopt() 4862 int padding_size = last_lazy_deopt_pc_ + patch_size - current_pc; in EnsureSpaceForLazyDeopt()
|
/external/qemu/ |
D | trace.c | 1487 uint32_t current_pc = trace_bb.current_bb_addr + 4 * (trace_bb.num_insns - 1); in trace_exception() local 1492 trace_bb.num_insns, current_pc, trace_bb.current_bb_num, in trace_exception() 1507 comp_ptr = varint_encode(current_pc, comp_ptr); in trace_exception() 1902 uint32_t current_pc = trace_bb.current_bb_addr + 4 * (trace_bb.num_insns - 1); in trace_insn_helper() 1903 fprintf(ftrace_debug, "%llu %x\n", sim_time, current_pc); in trace_insn_helper()
|
D | exec.c | 959 target_ulong current_pc = 0; in tb_invalidate_phys_page_range() local 1011 cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, in tb_invalidate_phys_page_range() 1046 tb_gen_code(env, current_pc, current_cs_base, current_flags, 1); in tb_invalidate_phys_page_range() 1090 target_ulong current_pc = 0; in tb_invalidate_phys_page() local 1119 cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, in tb_invalidate_phys_page() 1133 tb_gen_code(env, current_pc, current_cs_base, current_flags, 1); in tb_invalidate_phys_page()
|
/external/v8/src/ia32/ |
D | lithium-codegen-ia32.cc | 4768 int current_pc = masm()->pc_offset(); in EnsureSpaceForLazyDeopt() local 4770 if (current_pc < last_lazy_deopt_pc_ + patch_size) { in EnsureSpaceForLazyDeopt() 4771 int padding_size = last_lazy_deopt_pc_ + patch_size - current_pc; in EnsureSpaceForLazyDeopt()
|
/external/v8/src/x64/ |
D | lithium-codegen-x64.cc | 4549 int current_pc = masm()->pc_offset(); in EnsureSpaceForLazyDeopt() local 4550 if (current_pc < last_lazy_deopt_pc_ + space_needed) { in EnsureSpaceForLazyDeopt() 4551 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; in EnsureSpaceForLazyDeopt()
|
/external/v8/src/arm/ |
D | lithium-codegen-arm.cc | 4923 int current_pc = masm()->pc_offset(); in EnsureSpaceForLazyDeopt() local 4925 if (current_pc < last_lazy_deopt_pc_ + patch_size) { in EnsureSpaceForLazyDeopt() 4926 int padding_size = last_lazy_deopt_pc_ + patch_size - current_pc; in EnsureSpaceForLazyDeopt()
|