All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] tcg: Include tcg files using tcg/ dirname, reduce cpp search path list
@ 2020-01-01 11:22 ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 41+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-01-01 11:22 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-ppc, Max Filippov, Bastian Koppelmann, Aleksandar Rikalo,
	Anthony Green, Peter Maydell, Eduardo Habkost, Claudio Fontana,
	Chris Wulff, Laurent Vivier, Stafford Horne, qemu-arm,
	David Gibson, Alistair Francis, Cornelia Huck, David Hildenbrand,
	Stefan Weil, Mark Cave-Ayland, qemu-s390x, Aleksandar Markovic,
	Andrzej Zaborowski, Guan Xuetao, Richard Henderson, Riku Voipio,
	Aurelien Jarno, qemu-riscv, Michael Walle, Artyom Tarasenko,
	Marek Vasut, Sagar Karandikar, Edgar E. Iglesias, Paolo Bonzini,
	Palmer Dabbelt, Philippe Mathieu-Daudé

Noticed we could clean this while reviewing Richard patch last night:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg667606.html

Since v1:
- moved headers to include/tcg/ (Paolo)
- include in .inc.c relative to parent (Stefan)

v1: https://lists.gnu.org/archive/html/qemu-devel/2019-12/msg05356.html

Philippe Mathieu-Daudé (4):
  tcg: Search includes from the project root source directory
  tcg: Search includes in the parent source directory
  tcg: Move TCG headers to include/tcg/
  configure: Remove tcg/ from the preprocessor include search list

 configure                            | 1 -
 include/exec/cpu_ldst.h              | 2 +-
 {tcg => include/tcg}/tcg-gvec-desc.h | 0
 {tcg => include/tcg}/tcg-mo.h        | 0
 {tcg => include/tcg}/tcg-op-gvec.h   | 0
 {tcg => include/tcg}/tcg-op.h        | 2 +-
 {tcg => include/tcg}/tcg-opc.h       | 0
 {tcg => include/tcg}/tcg.h           | 4 ++--
 tcg/i386/tcg-target.h                | 2 +-
 accel/tcg/cpu-exec.c                 | 2 +-
 accel/tcg/tcg-runtime-gvec.c         | 2 +-
 accel/tcg/translate-all.c            | 2 +-
 accel/tcg/user-exec.c                | 2 +-
 bsd-user/main.c                      | 2 +-
 cpus.c                               | 2 +-
 exec.c                               | 2 +-
 linux-user/main.c                    | 2 +-
 target/alpha/translate.c             | 2 +-
 target/arm/helper-a64.c              | 2 +-
 target/arm/translate-a64.c           | 4 ++--
 target/arm/translate-sve.c           | 6 +++---
 target/arm/translate.c               | 4 ++--
 target/cris/translate.c              | 2 +-
 target/hppa/translate.c              | 2 +-
 target/i386/mem_helper.c             | 2 +-
 target/i386/translate.c              | 2 +-
 target/lm32/translate.c              | 2 +-
 target/m68k/translate.c              | 2 +-
 target/microblaze/translate.c        | 2 +-
 target/mips/translate.c              | 2 +-
 target/moxie/translate.c             | 2 +-
 target/nios2/translate.c             | 2 +-
 target/openrisc/translate.c          | 2 +-
 target/ppc/mem_helper.c              | 2 +-
 target/ppc/translate.c               | 4 ++--
 target/riscv/cpu_helper.c            | 2 +-
 target/riscv/translate.c             | 2 +-
 target/s390x/translate.c             | 4 ++--
 target/sh4/translate.c               | 2 +-
 target/sparc/ldst_helper.c           | 2 +-
 target/sparc/translate.c             | 2 +-
 target/tilegx/translate.c            | 2 +-
 target/tricore/translate.c           | 2 +-
 target/unicore32/translate.c         | 2 +-
 target/xtensa/translate.c            | 2 +-
 tcg/aarch64/tcg-target.inc.c         | 4 ++--
 tcg/arm/tcg-target.inc.c             | 4 ++--
 tcg/i386/tcg-target.inc.c            | 4 ++--
 tcg/mips/tcg-target.inc.c            | 2 +-
 tcg/optimize.c                       | 2 +-
 tcg/ppc/tcg-target.inc.c             | 4 ++--
 tcg/riscv/tcg-target.inc.c           | 4 ++--
 tcg/s390/tcg-target.inc.c            | 4 ++--
 tcg/sparc/tcg-target.inc.c           | 2 +-
 tcg/tcg-common.c                     | 2 +-
 tcg/tcg-op-gvec.c                    | 8 ++++----
 tcg/tcg-op-vec.c                     | 6 +++---
 tcg/tcg-op.c                         | 6 +++---
 tcg/tcg.c                            | 2 +-
 tcg/tci.c                            | 2 +-
 MAINTAINERS                          | 1 +
 61 files changed, 76 insertions(+), 76 deletions(-)
 rename {tcg => include/tcg}/tcg-gvec-desc.h (100%)
 rename {tcg => include/tcg}/tcg-mo.h (100%)
 rename {tcg => include/tcg}/tcg-op-gvec.h (100%)
 rename {tcg => include/tcg}/tcg-op.h (99%)
 rename {tcg => include/tcg}/tcg-opc.h (100%)
 rename {tcg => include/tcg}/tcg.h (99%)

-- 
2.21.0



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

end of thread, other threads:[~2020-01-07 12:06 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-01 11:22 [PATCH v2 0/4] tcg: Include tcg files using tcg/ dirname, reduce cpp search path list Philippe Mathieu-Daudé
2020-01-01 11:22 ` Philippe Mathieu-Daudé
2020-01-01 11:23 ` [PATCH v2 1/4] tcg: Search includes from the project root source directory Philippe Mathieu-Daudé
2020-01-01 11:23   ` Philippe Mathieu-Daudé
2020-01-01 11:23   ` Philippe Mathieu-Daudé
2020-01-02  1:43   ` David Gibson
2020-01-02  1:43     ` David Gibson
2020-01-02  1:43     ` David Gibson
2020-01-03  2:40   ` Alistair Francis
2020-01-03  2:40     ` Alistair Francis
2020-01-03  2:40     ` Alistair Francis
2020-01-01 11:23 ` [PATCH v2 2/4] tcg: Search includes in the parent " Philippe Mathieu-Daudé
2020-01-01 11:23   ` Philippe Mathieu-Daudé
2020-01-02  1:44   ` David Gibson
2020-01-02  1:44     ` David Gibson
2020-01-02  1:44     ` David Gibson
2020-01-03  2:41   ` Alistair Francis
2020-01-03  2:41     ` Alistair Francis
2020-01-03  2:41     ` Alistair Francis
2020-01-07 10:54   ` Paolo Bonzini
2020-01-07 10:54     ` Paolo Bonzini
2020-01-07 10:54     ` Paolo Bonzini
2020-01-01 11:23 ` [PATCH v2 3/4] tcg: Move TCG headers to include/tcg/ Philippe Mathieu-Daudé
2020-01-01 11:23   ` Philippe Mathieu-Daudé
2020-01-03  2:42   ` Alistair Francis
2020-01-03  2:42     ` Alistair Francis
2020-01-01 11:23 ` [PATCH v2 4/4] configure: Remove tcg/ from the preprocessor include search list Philippe Mathieu-Daudé
2020-01-01 11:23   ` Philippe Mathieu-Daudé
2020-01-01 11:23   ` Philippe Mathieu-Daudé
2020-01-03  2:42   ` Alistair Francis
2020-01-03  2:42     ` Alistair Francis
2020-01-03  2:42     ` Alistair Francis
2020-01-02  8:46 ` [PATCH v2 0/4] tcg: Include tcg files using tcg/ dirname, reduce cpp search path list Stefan Weil
2020-01-02  8:46   ` Stefan Weil
2020-01-02  8:46   ` Stefan Weil
2020-01-03  1:19 ` Richard Henderson
2020-01-03  1:19   ` Richard Henderson
2020-01-03  1:19   ` Richard Henderson
2020-01-07 10:55 ` Paolo Bonzini
2020-01-07 10:55   ` Paolo Bonzini
2020-01-07 10:55   ` Paolo Bonzini

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.