old-cross-binutils/gas/config
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
..
aout_gnu.h Fix copyright notices 2001-03-08 23:24:26 +00:00
atof-ieee.c Fix thinko in last commit. 2002-04-11 11:21:01 +00:00
atof-tahoe.c Fix copyright notices 2001-03-08 23:24:26 +00:00
atof-vax.c Fix copyright notices 2001-03-08 23:24:26 +00:00
e-crisaout.c
e-criself.c
e-i386aout.c * symbols.c: Add missing prototypes. 2001-08-09 14:42:07 +00:00
e-i386coff.c * symbols.c: Add missing prototypes. 2001-08-09 14:42:07 +00:00
e-i386elf.c * symbols.c: Add missing prototypes. 2001-08-09 14:42:07 +00:00
e-mipsecoff.c
e-mipself.c
itbl-mips.h Fix copyright notices 2001-03-08 23:24:26 +00:00
m68k-parse.h Fix copyright notices 2001-03-08 23:24:26 +00:00
m68k-parse.y Locale changes from Bruno Haible <haible@clisp.cons.org>. 2001-09-19 05:33:36 +00:00
m88k-opcode.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-aout.c Fix compile time warnings 2001-09-22 09:23:31 +00:00
obj-aout.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-bout.c * symbols.c (resolve_symbol_value): Remove "finalize" param, 2001-05-22 10:23:50 +00:00
obj-bout.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-coff.c Fix formatting and compile tine warnings when compiling without BFD_ASSEMBLER 2002-05-11 12:08:26 +00:00
obj-coff.h * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
obj-ecoff.c * write.c (write_object_file): Make use of bfd_section_list_remove. 2002-01-05 13:13:18 +00:00
obj-ecoff.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-elf.c * config/obj-coff.c: Fix formatting. 2002-05-09 13:12:57 +00:00
obj-elf.h * config/obj-elf.c (elf_copy_symbol_attributes): Make it a global 2001-08-08 13:11:58 +00:00
obj-evax.c Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-evax.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-hp300.c Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-hp300.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-ieee.c * symbols.c (S_GET_VALUE): Don't treat O_constant and local 2001-07-23 13:03:40 +00:00
obj-ieee.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-multi.c
obj-multi.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-som.c Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-som.h Fix copyright notices 2001-03-08 23:24:26 +00:00
obj-vms.c Locale changes from Bruno Haible <haible@clisp.cons.org>. 2001-09-19 05:33:36 +00:00
obj-vms.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-a29k.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-a29k.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-alpha.c * config/obj-coff.c: Fix formatting. 2002-05-09 13:12:57 +00:00
tc-alpha.h * config/tc-alpha.c (O_samegp): New. 2002-02-09 22:55:06 +00:00
tc-arc.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-arc.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-arm.c Remove redundant call to listing_prev_line 2002-05-14 20:40:30 +00:00
tc-arm.h * tc-arm.c (all error messages): Normalize capitalization of messages. 2002-01-14 15:01:04 +00:00
tc-avr.c * config/tc-avr.c (mcu_types): Update for new devices. 2002-05-16 19:24:00 +00:00
tc-avr.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-cris.c Fix typo in comment in last commit 2001-11-17 18:51:15 +00:00
tc-cris.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-d10v.c * config/obj-coff.c: Fix formatting. 2002-05-09 13:12:57 +00:00
tc-d10v.h Various fixes and improvements for d10v. 2002-04-03 19:44:05 +00:00
tc-d30v.c * config/obj-coff.c: Fix formatting. 2002-05-09 13:12:57 +00:00
tc-d30v.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-fr30.c Locale changes from Bruno Haible <haible@clisp.cons.org>. 2001-09-19 05:33:36 +00:00
tc-fr30.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-generic.c
tc-generic.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-h8300.c * config/obj-coff.c: Fix formatting. 2002-05-09 13:12:57 +00:00
tc-h8300.h * tc-h8300.c (relocation mappings): Remove. Moved to tc-h8300.h. 2001-08-31 17:43:52 +00:00
tc-h8500.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-h8500.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-hppa.c * config/obj-coff.c: Fix formatting. 2002-05-09 13:12:57 +00:00
tc-hppa.h bfd: 2002-02-02 18:36:04 +00:00
tc-i370.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-i370.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-i386.c * config/tc-i386.c (md_estimate_size_before_relax) Don't lose 2002-05-09 06:35:22 +00:00
tc-i386.h * config/tc-i386.h (REX_OPCODE): Define. 2002-03-09 05:36:51 +00:00
tc-i860.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-i860.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-i960.c Fix i960-elf abort in cvt_frag_to_fill while compiling libc/stdio/vfprintf.c. 2002-05-09 01:43:11 +00:00
tc-i960.h * config/tc-alpha.h: Fix formatting. 2001-07-23 14:02:13 +00:00
tc-ia64.c * config/tc-ia64.c: Fix formatting. 2002-05-06 11:43:03 +00:00
tc-ia64.h * config/tc-ia64.c: Fix formatting. 2002-05-06 11:43:03 +00:00
tc-m32r.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-m32r.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-m68hc11.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-m68hc11.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-m68k.c * config/tc-m68k.c: Fix formatting. 2002-05-08 01:54:04 +00:00
tc-m68k.h * config/tc-m68k.h (md_prepare_relax_scan): Rewrite. 2002-01-06 12:15:45 +00:00
tc-m88k.c 2001-11-20 Ben Elliston <bje@redhat.com> 2001-11-20 03:33:30 +00:00
tc-m88k.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-m68851.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-mcore.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-mcore.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-mips.c ? gas/testsuite/gas/mips/rol64.d 2002-05-21 23:54:48 +00:00
tc-mips.h Remove redundant definition. 2001-12-18 14:35:34 +00:00
tc-mmix.c * config/tc-mmix.c: Fix formatting. 2002-05-09 00:33:09 +00:00
tc-mmix.h * config/tc-mmix.c: Fix formatting. 2002-05-09 00:33:09 +00:00
tc-mn10200.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-mn10200.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-mn10300.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-mn10300.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-ns32k.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-ns32k.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-openrisc.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-openrisc.h Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-or32.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-or32.h Add support for OpenRISC 32-bit embedded processor 2002-01-31 17:33:08 +00:00
tc-pdp11.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-pdp11.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-pj.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-pj.h * config/tc-alpha.h: Fix formatting. 2001-07-23 14:02:13 +00:00
tc-ppc.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-ppc.h * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-s390.c * config/tc-mips.c: Fix formatting. 2002-05-04 17:38:00 +00:00
tc-s390.h * config/tc-mips.c: Fix formatting. 2002-05-04 17:38:00 +00:00
tc-sh.c Define md_pcrel_from for use with sh-hms target. 2002-05-11 11:31:17 +00:00
tc-sh.h * config/tc-sh.h (TC_FIX_ADJUSTABLE): Disable adjusting if 2002-04-09 16:48:03 +00:00
tc-sh64.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-sh64.h Contribute sh64-elf. 2002-02-08 06:32:23 +00:00
tc-sparc.c * config/tc-sparc.c (U0x80000000, U0xffffffff): New constants. 2002-02-11 13:24:06 +00:00
tc-sparc.h * elf32-sparc.c (_bfd_sparc_elf_howto_table): Fix dst_mask for 2001-12-21 22:35:24 +00:00
tc-tahoe.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-tahoe.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-tic30.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-tic30.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-tic54x.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-tic54x.h Fix tic54x testsuite failures and Lmem disassembly bugs. 2001-11-13 14:22:53 +00:00
tc-tic80.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-tic80.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-v850.c * config/tc-v850.c: Add missing prototypes amd use old-style 2002-02-01 16:29:21 +00:00
tc-v850.h * config/tc-v850.c: Add missing prototypes amd use old-style 2002-02-01 16:29:21 +00:00
tc-vax.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-vax.h Fix copyright notices 2001-03-08 23:24:26 +00:00
tc-w65.c Update all uses of md_apply_fix to use md_apply_fix3. Make it a void function. 2001-11-15 21:29:00 +00:00
tc-w65.h * config/tc-alpha.h: Fix formatting. 2001-07-23 14:02:13 +00:00
tc-xstormy16.c * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-xstormy16.h * config/obj-coff.h: Fix formatting. 2002-05-11 09:53:52 +00:00
tc-z8k.c The patch contains mostly fixes for the disassembler. It also fixes 2002-04-25 10:59:24 +00:00
tc-z8k.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-386bsd.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-aix5.h * config/te-aix5.h: Typo fix. 2002-03-22 02:07:36 +00:00
te-aux.h
te-delt88.h
te-delta.h
te-dpx2.h
te-dynix.h
te-epoc-pe.h
te-freebsd.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-generic.h
te-go32.h
te-hp300.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-hppa.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-hppa64.h
te-hppalinux64.h
te-hpux.h
te-i386aix.h
te-ia64aix.h Added ia64-*-aix* configuration. 2001-02-22 17:16:38 +00:00
te-ic960.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-interix.h
te-linux.h
te-lnews.h
te-lynx.h
te-mach.h
te-macos.h
te-nbsd.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-nbsd532.h
te-pc532mach.h
te-pe.h
te-ppcnw.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-psos.h
te-riscix.h
te-sparcaout.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-sun3.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-svr4.h
te-sysv32.h
te-tmips.h Fix copyright notices 2001-03-08 23:24:26 +00:00
te-wince-pe.h
vax-inst.h Fix copyright notices 2001-03-08 23:24:26 +00:00
vms-a-conf.h
vms-conf.h