From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Li3n3-0002Pm-4q for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:53 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Li3n1-0002Oq-FH for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:52 -0400 Received: from [199.232.76.173] (port=34645 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Li3n1-0002OT-6r for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:51 -0400 Received: from savannah.gnu.org ([199.232.41.3]:54144 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Li3n0-0006Id-Q8 for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:51 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Li3mz-0006sB-Vu for qemu-devel@nongnu.org; Fri, 13 Mar 2009 09:34:50 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Li3mz-0006s3-09 for qemu-devel@nongnu.org; Fri, 13 Mar 2009 09:34:49 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Fri, 13 Mar 2009 09:34:49 +0000 Subject: [Qemu-devel] [6829] tcg: rename bswap_i32/i64 functions Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 6829 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6829 Author: aurel32 Date: 2009-03-13 09:34:48 +0000 (Fri, 13 Mar 2009) Log Message: ----------- tcg: rename bswap_i32/i64 functions Rename bswap_i32 into bswap32_i32 and bswap_i64 into bswap64_i64 Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/target-arm/translate.c trunk/target-i386/translate.c trunk/target-m68k/translate.c trunk/target-ppc/translate.c trunk/tcg/arm/tcg-target.h trunk/tcg/hppa/tcg-target.h trunk/tcg/i386/tcg-target.c trunk/tcg/i386/tcg-target.h trunk/tcg/sparc/tcg-target.h trunk/tcg/tcg-op.h trunk/tcg/tcg-opc.h trunk/tcg/x86_64/tcg-target.c trunk/tcg/x86_64/tcg-target.h Modified: trunk/target-arm/translate.c =================================================================== --- trunk/target-arm/translate.c 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/target-arm/translate.c 2009-03-13 09:34:48 UTC (rev 6829) @@ -5162,7 +5162,7 @@ NEON_GET_REG(T0, rm, pass * 2); NEON_GET_REG(T1, rm, pass * 2 + 1); switch (size) { - case 0: tcg_gen_bswap_i32(cpu_T[0], cpu_T[0]); break; + case 0: tcg_gen_bswap32_i32(cpu_T[0], cpu_T[0]); break; case 1: gen_swap_half(cpu_T[0]); break; case 2: /* no-op */ break; default: abort(); @@ -5173,7 +5173,7 @@ } else { gen_op_movl_T0_T1(); switch (size) { - case 0: tcg_gen_bswap_i32(cpu_T[0], cpu_T[0]); break; + case 0: tcg_gen_bswap32_i32(cpu_T[0], cpu_T[0]); break; case 1: gen_swap_half(cpu_T[0]); break; default: abort(); } @@ -5315,7 +5315,7 @@ switch (op) { case 1: /* VREV32 */ switch (size) { - case 0: tcg_gen_bswap_i32(cpu_T[0], cpu_T[0]); break; + case 0: tcg_gen_bswap32_i32(cpu_T[0], cpu_T[0]); break; case 1: gen_swap_half(cpu_T[0]); break; default: return 1; } @@ -6568,7 +6568,7 @@ if (insn & (1 << 7)) gen_rev16(tmp); else - tcg_gen_bswap_i32(tmp, tmp); + tcg_gen_bswap32_i32(tmp, tmp); } store_reg(s, rd, tmp); } else { @@ -7384,7 +7384,7 @@ gen_helper_rbit(tmp, tmp); break; case 0x08: /* rev */ - tcg_gen_bswap_i32(tmp, tmp); + tcg_gen_bswap32_i32(tmp, tmp); break; case 0x09: /* rev16 */ gen_rev16(tmp); @@ -8518,7 +8518,7 @@ rd = insn & 0x7; tmp = load_reg(s, rn); switch ((insn >> 6) & 3) { - case 0: tcg_gen_bswap_i32(tmp, tmp); break; + case 0: tcg_gen_bswap32_i32(tmp, tmp); break; case 1: gen_rev16(tmp); break; case 3: gen_revsh(tmp); break; default: goto illegal_op; Modified: trunk/target-i386/translate.c =================================================================== --- trunk/target-i386/translate.c 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/target-i386/translate.c 2009-03-13 09:34:48 UTC (rev 6829) @@ -6640,7 +6640,7 @@ #ifdef TARGET_X86_64 if (dflag == 2) { gen_op_mov_TN_reg(OT_QUAD, 0, reg); - tcg_gen_bswap_i64(cpu_T[0], cpu_T[0]); + tcg_gen_bswap64_i64(cpu_T[0], cpu_T[0]); gen_op_mov_reg_T0(OT_QUAD, reg); } else { @@ -6649,14 +6649,14 @@ tmp0 = tcg_temp_new_i32(); tcg_gen_trunc_i64_i32(tmp0, cpu_T[0]); - tcg_gen_bswap_i32(tmp0, tmp0); + tcg_gen_bswap32_i32(tmp0, tmp0); tcg_gen_extu_i32_i64(cpu_T[0], tmp0); gen_op_mov_reg_T0(OT_LONG, reg); } #else { gen_op_mov_TN_reg(OT_LONG, 0, reg); - tcg_gen_bswap_i32(cpu_T[0], cpu_T[0]); + tcg_gen_bswap32_i32(cpu_T[0], cpu_T[0]); gen_op_mov_reg_T0(OT_LONG, reg); } #endif Modified: trunk/target-m68k/translate.c =================================================================== --- trunk/target-m68k/translate.c 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/target-m68k/translate.c 2009-03-13 09:34:48 UTC (rev 6829) @@ -1247,7 +1247,7 @@ TCGv reg; reg = DREG(insn, 0); - tcg_gen_bswap_i32(reg, reg); + tcg_gen_bswap32_i32(reg, reg); } DISAS_INSN(move) Modified: trunk/target-ppc/translate.c =================================================================== --- trunk/target-ppc/translate.c 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/target-ppc/translate.c 2009-03-13 09:34:48 UTC (rev 6829) @@ -2621,11 +2621,11 @@ #if defined(TARGET_PPC64) TCGv_i32 t0 = tcg_temp_new_i32(); tcg_gen_trunc_tl_i32(t0, arg1); - tcg_gen_bswap_i32(t0, t0); + tcg_gen_bswap32_i32(t0, t0); tcg_gen_extu_i32_tl(arg1, t0); tcg_temp_free_i32(t0); #else - tcg_gen_bswap_i32(arg1, arg1); + tcg_gen_bswap32_i32(arg1, arg1); #endif } } @@ -2638,7 +2638,7 @@ tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx); t0 = tcg_temp_new_i32(); tcg_gen_trunc_tl_i32(t0, arg1); - tcg_gen_bswap_i32(t0, t0); + tcg_gen_bswap32_i32(t0, t0); tcg_gen_ext_i32_tl(arg1, t0); tcg_temp_free_i32(t0); } else @@ -2650,7 +2650,7 @@ { tcg_gen_qemu_ld64(arg1, arg2, ctx->mem_idx); if (unlikely(ctx->le_mode)) { - tcg_gen_bswap_i64(arg1, arg1); + tcg_gen_bswap64_i64(arg1, arg1); } } @@ -2694,7 +2694,7 @@ TCGv t1; t0 = tcg_temp_new_i32(); tcg_gen_trunc_tl_i32(t0, arg1); - tcg_gen_bswap_i32(t0, t0); + tcg_gen_bswap32_i32(t0, t0); t1 = tcg_temp_new(); tcg_gen_extu_i32_tl(t1, t0); tcg_temp_free_i32(t0); @@ -2702,7 +2702,7 @@ tcg_temp_free(t1); #else TCGv t0 = tcg_temp_new_i32(); - tcg_gen_bswap_i32(t0, arg1); + tcg_gen_bswap32_i32(t0, arg1); tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx); tcg_temp_free(t0); #endif @@ -2715,7 +2715,7 @@ { if (unlikely(ctx->le_mode)) { TCGv_i64 t0 = tcg_temp_new_i64(); - tcg_gen_bswap_i64(t0, arg1); + tcg_gen_bswap64_i64(t0, arg1); tcg_gen_qemu_st64(t0, arg2, ctx->mem_idx); tcg_temp_free_i64(t0); } else @@ -3014,11 +3014,11 @@ #if defined(TARGET_PPC64) TCGv_i32 t0 = tcg_temp_new_i32(); tcg_gen_trunc_tl_i32(t0, arg1); - tcg_gen_bswap_i32(t0, t0); + tcg_gen_bswap32_i32(t0, t0); tcg_gen_extu_i32_tl(arg1, t0); tcg_temp_free_i32(t0); #else - tcg_gen_bswap_i32(arg1, arg1); + tcg_gen_bswap32_i32(arg1, arg1); #endif } } @@ -3062,7 +3062,7 @@ TCGv t1; t0 = tcg_temp_new_i32(); tcg_gen_trunc_tl_i32(t0, arg1); - tcg_gen_bswap_i32(t0, t0); + tcg_gen_bswap32_i32(t0, t0); t1 = tcg_temp_new(); tcg_gen_extu_i32_tl(t1, t0); tcg_temp_free_i32(t0); @@ -3070,7 +3070,7 @@ tcg_temp_free(t1); #else TCGv t0 = tcg_temp_new_i32(); - tcg_gen_bswap_i32(t0, arg1); + tcg_gen_bswap32_i32(t0, arg1); tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx); tcg_temp_free(t0); #endif Modified: trunk/tcg/arm/tcg-target.h =================================================================== --- trunk/tcg/arm/tcg-target.h 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/arm/tcg-target.h 2009-03-13 09:34:48 UTC (rev 6829) @@ -28,7 +28,7 @@ #undef TCG_TARGET_WORDS_BIGENDIAN #undef TCG_TARGET_HAS_div_i32 #undef TCG_TARGET_HAS_div_i64 -#undef TCG_TARGET_HAS_bswap_i32 +#undef TCG_TARGET_HAS_bswap32_i32 #define TCG_TARGET_HAS_ext8s_i32 #define TCG_TARGET_HAS_ext16s_i32 #define TCG_TARGET_HAS_neg_i32 Modified: trunk/tcg/hppa/tcg-target.h =================================================================== --- trunk/tcg/hppa/tcg-target.h 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/hppa/tcg-target.h 2009-03-13 09:34:48 UTC (rev 6829) @@ -78,7 +78,7 @@ //#define TCG_TARGET_HAS_ext8s_i32 //#define TCG_TARGET_HAS_ext16s_i32 //#define TCG_TARGET_HAS_bswap16_i32 -//#define TCG_TARGET_HAS_bswap_i32 +//#define TCG_TARGET_HAS_bswap32_i32 /* Note: must be synced with dyngen-exec.h */ #define TCG_AREG0 TCG_REG_R17 Modified: trunk/tcg/i386/tcg-target.c =================================================================== --- trunk/tcg/i386/tcg-target.c 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/i386/tcg-target.c 2009-03-13 09:34:48 UTC (rev 6829) @@ -1034,7 +1034,7 @@ tcg_out_brcond2(s, args, const_args); break; - case INDEX_op_bswap_i32: + case INDEX_op_bswap32_i32: tcg_out_opc(s, (0xc8 + args[0]) | P_EXT); break; @@ -1130,7 +1130,7 @@ { INDEX_op_sub2_i32, { "r", "r", "0", "1", "ri", "ri" } }, { INDEX_op_brcond2_i32, { "r", "r", "ri", "ri" } }, - { INDEX_op_bswap_i32, { "r", "0" } }, + { INDEX_op_bswap32_i32, { "r", "0" } }, { INDEX_op_neg_i32, { "r", "0" } }, Modified: trunk/tcg/i386/tcg-target.h =================================================================== --- trunk/tcg/i386/tcg-target.h 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/i386/tcg-target.h 2009-03-13 09:34:48 UTC (rev 6829) @@ -45,7 +45,7 @@ #define TCG_TARGET_CALL_STACK_OFFSET 0 /* optional instructions */ -#define TCG_TARGET_HAS_bswap_i32 +#define TCG_TARGET_HAS_bswap32_i32 #define TCG_TARGET_HAS_neg_i32 #define TCG_TARGET_HAS_not_i32 #define TCG_TARGET_HAS_ext8s_i32 Modified: trunk/tcg/sparc/tcg-target.h =================================================================== --- trunk/tcg/sparc/tcg-target.h 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/sparc/tcg-target.h 2009-03-13 09:34:48 UTC (rev 6829) @@ -86,8 +86,8 @@ #endif /* optional instructions */ -//#define TCG_TARGET_HAS_bswap_i32 -//#define TCG_TARGET_HAS_bswap_i64 +//#define TCG_TARGET_HAS_bswap32_i32 +//#define TCG_TARGET_HAS_bswap64_i64 //#define TCG_TARGET_HAS_neg_i32 //#define TCG_TARGET_HAS_neg_i64 Modified: trunk/tcg/tcg-op.h =================================================================== --- trunk/tcg/tcg-op.h 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/tcg-op.h 2009-03-13 09:34:48 UTC (rev 6829) @@ -1220,10 +1220,10 @@ #endif } -static inline void tcg_gen_bswap_i32(TCGv_i32 ret, TCGv_i32 arg) +static inline void tcg_gen_bswap32_i32(TCGv_i32 ret, TCGv_i32 arg) { -#ifdef TCG_TARGET_HAS_bswap_i32 - tcg_gen_op2_i32(INDEX_op_bswap_i32, ret, arg); +#ifdef TCG_TARGET_HAS_bswap32_i32 + tcg_gen_op2_i32(INDEX_op_bswap32_i32, ret, arg); #else TCGv_i32 t0, t1; t0 = tcg_temp_new_i32(); @@ -1300,14 +1300,14 @@ tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31); } -static inline void tcg_gen_bswap_i64(TCGv_i64 ret, TCGv_i64 arg) +static inline void tcg_gen_bswap64_i64(TCGv_i64 ret, TCGv_i64 arg) { TCGv_i32 t0, t1; t0 = tcg_temp_new_i32(); t1 = tcg_temp_new_i32(); - tcg_gen_bswap_i32(t0, TCGV_LOW(arg)); - tcg_gen_bswap_i32(t1, TCGV_HIGH(arg)); + tcg_gen_bswap32_i32(t0, TCGV_LOW(arg)); + tcg_gen_bswap32_i32(t1, TCGV_HIGH(arg)); tcg_gen_mov_i32(TCGV_LOW(ret), t1); tcg_gen_mov_i32(TCGV_HIGH(ret), t0); tcg_temp_free_i32(t0); @@ -1381,10 +1381,10 @@ tcg_gen_ext32s_i64(ret, MAKE_TCGV_I64(GET_TCGV_I32(arg))); } -static inline void tcg_gen_bswap_i64(TCGv_i64 ret, TCGv_i64 arg) +static inline void tcg_gen_bswap64_i64(TCGv_i64 ret, TCGv_i64 arg) { -#ifdef TCG_TARGET_HAS_bswap_i64 - tcg_gen_op2_i64(INDEX_op_bswap_i64, ret, arg); +#ifdef TCG_TARGET_HAS_bswap64_i64 + tcg_gen_op2_i64(INDEX_op_bswap64_i64, ret, arg); #else TCGv_i32 t0, t1; t0 = tcg_temp_new_i32(); Modified: trunk/tcg/tcg-opc.h =================================================================== --- trunk/tcg/tcg-opc.h 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/tcg-opc.h 2009-03-13 09:34:48 UTC (rev 6829) @@ -89,8 +89,8 @@ #ifdef TCG_TARGET_HAS_ext16s_i32 DEF2(ext16s_i32, 1, 1, 0, 0) #endif -#ifdef TCG_TARGET_HAS_bswap_i32 -DEF2(bswap_i32, 1, 1, 0, 0) +#ifdef TCG_TARGET_HAS_bswap32_i32 +DEF2(bswap32_i32, 1, 1, 0, 0) #endif #ifdef TCG_TARGET_HAS_not_i32 DEF2(not_i32, 1, 1, 0, 0) @@ -149,8 +149,8 @@ #ifdef TCG_TARGET_HAS_ext32s_i64 DEF2(ext32s_i64, 1, 1, 0, 0) #endif -#ifdef TCG_TARGET_HAS_bswap_i64 -DEF2(bswap_i64, 1, 1, 0, 0) +#ifdef TCG_TARGET_HAS_bswap64_i64 +DEF2(bswap64_i64, 1, 1, 0, 0) #endif #ifdef TCG_TARGET_HAS_not_i64 DEF2(not_i64, 1, 1, 0, 0) Modified: trunk/tcg/x86_64/tcg-target.c =================================================================== --- trunk/tcg/x86_64/tcg-target.c 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/x86_64/tcg-target.c 2009-03-13 09:34:48 UTC (rev 6829) @@ -1094,10 +1094,10 @@ args[3], P_REXW); break; - case INDEX_op_bswap_i32: + case INDEX_op_bswap32_i32: tcg_out_opc(s, (0xc8 + (args[0] & 7)) | P_EXT, 0, args[0], 0); break; - case INDEX_op_bswap_i64: + case INDEX_op_bswap64_i64: tcg_out_opc(s, (0xc8 + (args[0] & 7)) | P_EXT | P_REXW, 0, args[0], 0); break; @@ -1287,8 +1287,8 @@ { INDEX_op_brcond_i64, { "r", "re" } }, - { INDEX_op_bswap_i32, { "r", "0" } }, - { INDEX_op_bswap_i64, { "r", "0" } }, + { INDEX_op_bswap32_i32, { "r", "0" } }, + { INDEX_op_bswap64_i64, { "r", "0" } }, { INDEX_op_neg_i32, { "r", "0" } }, { INDEX_op_neg_i64, { "r", "0" } }, Modified: trunk/tcg/x86_64/tcg-target.h =================================================================== --- trunk/tcg/x86_64/tcg-target.h 2009-03-13 03:12:03 UTC (rev 6828) +++ trunk/tcg/x86_64/tcg-target.h 2009-03-13 09:34:48 UTC (rev 6829) @@ -56,8 +56,8 @@ #define TCG_TARGET_CALL_STACK_OFFSET 0 /* optional instructions */ -#define TCG_TARGET_HAS_bswap_i32 -#define TCG_TARGET_HAS_bswap_i64 +#define TCG_TARGET_HAS_bswap32_i32 +#define TCG_TARGET_HAS_bswap64_i64 #define TCG_TARGET_HAS_neg_i32 #define TCG_TARGET_HAS_neg_i64 #define TCG_TARGET_HAS_not_i32