summaryrefslogtreecommitdiff
path: root/target-ppc
diff options
context:
space:
mode:
authorTom Musta <tommusta@gmail.com>2014-02-12 15:22:53 -0600
committerAlexander Graf <agraf@suse.de>2014-03-05 03:06:51 +0100
commitbb5275338daf1b64bf9677e0361057cfa6ff6a7d (patch)
tree6f879340b2622d67d0ce1b5bc553924b31017d1f /target-ppc
parent32ea54ab5fe18954e05f33a5825ba088d6cd4163 (diff)
downloadqemu-bb5275338daf1b64bf9677e0361057cfa6ff6a7d.tar.gz
target-ppc: Altivec 2.07: Update AVR Structure
This patch updates the ppc_avr_t data structure to include elements for signed 64-bit integers and (conditionally) unsigned 128 bit integers. These elements will be in instructions models later on in this patch series. Signed-off-by: Tom Musta <tommusta@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc')
-rw-r--r--target-ppc/cpu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
index 88c278845c..7ccf4c6e15 100644
--- a/target-ppc/cpu.h
+++ b/target-ppc/cpu.h
@@ -352,6 +352,10 @@ union ppc_avr_t {
int16_t s16[8];
int32_t s32[4];
uint64_t u64[2];
+ int64_t s64[2];
+#ifdef CONFIG_INT128
+ __uint128_t u128;
+#endif
};
#if !defined(CONFIG_USER_ONLY)