qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 21/24] target-alpha: Include the PCC_OFS in the RPCC


From: Richard Henderson
Subject: [Qemu-devel] [PATCH 21/24] target-alpha: Include the PCC_OFS in the RPCC return value.
Date: Tue, 19 Apr 2011 08:04:58 -0700

Signed-off-by: Richard Henderson <address@hidden>
---
 target-alpha/op_helper.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c
index cc8a33d..5902cd6 100644
--- a/target-alpha/op_helper.c
+++ b/target-alpha/op_helper.c
@@ -44,7 +44,8 @@ static void QEMU_NORETURN arith_excp(int exc, uint64_t mask)
 uint64_t helper_load_pcc (void)
 {
     /* ??? This isn't a timer for which we have any rate info.  */
-    return (uint32_t)cpu_get_real_ticks();
+    uint64_t ret = env->pcc_ofs;
+    return ret << 32 | (uint32_t)cpu_get_real_ticks();
 }
 
 uint64_t helper_load_fpcr (void)
-- 
1.7.3.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]