From 614f104dfd2bf6d25170fb0afc086920cc7c407b Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sat, 14 May 2011 12:58:04 +0000 Subject: 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 --- tcg/i386/tcg-target.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tcg/i386/tcg-target.c') 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)); } -- cgit v1.2.1