diff options
| author | Richard Henderson | 2015-09-02 04:11:45 +0200 |
|---|---|---|
| committer | Richard Henderson | 2015-10-07 11:36:51 +0200 |
| commit | fca8a500d519a56abeaedf8073167a61d3c6b9c4 (patch) | |
| tree | c0b16245be9a0ee93491586045f9ed9c0961beb5 /include/exec | |
| parent | tcg: Pass data argument to restore_state_to_opc (diff) | |
| download | qemu-fca8a500d519a56abeaedf8073167a61d3c6b9c4.tar.gz qemu-fca8a500d519a56abeaedf8073167a61d3c6b9c4.tar.xz qemu-fca8a500d519a56abeaedf8073167a61d3c6b9c4.zip | |
tcg: Save insn data and use it in cpu_restore_state_from_tb
We can now restore state without retranslation.
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include/exec')
| -rw-r--r-- | include/exec/exec-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index 6a698026b5..402dd87543 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -199,6 +199,7 @@ struct TranslationBlock { #define CF_USE_ICOUNT 0x20000 void *tc_ptr; /* pointer to the translated code */ + uint8_t *tc_search; /* pointer to search data */ /* next matching tb for physical address. */ struct TranslationBlock *phys_hash_next; /* original tb when cflags has CF_NOCACHE */ |
