binutils-gdb/opcodes
Thiemo Seufer 771c7ce4bc ? gas/testsuite/gas/mips/rol64.d
? gas/testsuite/gas/mips/rol64.s
Index: gas/ChangeLog
===================================================================
RCS file: /cvs/src/src/gas/ChangeLog,v
retrieving revision 1.1334
diff -u -p -r1.1334 ChangeLog
--- gas/ChangeLog	21 May 2002 20:01:51 -0000	1.1334
+++ gas/ChangeLog	21 May 2002 23:32:51 -0000
@@ -1,3 +1,8 @@
+2002-05-22  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+	* config/tc-mips.c (macro2): Add 64 bit drol, dror macros.
+	Optimize the rotate by zero case.
+
 2002-05-21  Nick Clifton  <nickc@cambridge.redhat.com>

 	* configure.in: Remove accidental enabling of bfd_gas=yes for
Index: gas/config/tc-mips.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-mips.c,v
retrieving revision 1.123
diff -u -p -r1.123 tc-mips.c
--- gas/config/tc-mips.c	14 May 2002 23:35:59 -0000	1.123
+++ gas/config/tc-mips.c	21 May 2002 23:32:52 -0000
@@ -6686,6 +6686,17 @@ macro2 (ip)
       --mips_opts.noreorder;
       break;

+    case M_DROL:
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
+		   "d,v,t", AT, 0, treg);
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
+		   "d,t,s", AT, sreg, AT);
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
+		   "d,t,s", dreg, sreg, treg);
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
+		   "d,v,t", dreg, dreg, AT);
+      break;
+
     case M_ROL:
       macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
 		   "d,v,t", AT, 0, treg);
@@ -6697,15 +6708,55 @@ macro2 (ip)
 		   "d,v,t", dreg, dreg, AT);
       break;

+    case M_DROL_I:
+      {
+	unsigned int rot;
+	char *l, *r;
+
+	if (imm_expr.X_op != O_constant)
+	  as_bad (_("rotate count too large"));
+	rot = imm_expr.X_add_number & 0x3f;
+	if (! rot)
+	  break;
+	l = (rot < 0x20) ? "dsll" : "dsll32";
+	r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
+	rot &= 0x1f;
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
+		     "d,w,<", AT, sreg, rot);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
+		     "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
+		     "d,v,t", dreg, dreg, AT);
+      }
+      break;
+
     case M_ROL_I:
-      if (imm_expr.X_op != O_constant)
-	as_bad (_("rotate count too large"));
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
-		   AT, sreg, (int) (imm_expr.X_add_number & 0x1f));
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
-		   dreg, sreg, (int) ((0 - imm_expr.X_add_number) & 0x1f));
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
-		   dreg, dreg, AT);
+      {
+	unsigned int rot;
+
+	if (imm_expr.X_op != O_constant)
+	  as_bad (_("rotate count too large"));
+	rot = imm_expr.X_add_number & 0x1f;
+	if (! rot)
+	  break;
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
+		     "d,w,<", AT, sreg, rot);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
+		     "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
+		     "d,v,t", dreg, dreg, AT);
+      }
+      break;
+
+    case M_DROR:
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
+		   "d,v,t", AT, 0, treg);
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
+		   "d,t,s", AT, sreg, AT);
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
+		   "d,t,s", dreg, sreg, treg);
+      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
+		   "d,v,t", dreg, dreg, AT);
       break;

     case M_ROR:
@@ -6719,15 +6770,44 @@ macro2 (ip)
 		   "d,v,t", dreg, dreg, AT);
       break;

+    case M_DROR_I:
+      {
+	unsigned int rot;
+	char *l, *r;
+
+	if (imm_expr.X_op != O_constant)
+	  as_bad (_("rotate count too large"));
+	rot = imm_expr.X_add_number & 0x3f;
+	if (! rot)
+	  break;
+	r = (rot < 0x20) ? "dsrl" : "dsrl32";
+	l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
+	rot &= 0x1f;
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
+		     "d,w,<", AT, sreg, rot);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
+		     "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
+		     "d,v,t", dreg, dreg, AT);
+      }
+      break;
+
     case M_ROR_I:
-      if (imm_expr.X_op != O_constant)
-	as_bad (_("rotate count too large"));
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
-		   AT, sreg, (int) (imm_expr.X_add_number & 0x1f));
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
-		   dreg, sreg, (int) ((0 - imm_expr.X_add_number) & 0x1f));
-      macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
-		   dreg, dreg, AT);
+      {
+	unsigned int rot;
+
+	if (imm_expr.X_op != O_constant)
+	  as_bad (_("rotate count too large"));
+	rot = imm_expr.X_add_number & 0x1f;
+	if (! rot)
+	  break;
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
+		     "d,w,<", AT, sreg, rot);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
+		     "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
+	macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
+		     "d,v,t", dreg, dreg, AT);
+      }
       break;

     case M_S_DOB:
Index: gas/testsuite/ChangeLog
===================================================================
RCS file: /cvs/src/src/gas/testsuite/ChangeLog,v
retrieving revision 1.315
diff -u -p -r1.315 ChangeLog
--- gas/testsuite/ChangeLog	20 May 2002 17:05:34 -0000	1.315
+++ gas/testsuite/ChangeLog	21 May 2002 23:32:54 -0000
@@ -1,3 +1,9 @@
+2002-05-22  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+	* gas/mips/rol64.s: New file, test of drol, dror macros.
+	* gas/mips/rol64.d: Likewise.
+	* gas/mips/mips.exp: Add new test.
+
 2002-05-20  Nick Clifton  <nickc@cambridge.redhat.com>

 	* gas/arm/arm.exp: Replace deprecated command line switches
Index: gas/testsuite/gas/mips/mips.exp
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/mips/mips.exp,v
retrieving revision 1.32
diff -u -p -r1.32 mips.exp
--- gas/testsuite/gas/mips/mips.exp	4 Apr 2002 08:23:30 -0000	1.32
+++ gas/testsuite/gas/mips/mips.exp	21 May 2002 23:32:54 -0000
@@ -122,6 +122,7 @@ if { [istarget mips*-*-*] } then {
 	run_dump_test "mul"
     }
     run_dump_test "rol"
+    run_dump_test "rol64"
     if !$aout { run_dump_test "sb" }
     run_dump_test "trunc"
     if !$aout { run_dump_test "ulh" }
Index: include/opcode/ChangeLog
===================================================================
RCS file: /cvs/src/src/include/opcode/ChangeLog,v
retrieving revision 1.167
diff -u -p -r1.167 ChangeLog
--- include/opcode/ChangeLog	17 May 2002 19:01:03 -0000	1.167
+++ include/opcode/ChangeLog	21 May 2002 23:32:57 -0000
@@ -1,3 +1,7 @@
+2002-05-22  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+	* mips.h: Add M_DROL, M_DROL_I, M_DROR, M_DROR_I macro cases.
+
 2002-05-17  Andrey Volkov  <avolkov@sources.redhat.com>

         * h8300.h: Corrected defs of all control regs
Index: include/opcode/mips.h
===================================================================
RCS file: /cvs/src/src/include/opcode/mips.h,v
retrieving revision 1.24
diff -u -p -r1.24 mips.h
--- include/opcode/mips.h	16 Mar 2002 03:09:18 -0000	1.24
+++ include/opcode/mips.h	21 May 2002 23:32:57 -0000
@@ -526,9 +526,13 @@ enum
   M_REM_3I,
   M_REMU_3,
   M_REMU_3I,
+  M_DROL,
   M_ROL,
+  M_DROL_I,
   M_ROL_I,
+  M_DROR,
   M_ROR,
+  M_DROR_I,
   M_ROR_I,
   M_S_DA,
   M_S_DOB,
Index: opcodes/ChangeLog
===================================================================
RCS file: /cvs/src/src/opcodes/ChangeLog,v
retrieving revision 1.447
diff -u -p -r1.447 ChangeLog
--- opcodes/ChangeLog	17 May 2002 14:36:45 -0000	1.447
+++ opcodes/ChangeLog	21 May 2002 23:33:00 -0000
@@ -1,3 +1,7 @@
+2002-05-22  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+	* mips-opc.c (mips_builtin_opcodes): Add drol, dror macros.
+
 Fri May 17 14:26:44 2002  J"orn Rennecke <joern.rennecke@superh.com>

 	* disassemble.c (disassembler): Just use print_insn_sh for bfd_arch_sh.
Index: opcodes/mips-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/mips-opc.c,v
retrieving revision 1.32
diff -u -p -r1.32 mips-opc.c
--- opcodes/mips-opc.c	17 Mar 2002 02:42:25 -0000	1.32
+++ opcodes/mips-opc.c	21 May 2002 23:33:00 -0000
@@ -492,6 +492,10 @@ const struct mips_opcode mips_builtin_op
 {"dremu",   "z,s,t",    0x0000001f, 0xfc00ffff, RD_s|RD_t|WR_HILO,      I3      },
 {"dremu",   "d,v,t",	3,    (int) M_DREMU_3,	INSN_MACRO,		I3	},
 {"dremu",   "d,v,I",	3,    (int) M_DREMU_3I,	INSN_MACRO,		I3	},
+{"drol",    "d,v,t",	0,    (int) M_DROL,	INSN_MACRO,		I3	},
+{"drol",    "d,v,I",	0,    (int) M_DROL_I,	INSN_MACRO,		I3	},
+{"dror",    "d,v,t",	0,    (int) M_DROR,	INSN_MACRO,		I3	},
+{"dror",    "d,v,I",	0,    (int) M_DROR_I,	INSN_MACRO,		I3	},
 {"dsllv",   "d,t,s",	0x00000014, 0xfc0007ff,	WR_d|RD_t|RD_s,		I3	},
 {"dsll32",  "d,w,<",	0x0000003c, 0xffe0003f, WR_d|RD_t,		I3	},
 {"dsll",    "d,w,s",	0x00000014, 0xfc0007ff,	WR_d|RD_t|RD_s,		I3	}, /* dsllv */
2002-05-21 23:54:48 +00:00
..
po Add Indonesian translation 2002-04-24 09:01:51 +00:00
ChangeLog ? gas/testsuite/gas/mips/rol64.d 2002-05-21 23:54:48 +00:00
ChangeLog-9297 Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ChangeLog-9899 Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
MAINTAINERS add MAINTAINERS files 2000-07-05 19:28:06 +00:00
Makefile.am * acinclude.m4 (AM_INSTALL_LIBBFD): Fake to fool autotools. 2002-05-17 10:34:29 +00:00
Makefile.in * acinclude.m4 (AM_INSTALL_LIBBFD): Fake to fool autotools. 2002-05-17 10:34:29 +00:00
a29k-dis.c * i960-dis.c: Add parameters for prototypes 2001-08-21 08:42:28 +00:00
acinclude.m4 * acinclude.m4 (AM_INSTALL_LIBBFD): Fake to fool autotools. 2002-05-17 10:34:29 +00:00
aclocal.m4 * acinclude.m4 (AM_INSTALL_LIBBFD): Fake to fool autotools. 2002-05-17 10:34:29 +00:00
alpha-dis.c * alpha-dis.c (print_insn_alpha): Also mask the base opcode for 2002-01-22 09:44:09 +00:00
alpha-opc.c * alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo 2002-02-15 21:00:45 +00:00
arc-dis.c * arc-dis.c: Formatting fixes. 2001-09-26 01:54:07 +00:00
arc-dis.h Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
arc-ext.c * tic54x-opc.c: Add default initializers to avoid warnings. 2001-08-31 20:05:24 +00:00
arc-ext.h Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
arc-opc.c * tic54x-opc.c: Add default initializers to avoid warnings. 2001-08-31 20:05:24 +00:00
arm-dis.c * arm-opc.h (arm_opcodes): Use generic rule %5?hb instead of %h. 2002-01-19 12:27:24 +00:00
arm-opc.h * arm-opc.h (arm_opcodes): Use generic rule %5?hb instead of %h. 2002-01-19 12:27:24 +00:00
avr-dis.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
cgen-asm.c * cgen-asm.c (cgen_parse_keyword): If the keyword is too big to 2001-11-09 18:05:30 +00:00
cgen-asm.in [ opcodes/ChangeLog ] 2002-02-12 14:51:54 +00:00
cgen-dis.c 2002-02-10 Daniel Jacobowitz <drow@mvista.com> 2002-02-10 19:03:14 +00:00
cgen-dis.in [ cgen/ChangeLog ] 2002-05-08 20:47:07 +00:00
cgen-ibld.in Fix badly placed #if 0... 2001-11-09 10:21:22 +00:00
cgen-opc.c Locale changes from Bruno Haible <haible@clisp.cons.org>. 2001-09-19 05:33:36 +00:00
cgen.sh Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
config.in * Makefile.am: "make dep-am". 2002-02-11 05:05:09 +00:00
configure * acinclude.m4 (AM_INSTALL_LIBBFD): Fake to fool autotools. 2002-05-17 10:34:29 +00:00
configure.in * acinclude.m4 (AM_INSTALL_LIBBFD): Fake to fool autotools. 2002-05-17 10:34:29 +00:00
cris-dis.c Fix compile time warning messages 2001-09-19 17:40:28 +00:00
cris-opc.c * cris-opc.c (cris_spec_regs): Add missing initializer field for 2001-05-18 15:21:59 +00:00
d10v-dis.c * d10v-dis.c (print_operand): Apply REGISTER_MASK to `num' of 2001-12-04 12:30:55 +00:00
d10v-opc.c * d10v-opc.c (d10v_predefined_registers): Remove warnings 2001-12-04 12:31:26 +00:00
d30v-dis.c * d30v-dis.c: Fix a comment typo. 2001-10-29 22:43:32 +00:00
d30v-opc.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
dep-in.sed * dep-in.sed: Cope with absolute paths. 2002-04-04 14:05:44 +00:00
dis-buf.c * dis-buf.c (generic_strcat_address): Add missing prototype. 2001-08-09 14:52:56 +00:00
disassemble.c print_insn_sh cleanup: 2002-05-17 14:36:46 +00:00
fr30-asm.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
fr30-desc.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
fr30-desc.h [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
fr30-dis.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
fr30-ibld.c [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
fr30-opc.c [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
fr30-opc.h [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
h8300-dis.c For include/opcode: 2001-08-26 11:47:39 +00:00
h8500-dis.c For include/opcode: 2001-08-26 11:47:39 +00:00
h8500-opc.h * h8500-opc.h: Add default initializers to h8500_table to shut up 2001-08-26 14:04:42 +00:00
hppa-dis.c * hppa-dis.c (print_insn_hppa): Handle new 'c' mode completers, 2001-12-31 23:44:08 +00:00
i370-dis.c More portability patches. Include sysdep.h everywhere. 2000-04-14 04:16:58 +00:00
i370-opc.c Fix compile time warnings 2001-09-20 15:28:25 +00:00
i386-dis.c * i386-dis.c (prefix_name): Fix handling of 32bit address prefix 2002-03-18 20:11:49 +00:00
i860-dis.c gas: 2000-08-09 03:33:42 +00:00
i960-dis.c Fix compile time warnings 2001-09-20 15:28:25 +00:00
ia64-asmtab.c Fix 2 bugs with parsing the resource dependency tables. 2001-03-20 02:32:27 +00:00
ia64-asmtab.h Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-dis.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-gen.c Locale changes from Bruno Haible <haible@clisp.cons.org>. 2001-09-19 05:33:36 +00:00
ia64-ic.tbl Fix DV bug reported by Intel against the setf instruction. 2001-02-14 20:30:26 +00:00
ia64-opc-a.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-opc-b.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-opc-d.c Improve gas error messages for invalid instructions. 2001-02-22 03:16:21 +00:00
ia64-opc-f.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-opc-i.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-opc-m.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-opc-x.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-opc.c * mips-dis.c: Add missing prototypes. 2001-08-21 08:51:12 +00:00
ia64-opc.h Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ia64-raw.tbl Fix ia64 gas testsuite. Update ia64 DV tables. Fix ia64 gas testsuite again. 2000-09-22 19:43:50 +00:00
ia64-war.tbl Fix ia64 gas testsuite. Update ia64 DV tables. Fix ia64 gas testsuite again. 2000-09-22 19:43:50 +00:00
ia64-waw.tbl Fix ia64 gas testsuite. Update ia64 DV tables. Fix ia64 gas testsuite again. 2000-09-22 19:43:50 +00:00
m32r-asm.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
m32r-desc.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
m32r-desc.h [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
m32r-dis.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
m32r-ibld.c [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
m32r-opc.c [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
m32r-opc.h [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
m32r-opinst.c [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
m68hc11-dis.c * m68hc11-dis.c (print_insn): Fix disassembly of movb with a 2001-11-01 09:48:57 +00:00
m68hc11-opc.c Applied Stephane Carrez <Stephane.Carrez@worldnet.fr> patches to add support 2000-06-19 01:22:44 +00:00
m68k-dis.c * m68k-dis.c: Fix formatting. 2001-07-24 00:48:04 +00:00
m68k-opc.c Fix definitions of wddata[bwl]. 2001-11-12 16:36:06 +00:00
m88k-dis.c 2001-06-24 Ben Elliston <bje@redhat.com> 2001-06-24 01:04:16 +00:00
m10200-dis.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
m10200-opc.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
m10300-dis.c * alpha-dis.c: Fix formatting. 2001-07-24 04:10:19 +00:00
m10300-opc.c 2001-06-15 Aldy Hernandez <aldyh@redhat.com> 2001-06-16 16:00:46 +00:00
makefile.vms 19990502 sourceware import 1999-05-03 07:29:11 +00:00
mcore-dis.c * mcore-dis.c: Fix formatting. 2001-08-13 08:09:58 +00:00
mcore-opc.h Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
mips-dis.c * mips-dis.c (is_newabi): EABI is not a NewABI. 2002-05-14 23:34:00 +00:00
mips-opc.c ? gas/testsuite/gas/mips/rol64.d 2002-05-21 23:54:48 +00:00
mips16-opc.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
mmix-dis.c * mmix-dis.c, mmix-opc.c: New files. 2001-10-31 02:40:19 +00:00
mmix-opc.c * mmix-dis.c, mmix-opc.c: New files. 2001-10-31 02:40:19 +00:00
mpw-config.in 19990502 sourceware import 1999-05-03 07:29:11 +00:00
mpw-make.sed 19990502 sourceware import 1999-05-03 07:29:11 +00:00
ns32k-dis.c Fix compile time warnings 2001-09-20 15:28:25 +00:00
openrisc-asm.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
openrisc-desc.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
openrisc-desc.h [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
openrisc-dis.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
openrisc-ibld.c [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
openrisc-opc.c [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
openrisc-opc.h [ include/opcode/ChangeLog ] 2002-01-22 21:45:36 +00:00
opintl.h Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
or32-dis.c Fix compile time warning messages 2002-02-08 12:12:15 +00:00
or32-opc.c Fix compile time warning messages 2002-02-08 12:12:15 +00:00
pdp11-dis.c * pdp11-opc.c: Fix "mark" operand type. Fix operand types 2002-03-05 03:09:53 +00:00
pdp11-opc.c * pdp11-opc.c: Fix "mark" operand type. Fix operand types 2002-03-05 03:09:53 +00:00
pj-dis.c For include/opcode: 2001-08-26 11:47:39 +00:00
pj-opc.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
ppc-dis.c * ppc-dis.c (powerpc_dialect): Handle power4 option. 2002-02-25 03:43:46 +00:00
ppc-opc.c * ppc-opc.c: Add "tlbiel" for POWER4. 2002-05-09 11:15:47 +00:00
s390-dis.c * dep-in.sed: Cope with absolute paths. 2002-04-04 14:05:44 +00:00
s390-mkopc.c s390 assembler improvements and testsuite 2001-09-18 15:41:33 +00:00
s390-opc.c s390 assembler improvements and testsuite 2001-09-18 15:41:33 +00:00
s390-opc.txt s390 assembler improvements and testsuite 2001-09-18 15:41:33 +00:00
sh-dis.c print_insn_sh cleanup: 2002-05-17 14:36:46 +00:00
sh-opc.h * sh-opc.h (sh_arg_type): Added A_DISP_PC_ABS. 2002-02-04 12:29:01 +00:00
sh64-dis.c print_insn_sh cleanup: 2002-05-17 14:36:46 +00:00
sh64-opc.c Contribute sh64-elf. 2002-02-08 05:51:04 +00:00
sh64-opc.h Contribute sh64-elf. 2002-02-08 05:51:04 +00:00
sparc-dis.c * sparc-dis.c (print_insn_sparc): Make sure 0xFFFFFFFF is not 2002-02-11 13:24:51 +00:00
sparc-opc.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
stamp-h.in 19990502 sourceware import 1999-05-03 07:29:11 +00:00
sysdep.h Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
tic30-dis.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
tic54x-dis.c Fix tic54x testsuite failures and Lmem disassembly bugs. 2001-11-13 14:22:53 +00:00
tic54x-opc.c Fix tic54x testsuite failures and Lmem disassembly bugs. 2001-11-13 14:22:53 +00:00
tic80-dis.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
tic80-opc.c Fix typos in ChangeLogs; fix dates in copyright notices 2001-03-13 22:58:38 +00:00
v850-dis.c For include/opcode: 2001-08-26 11:47:39 +00:00
v850-opc.c Fix compile time warnings 2001-09-20 15:28:25 +00:00
vax-dis.c * vax-dis.c (print_insn_arg): Pass the insn info to print_insn_mode. 2002-05-09 23:11:30 +00:00
w65-dis.c For include/opcode: 2001-08-26 11:47:39 +00:00
w65-opc.h Fix compile time warnings 2001-09-20 15:28:25 +00:00
xstormy16-asm.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
xstormy16-desc.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
xstormy16-desc.h [cgen/ChangeLog] 2002-01-11 07:24:59 +00:00
xstormy16-dis.c Regernate cgen built files. 2002-05-15 20:54:50 +00:00
xstormy16-ibld.c [cgen/ChangeLog] 2002-01-11 07:24:59 +00:00
xstormy16-opc.c [cgen/ChangeLog] 2002-01-11 07:24:59 +00:00
xstormy16-opc.h [cgen/ChangeLog] 2002-01-11 07:24:59 +00:00
z8k-dis.c The patch contains mostly fixes for the disassembler. It also fixes 2002-04-25 10:59:24 +00:00
z8k-opc.h The patch contains mostly fixes for the disassembler. It also fixes 2002-04-25 10:59:24 +00:00
z8kgen.c The patch contains mostly fixes for the disassembler. It also fixes 2002-04-25 10:59:24 +00:00