mirror of https://github.com/xqemu/xqemu.git
target-i386/helper: remove EBP macro
Signed-off-by: liguang <lig.fnst@cn.fujitsu.com> Reviewed-by: Andreas Färber <afaerber@suse.de> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
00f5e6f21e
commit
c12dddd791
|
@ -1103,8 +1103,6 @@ static inline int cpu_mmu_index (CPUX86State *env)
|
||||||
|
|
||||||
#undef ESP
|
#undef ESP
|
||||||
#define ESP (env->regs[R_ESP])
|
#define ESP (env->regs[R_ESP])
|
||||||
#undef EBP
|
|
||||||
#define EBP (env->regs[R_EBP])
|
|
||||||
#undef ESI
|
#undef ESI
|
||||||
#define ESI (env->regs[R_ESI])
|
#define ESI (env->regs[R_ESI])
|
||||||
#undef EDI
|
#undef EDI
|
||||||
|
|
|
@ -329,7 +329,7 @@ static void switch_tss(CPUX86State *env, int tss_selector,
|
||||||
cpu_stl_kernel(env, env->tr.base + (0x28 + 2 * 4), env->regs[R_EDX]);
|
cpu_stl_kernel(env, env->tr.base + (0x28 + 2 * 4), env->regs[R_EDX]);
|
||||||
cpu_stl_kernel(env, env->tr.base + (0x28 + 3 * 4), env->regs[R_EBX]);
|
cpu_stl_kernel(env, env->tr.base + (0x28 + 3 * 4), env->regs[R_EBX]);
|
||||||
cpu_stl_kernel(env, env->tr.base + (0x28 + 4 * 4), ESP);
|
cpu_stl_kernel(env, env->tr.base + (0x28 + 4 * 4), ESP);
|
||||||
cpu_stl_kernel(env, env->tr.base + (0x28 + 5 * 4), EBP);
|
cpu_stl_kernel(env, env->tr.base + (0x28 + 5 * 4), env->regs[R_EBP]);
|
||||||
cpu_stl_kernel(env, env->tr.base + (0x28 + 6 * 4), ESI);
|
cpu_stl_kernel(env, env->tr.base + (0x28 + 6 * 4), ESI);
|
||||||
cpu_stl_kernel(env, env->tr.base + (0x28 + 7 * 4), EDI);
|
cpu_stl_kernel(env, env->tr.base + (0x28 + 7 * 4), EDI);
|
||||||
for (i = 0; i < 6; i++) {
|
for (i = 0; i < 6; i++) {
|
||||||
|
@ -345,7 +345,7 @@ static void switch_tss(CPUX86State *env, int tss_selector,
|
||||||
cpu_stw_kernel(env, env->tr.base + (0x12 + 2 * 2), env->regs[R_EDX]);
|
cpu_stw_kernel(env, env->tr.base + (0x12 + 2 * 2), env->regs[R_EDX]);
|
||||||
cpu_stw_kernel(env, env->tr.base + (0x12 + 3 * 2), env->regs[R_EBX]);
|
cpu_stw_kernel(env, env->tr.base + (0x12 + 3 * 2), env->regs[R_EBX]);
|
||||||
cpu_stw_kernel(env, env->tr.base + (0x12 + 4 * 2), ESP);
|
cpu_stw_kernel(env, env->tr.base + (0x12 + 4 * 2), ESP);
|
||||||
cpu_stw_kernel(env, env->tr.base + (0x12 + 5 * 2), EBP);
|
cpu_stw_kernel(env, env->tr.base + (0x12 + 5 * 2), env->regs[R_EBP]);
|
||||||
cpu_stw_kernel(env, env->tr.base + (0x12 + 6 * 2), ESI);
|
cpu_stw_kernel(env, env->tr.base + (0x12 + 6 * 2), ESI);
|
||||||
cpu_stw_kernel(env, env->tr.base + (0x12 + 7 * 2), EDI);
|
cpu_stw_kernel(env, env->tr.base + (0x12 + 7 * 2), EDI);
|
||||||
for (i = 0; i < 4; i++) {
|
for (i = 0; i < 4; i++) {
|
||||||
|
@ -401,7 +401,7 @@ static void switch_tss(CPUX86State *env, int tss_selector,
|
||||||
env->regs[R_EDX] = new_regs[2];
|
env->regs[R_EDX] = new_regs[2];
|
||||||
env->regs[R_EBX] = new_regs[3];
|
env->regs[R_EBX] = new_regs[3];
|
||||||
ESP = new_regs[4];
|
ESP = new_regs[4];
|
||||||
EBP = new_regs[5];
|
env->regs[R_EBP] = new_regs[5];
|
||||||
ESI = new_regs[6];
|
ESI = new_regs[6];
|
||||||
EDI = new_regs[7];
|
EDI = new_regs[7];
|
||||||
if (new_eflags & VM_MASK) {
|
if (new_eflags & VM_MASK) {
|
||||||
|
@ -1272,7 +1272,7 @@ void helper_enter_level(CPUX86State *env, int level, int data32,
|
||||||
|
|
||||||
esp_mask = get_sp_mask(env->segs[R_SS].flags);
|
esp_mask = get_sp_mask(env->segs[R_SS].flags);
|
||||||
ssp = env->segs[R_SS].base;
|
ssp = env->segs[R_SS].base;
|
||||||
ebp = EBP;
|
ebp = env->regs[R_EBP];
|
||||||
esp = ESP;
|
esp = ESP;
|
||||||
if (data32) {
|
if (data32) {
|
||||||
/* 32 bit */
|
/* 32 bit */
|
||||||
|
@ -1305,7 +1305,7 @@ void helper_enter64_level(CPUX86State *env, int level, int data64,
|
||||||
{
|
{
|
||||||
target_ulong esp, ebp;
|
target_ulong esp, ebp;
|
||||||
|
|
||||||
ebp = EBP;
|
ebp = env->regs[R_EBP];
|
||||||
esp = ESP;
|
esp = ESP;
|
||||||
|
|
||||||
if (data64) {
|
if (data64) {
|
||||||
|
|
|
@ -87,7 +87,7 @@ void do_smm_enter(CPUX86State *env)
|
||||||
stq_phys(sm_state + 0x7fe8, env->regs[R_EDX]);
|
stq_phys(sm_state + 0x7fe8, env->regs[R_EDX]);
|
||||||
stq_phys(sm_state + 0x7fe0, env->regs[R_EBX]);
|
stq_phys(sm_state + 0x7fe0, env->regs[R_EBX]);
|
||||||
stq_phys(sm_state + 0x7fd8, ESP);
|
stq_phys(sm_state + 0x7fd8, ESP);
|
||||||
stq_phys(sm_state + 0x7fd0, EBP);
|
stq_phys(sm_state + 0x7fd0, env->regs[R_EBP]);
|
||||||
stq_phys(sm_state + 0x7fc8, ESI);
|
stq_phys(sm_state + 0x7fc8, ESI);
|
||||||
stq_phys(sm_state + 0x7fc0, EDI);
|
stq_phys(sm_state + 0x7fc0, EDI);
|
||||||
for (i = 8; i < 16; i++) {
|
for (i = 8; i < 16; i++) {
|
||||||
|
@ -111,7 +111,7 @@ void do_smm_enter(CPUX86State *env)
|
||||||
stl_phys(sm_state + 0x7ff0, env->eip);
|
stl_phys(sm_state + 0x7ff0, env->eip);
|
||||||
stl_phys(sm_state + 0x7fec, EDI);
|
stl_phys(sm_state + 0x7fec, EDI);
|
||||||
stl_phys(sm_state + 0x7fe8, ESI);
|
stl_phys(sm_state + 0x7fe8, ESI);
|
||||||
stl_phys(sm_state + 0x7fe4, EBP);
|
stl_phys(sm_state + 0x7fe4, env->regs[R_EBP]);
|
||||||
stl_phys(sm_state + 0x7fe0, ESP);
|
stl_phys(sm_state + 0x7fe0, ESP);
|
||||||
stl_phys(sm_state + 0x7fdc, env->regs[R_EBX]);
|
stl_phys(sm_state + 0x7fdc, env->regs[R_EBX]);
|
||||||
stl_phys(sm_state + 0x7fd8, env->regs[R_EDX]);
|
stl_phys(sm_state + 0x7fd8, env->regs[R_EDX]);
|
||||||
|
@ -218,7 +218,7 @@ void helper_rsm(CPUX86State *env)
|
||||||
env->regs[R_EDX] = ldq_phys(sm_state + 0x7fe8);
|
env->regs[R_EDX] = ldq_phys(sm_state + 0x7fe8);
|
||||||
env->regs[R_EBX] = ldq_phys(sm_state + 0x7fe0);
|
env->regs[R_EBX] = ldq_phys(sm_state + 0x7fe0);
|
||||||
ESP = ldq_phys(sm_state + 0x7fd8);
|
ESP = ldq_phys(sm_state + 0x7fd8);
|
||||||
EBP = ldq_phys(sm_state + 0x7fd0);
|
env->regs[R_EBP] = ldq_phys(sm_state + 0x7fd0);
|
||||||
ESI = ldq_phys(sm_state + 0x7fc8);
|
ESI = ldq_phys(sm_state + 0x7fc8);
|
||||||
EDI = ldq_phys(sm_state + 0x7fc0);
|
EDI = ldq_phys(sm_state + 0x7fc0);
|
||||||
for (i = 8; i < 16; i++) {
|
for (i = 8; i < 16; i++) {
|
||||||
|
@ -246,7 +246,7 @@ void helper_rsm(CPUX86State *env)
|
||||||
env->eip = ldl_phys(sm_state + 0x7ff0);
|
env->eip = ldl_phys(sm_state + 0x7ff0);
|
||||||
EDI = ldl_phys(sm_state + 0x7fec);
|
EDI = ldl_phys(sm_state + 0x7fec);
|
||||||
ESI = ldl_phys(sm_state + 0x7fe8);
|
ESI = ldl_phys(sm_state + 0x7fe8);
|
||||||
EBP = ldl_phys(sm_state + 0x7fe4);
|
env->regs[R_EBP] = ldl_phys(sm_state + 0x7fe4);
|
||||||
ESP = ldl_phys(sm_state + 0x7fe0);
|
ESP = ldl_phys(sm_state + 0x7fe0);
|
||||||
env->regs[R_EBX] = ldl_phys(sm_state + 0x7fdc);
|
env->regs[R_EBX] = ldl_phys(sm_state + 0x7fdc);
|
||||||
env->regs[R_EDX] = ldl_phys(sm_state + 0x7fd8);
|
env->regs[R_EDX] = ldl_phys(sm_state + 0x7fd8);
|
||||||
|
|
Loading…
Reference in New Issue