OSDN Git Service

Fix ins/ext cornercase.
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 7 Apr 2007 01:09:17 +0000 (01:09 +0000)
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 7 Apr 2007 01:09:17 +0000 (01:09 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2627 c046a42c-6fe2-441c-8c8c-71466251a162

target-mips/op.c

index 5048bc0..1e2dbc8 100644 (file)
@@ -2232,7 +2232,7 @@ void op_ext(void)
     unsigned int pos = PARAM1;
     unsigned int size = PARAM2;
 
-    T0 = ((uint32_t)T1 >> pos) & ((1 << size) - 1);
+    T0 = ((uint32_t)T1 >> pos) & ((size < 32) ? ((1 << size) - 1) : ~0);
     RETURN();
 }
 
@@ -2240,7 +2240,7 @@ void op_ins(void)
 {
     unsigned int pos = PARAM1;
     unsigned int size = PARAM2;
-    target_ulong mask = ((1 << size) - 1) << pos;
+    target_ulong mask = ((size < 32) ? ((1 << size) - 1) : ~0) << pos;
 
     T0 = (T2 & ~mask) | (((uint32_t)T1 << pos) & mask);
     RETURN();
@@ -2258,7 +2258,7 @@ void op_dext(void)
     unsigned int pos = PARAM1;
     unsigned int size = PARAM2;
 
-    T0 = (T1 >> pos) & ((1 << size) - 1);
+    T0 = (T1 >> pos) & ((size < 32) ? ((1 << size) - 1) : ~0);
     RETURN();
 }
 
@@ -2266,7 +2266,7 @@ void op_dins(void)
 {
     unsigned int pos = PARAM1;
     unsigned int size = PARAM2;
-    target_ulong mask = ((1 << size) - 1) << pos;
+    target_ulong mask = ((size < 32) ? ((1 << size) - 1) : ~0) << pos;
 
     T0 = (T2 & ~mask) | ((T1 << pos) & mask);
     RETURN();