mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
accel/tcg: Record when translator_fake_ldb is used
Remove left-over comment from commit dcd092a063
("accel/tcg: Improve can_do_io management").
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
ba3fb2a735
commit
b3f05b8ce2
2 changed files with 4 additions and 1 deletions
|
@ -72,8 +72,8 @@ typedef enum DisasJumpType {
|
|||
* @num_insns: Number of translated instructions (including current).
|
||||
* @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.
|
||||
* @fake_insn: True if translator_fake_ldb used.
|
||||
* @insn_start: The last op emitted by the insn_start hook,
|
||||
* which is expected to be INDEX_op_insn_start.
|
||||
*
|
||||
|
@ -88,6 +88,7 @@ typedef struct DisasContextBase {
|
|||
int max_insns;
|
||||
bool singlestep_enabled;
|
||||
bool plugin_enabled;
|
||||
bool fake_insn;
|
||||
struct TCGOp *insn_start;
|
||||
void *host_addr[2];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue