From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9eiy-0006Zs-Em for qemu-devel@nongnu.org; Thu, 17 Dec 2015 15:00:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a9eix-0000IN-Mw for qemu-devel@nongnu.org; Thu, 17 Dec 2015 15:00:28 -0500 Received: from mail-oi0-x22a.google.com ([2607:f8b0:4003:c06::22a]:33955) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9eix-0000I7-Hy for qemu-devel@nongnu.org; Thu, 17 Dec 2015 15:00:27 -0500 Received: by mail-oi0-x22a.google.com with SMTP id o124so48733330oia.1 for ; Thu, 17 Dec 2015 12:00:27 -0800 (PST) Sender: Richard Henderson From: Richard Henderson Date: Thu, 17 Dec 2015 12:00:25 -0800 Message-Id: <1450382425-5927-1-git-send-email-rth@twiddle.net> In-Reply-To: <1450382320-5383-1-git-send-email-rth@twiddle.net> References: <1450382320-5383-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v2 09/14] tcg: Change temp_save argument to TCGTemp List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mark.cave-ayland@ilande.co.uk, aurelien@aurel32.net Signed-off-by: Richard Henderson --- tcg/tcg.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index 8edf582..6f40bf3 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -1753,10 +1753,9 @@ static void temp_sync(TCGContext *s, TCGTemp *ts, TCGRegSet allocated_regs) /* save a temporary to memory. 'allocated_regs' is used in case a temporary registers needs to be allocated to store a constant. */ -static inline void temp_save(TCGContext *s, int temp, TCGRegSet allocated_regs) +static inline void temp_save(TCGContext *s, TCGTemp *ts, + TCGRegSet allocated_regs) { - TCGTemp *ts = &s->temps[temp]; - #ifdef USE_LIVENESS_ANALYSIS /* The liveness analysis already ensures that globals are back in memory. Keep an assert for safety. */ @@ -1774,8 +1773,8 @@ static void save_globals(TCGContext *s, TCGRegSet allocated_regs) { int i; - for(i = 0; i < s->nb_globals; i++) { - temp_save(s, i, allocated_regs); + for (i = 0; i < s->nb_globals; i++) { + temp_save(s, &s->temps[i], allocated_regs); } } @@ -1802,13 +1801,12 @@ static void sync_globals(TCGContext *s, TCGRegSet allocated_regs) all globals are stored at their canonical location. */ static void tcg_reg_alloc_bb_end(TCGContext *s, TCGRegSet allocated_regs) { - TCGTemp *ts; int i; - for(i = s->nb_globals; i < s->nb_temps; i++) { - ts = &s->temps[i]; + for (i = s->nb_globals; i < s->nb_temps; i++) { + TCGTemp *ts = &s->temps[i]; if (ts->temp_local) { - temp_save(s, i, allocated_regs); + temp_save(s, ts, allocated_regs); } else { #ifdef USE_LIVENESS_ANALYSIS /* The liveness analysis already ensures that temps are dead. -- 2.5.0