From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33079) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCgok-0006cu-0p for qemu-devel@nongnu.org; Tue, 27 Mar 2012 20:32:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SCgof-0008Va-WE for qemu-devel@nongnu.org; Tue, 27 Mar 2012 20:32:49 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:52014) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCgof-0008Ra-Lr for qemu-devel@nongnu.org; Tue, 27 Mar 2012 20:32:45 -0400 Received: by mail-pb0-f45.google.com with SMTP id uo5so1091192pbc.4 for ; Tue, 27 Mar 2012 17:32:44 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Tue, 27 Mar 2012 17:32:22 -0700 Message-Id: <1332894743-27418-14-git-send-email-rth@twiddle.net> In-Reply-To: <1332894743-27418-1-git-send-email-rth@twiddle.net> References: <1332894743-27418-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 13/14] tcg-sparc: Add %g/%o registers to alloc_order List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com Signed-off-by: Richard Henderson --- tcg/sparc/tcg-target.c | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/tcg/sparc/tcg-target.c b/tcg/sparc/tcg-target.c index 9e822f3..72d65cb 100644 --- a/tcg/sparc/tcg-target.c +++ b/tcg/sparc/tcg-target.c @@ -84,12 +84,25 @@ static const int tcg_target_reg_alloc_order[] = { TCG_REG_L5, TCG_REG_L6, TCG_REG_L7, + TCG_REG_I0, TCG_REG_I1, TCG_REG_I2, TCG_REG_I3, TCG_REG_I4, TCG_REG_I5, + + TCG_REG_G2, + TCG_REG_G3, + TCG_REG_G4, + TCG_REG_G5, + + TCG_REG_O0, + TCG_REG_O1, + TCG_REG_O2, + TCG_REG_O3, + TCG_REG_O4, + TCG_REG_O5, }; static const int tcg_target_call_iarg_regs[6] = { -- 1.7.7.6