fi
fi
-sh3e_files="ChangeLog ChangeLog.1"
-if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping sh3e stuff in $sh3e_files.
- fi
-else
- if [ -n "${verbose}" ]; then
- echo -n Cleaning sh3e in `pwd`:
- fi
- for f in $sh3e_files ; do
- if [ -n "${verbose}" ] ; then
- echo -n " " $f
- fi
- sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
- if [ -n "${safe}" ] ; then
- mv $f .Recover
- fi
- mv new $f
- done
- if [ -n "${verbose}" ]; then
- echo ""
- fi
-fi
-
rce_files="configure.in configure ChangeLog Makefile.in ChangeLog.1"
if ( echo $* | grep keep\-rce > /dev/null ) ; then
first unquoted space.
(equals): Likewise.
-start-sanitize-sh3e
Wed Sep 6 15:03:53 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* config/tc-sh.c (get_operands): Read third arg if it exists.
Otherwise, clear it.
(get_specific, case F_FR0): Add.
-end-sanitize-sh3e
Wed Sep 6 15:03:53 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* config/tc-sh.c (get_specific): Delete arg_to_test.
(TARG_CPU_DEP_m68k): Depend upon $(srcdir)/config/m68k-parse.h.
(m68k-parse.c, m68k-parse.o): New targets.
-start-sanitize-sh3e
Mon Aug 7 02:54:20 1995 Jeff Law (law@snake.cs.utah.edu)
* config/tc-sh.c (parse_reg): Handle new FP registers.
(get_specific): Handle new operand types.
-end-sanitize-sh3e
Fri Aug 4 12:29:21 1995 Ian Lance Taylor <ian@cygnus.com>
* expr.c (op_encoding): Make non-const. Don't set '"' to
done
fi
-sh3e_files="ChangeLog"
-if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping sh3e stuff in $sh3e_files.
- fi
-else
- if [ -n "${verbose}" ]; then
- echo -n Cleaning sh3e in `pwd`:
- fi
- for f in $sh3e_files ; do
- if [ -n "${verbose}" ] ; then
- echo -n " " $f
- fi
- sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
- if [ -n "${safe}" ] ; then
- mv $f .Recover
- fi
- mv new $f
- done
-fi
-
# End of file.
done
fi
-sh3e_files="ChangeLog"
-
-if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
- for i in $sh3e_files ; do
- if test ! -d $i && (grep sanitize-sh3e $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping sh3e stuff in $i
- fi
- fi
- done
-else
- for i in $sh3e_files ; do
- if test ! -d $i && (grep sanitize-sh3e $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Removing traces of \"sh3e\" from $i...
- fi
- cp $i new
- sed '/start\-sanitize\-sh3e/,/end-\sanitize\-sh3e/d' < $i > new
- if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
- if [ -n "${verbose}" ] ; then
- echo Caching $i in .Recover...
- fi
- mv $i .Recover
- fi
- mv new $i
- fi
- done
-fi
-
if ( echo $* | grep keep\-gm > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
* NEWS: Fix typo.
-start-sanitize-sh3e
Mon Oct 16 18:24:03 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* config/sh/tm-sh.h (REGISTER_VIRTUAL_TYPE): Return builtin_type_float
(NUM_REGS, NUM_REALREGS): Increase from 23 to 41.
(FPUL_REGNUM, FP0_REGNUM): New macros.
-end-sanitize-sh3e
Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com)
* remote-mips.c: Add support for speedy (about 10x faster)
Do-last:
-sh3e_files="tm-sh.h"
-
-if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
- for i in $sh3e_files ; do
- if test ! -d $i && (grep sanitize-sh3e $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping sh3e stuff in $i
- fi
- fi
- done
-else
- for i in $sh3e_files ; do
- if test ! -d $i && (grep sanitize-sh3e $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Removing traces of \"sh3e\" from $i...
- fi
- cp $i new
- sed '/start\-sanitize\-sh3e/,/end-\sanitize\-sh3e/d' < $i > new
- if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
- if [ -n "${verbose}" ] ; then
- echo Caching $i in .Recover...
- fi
- mv $i .Recover
- fi
- mv new $i
- fi
- done
-fi
-
# End of file.
/* Return the GDB type object for the "standard" data type
of data in register N. */
-#define REGISTER_VIRTUAL_TYPE(N) builtin_type_int
-/* start-sanitize-sh3e */
-#undef REGISTER_VIRTUAL_TYPE
#define REGISTER_VIRTUAL_TYPE(N) \
((((N) >= FP0_REGNUM && (N) < FP0_REGNUM+32) \
|| (N) == FPUL_REGNUM) \
? builtin_type_float : builtin_type_int)
-/* end-sanitize-sh3e */
/* Initializer for an array of names of registers.
Entries beyond the first NUM_REGS are ignored. */
-#define REGISTER_NAMES \
- {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
- "r8", "r9", "r10","r11","r12","r13","r14","r15",\
- "pc", "pr","gbr","vbr","mach","macl","sr","ticks","stalls","cycles","insts" ,"plr","tlr" }
-/* start-sanitize-sh3e */
-#undef REGISTER_NAMES
#define REGISTER_NAMES \
{"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
"r8", "r9", "r10","r11","r12","r13","r14","r15",\
"fr0", "fr1", "fr2", "fr3", "fr4", "fr5", "fr6", "fr7", \
"fr8", "fr9", "fr10","fr11","fr12","fr13","fr14","fr15",\
}
-/* end-sanitize-sh3e */
-#define NUM_REGS 28
-/* start-sanitize-sh3e */
-#undef NUM_REGS
#define NUM_REGS 41
-/* end-sanitize-sh3e */
/* Register numbers of various important registers.
Note that some of these values are "real" register numbers,
#define MACL_REGNUM 21
#define SR_REGNUM 22
#define NUM_REALREGS 23
-/* start-sanitize-sh3e */
#define FPUL_REGNUM 23
#define FP0_REGNUM 25
#undef NUM_REALREGS
#define NUM_REALREGS 41
-/* end-sanitize-sh3e */
/* Store the address of the place in which to copy the structure the
subroutine will return. This is called from call_function.
# done.
Do-last:
-sh3e_files="ChangeLog"
-if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping sh3e stuff in $sh3e_files.
- fi
-else
- if [ -n "${verbose}" ]; then
- echo -n Cleaning sh3e in `pwd`:
- fi
- for f in $sh3e_files ; do
- if [ -n "${verbose}" ] ; then
- echo -n " " $f
- fi
- sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
- if [ -n "${safe}" ] ; then
- mv $f .Recover
- fi
- mv new $f
- done
-fi
# eof
* gdb.stabs/weird.exp: Remove rs6000 xfail, xcoffread.c now
handles common blocks.
-start-sanitize-sh3e
Thu Sep 21 01:28:10 1995 Jeff Law (law@snake.cs.utah.edu)
* gdb.disasm/sh3.s (fmac): Update for new assembler syntax
* gdb.disasm/sh3.exp (fmac): Corresponding changes.
-end-sanitize-sh3e
Wed Sep 20 13:15:05 1995 Ian Lance Taylor <ian@cygnus.com>
* Makefile.in (maintainer-clean): New target, synonym for
done
fi
-sh3e_files="ChangeLog sh-dis.c sh-opc.h"
-if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping sh3e stuff in $sh3e_files.
- fi
-else
- if [ -n "${verbose}" ]; then
- echo -n Cleaning sh3e in `pwd`:
- fi
- for f in $sh3e_files ; do
- if [ -n "${verbose}" ] ; then
- echo -n " " $f
- fi
- sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
- if [ -n "${safe}" ] ; then
- mv $f .Recover
- fi
- mv new $f
- done
-fi
-
rce_files="configure.in configure"
if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $rce_files ; do
* mips-opc.c: Change unaligned loads and stores with "t,A"
operands to use "t,A(b)".
-start-sanitize-sh3e
Thu Sep 7 19:02:46 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* sh-dis.c (print_insn_shx): Add F_FR0 support.
-end-sanitize-sh3e
Thu Sep 7 19:02:46 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* sh-dis.c (print_insn_shx): Change loop over op->arg[n] to iterate
* configure.in: Substitute HDEFINES.
* configure: Rebuild.
-start-sanitize-sh3e
Wed Sep 6 15:08:09 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* sh-opc.h (sh_arg_type): Add F_FR0.
(sh_table, case fmac): Add F_FR0 as first argument.
-end-sanitize-sh3e
Wed Sep 6 15:08:09 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* sh-opc.h (sh_opcode_info): Increase arg array size to 4.
Use them rather than looking through target Makefile fragments.
* configure: Rebuild.
-start-sanitize-sh3e
Thu Aug 31 12:35:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* sh-opc.h (ftrc): Change FPUL_N to FPUL_M.
-end-sanitize-sh3e
Wed Aug 30 13:52:28 1995 Doug Evans <dje@canuck.cygnus.com>
* sparc-opc.c (sparc_opcodes): Delete duplicate wr %y insn.
(sparc_{encode,decode}_prefetch): New functions.
* sparc-dis.c (print_insn): Handle '*' arg (prefetch function).
-start-sanitize-sh3e
Wed Aug 30 11:11:58 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* sh-opc.h: Add blank lines to improve readabililty of sh3e
instructions.
-end-sanitize-sh3e
Wed Aug 30 11:09:38 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* sh-dis.c: Correct comment on first line of file.
and likewise for the size variants. Add dbhs as an alias for
dbcc.
-start-sanitize-sh3e
Fri Aug 11 13:40:24 1995 Jeff Law (law@snake.cs.utah.edu)
* sh-opc.h (FP sts instructions): Update to match reality.
-end-sanitize-sh3e
Mon Aug 7 16:12:58 1995 Ian Lance Taylor <ian@cygnus.com>
* m68k-dis.c: (fpcr_names): Add % before all register names.
* m68k-opc.c (m68k_opcode_aliases): Add jsrl and jsrs as aliases
for jsr.
-start-sanitize-sh3e
Mon Aug 7 02:21:40 1995 Jeff Law (law@snake.cs.utah.edu)
* sh-dis.c (print_insn_shx): Handle new operand types F_REG_N,
* sh-opc.h (sh_arg_type): Add new operand types.
(sh_table): Add new opcodes from SH3E Floating Point ISA.
-end-sanitize-sh3e
Sat Aug 5 16:50:14 1995 Fred Fish <fnf@cygnus.com>
* Makefile.in (distclean): Remove generated file config.h.