aboutsummaryrefslogtreecommitdiff
path: root/target-i386/helper.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-08-21 10:28:44 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-08-21 10:28:44 +0000
commitecada8a2dddff7b0382e35b9ffe5643ed895a7f4 (patch)
tree0b7962d4c1e73e836eb1e8a7786209e9af49f024 /target-i386/helper.c
parent1e8a7cfd11385ee43ce28cca6b52f5834a4fff4a (diff)
CR4.TSD flag support (Matt Schulkind)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1556 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/helper.c')
-rw-r--r--target-i386/helper.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c
index c41cbb7278..424dc52848 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -2328,7 +2328,10 @@ void helper_invlpg(target_ulong addr)
void helper_rdtsc(void)
{
uint64_t val;
-
+
+ if ((env->cr[4] & CR4_TSD_MASK) && ((env->hflags & HF_CPL_MASK) != 0)) {
+ raise_exception(EXCP0D_GPF);
+ }
val = cpu_get_tsc(env);
EAX = (uint32_t)(val);
EDX = (uint32_t)(val >> 32);