mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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
2 changed files with 3 additions and 0 deletions
|
@ -73,6 +73,7 @@ typedef enum DisasJumpType {
|
|||
* @max_insns: Maximum number of instructions to be translated in this TB.
|
||||
* @singlestep_enabled: "Hardware" single stepping enabled.
|
||||
* @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.
|
||||
*/
|
||||
|
@ -85,6 +86,7 @@ typedef struct DisasContextBase {
|
|||
int max_insns;
|
||||
bool singlestep_enabled;
|
||||
int8_t saved_can_do_io;
|
||||
bool plugin_enabled;
|
||||
void *host_addr[2];
|
||||
} DisasContextBase;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue