From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59930) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WftB5-0004c3-2e for qemu-devel@nongnu.org; Thu, 01 May 2014 11:45:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WftAy-0006oa-NJ for qemu-devel@nongnu.org; Thu, 01 May 2014 11:45:38 -0400 Received: from mail-qa0-x22c.google.com ([2607:f8b0:400d:c00::22c]:61022) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WftAy-0006oU-I3 for qemu-devel@nongnu.org; Thu, 01 May 2014 11:45:32 -0400 Received: by mail-qa0-f44.google.com with SMTP id k15so3180812qaq.31 for ; Thu, 01 May 2014 08:45:32 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Thu, 1 May 2014 08:44:28 -0700 Message-Id: <1398959087-23590-8-git-send-email-rth@twiddle.net> In-Reply-To: <1398959087-23590-1-git-send-email-rth@twiddle.net> References: <1398959087-23590-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 07/26] tcg-ppc64: Move call macros out of tcg-target.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: av1474@comtv.ru These values are private to tcg.c; we don't need to expose this nonsense to the translators. Signed-off-by: Richard Henderson --- tcg/ppc64/tcg-target.c | 5 +++++ tcg/ppc64/tcg-target.h | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index 17f422e..c5362da 100644 --- a/tcg/ppc64/tcg-target.c +++ b/tcg/ppc64/tcg-target.c @@ -1406,6 +1406,11 @@ static void tcg_out_qemu_st(TCGContext *s, TCGReg data_reg, TCGReg addr_reg, #endif } +/* Parameters for function call generation, used in tcg.c. */ +#define TCG_TARGET_STACK_ALIGN 16 +#define TCG_TARGET_CALL_STACK_OFFSET 48 +#define TCG_TARGET_EXTEND_ARGS 1 + #define FRAME_SIZE ((int) \ ((8 /* back chain */ \ + 8 /* CR */ \ diff --git a/tcg/ppc64/tcg-target.h b/tcg/ppc64/tcg-target.h index 2c1cfc1..ba04f0c 100644 --- a/tcg/ppc64/tcg-target.h +++ b/tcg/ppc64/tcg-target.h @@ -41,10 +41,6 @@ typedef enum { TCG_AREG0 = TCG_REG_R27 } TCGReg; -/* used for function call generation */ -#define TCG_TARGET_STACK_ALIGN 16 -#define TCG_TARGET_CALL_STACK_OFFSET 48 - /* optional instructions automatically implemented */ #define TCG_TARGET_HAS_ext8u_i32 0 /* andi */ #define TCG_TARGET_HAS_ext16u_i32 0 @@ -104,6 +100,4 @@ typedef enum { #define TCG_TARGET_HAS_new_ldst 1 -#define TCG_TARGET_EXTEND_ARGS 1 - #endif -- 1.9.0