binutils-gdb/sim/mips
Andrew Cagney c02ed6a8a3 For bfd, add vr5400 and vr5000 mips machine variants to list of machines.
For sim/mips, enable multi-sim support when mips64vr5400-elf is target.
For sim/igen, allow specification of a default machine (will need
more work later).
1997-12-09 04:01:06 +00:00
..
.Sanitize Move MDMX instructions which are public knowledge from vr5400.igen 1997-11-26 11:47:36 +00:00
ChangeLog For bfd, add vr5400 and vr5000 mips machine variants to list of machines. 1997-12-09 04:01:06 +00:00
config.in
configure Regenerate configure files. 1997-12-04 17:26:06 +00:00
configure.in For bfd, add vr5400 and vr5000 mips machine variants to list of machines. 1997-12-09 04:01:06 +00:00
gencode.c
interp.c o Add SIM_SIGFPE to sim-signals 1997-11-20 09:50:36 +00:00
m16.igen
Makefile.in
mdmx.igen Fix typo in format argument to sim_io_eprintf. 1997-11-26 12:07:27 +00:00
mips.dc
mips.igen
README.Cygnus
sim-main.h o Add SIM_SIGFPE to sim-signals 1997-11-20 09:50:36 +00:00
tconfig.in
vr5400.igen Move MDMX instructions which are public knowledge from vr5400.igen 1997-11-26 11:47:36 +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