diff options
| author | Evgeny Voevodin | 2012-11-12 10:27:44 +0100 |
|---|---|---|
| committer | Blue Swirl | 2012-11-17 14:53:26 +0100 |
| commit | 8232a46a165c20fdc8f6bb2d06c71be55afce051 (patch) | |
| tree | a8140f2a7b786c01ae55a03be4f55c8bc6e10f7b | |
| parent | target-cris/translate.c: Code style clean-up (diff) | |
| download | qemu-8232a46a165c20fdc8f6bb2d06c71be55afce051.tar.gz qemu-8232a46a165c20fdc8f6bb2d06c71be55afce051.tar.xz qemu-8232a46a165c20fdc8f6bb2d06c71be55afce051.zip | |
tcg/tcg.h: Duplicate global TCG variables in TCGContext
Signed-off-by: Evgeny Voevodin <e.voevodin@samsung.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
| -rw-r--r-- | tcg/tcg.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -450,6 +450,12 @@ struct TCGContext { int goto_tb_issue_mask; #endif + uint16_t gen_opc_buf[OPC_BUF_SIZE]; + TCGArg gen_opparam_buf[OPPARAM_BUF_SIZE]; + + uint16_t *gen_opc_ptr; + TCGArg *gen_opparam_ptr; + #if defined(CONFIG_QEMU_LDST_OPTIMIZATION) && defined(CONFIG_SOFTMMU) /* labels info for qemu_ld/st IRs The labels help to generate TLB miss case codes at the end of TB */ |
