summaryrefslogtreecommitdiff
path: root/tcg/i386
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2011-05-14 12:58:04 +0000
committerBlue Swirl <blauwirbel@gmail.com>2011-06-26 18:25:43 +0000
commita9767d9257e098fe808e84f027e4fc584d3a9b53 (patch)
tree35fb22e13fe420bf0addb0b42a0abf230b2f0347 /tcg/i386
parent42850e423d62d63a6e0caf4aa9955419cc2d31e5 (diff)
downloadqemu-a9767d9257e098fe808e84f027e4fc584d3a9b53.tar.gz
qemu-a9767d9257e098fe808e84f027e4fc584d3a9b53.tar.bz2
qemu-a9767d9257e098fe808e84f027e4fc584d3a9b53.zip
Delegate setup of TCG temporaries to targets
Delegate TCG temp_buf setup to targets, so that they can use a stack frame later instead. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tcg/i386')
-rw-r--r--tcg/i386/tcg-target.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c
index 72b3a48f1f..3ff91053f9 100644
--- a/tcg/i386/tcg-target.c
+++ b/tcg/i386/tcg-target.c
@@ -1981,4 +1981,6 @@ static void tcg_target_init(TCGContext *s)
tcg_regset_set_reg(s->reserved_regs, TCG_REG_ESP);
tcg_add_target_add_op_defs(x86_op_defs);
+ tcg_set_frame(s, TCG_AREG0, offsetof(CPUState, temp_buf),
+ CPU_TEMP_BUF_NLONGS * sizeof(long));
}