diff options
author | Nick Clifton <nickc@redhat.com> | 2015-11-24 08:47:59 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-11-24 08:47:59 +0000 |
commit | 2e8cf49e1387eba9c4ce062885b99a6eb76c01f8 (patch) | |
tree | 363800e2edad589cb37f72e10fc842097a8ec9c4 /sim/ChangeLog | |
parent | 351e610191016136a49ee2a0889f1c4929169fc6 (diff) | |
download | gdb-2e8cf49e1387eba9c4ce062885b99a6eb76c01f8.zip gdb-2e8cf49e1387eba9c4ce062885b99a6eb76c01f8.tar.gz gdb-2e8cf49e1387eba9c4ce062885b99a6eb76c01f8.tar.bz2 |
Add an AArch64 simulator to GDB.
sim * configure.tgt: Add aarch64 entry.
* configure: Regenerate.
* sim/aarch64/configure.ac: New configure template.
* sim/aarch64/aclocal.m4: Generate.
* sim/aarch64/config.in: Generate.
* sim/aarch64/configure: Generate.
* sim/aarch64/cpustate.c: New file - functions for accessing
AArch64 registers.
* sim/aarch64/cpustate.h: New header.
* sim/aarch64/decode.h: New header.
* sim/aarch64/interp.c: New file - interface between GDB and
simulator.
* sim/aarch64/Makefile.in: New makefile template.
* sim/aarch64/memory.c: New file - functions for simulating
aarch64 memory accesses.
* sim/aarch64/memory.h: New header.
* sim/aarch64/sim-main.h: New header.
* sim/aarch64/simulator.c: New file - aarch64 simulator
functions.
* sim/aarch64/simulator.h: New header.
include/gdb * sim-aarch64.h: New file.
sim/test * configure: Regenerate.
* sim/aarch64: New directory.
Diffstat (limited to 'sim/ChangeLog')
-rw-r--r-- | sim/ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog index 6df4bd6..76d75c9 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,26 @@ +2015-11-24 Nick Clifton <nickc@redhat.com> + + * configure.tgt: Add aarch64 entry. + * configure: Regenerate. + * sim/aarch64/configure.ac: New configure template. + * sim/aarch64/aclocal.m4: Generate. + * sim/aarch64/config.in: Generate. + * sim/aarch64/configure: Generate. + * sim/aarch64/cpustate.c: New file - functions for accessing + AArch64 registers. + * sim/aarch64/cpustate.h: New header. + * sim/aarch64/decode.h: New header. + * sim/aarch64/interp.c: New file - interface between GDB and + simulator. + * sim/aarch64/Makefile.in: New makefile template. + * sim/aarch64/memory.c: New file - functions for simulating + aarch64 memory accesses. + * sim/aarch64/memory.h: New header. + * sim/aarch64/sim-main.h: New header. + * sim/aarch64/simulator.c: New file - aarch64 simulator + functions. + * sim/aarch64/simulator.h: New header. + 2015-06-23 Mike Frysinger <vapier@gentoo.org> * configure.ac (AC_ARG_ENABLE(sim)): Call AS_HELP_STRING. |