Searched refs:cs_base (Results 1 – 7 of 7) sorted by relevance
/external/qemu/target-i386/ |
D | translate.c | 91 target_ulong cs_base; /* base of CS segment */ member 765 next_eip = s->pc - s->cs_base; in gen_check_io() 2290 pc = s->cs_base + eip; in gen_goto_tb() 2424 gen_jmp_im(pc_start - s->cs_base); in gen_svm_check_intercept_param() 3118 gen_exception(s, EXCP07_PREX, pc_start - s->cs_base); in gen_sse() 3123 gen_exception(s, EXCP06_ILLOP, pc_start - s->cs_base); in gen_sse() 4490 gen_jmp_im(pc_start - s->cs_base); in disas_insn() 4494 gen_jmp_im(pc_start - s->cs_base); in disas_insn() 4499 gen_jmp_im(pc_start - s->cs_base); in disas_insn() 4504 gen_jmp_im(pc_start - s->cs_base); in disas_insn() [all …]
|
D | cpu.h | 907 env->eip = tb->pc - tb->cs_base; in cpu_pc_from_tb() 911 target_ulong *cs_base, int *flags) in cpu_get_tb_cpu_state() argument 913 *cs_base = env->segs[R_CS].base; in cpu_get_tb_cpu_state() 914 *pc = *cs_base + env->eip; in cpu_get_tb_cpu_state()
|
/external/qemu/ |
D | cpu-exec.c | 112 tb = tb_gen_code(env, orig_tb->pc, orig_tb->cs_base, orig_tb->flags, in cpu_exec_nocache() 129 target_ulong cs_base, in tb_find_slow() argument 150 tb->cs_base == cs_base && in tb_find_slow() 167 tb = tb_gen_code(env, pc, cs_base, flags, 0); in tb_find_slow() 184 target_ulong cs_base, pc; in tb_find_fast() local 190 cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags); in tb_find_fast() 192 if (unlikely(!tb || tb->pc != pc || tb->cs_base != cs_base || in tb_find_fast() 194 tb = tb_find_slow(pc, cs_base, flags); in tb_find_fast()
|
D | exec-all.h | 83 target_ulong pc, target_ulong cs_base, int flags, 127 target_ulong cs_base; /* CS base for this block */ member
|
D | exec.c | 902 target_ulong pc, target_ulong cs_base, in tb_gen_code() argument 922 tb->cs_base = cs_base; in tb_gen_code() 2940 target_ulong pc, cs_base; in check_watchpoint() local 2970 cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags); in check_watchpoint() 2971 tb_gen_code(env, pc, cs_base, cpu_flags, 1); in check_watchpoint() 3846 target_ulong pc, cs_base; in cpu_io_recompile() local 3885 cs_base = tb->cs_base; in cpu_io_recompile() 3890 tb_gen_code(env, pc, cs_base, flags, cflags); in cpu_io_recompile()
|
/external/qemu/target-arm/ |
D | cpu.h | 519 target_ulong *cs_base, int *flags) in cpu_get_tb_cpu_state() argument 523 *cs_base = 0; in cpu_get_tb_cpu_state()
|
/external/qemu/target-mips/ |
D | cpu.h | 614 target_ulong *cs_base, int *flags) in cpu_get_tb_cpu_state() argument 617 *cs_base = 0; in cpu_get_tb_cpu_state()
|