mirror of https://github.com/xemu-project/xemu.git
accel/tcg: Add plugin_enabled to DisasContextBase
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230824181233.1568795-2-richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20231009164104.369749-21-alex.bennee@linaro.org>
This commit is contained in:
parent
73c392c26b
commit
28a4f0bacf
|
@ -158,6 +158,7 @@ void translator_loop(CPUState *cpu, TranslationBlock *tb, int *max_insns,
|
||||||
} else {
|
} else {
|
||||||
plugin_enabled = plugin_gen_tb_start(cpu, db, false);
|
plugin_enabled = plugin_gen_tb_start(cpu, db, false);
|
||||||
}
|
}
|
||||||
|
db->plugin_enabled = plugin_enabled;
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
*max_insns = ++db->num_insns;
|
*max_insns = ++db->num_insns;
|
||||||
|
|
|
@ -73,6 +73,7 @@ typedef enum DisasJumpType {
|
||||||
* @max_insns: Maximum number of instructions to be translated in this TB.
|
* @max_insns: Maximum number of instructions to be translated in this TB.
|
||||||
* @singlestep_enabled: "Hardware" single stepping enabled.
|
* @singlestep_enabled: "Hardware" single stepping enabled.
|
||||||
* @saved_can_do_io: Known value of cpu->neg.can_do_io, or -1 for unknown.
|
* @saved_can_do_io: Known value of cpu->neg.can_do_io, or -1 for unknown.
|
||||||
|
* @plugin_enabled: TCG plugin enabled in this TB.
|
||||||
*
|
*
|
||||||
* Architecture-agnostic disassembly context.
|
* Architecture-agnostic disassembly context.
|
||||||
*/
|
*/
|
||||||
|
@ -85,6 +86,7 @@ typedef struct DisasContextBase {
|
||||||
int max_insns;
|
int max_insns;
|
||||||
bool singlestep_enabled;
|
bool singlestep_enabled;
|
||||||
int8_t saved_can_do_io;
|
int8_t saved_can_do_io;
|
||||||
|
bool plugin_enabled;
|
||||||
void *host_addr[2];
|
void *host_addr[2];
|
||||||
} DisasContextBase;
|
} DisasContextBase;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue