accel/tcg: Restrict 'icount_align_option' global to TCG
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 23 Jan 2025 12:57:20 +0000 (13:57 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 6 Mar 2025 14:46:17 +0000 (15:46 +0100)
Since commit 740b1759734 ("cpu-timers, icount: new modules")
we don't need to expose icount_align_option to all the
system code, we can restrict it to TCG. Since it is used as
a boolean, declare it as 'bool' type.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250123234415.59850-10-philmd@linaro.org>

accel/tcg/icount-common.c
accel/tcg/internal-common.h
include/system/cpus.h
system/globals.c

index b178dccec4502bb46210f43127b896e186816719..402d3e3f4e886e5e10132c2afaf9ba3967109ad9 100644 (file)
@@ -48,6 +48,8 @@ static bool icount_sleep = true;
 /* Arbitrarily pick 1MIPS as the minimum allowable speed.  */
 #define MAX_ICOUNT_SHIFT 10
 
+bool icount_align_option;
+
 /* Do not count executed instructions */
 ICountMode use_icount = ICOUNT_DISABLED;
 
index d31867218395d0cc75510fdc69454a7298f4387a..7ef620d96318ff359cfe37bfed3a1d2b90c8cf82 100644 (file)
@@ -17,6 +17,8 @@ extern int64_t max_advance;
 
 extern bool one_insn_per_tb;
 
+extern bool icount_align_option;
+
 /*
  * Return true if CS is not running in parallel with other cpus, either
  * because there are no other cpus or we are within an exclusive context.
index 3d8fd368f3265a141f2661eb422cb79920b52ac5..1cffeaaf5c48b3b95dae81bb23969c6daa9a6f0f 100644 (file)
@@ -38,8 +38,6 @@ void resume_all_vcpus(void);
 void pause_all_vcpus(void);
 void cpu_stop_current(void);
 
-extern int icount_align_option;
-
 /* Unblock cpu */
 void qemu_cpu_kick_self(void);
 
index 316623bd20af32840d0f2d7740804c25af86b850..9640c9511e9aa28e30f7ca881544f321b059e1b4 100644 (file)
@@ -58,7 +58,6 @@ unsigned int nb_prom_envs;
 const char *prom_envs[MAX_PROM_ENVS];
 uint8_t *boot_splash_filedata;
 int only_migratable; /* turn it off unless user states otherwise */
-int icount_align_option;
 
 /* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
  * little-endian "wire format" described in the SMBIOS 2.6 specification.