2008-02-04 Antony King <antony.king@st.com>
authorAndrew Stubbs <andrew.stubbs@st.com>
Mon, 4 Feb 2008 17:26:07 +0000 (17:26 +0000)
committerAndrew Stubbs <andrew.stubbs@st.com>
Mon, 4 Feb 2008 17:26:07 +0000 (17:26 +0000)
* interp.c (macl): Fix non-portable implementation.

sim/sh/ChangeLog
sim/sh/interp.c

index e06e7640e440e2642bc0faaac0b2f9c4406dbc9d..8a3d88a81205610d853be2b1713742e9cb30456c 100644 (file)
@@ -1,3 +1,7 @@
+2008-02-04  Antony King  <antony.king@st.com>
+
+       * interp.c (macl): Fix non-portable implementation.
+
 2007-10-08  Andrew Stubbs  <andrew.stubbs@st.com>
 
        * gencode.c (tab): Add RAISE_EXCEPTION_IF_IN_DELAY_SLOT to the
index d89b0dce2805a2505e43e857ca0d494d7bf4077e..a2472adb02699522a5e29dded0d7649e164a4358 100644 (file)
@@ -1429,14 +1429,9 @@ macl (regs, memory, n, m)
      int m, n;
 {
   long tempm, tempn;
-  long prod, macl, mach, sum;
-  long long ans,ansl,ansh,t;
-  unsigned long long high,low,combine;
-  union mac64
-  {
-    long m[2]; /* mach and macl*/
-    long long m64; /* 64 bit MAC */
-  }mac64;
+  long macl, mach;
+  long long ans;
+  long long mac64;
 
   tempm = RSLAT (regs[m]);
   regs[m] += 4;
@@ -1447,15 +1442,15 @@ macl (regs, memory, n, m)
   mach = MACH;
   macl = MACL;
 
-  mac64.m[0] = macl;
-  mac64.m[1] = mach;
+  mac64 = ((long long) macl & 0xffffffff) |
+          ((long long) mach & 0xffffffff) << 32;
 
   ans = (long long) tempm * (long long) tempn; /* Multiply 32bit * 32bit */
 
-  mac64.m64 += ans; /* Accumulate   64bit + 64 bit */
+  mac64 += ans; /* Accumulate 64bit + 64 bit */
 
-  macl = mac64.m[0];
-  mach = mac64.m[1];
+  macl = (long) (mac64 & 0xffffffff);
+  mach = (long) ((mac64 >> 32) & 0xffffffff);
 
   if (S)  /* Store only 48 bits of the result */
     {
This page took 0.026777 seconds and 4 git commands to generate.