mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
accel/tcg: Add insn_start to DisasContextBase
This is currently target-specific for many; begin making it target independent. Tested-by: Jørgen Hansen <Jorgen.Hansen@wdc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
07843f75fd
commit
e7face702a
2 changed files with 5 additions and 0 deletions
|
@ -74,6 +74,8 @@ typedef enum DisasJumpType {
|
|||
* @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.
|
||||
* @insn_start: The last op emitted by the insn_start hook,
|
||||
* which is expected to be INDEX_op_insn_start.
|
||||
*
|
||||
* Architecture-agnostic disassembly context.
|
||||
*/
|
||||
|
@ -87,6 +89,7 @@ typedef struct DisasContextBase {
|
|||
bool singlestep_enabled;
|
||||
int8_t saved_can_do_io;
|
||||
bool plugin_enabled;
|
||||
struct TCGOp *insn_start;
|
||||
void *host_addr[2];
|
||||
} DisasContextBase;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue