- Timestamp:
- Jan 22, 2009 8:24:04 AM (16 years ago)
- Location:
- trunk/src/recompiler_new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxRecompiler.c
r16135 r16156 1816 1816 } 1817 1817 1818 /* Sync FPU state after CR4 and CPUID. */1818 /* Sync FPU state after CR4, CPUID and EFER (!). */ 1819 1819 if (fFlags & CPUM_CHANGED_FPU_REM) 1820 1820 save_raw_fp_state(&pVM->rem.s.Env, (uint8_t *)&pCtx->fpu); /* 'save' is an excellent name. */ -
trunk/src/recompiler_new/target-i386/op_helper.c
r16134 r16156 5983 5983 CPU86_LDouble tmp; 5984 5984 uint8_t *addr; 5985 int data64 = !!(env->hflags & HF_ CS64_MASK);5985 int data64 = !!(env->hflags & HF_LMA_MASK); 5986 5986 5987 5987 if (env->cpuid_features & CPUID_FXSR) … … 6061 6061 CPU86_LDouble tmp; 6062 6062 uint8_t *addr; 6063 int data64 = !!(env->hflags & HF_ CS64_MASK);6063 int data64 = !!(env->hflags & HF_LMA_MASK); /* don't use HF_CS64_MASK here as cs hasn't been synced when this function is called. */ 6064 6064 6065 6065 if (env->cpuid_features & CPUID_FXSR)
Note:
See TracChangeset
for help on using the changeset viewer.