Go to file
Chao-ying Fu 74cd071d38 * config/tc-mips.c (mips_set_options): Add ase_dsp for DSP instructions.
(mips_opts): Add -1 to initialize ase_dsp.
(file_ase_dsp): New variable for -mdsp.
(CPU_HAS_DSP): New define.
(validate_mips_insn): Add supports for 3, 4, 5, 6, 7, 8, 9, 0, ', :, @
operand formats.
(mips_ip): Add min_range and max_range for checking singed numbers.
Check ase_dsp to enable DSP instructions.
Handle 3, 4, 5, 6, 7, 8, 9, 0, ', :, @ operand formats.
(OPTION_DSP, OPTION_NO_DSP): New define.
(OPTION_COMPAT_ARCH_BASE): Change because of inserting DSP define.
(md_parse_option): Parse OPTION_DSP and OPTION_NO_DSP.
(mips_after_parse_args): Set ase_dsp based on CPU.
(s_mipsset): Handle ".set dsp" and ".set nodsp".
(mips_elf_final_processing): Remind of adding new flag for DSP ASE.
(md_show_usage): Show usage of -mdsp and -mno-dsp.
2005-08-25 18:17:36 +00:00
bfd * elf32-sh.c (sh_elf_get_flags_from_mach): Fix off-by-one error. 2005-08-25 05:10:22 +00:00
binutils Remove a29k support. 2005-08-18 03:51:51 +00:00
config toplevel: 2005-08-12 14:22:33 +00:00
contrib
cpu [bfd] 2005-07-26 03:21:53 +00:00
etc
gas * config/tc-mips.c (mips_set_options): Add ase_dsp for DSP instructions. 2005-08-25 18:17:36 +00:00
gdb *** empty log message *** 2005-08-25 00:00:31 +00:00
gprof
include * mips.h (OP_SH_DSPACC, OP_MASK_DSPACC, OP_SH_DSPACC_S, 2005-08-25 18:09:24 +00:00
intl
ld * ld-mips-elf/multi-got-1.d: Adjust for new ld behavior. 2005-08-18 16:46:22 +00:00
libiberty merge from gcc 2005-08-17 18:03:42 +00:00
mmalloc
opcodes * mips-opc.c (WR_a, RD_a, MOD_a, DSP_VOLA, D32): New define. 2005-08-25 18:12:44 +00:00
readline Clarify ANSI, not POSIX, terminal escapes in ChangeLog 2005-07-25 15:13:33 +00:00
sim * interp.c (strswaplen): Add one for '\0' delimiter. 2005-08-02 16:17:59 +00:00
texinfo
.cvsignore
ChangeLog Sync from gcc sources: 2005-08-23 18:13:01 +00:00
compile
config-ml.in
config.guess
config.sub
configure toplevel: 2005-08-12 14:22:33 +00:00
configure.in toplevel: 2005-08-12 14:22:33 +00:00
COPYING
COPYING.LIB 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
COPYING.LIBGLOSS 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
COPYING.NEWLIB 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
depcomp
djunpack.bat
gettext.m4
install-sh
libtool.m4 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
ltcf-c.sh 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
ltcf-cxx.sh 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
ltcf-gcj.sh 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
ltconfig 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
ltmain.sh 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
MAINTAINERS
Makefile.def Sync from gcc sources: 2005-08-23 18:13:01 +00:00
Makefile.in Sync from gcc sources: 2005-08-23 18:13:01 +00:00
Makefile.tpl 2005-08-17 Christian Groessler <chris@groessler.org> 2005-08-17 15:52:29 +00:00
makefile.vms
missing
mkdep
mkinstalldirs
move-if-change 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
README
README-maintainer-mode
setup.com
src-release 2005-07-16 Kelley Cook <kcook@gcc.gnu.org> 2005-07-16 02:41:34 +00:00
symlink-tree
ylwrap

		   README for GNU development tools

This directory contains various GNU compilers, assemblers, linkers, 
debuggers, etc., plus their support routines, definitions, and documentation.

If you are receiving this as part of a GDB release, see the file gdb/README.
If with a binutils release, see binutils/README;  if with a libg++ release,
see libg++/README, etc.  That'll give you info about this
package -- supported targets, how to use it, how to report bugs, etc.

It is now possible to automatically configure and build a variety of
tools with one command.  To build all of the tools contained herein,
run the ``configure'' script here, e.g.:

	./configure 
	make

To install them (by default in /usr/local/bin, /usr/local/lib, etc),
then do:
	make install

(If the configure script can't determine your type of computer, give it
the name as an argument, for instance ``./configure sun4''.  You can
use the script ``config.sub'' to test whether a name is recognized; if
it is, config.sub translates it to a triplet specifying CPU, vendor,
and OS.)

If you have more than one compiler on your system, it is often best to
explicitly set CC in the environment before running configure, and to
also set CC when running make.  For example (assuming sh/bash/ksh):

	CC=gcc ./configure
	make

A similar example using csh:

	setenv CC gcc
	./configure
	make

Much of the code and documentation enclosed is copyright by
the Free Software Foundation, Inc.  See the file COPYING or
COPYING.LIB in the various directories, for a description of the
GNU General Public License terms under which you can copy the files.

REPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info
on where and how to report problems.