qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [[PATCH] 6/7] target-arm: Add WFx syndrome function


From: Greg Bellows
Subject: [Qemu-devel] [[PATCH] 6/7] target-arm: Add WFx syndrome function
Date: Fri, 27 Mar 2015 14:10:45 -0500

Adds a utility function for creating a WFx exception syndrome

Signed-off-by: Greg Bellows <address@hidden>
---
 target-arm/internals.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/target-arm/internals.h b/target-arm/internals.h
index bb171a7..8dc2e2b 100644
--- a/target-arm/internals.h
+++ b/target-arm/internals.h
@@ -344,6 +344,12 @@ static inline uint32_t syn_breakpoint(int same_el)
         | ARM_EL_IL | 0x22;
 }
 
+static inline uint32_t syn_wfx(int cv, int cond, int ti)
+{
+    return (EC_WFX_TRAP << ARM_EL_EC_SHIFT) |
+           (cv << 24) | (cond << 20) | ti;
+}
+
 /* Update a QEMU watchpoint based on the information the guest has set in the
  * DBGWCR<n>_EL1 and DBGWVR<n>_EL1 registers.
  */
-- 
1.8.3.2




reply via email to

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