Philippe Mathieu-Daudé
b254c342cf
accel/tcg: Access tcg_cflags with getter / setter
Access the CPUState::tcg_cflags via tcg_cflags_has() and
tcg_cflags_set() helpers.
Mechanical change using the following Coccinelle spatch script:
@@
expression cpu;
expression flags;
@@
- cpu->tcg_cflags & flags
+ tcg_cflags_has(cpu, flags)
@@
expression cpu;
expression flags;
@@
- (tcg_cflags_has(cpu, flags))
+ tcg_cflags_has(cpu, flags)
@@
expression cpu;
expression flags;
@@
- cpu->tcg_cflags |= flags;
+ tcg_cflags_set(cpu, flags);
Then manually moving the declarations, and adding both
tcg_cflags_has() and tcg_cflags_set() definitions.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240427155714.53669-15-philmd@linaro.org>
2024-05-06 11:21:05 +02:00
..
2024-05-06 11:17:15 +02:00
2024-05-06 11:21:05 +02:00
2024-01-05 16:20:14 +01:00
2024-04-26 15:31:37 +02:00
2024-04-25 10:21:06 +01:00
2024-04-26 15:31:37 +02:00
2024-03-12 12:04:24 +01:00
2024-02-15 15:53:12 +01:00
2024-02-09 17:52:30 +00:00
2024-04-23 17:35:25 +02:00
2023-12-31 09:11:28 +01:00