qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 1/7] tcg/tcg.h: Duplicate global TCG variables in


From: Evgeny Voevodin
Subject: [Qemu-devel] [PATCH v2 1/7] tcg/tcg.h: Duplicate global TCG variables in TCGContext
Date: Tue, 23 Oct 2012 10:21:12 +0400

From: Evgeny <address@hidden>

Signed-off-by: Evgeny <address@hidden>
Signed-off-by: Evgeny Voevodin <address@hidden>
---
 tcg/tcg.h |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tcg/tcg.h b/tcg/tcg.h
index 45e94f5..43b4317 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -422,6 +422,12 @@ struct TCGContext {
     int temps_in_use;
     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;
 };
 
 extern TCGContext tcg_ctx;
-- 
1.7.9.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]