qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/20] target/ppc: Remove hidden usages of *env
@ 2022-04-22 18:54 Víctor Colombo
  2022-04-22 18:54 ` [PATCH 01/20] target/ppc: Remove fpscr_* macros from cpu.h Víctor Colombo
                   ` (20 more replies)
  0 siblings, 21 replies; 31+ messages in thread
From: Víctor Colombo @ 2022-04-22 18:54 UTC (permalink / raw)
  To: qemu-devel, qemu-ppc
  Cc: danielhb413, richard.henderson, groug, victor.colombo, clg, david

By running the grep command `git grep -nr 'define \(fpscr\|msr\)_[a-z0-9]\+\>'`
we can find multiple macros that use `env->fpscr` and `env->msr` but doesn't 
take *env as a parameter.

Richard Henderson said [1] that these macros hiding the usage of *env "are evil".
This patch series remove them and substitute with an explicit usage of *env by
adding macros in the same style of FP_* ones (e.g. FP_FI defined in cpu.h).

Patch 20 (target/ppc: Add unused M_MSR_* macros) implements unused macros, the
same that were removed in patch 02 (target/ppc: Remove unused msr_* macros). I
did that to keep the changes consistent with what was already present before.

[1]: https://lists.gnu.org/archive/html/qemu-ppc/2021-11/msg00280.html

Víctor Colombo (20):
  target/ppc: Remove fpscr_* macros from cpu.h
  target/ppc: Remove unused msr_* macros
  target/ppc: Substitute msr_pr macro with new M_MSR_PR macro
  target/ppc: Substitute msr_le macro with new M_MSR_LE macro
  target/ppc: Substitute msr_ds macro with new M_MSR_DS macro
  target/ppc: Substitute msr_ile macro with new M_MSR_ILE macro
  target/ppc: Substitute msr_ee macro with new M_MSR_EE macro
  target/ppc: Substitute msr_ce macro with new M_MSR_CE macro
  target/ppc: Substitute msr_pow macro with new M_MSR_POW macro
  target/ppc: Substitute msr_me macro with new M_MSR_ME macro
  target/ppc: Substitute msr_gs macro with new M_MSR_GS macro
  target/ppc: Substitute msr_fp macro with new M_MSR_FP macro
  target/ppc: Substitute msr_cm macro with new M_MSR_CM macro
  target/ppc: Substitute msr_ir macro with new M_MSR_IR macro
  target/ppc: Substitute msr_dr macro with new M_MSR_DR macro
  target/ppc: Substitute msr_ep macro with new M_MSR_EP macro
  target/ppc: Substitute msr_fe macro with new M_MSR_FE macro
  target/ppc: Substitute msr_ts macro with new M_MSR_TS macro
  target/ppc: Substitute msr_hv macro with new M_MSR_HV macro
  target/ppc: Add unused M_MSR_* macros

 hw/ppc/pegasos2.c        |   2 +-
 hw/ppc/spapr.c           |   2 +-
 target/ppc/cpu.c         |   2 +-
 target/ppc/cpu.h         | 125 ++++++++++++++++-----------------------
 target/ppc/cpu_init.c    |  21 ++++---
 target/ppc/excp_helper.c |  53 +++++++++--------
 target/ppc/fpu_helper.c  |  28 ++++-----
 target/ppc/gdbstub.c     |   2 +-
 target/ppc/helper_regs.c |  12 ++--
 target/ppc/kvm.c         |   7 ++-
 target/ppc/machine.c     |   2 +-
 target/ppc/mem_helper.c  |  23 +++----
 target/ppc/misc_helper.c |   2 +-
 target/ppc/mmu-radix64.c |  10 ++--
 target/ppc/mmu_common.c  |  38 ++++++------
 target/ppc/mmu_helper.c  |   6 +-
 16 files changed, 161 insertions(+), 174 deletions(-)

-- 
2.25.1



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

end of thread, other threads:[~2022-04-28 21:47 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-22 18:54 [PATCH 00/20] target/ppc: Remove hidden usages of *env Víctor Colombo
2022-04-22 18:54 ` [PATCH 01/20] target/ppc: Remove fpscr_* macros from cpu.h Víctor Colombo
2022-04-26 21:11   ` Richard Henderson
2022-04-22 18:54 ` [PATCH 02/20] target/ppc: Remove unused msr_* macros Víctor Colombo
2022-04-26 21:11   ` Richard Henderson
2022-04-22 18:54 ` [PATCH 03/20] target/ppc: Substitute msr_pr macro with new M_MSR_PR macro Víctor Colombo
2022-04-26 21:29   ` Richard Henderson
2022-04-27 17:00     ` Víctor Colombo
2022-04-28  6:46       ` Cédric Le Goater
2022-04-28 14:56         ` Víctor Colombo
2022-04-28 15:33           ` Richard Henderson
2022-04-28 21:45           ` BALATON Zoltan
2022-04-22 18:54 ` [PATCH 04/20] target/ppc: Substitute msr_le macro with new M_MSR_LE macro Víctor Colombo
2022-04-23 10:05   ` BALATON Zoltan
2022-04-22 18:54 ` [PATCH 05/20] target/ppc: Substitute msr_ds macro with new M_MSR_DS macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 06/20] target/ppc: Substitute msr_ile macro with new M_MSR_ILE macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 07/20] target/ppc: Substitute msr_ee macro with new M_MSR_EE macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 08/20] target/ppc: Substitute msr_ce macro with new M_MSR_CE macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 09/20] target/ppc: Substitute msr_pow macro with new M_MSR_POW macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 10/20] target/ppc: Substitute msr_me macro with new M_MSR_ME macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 11/20] target/ppc: Substitute msr_gs macro with new M_MSR_GS macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 12/20] target/ppc: Substitute msr_fp macro with new M_MSR_FP macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 13/20] target/ppc: Substitute msr_cm macro with new M_MSR_CM macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 14/20] target/ppc: Substitute msr_ir macro with new M_MSR_IR macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 15/20] target/ppc: Substitute msr_dr macro with new M_MSR_DR macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 16/20] target/ppc: Substitute msr_ep macro with new M_MSR_EP macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 17/20] target/ppc: Substitute msr_fe macro with new M_MSR_FE macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 18/20] target/ppc: Substitute msr_ts macro with new M_MSR_TS macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 19/20] target/ppc: Substitute msr_hv macro with new M_MSR_HV macro Víctor Colombo
2022-04-22 18:54 ` [PATCH 20/20] target/ppc: Add unused M_MSR_* macros Víctor Colombo
2022-04-26 20:55 ` [PATCH 00/20] target/ppc: Remove hidden usages of *env Richard Henderson

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 NNTP newsgroup(s).