]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
tcg-ppc64: Move call macros out of tcg-target.h
authorRichard Henderson <rth@twiddle.net>
Tue, 25 Mar 2014 15:11:53 +0000 (08:11 -0700)
committerRichard Henderson <rth@twiddle.net>
Mon, 23 Jun 2014 14:31:26 +0000 (07:31 -0700)
These values are private to tcg.c; we don't need to expose
this nonsense to the translators.

Tested-by: Tom Musta <tommusta@gmail.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
tcg/ppc64/tcg-target.c
tcg/ppc64/tcg-target.h

index 17f422e9eae48d91d78da1f05055810b63b1f3e8..c5362da679b8d9fb0ad729833455dfcd18692236 100644 (file)
@@ -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 */                      \
index 57c6abc1e93ee6897219ff6997a0a8f20dbc242d..d3a1b5311d276f80250b8d3e4a03eef7808d3ee0 100644 (file)
@@ -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
@@ -102,6 +98,4 @@ typedef enum {
 #define TCG_TARGET_HAS_muluh_i64        1
 #define TCG_TARGET_HAS_mulsh_i64        1
 
-#define TCG_TARGET_EXTEND_ARGS 1
-
 #endif