Searched refs:cs_base (Results 1 – 6 of 6) sorted by relevance
/external/qemu/target-i386/ |
D | translate.c | 90 target_ulong cs_base; /* base of CS segment */ member 764 next_eip = s->pc - s->cs_base; in gen_check_io() 2289 pc = s->cs_base + eip; in gen_goto_tb() 2423 gen_jmp_im(pc_start - s->cs_base); in gen_svm_check_intercept_param() 3117 gen_exception(s, EXCP07_PREX, pc_start - s->cs_base); in gen_sse() 3122 gen_exception(s, EXCP06_ILLOP, pc_start - s->cs_base); in gen_sse() 4489 gen_jmp_im(pc_start - s->cs_base); in disas_insn() 4493 gen_jmp_im(pc_start - s->cs_base); in disas_insn() 4498 gen_jmp_im(pc_start - s->cs_base); in disas_insn() 4503 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 | 111 tb = tb_gen_code(env, orig_tb->pc, orig_tb->cs_base, orig_tb->flags, in cpu_exec_nocache() 128 target_ulong cs_base, in tb_find_slow() argument 149 tb->cs_base == cs_base && in tb_find_slow() 166 tb = tb_gen_code(env, pc, cs_base, flags, 0); in tb_find_slow() 183 target_ulong cs_base, pc; in tb_find_fast() local 189 cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags); in tb_find_fast() 191 if (unlikely(!tb || tb->pc != pc || tb->cs_base != cs_base || in tb_find_fast() 193 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 | 901 target_ulong pc, target_ulong cs_base, in tb_gen_code() argument 921 tb->cs_base = cs_base; in tb_gen_code() 2914 target_ulong pc, cs_base; in check_watchpoint() local 2944 cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags); in check_watchpoint() 2945 tb_gen_code(env, pc, cs_base, cpu_flags, 1); in check_watchpoint() 3820 target_ulong pc, cs_base; in cpu_io_recompile() local 3859 cs_base = tb->cs_base; in cpu_io_recompile() 3864 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()
|