summaryrefslogtreecommitdiff
path: root/target-sparc
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-01 17:07:58 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-01 17:07:58 +0000
commit51996525c77e61a050562900a499798ded8981d0 (patch)
tree0a51520ca2aeb80f10f78cb8d3063ca7762eeedf /target-sparc
parent55aa45ddde3283cdd781326d001f7456bf02f684 (diff)
downloadqemu-51996525c77e61a050562900a499798ded8981d0.tar.gz
Fix block load ASIs
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3310 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc')
-rw-r--r--target-sparc/op_helper.c34
1 files changed, 25 insertions, 9 deletions
diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c
index fa51cdee9b..a4839a0558 100644
--- a/target-sparc/op_helper.c
+++ b/target-sparc/op_helper.c
@@ -862,7 +862,6 @@ void helper_st_asi(int asi, int size)
case 0x19: // As if user secondary LE
case 0x1c: // Bypass LE
case 0x1d: // Bypass, non-cacheable LE
- case 0x81: // Secondary
case 0x88: // Primary LE
case 0x89: // Secondary LE
switch(size) {
@@ -950,6 +949,7 @@ void helper_st_asi(int asi, int size)
case 0x24: // Nucleus quad LDD 128 bit atomic
case 0x2c: // Nucleus quad LDD 128 bit atomic
case 0x4a: // UPA config
+ case 0x81: // Secondary
case 0x89: // Secondary LE
// XXX
return;
@@ -1137,10 +1137,18 @@ void helper_ldf_asi(int asi, int size, int rd)
case 0xf1: // Block load secondary
case 0xf8: // Block load primary LE
case 0xf9: // Block load secondary LE
- for (i = 0; i < 8; i++) {
- helper_ld_asi(asi & 0x8f, 8, 0);
- *((int64_t *)&DT0) = T1;
- T0 += 8;
+ if (rd & 7) {
+ raise_exception(TT_ILL_INSN);
+ return;
+ }
+ if (T0 & 0x3f) {
+ raise_exception(TT_UNALIGNED);
+ return;
+ }
+ for (i = 0; i < 16; i++) {
+ helper_ld_asi(asi & 0x8f, 4, 0);
+ *(uint32_t *)&env->fpr[rd++] = T1;
+ T0 += 4;
}
T0 = tmp_T0;
T1 = tmp_T1;
@@ -1173,10 +1181,18 @@ void helper_stf_asi(int asi, int size, int rd)
case 0xf1: // Block store secondary
case 0xf8: // Block store primary LE
case 0xf9: // Block store secondary LE
- for (i = 0; i < 8; i++) {
- T1 = *((int64_t *)&DT0);
- helper_st_asi(asi & 0x8f, 8);
- T0 += 8;
+ if (rd & 7) {
+ raise_exception(TT_ILL_INSN);
+ return;
+ }
+ if (T0 & 0x3f) {
+ raise_exception(TT_UNALIGNED);
+ return;
+ }
+ for (i = 0; i < 16; i++) {
+ T1 = *(uint32_t *)&env->fpr[rd++];
+ helper_st_asi(asi & 0x8f, 4);
+ T0 += 4;
}
T0 = tmp_T0;
T1 = tmp_T1;