aboutsummaryrefslogtreecommitdiff
path: root/sim
AgeCommit message (Collapse)AuthorFilesLines
1995-09-19Mon Sep 18 18:42:27 1995 steve chamberlain <sac@slash.cygnus.com>Steve Chamberlain4-36/+49
* interp.c (trap): Remove useless code. Fri Sep 15 19:30:05 1995 steve chamberlain <sac@slash.cygnus.com> * syscall.h: Copy from newlib.
1995-09-15 * gencode.c: Back up PC by 2 for breakpoints.Stu Grossman2-8/+17
* interp.c: Move fp regs beyond pc/pr/etc to avoid confusing GDB, which expect pc to immediatly follow regs[].
1995-09-10Sun Sep 10 10:23:56 1995 Michael Tiemann <tiemann@axon.cygnus.com>Michael Tiemann1-0/+9
* registers.c (register_description): Add gdb synonyms for cr (cnd) and msr (ps).
1995-09-10fix typo.Michael Meissner1-1/+1
1995-09-08Update to new config schemeMichael Meissner7-32/+978
1995-09-08 * Makefile.in (install): Don't install in $(tooldir).Ian Lance Taylor2-11/+3
1995-09-08 * configure.in: Define CC_FOR_BUILD. Don't call AC_PROG_INSTALL.Ian Lance Taylor3-11/+28
* configure: Rebuild. * Makefile.in (INSTALL): Revert to using install.sh. (INSTALL_PROGRAM, INSTALL_DATA): Set to $(INSTALL). (INSTALL_XFORM, INSTALL_XFORM1): Restore. (CC_FOR_BUILD): Restore. (gencode): Build using $(CC_FOR_BUILD). (install): Don't install in $(tooldir).
1995-09-08 * configure.in: Remove AC_PROG_INSTALL.Ian Lance Taylor3-16/+20
* configure: Rebuild. * Makefile.in (INSTALL): Revert to using install.sh. (INSTALL_PROGRAM, INSTALL_DATA): Set to $(INSTALL). (INSTALL_XFORM, INSTALL_XFORM1): Restore. (mostlyclean): Make the same as clean, not distclean. (clean): Remove config.log. (install): Don't install in $(tooldir).
1995-09-08 * configure.in: Convert to use autoconf.Ian Lance Taylor9-67/+1194
* configure: New file, built by autoconf. * acconfig.h: New file. * config.in: New file, built by autoheader. * Makefile.in: Various changes for new configure script. Also: (INSTALL): Go up two levels, not one. (ALLOCA, MALLOC, OPCODES): Remove. (gencode): Use $(CC_FOR_BUILD). (case.o): Remove. (run.o, interp.o): Depend upon config.h. * interp.c: Include "config.h". Don't include "sysdep.h". Include <stdlib.h>, <time.h>, and <unistd.h> if they exist. * run.c: Include "config.h". Don't include "sysdep.h". Include <stdlib.h> if it exists. Include "getopt.h". Declare printf if necessary.
1995-09-08mention new config.in fileIan Lance Taylor1-0/+1
1995-09-08 * configure.in: Call AC_CONFIG_HEADER. Don't try to useIan Lance Taylor5-36/+75
bfd/hosts/*.h file or bfd/config/*.mh file. Call AC_PROG_CC and AC_PROG_RANLIB. Substitute in values for CFLAGS, HDEFINES and AR. Call AC_CHECK_HEADERS for stdlib.h and time.h. Touch stamp.h if creating config.h. * configure: Rebuild. * Makefile.in (AR): Define as @AR@. (CC): New variable, defined as @CC@. (CFLAGS): Define as @CFLAGS@. (RANLIB): Define as @RANLIB@. (HDEFINES, TDEFINES): New variables. (@host_makefile_frag@): Remove. (compile.o, run.o): Depend upon config.h. (mostlyclean): Make the same as clean, not distclean. (clean): Remove config.log. (distclean): Remove config.h and stamp-h. (Makefile): Don't depend upon @frags@. Just rebuild Makefile when invoking config.status. (config.h, stamp-h): New targets. * compile.c: Include "config.h". Don't include <sys/times.h>. Include <time.h> and <stdlib.h> if they exist. Don't include "sysdep.h". (get_now): Remove unused local b. * run.c: Include "config.h". Include <stdlib.h> if it exists. Don't include "sysdep.h". * writecode.c: Don't include "bfd.h" or "sysdep.h". Include <stdio.h>.
1995-09-08Do not include sysdep.h, bfd no longer provides itMichael Meissner5-10/+815
1995-09-07(Try to) Update to new bfd autoconf scheme.J.T. Conklin5-47/+1069
* run.c: Don't include sysdep.h. * Makefile.in (INSTALL{,_PROGRAM,_DATA}): Use autoconf computed value. (CC, CFLAGS, AR, RANLIB): Likewise. (HDEFINES, TDEFINES): Define. (CC_FOR_BUILD): Delete. (host_makefile_frag): Delete. (Makefile): Don't depend on frags. * configure.in (sysdep.h): Don't create symlink. (host_makefile_frag, frags): Deleted. (CC, CFLAGS, AR, RANLIB, INSTALL): Compute values. * configure: Regenerated.
1995-09-07 (Try to) Update to new bfd autoconf scheme.David Edelsohn5-38/+930
* run.c: Don't include sysdep.h. * Makefile.in (INSTALL{,_PROGRAM,_DATA}): Use autoconf computed value. (CC, CFLAGS, AR, RANLIB): Likewise. (HDEFINES, TDEFINES): Define. (CC_FOR_BUILD): Delete. (host_makefile_frag): Delete. (Makefile): Don't depend on frags. * configure.in (sysdep.h): Don't create symlink. (host_makefile_frag, frags): Deleted. (CC, CFLAGS, AR, RANLIB, INSTALL): Compute values. * configure: Regenerated.
1995-09-06Fix brk system call.Michael Meissner2-15/+42
1995-08-31 * Makefile.in (run): Link in math library too.Jeff Law1-0/+1
1995-08-31 * interp.c (FPSCR, FPUL): Define.Jeff Law3-6/+94
(struct save_state): Add fields for floating point registers, FPSCR and FPUL. (sim_resume): Add 'F' for accessing floating point registers in the save state structure. * gencode.c: Add sh3e opcodes. (gensym): Define a buffer for int<->fp conversions. First cut at simulating sh3e instructions. Basic stuff should work; instructions using fpul and fpscr are completely untested... Sanitized away for now (sh3e).
1995-08-31 * gencode.c (gensim): abort if an unknown opcode is encountered.Jeff Law2-9/+35
1995-08-25Only build PowerPC simulator if target is powerpc*-*-eabisimMichael Meissner1-2/+2
1995-08-23Add PowerPC simulator from Andrew Cagney <cagney@highland.com.au>Michael Meissner36-20/+9971
1995-08-12For Sega/Hitachi, when simulator exits, check to see if it was becauseJim Wilson1-7/+20
of a signal.
1995-08-03Document FSF address updating of all files with FSF addresses,Fred Fish1-0/+4
except for the COPYING* files.
1995-08-03Remove Sanitize reference.Fred Fish1-1/+0
1995-08-02Update FSF address.Fred Fish5-19/+19
1995-07-05forgot to check this inJ.T. Conklin1-22/+19
1995-07-05* Makefile.in, configure.in: converted to autoconf.J.T. Conklin3-0/+179
* configure: New file, generated with autconf 2.4.
1995-07-05* Makefile.in (distclean, mostlyclean, realclean): Remove autoconf files.J.T. Conklin2-2/+6
1995-07-05* w65.mt: Removed.J.T. Conklin3-4/+4
1995-07-05* arm.mt: Removed.J.T. Conklin3-4/+4
1995-07-05* sh.mt: Removed.J.T. Conklin3-5/+2
1995-07-05* h8300.mt: Removed.J.T. Conklin3-5/+2
1995-07-05* Makefile.in (all, clean, distclean, mostlyclean, realclean,J.T. Conklin1-13/+0
install): Changed targets so that they descend all subdirectories in $(SUBDIRS). (*-all, *-clean, *-install): Removed targets. * configure.in: Don't bother with target makefile fragments, they are no longer needed. * configure: regenerated.
1995-07-05* Makefile.in, configure.in: converted to autoconf.J.T. Conklin13-229/+1115
* configure: New file, generated with autconf 2.4.
1995-07-01 * interp.c (sim_open): If argument supplied, interpret asStan Shebs1-2/+9
desired memory size. (parse_and_set_memory_size): New function. (sim_do_command): New function.
1995-07-01 * compile.c (sim_do_command): New function.Stan Shebs1-0/+4
1995-06-30 * wrapper.c (sim_do_command): New function.Stan Shebs1-0/+9
1995-06-29 * interp.c: (SYS_wait): Define as SYS_wait4 if available andFred Fish2-0/+15
SYS_wait is not already defined (SunOS 4.1.3 for example). (SYS_utime): Define as SYS_utimes if available and SYS_utime is not already defined.
1995-06-23 * interp.c: Don't include sys/times.h or sys/param.hSteve Chamberlain2-2/+4
1995-06-21 * interp.c: (SIGBUS, SIGTERM): Define if not.Steve Chamberlain3-14/+48
(sim_memory_size): default to 2^19 on PCs. (sim_resume): Poll for quits on win32.
1995-06-20 * compile.c (get_now): Don't do if win32.Steve Chamberlain2-59/+130
(sim_resume): Poll in win32 too.
1995-06-13 * armos.c (ARMul_OSHandleSWI): New version to work withSteve Chamberlain1-2/+2
newlib simply.
1995-06-08 * run.c (main): Grab return value from right register.Steve Chamberlain2-3/+12
1995-05-25Unsanitize SH3 support.Jim Wilson1-23/+0
1995-05-24Correct typo in all simulator configure.in files other than SH: ../bfdJim Wilson3-2/+6
should be ../../bfd.
1995-05-24Wed May 24 14:48:46 1995 Steve Chamberlain <sac@slash.cygnus.com>Steve Chamberlain3-1/+73
* Makefile.in: Support ARM. * configure.in: Ditto.
1995-05-24Wed May 24 14:37:31 1995 Steve Chamberlain <sac@slash.cygnus.com>Steve Chamberlain23-0/+5310
* New.
1995-05-24Wed May 24 14:07:11 1995 Steve Chamberlain <sac@slash.cygnus.com>Steve Chamberlain2-15/+33
* gencode.c (tab): Add bsrf and braf.
1995-04-24 * configure.in: use ../../bfd/hosts/std-host.h, notJason Molenda1-1/+1
../bfd/hosts/std-host.h (which doesn't exist).
1995-03-27* run.c: parse arguments with getopt().J.T. Conklin4-67/+112
1995-02-28fix configuryIan Lance Taylor4-10/+11