binutils-gdb/sim/mips
Ian Lance Taylor 4fa134beac * configure.in: Add calls to AC_CONFIG_HEADER, AC_CHECK_HEADERS,
AC_CHECK_LIB, and AC_CHECK_FUNCS.  Change AC_OUTPUT to set
	stamp-h.
	* configure: Rebuild.
	* config.in: New file, generated by autoheader.
	* interp.c: Include "config.h".  Include <stdlib.h>, <string.h>,
	and <strings.h> if they exist.  Replace #ifdef sun with #ifdef
	HAVE_ANINT and HAVE_AINT, as appropriate.
	* Makefile.in (run): Use @LIBS@ rather than -lm.
	(interp.o): Depend upon config.h.
	(Makefile): Just rebuild Makefile.
	(clean): Remove stamp-h.
	(mostlyclean): Make the same as clean, not as distclean.
	(config.h, stamp-h): New targets.
1996-06-03 15:58:45 +00:00
..
ChangeLog * configure.in: Add calls to AC_CONFIG_HEADER, AC_CHECK_HEADERS, 1996-06-03 15:58:45 +00:00
configure * configure.in: Add calls to AC_CONFIG_HEADER, AC_CHECK_HEADERS, 1996-06-03 15:58:45 +00:00
configure.in * configure.in: Add calls to AC_CONFIG_HEADER, AC_CHECK_HEADERS, 1996-06-03 15:58:45 +00:00
gencode.c Fri Apr 19 15:48:24 1996 James G. Smith <jsmith@cygnus.co.uk> 1996-04-19 14:53:16 +00:00
interp.c * configure.in: Add calls to AC_CONFIG_HEADER, AC_CHECK_HEADERS, 1996-06-03 15:58:45 +00:00
Makefile.in * configure.in: Add calls to AC_CONFIG_HEADER, AC_CHECK_HEADERS, 1996-06-03 15:58:45 +00:00
README.Cygnus Initial check-in of the MIPS simulator. Work still needs to be done on 1995-11-08 15:44:38 +00:00
support.h Thu Mar 7 11:19:33 1996 James G. Smith <jsmith@cygnus.co.uk> 1996-03-07 11:25:15 +00:00

> README.Cygnus
-------------------------------------------------------------------------------

The following are the main reasons for constructing the simulator as a
generator:

1) Avoid large fixed decode source file, with lots of #ifs controlling
   the compilation. i.e. keep the source cleaner, smaller and easier
   to parse.

2) Allow optimum code to be created, without run-time checks on
   instruction types. Ensure that the simulator engine only includes
   code for the architecture being targetted. e.g. This avoids
   run-time checks on ISA conformance, aswell as increasing
   throughput.

3) Allow updates to the instruction sets to be added quickly. Having a
   table means that the information is together, and is easier to
   manipulate. Having the table generate the engine, rather than the
   run-time parse the table gives higher performance at simulation
   time.

4) Keep all the similar simulation code together. i.e. have a single
   place where, for example, the addition code is held. This ensures that
   updates to the simulation are not spread over a large flat source
   file maintained by the developer.

-------------------------------------------------------------------------------

To keep the simulator simple (and to avoid the slight chance of
mis-matched files) the manifests describing an engine, and the
simulator engine itself, are held in the same source file.

This means that the engine must be included twice, with the first pass
controlled by the SIM_MANIFESTS definition.

-------------------------------------------------------------------------------
> EOF README.Cygnus