public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Jiri Gaisler <jiri@gaisler.se>
To: gdb-patches@sourceware.org
Cc: Jiri Gaisler <jiri@gaisler.se>
Subject: [PATCH v5 0/9] Update of the SPARC SIS simulator
Date: Fri, 03 Apr 2015 20:36:00 -0000	[thread overview]
Message-ID: <1428093356-7296-1-git-send-email-jiri@gaisler.se> (raw)

Fifth version of this patch set. The patch numbering has changed
as some of the original 22 patches have been merged.

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

Jiri Gaisler (9):
  sim/erc32: Switched emulated memory to host endian order.
  sim/erc32: Use gdb callback for UART I/O when linked with gdb.
  sim/erc32: Access memory subsystem through struct memsys.
  sim/erc32: Move local extern declarations into sis.h.
  sim/erc32: Add support for LEON3 processor emulation.
  sim/erc32: Add support for LEON2 processor emulation.
  sim/erc32: Updated documentation.
  sim/erc32: Add data watchpoint support.
  Add watchpoint support to gdb simulator interface.

 gdb/remote-sim.c            |   69 +++
 include/gdb/remote-sim.h    |   24 ++
 sim/arm/wrapper.c           |   25 ++
 sim/avr/interp.c            |   25 ++
 sim/bfin/Makefile.in        |    3 +-
 sim/common/sim-watch-data.c |   48 +++
 sim/cr16/interp.c           |   25 ++
 sim/cris/Makefile.in        |    1 +
 sim/erc32/Makefile.in       |    8 +-
 sim/erc32/NEWS              |  108 -----
 sim/erc32/README.gdb        |   67 ---
 sim/erc32/README.leon2      |   53 +++
 sim/erc32/README.leon3      |   53 +++
 sim/erc32/README.sis        |  252 +++++------
 sim/erc32/erc32.c           |  438 +++++++++----------
 sim/erc32/exec.c            |  339 ++++++++++++---
 sim/erc32/func.c            |  247 +++++++----
 sim/erc32/grlib.c           |  101 +++++
 sim/erc32/grlib.h           |   57 +++
 sim/erc32/interf.c          |  365 +++++++++++-----
 sim/erc32/leon2.c           |  974 +++++++++++++++++++++++++++++++++++++++++
 sim/erc32/leon3.c           | 1000 +++++++++++++++++++++++++++++++++++++++++++
 sim/erc32/sis.c             |  102 +++--
 sim/erc32/sis.h             |  102 ++++-
 sim/erc32/startsim          |    4 -
 sim/frv/Makefile.in         |    1 +
 sim/h8300/Makefile.in       |    3 +-
 sim/iq2000/Makefile.in      |    1 +
 sim/lm32/Makefile.in        |    1 +
 sim/m32c/gdb-if.c           |   25 ++
 sim/m32r/Makefile.in        |    1 +
 sim/m68hc11/Makefile.in     |    4 +-
 sim/mcore/interp.c          |   25 ++
 sim/microblaze/Makefile.in  |    3 +-
 sim/mips/Makefile.in        |    1 +
 sim/mn10300/Makefile.in     |    3 +-
 sim/moxie/interp.c          |   25 ++
 sim/msp430/Makefile.in      |    1 +
 sim/ppc/gdb-sim.c           |   25 ++
 sim/rl78/gdb-if.c           |   25 ++
 sim/rx/gdb-if.c             |   25 ++
 sim/sh/interp.c             |   25 ++
 sim/sh64/Makefile.in        |    1 +
 sim/v850/Makefile.in        |    3 +-
 44 files changed, 3801 insertions(+), 887 deletions(-)
 create mode 100644 sim/common/sim-watch-data.c
 delete mode 100644 sim/erc32/NEWS
 delete mode 100644 sim/erc32/README.gdb
 create mode 100644 sim/erc32/README.leon2
 create mode 100644 sim/erc32/README.leon3
 create mode 100644 sim/erc32/grlib.c
 create mode 100644 sim/erc32/grlib.h
 create mode 100644 sim/erc32/leon2.c
 create mode 100644 sim/erc32/leon3.c
 delete mode 100644 sim/erc32/startsim

-- 
1.9.1

             reply	other threads:[~2015-04-03 20:36 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-03 20:36 Jiri Gaisler [this message]
2015-04-03 20:36 ` [PATCH v5 4/9] sim/erc32: Move local extern declarations into sis.h Jiri Gaisler
2015-04-19  6:46   ` Mike Frysinger
2015-04-03 20:36 ` [PATCH v5 3/9] sim/erc32: Access memory subsystem through struct memsys Jiri Gaisler
2015-04-19  6:44   ` Mike Frysinger
2015-04-03 20:36 ` [PATCH v5 5/9] sim/erc32: Add support for LEON3 processor emulation Jiri Gaisler
2015-04-19  6:54   ` Mike Frysinger
2015-04-03 20:36 ` [PATCH v5 2/9] sim/erc32: Use gdb callback for UART I/O when linked with gdb Jiri Gaisler
2015-04-19  6:39   ` Mike Frysinger
2015-04-03 20:36 ` [PATCH v5 6/9] sim/erc32: Add support for LEON2 processor emulation Jiri Gaisler
2015-04-19  6:56   ` Mike Frysinger
2015-04-03 20:36 ` [PATCH v5 7/9] sim/erc32: Updated documentation Jiri Gaisler
2015-04-03 20:36 ` [PATCH v5 9/9] Add watchpoint support to gdb simulator interface Jiri Gaisler
2015-04-03 20:36 ` [PATCH v5 8/9] sim/erc32: Add data watchpoint support Jiri Gaisler
2015-04-19  7:04   ` Mike Frysinger
2015-04-03 20:36 ` [PATCH v5 1/9] sim/erc32: Switched emulated memory to host endian order Jiri Gaisler
2015-04-19  6:35   ` Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1428093356-7296-1-git-send-email-jiri@gaisler.se \
    --to=jiri@gaisler.se \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).