diff options
author | Evgeny Voevodin <e.voevodin@samsung.com> | 2012-11-21 11:43:03 +0400 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-12-08 14:24:41 +0000 |
commit | c3a43607d927e6a0ecce0b61e8297c1cfe604c14 (patch) | |
tree | 2e40b3ea0a7b20918c7275c7eef0a9491731d4c3 /tcg/tcg.h | |
parent | 2aa1cb514cdce31ca68902d464cd03d31a76e998 (diff) | |
download | qemu-c3a43607d927e6a0ecce0b61e8297c1cfe604c14.zip |
tcg/tcg.h: Duplicate global TCG gen_opc_ arrays into TCGContext.
Signed-off-by: Evgeny Voevodin <e.voevodin@samsung.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -455,6 +455,9 @@ struct TCGContext { uint16_t *gen_opc_ptr; TCGArg *gen_opparam_ptr; + target_ulong gen_opc_pc[OPC_BUF_SIZE]; + uint16_t gen_opc_icount[OPC_BUF_SIZE]; + uint8_t gen_opc_instr_start[OPC_BUF_SIZE]; #if defined(CONFIG_QEMU_LDST_OPTIMIZATION) && defined(CONFIG_SOFTMMU) /* labels info for qemu_ld/st IRs |