[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 36/47] exec: Rename cpu.c -> cpu-target.c
|
From: |
Richard Henderson |
|
Subject: |
[PULL 36/47] exec: Rename cpu.c -> cpu-target.c |
|
Date: |
Tue, 3 Oct 2023 10:30:41 -0700 |
From: Philippe Mathieu-Daudé <philmd@linaro.org>
We have exec/cpu code split in 2 files for target agnostic
("common") and specific. Rename 'cpu.c' which is target
specific using the '-target' suffix. Update MAINTAINERS.
Remove the 's from 'cpus-common.c' to match the API cpu_foo()
functions.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Message-Id: <20230914185718.76241-7-philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
MAINTAINERS | 4 ++--
meson.build | 4 ++--
cpus-common.c => cpu-common.c | 0
cpu.c => cpu-target.c | 0
4 files changed, 4 insertions(+), 4 deletions(-)
rename cpus-common.c => cpu-common.c (100%)
rename cpu.c => cpu-target.c (100%)
diff --git a/MAINTAINERS b/MAINTAINERS
index 81625f036b..f82b78afa8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -139,7 +139,8 @@ R: Paolo Bonzini <pbonzini@redhat.com>
S: Maintained
F: softmmu/cpus.c
F: softmmu/watchpoint.c
-F: cpus-common.c
+F: cpu-common.c
+F: cpu-target.c
F: page-vary.c
F: page-vary-common.c
F: accel/tcg/
@@ -1766,7 +1767,6 @@ M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
R: Philippe Mathieu-Daudé <philmd@linaro.org>
R: Yanan Wang <wangyanan55@huawei.com>
S: Supported
-F: cpu.c
F: hw/core/cpu.c
F: hw/core/machine-qmp-cmds.c
F: hw/core/machine.c
diff --git a/meson.build b/meson.build
index 21a1bc03f8..0760c29857 100644
--- a/meson.build
+++ b/meson.build
@@ -3431,8 +3431,8 @@ if have_block
system_ss.add(when: 'CONFIG_WIN32', if_true: [files('os-win32.c')])
endif
-common_ss.add(files('cpus-common.c'))
-specific_ss.add(files('cpu.c'))
+common_ss.add(files('cpu-common.c'))
+specific_ss.add(files('cpu-target.c'))
subdir('softmmu')
diff --git a/cpus-common.c b/cpu-common.c
similarity index 100%
rename from cpus-common.c
rename to cpu-common.c
diff --git a/cpu.c b/cpu-target.c
similarity index 100%
rename from cpu.c
rename to cpu-target.c
--
2.34.1
- [PULL 21/47] accel/tcg: Remove env_neg(), (continued)
- [PULL 21/47] accel/tcg: Remove env_neg(), Richard Henderson, 2023/10/03
- [PULL 24/47] accel/tcg: Modify probe_access_internal() to use CPUState, Richard Henderson, 2023/10/03
- [PULL 19/47] accel/tcg: Replace CPUState.env_ptr with cpu_env(), Richard Henderson, 2023/10/03
- [PULL 18/47] tcg: Rename cpu_env to tcg_env, Richard Henderson, 2023/10/03
- [PULL 23/47] accel/tcg: Modify tlb_*() to use CPUState, Richard Henderson, 2023/10/03
- [PULL 27/47] accel/tcg: Use CPUState in atomicity helpers, Richard Henderson, 2023/10/03
- [PULL 31/47] exec: Make EXCP_FOO definitions target agnostic, Richard Henderson, 2023/10/03
- [PULL 33/47] accel/tcg: Restrict dump_exec_info() declaration, Richard Henderson, 2023/10/03
- [PULL 28/47] accel/tcg: Remove env_tlb(), Richard Henderson, 2023/10/03
- [PULL 35/47] accel: Rename accel-common.c -> accel-target.c, Richard Henderson, 2023/10/03
- [PULL 36/47] exec: Rename cpu.c -> cpu-target.c,
Richard Henderson <=
- [PULL 37/47] exec: Rename target specific page-vary.c -> page-vary-target.c, Richard Henderson, 2023/10/03
- [PULL 34/47] accel: Make accel-blocker.o target agnostic, Richard Henderson, 2023/10/03
- [PULL 39/47] accel/tcg: Make monitor.c a target-agnostic unit, Richard Henderson, 2023/10/03
- [PULL 30/47] accel/tcg: move ld/st helpers to ldst_common.c.inc, Richard Henderson, 2023/10/03
- [PULL 38/47] accel/tcg: Rename target-specific 'internal.h' -> 'internal-target.h', Richard Henderson, 2023/10/03
- [PULL 41/47] accel/tcg: Make cpu-exec-common.c a target agnostic unit, Richard Henderson, 2023/10/03
- [PULL 40/47] accel/tcg: Make icount.o a target agnostic unit, Richard Henderson, 2023/10/03
- [PULL 42/47] tcg: Remove argument to tcg_prologue_init, Richard Henderson, 2023/10/03
- [PULL 43/47] tcg: Split out tcg init functions to tcg/startup.h, Richard Henderson, 2023/10/03
- [PULL 45/47] build: Remove --enable-gprof, Richard Henderson, 2023/10/03