Searched refs:cs_base (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/ValidationKit/bootsectors/
H A Dbootsector2-cpu-hidden-regs-1.asm104 db 'BIOS - cs_base:cs_base', 0;
202 db 'RM Pre - cs_base:cs_base', 0;
208 db 'Prot32 - cs_base:cs_base', 0;
214 db 'RM Post - cs_base:cs_base', 0;
220 db 'Prot 16 EO,L-1,NA - cs_base:cs_base',
[all...]
/vbox/src/recompiler/target-i386/
H A Dtranslate.c145 target_ulong pc; /* pc = eip + cs_base */
149 target_ulong cs_base; /* base of CS segment */ member in struct:DisasContext
946 next_eip = s->pc - s->cs_base;
2473 pc = s->cs_base + eip;
2607 gen_jmp_im(pc_start - s->cs_base);
3305 gen_exception(s, EXCP07_PREX, pc_start - s->cs_base);
3310 gen_exception(s, EXCP06_ILLOP, pc_start - s->cs_base);
4445 gen_update_eip(pc_start - s->cs_base);
4562 gen_exception(s, EXCP06_ILLOP, pc_start - s->cs_base);
4885 gen_jmp_im(pc_start - s->cs_base);
8156 target_ulong cs_base; local
[all...]
H A Dcpu.h1195 target_ulong *cs_base, int *flags)
1197 *cs_base = env->segs[R_CS].base;
1199 *pc = *cs_base + env->eip;
1201 *pc = (uint32_t)(*cs_base + env->eip);
1194 cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc, target_ulong *cs_base, int *flags) argument
H A Dexec.h368 env->eip = tb->pc - tb->cs_base;
/vbox/src/recompiler/
H A Dcpu-exec.c121 tb = tb_gen_code(env, orig_tb->pc, orig_tb->cs_base, orig_tb->flags,
142 target_ulong cs_base,
164 tb->cs_base == cs_base &&
181 tb = tb_gen_code(env, pc, cs_base, flags, 0);
192 target_ulong cs_base, pc; local
198 cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags);
200 if (unlikely(!tb || tb->pc != pc || tb->cs_base != cs_base ||
202 tb = tb_find_slow(pc, cs_base, flag
141 tb_find_slow(target_ulong pc, target_ulong cs_base, uint64_t flags) argument
[all...]
H A Dexec-all.h114 target_ulong pc, target_ulong cs_base, int flags,
156 target_ulong cs_base; /* CS base for this block */ member in struct:TranslationBlock
H A Dexec.c984 uint8_t *cs_base, *pc;
990 cs_base = env->segs[R_CS].base;
991 pc = cs_base + eip;
993 tb = tb_find(&ptb, (uintptr_t)pc, (uintptr_t)cs_base,
1005 tb->cs_base = 0;
1080 target_ulong pc, target_ulong cs_base,
1101 tb->cs_base = cs_base;
3463 target_ulong pc, cs_base; local
3493 cpu_get_tb_cpu_state(env, &pc, &cs_base,
1079 tb_gen_code(CPUState *env, target_ulong pc, target_ulong cs_base, int flags, int cflags) argument
4456 target_ulong pc, cs_base; local
[all...]

Completed in 5130 milliseconds