All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/4] Few minor improvements of monitor disas command (v3)
@ 2013-09-30 15:57 Fabien Chouteau
  2013-09-30 15:57 ` [Qemu-devel] [PATCH 1/4] Fix coding style Fabien Chouteau
                   ` (3 more replies)
  0 siblings, 4 replies; 22+ messages in thread
From: Fabien Chouteau @ 2013-09-30 15:57 UTC (permalink / raw)
  Cc: peter.maydell, qemu-devel, afaerber, lcapitulino

I finaly managed to move the target depend code in 'target-*/'.

Fabien Chouteau (4):
  Fix coding style
  Improve Monitor disas with symbol lookup
  Refactoring MonitorDef array
  Add ARM registers definitions for Monitor commands

 disas.c                     |   19 ++-
 include/monitor/monitor.h   |   16 ++
 include/qemu/typedefs.h     |    1 +
 include/qom/cpu.h           |    3 +
 monitor.c                   |  399 +------------------------------------------
 target-arm/Makefile.objs    |    2 +-
 target-arm/cpu.c            |    5 +
 target-arm/monitor.c        |   40 +++++
 target-i386/Makefile.objs   |    2 +-
 target-i386/cpu.c           |    6 +-
 target-i386/monitor.c       |   63 +++++++
 target-ppc/Makefile.objs    |    2 +-
 target-ppc/monitor.c        |  234 +++++++++++++++++++++++++
 target-ppc/translate_init.c |    5 +
 target-sparc/Makefile.objs  |    2 +-
 target-sparc/cpu.c          |    5 +
 target-sparc/monitor.c      |  138 +++++++++++++++
 17 files changed, 542 insertions(+), 400 deletions(-)
 create mode 100644 target-arm/monitor.c
 create mode 100644 target-i386/monitor.c
 create mode 100644 target-ppc/monitor.c
 create mode 100644 target-sparc/monitor.c

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 22+ messages in thread
* [Qemu-devel] [PATCH 0/4] Few minor improvements of monitor disas command (v4)
@ 2013-10-04 16:56 Fabien Chouteau
  2013-10-04 16:57 ` [Qemu-devel] [PATCH 3/4] Refactoring MonitorDef array Fabien Chouteau
  0 siblings, 1 reply; 22+ messages in thread
From: Fabien Chouteau @ 2013-10-04 16:56 UTC (permalink / raw)
  Cc: peter.maydell, qemu-devel, afaerber, lcapitulino

Another attempt. I think this is the best I can do to fulfil all comments.

Fabien Chouteau (4):
  Fix coding style
  Improve Monitor disas with symbol lookup
  Refactoring MonitorDef array
  Add ARM registers definitions for Monitor commands

 disas.c                       |   19 +-
 include/monitor/monitor_def.h |   18 ++
 include/qemu/typedefs.h       |    1 +
 include/qom/cpu.h             |    3 +
 monitor.c                     |  396 +----------------------------------------
 target-arm/Makefile.objs      |    2 +-
 target-arm/cpu.c              |    7 +
 target-arm/monitor.c          |   40 +++++
 target-i386/Makefile.objs     |    2 +-
 target-i386/cpu-qom.h         |    1 +
 target-i386/cpu.c             |    7 +
 target-i386/monitor.c         |   62 +++++++
 target-ppc/Makefile.objs      |    2 +-
 target-ppc/monitor.c          |  234 ++++++++++++++++++++++++
 target-ppc/translate_init.c   |    8 +
 target-sparc/Makefile.objs    |    2 +-
 target-sparc/cpu-qom.h        |    1 -
 target-sparc/cpu.c            |    7 +
 target-sparc/monitor.c        |  138 ++++++++++++++
 19 files changed, 552 insertions(+), 398 deletions(-)
 create mode 100644 include/monitor/monitor_def.h
 create mode 100644 target-arm/monitor.c
 create mode 100644 target-i386/monitor.c
 create mode 100644 target-ppc/monitor.c
 create mode 100644 target-sparc/monitor.c

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2013-10-07 14:41 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-30 15:57 [Qemu-devel] [PATCH 0/4] Few minor improvements of monitor disas command (v3) Fabien Chouteau
2013-09-30 15:57 ` [Qemu-devel] [PATCH 1/4] Fix coding style Fabien Chouteau
2013-09-30 15:57 ` [Qemu-devel] [PATCH 2/4] Improve Monitor disas with symbol lookup Fabien Chouteau
2013-09-30 15:57 ` [Qemu-devel] [PATCH 3/4] Refactoring MonitorDef array Fabien Chouteau
2013-10-01  1:08   ` Peter Maydell
2013-10-01 14:23     ` Fabien Chouteau
2013-10-01 14:49       ` Peter Maydell
2013-10-01  2:00   ` Richard Henderson
2013-10-01 14:28     ` Fabien Chouteau
2013-10-01 15:13       ` Richard Henderson
2013-10-01 15:21         ` Peter Maydell
2013-10-01 16:13           ` Fabien Chouteau
2013-09-30 15:57 ` [Qemu-devel] [PATCH 4/4] Add ARM registers definitions for Monitor commands Fabien Chouteau
2013-10-01  1:12   ` Peter Maydell
2013-10-04 16:56 [Qemu-devel] [PATCH 0/4] Few minor improvements of monitor disas command (v4) Fabien Chouteau
2013-10-04 16:57 ` [Qemu-devel] [PATCH 3/4] Refactoring MonitorDef array Fabien Chouteau
2013-10-04 17:49   ` Peter Maydell
2013-10-04 17:55     ` Andreas Färber
2013-10-07 10:11     ` Fabien Chouteau
2013-10-07 11:45       ` Peter Maydell
2013-10-07 13:06         ` Fabien Chouteau
2013-10-07 13:29           ` Peter Maydell
2013-10-07 14:40             ` Fabien Chouteau

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.