Add additional information to relocation overflow errors.
[deliverable/binutils-gdb.git] / sim / ppc / registers.c
index f3314365987861034a13b1e85a984e827556b616..b672f9907e2865d35ad7bb916013761016ca4b7f 100644 (file)
@@ -4,7 +4,7 @@
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
+    the Free Software Foundation; either version 3 of the License, or
     (at your option) any later version.
 
     This program is distributed in the hope that it will be useful,
@@ -13,8 +13,7 @@
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+    along with this program; if not, see <http://www.gnu.org/licenses/>.
  
     */
 
 #ifndef _REGISTERS_C_
 #define _REGISTERS_C_
 
-#ifndef STATIC_INLINE_REGISTERS
-#define STATIC_INLINE_REGISTERS STATIC_INLINE
-#endif
-
-
 #include <ctype.h>
 
 #include "basics.h"
@@ -45,7 +39,8 @@
 #endif
 
 
-INLINE_REGISTERS void
+INLINE_REGISTERS\
+(void)
 registers_dump(registers *registers)
 {
   int i;
@@ -53,13 +48,14 @@ registers_dump(registers *registers)
   for (i = 0; i < 8; i++) {
     printf_filtered("GPR %2d:", i*4);
     for (j = 0; j < 4; j++) {
-      printf_filtered(" 0x%08x", registers->gpr[i*4 + j]);
+      printf_filtered(" 0x%08lx", (long)registers->gpr[i*4 + j]);
     }
     printf_filtered("\n");
   }
 }
 
-STATIC_INLINE_REGISTERS sprs
+STATIC_INLINE_REGISTERS\
+(sprs)
 find_spr(const char name[])
 {
   sprs spr;
@@ -71,7 +67,8 @@ find_spr(const char name[])
   return nr_of_sprs;
 }
 
-STATIC_INLINE_REGISTERS int
+STATIC_INLINE_REGISTERS\
+(int)
 are_digits(const char *digits)
 {
   while (isdigit(*digits))
@@ -80,7 +77,8 @@ are_digits(const char *digits)
 }
 
 
-INLINE_REGISTERS register_descriptions
+INLINE_REGISTERS\
+(register_descriptions)
 register_description(const char reg[])
 {
   register_descriptions description;
@@ -121,6 +119,11 @@ register_description(const char reg[])
     description.index = 0;
     description.size = sizeof(msreg);
   }
+  else if (!strcmp(reg, "fpscr")) {
+    description.type = reg_fpscr;
+    description.index = 0;
+    description.size = sizeof(fpscreg);
+  }
   else if (!strncmp(reg, "sr", 2) && are_digits(reg + 2)) {
     description.type = reg_sr;
     description.index = atoi(reg+2);
@@ -131,6 +134,50 @@ register_description(const char reg[])
     description.index = spr_ctr;
     description.size = sizeof(spreg);
   }
+  else if (!strcmp(reg, "insns")) {
+    description.type = reg_insns;
+    description.index = spr_ctr;
+    description.size = sizeof(unsigned_word);
+  }
+  else if (!strcmp(reg, "stalls")) {
+    description.type = reg_stalls;
+    description.index = spr_ctr;
+    description.size = sizeof(unsigned_word);
+  }
+  else if (!strcmp(reg, "cycles")) {
+    description.type = reg_cycles;
+    description.index = spr_ctr;
+    description.size = sizeof(unsigned_word);
+  }
+#ifdef WITH_ALTIVEC
+  else if (reg[0] == 'v' && reg[1] == 'r' && are_digits(reg + 2)) {
+    description.type = reg_vr;
+    description.index = atoi(reg+2);
+    description.size = sizeof(vreg);
+  }
+   else if (!strcmp(reg, "vscr")) {
+    description.type = reg_vscr;
+    description.index = 0;
+    description.size = sizeof(vscreg);
+  }
+#endif
+#ifdef WITH_E500
+  else if (reg[0] == 'e' && reg[1] == 'v' && are_digits(reg + 2)) {
+    description.type = reg_evr;
+    description.index = atoi(reg+2);
+    description.size = sizeof(unsigned64);
+  }
+  else if (reg[0] == 'r' && reg[1] == 'h' && are_digits(reg + 2)) {
+    description.type = reg_gprh;
+    description.index = atoi(reg+2);
+    description.size = sizeof(gpreg);
+  }
+  else if (!strcmp(reg, "acc")) {
+    description.type = reg_acc;
+    description.index = 0;
+    description.size = sizeof(unsigned64);
+  }
+#endif
   else {
     sprs spr = find_spr(reg);
     if (spr != nr_of_sprs) {
This page took 0.024382 seconds and 4 git commands to generate.