target-alpha: Use ctpop helper
authorRichard Henderson <rth@twiddle.net>
Mon, 21 Nov 2016 10:48:24 +0000 (11:48 +0100)
committerRichard Henderson <rth@twiddle.net>
Tue, 10 Jan 2017 16:48:56 +0000 (08:48 -0800)
Signed-off-by: Richard Henderson <rth@twiddle.net>
target/alpha/helper.h
target/alpha/int_helper.c
target/alpha/translate.c

index eed3906bd4a31eb427f17293234837ca00eabf44..d60f208703163028e77548bc9c0d7cac55e73808 100644 (file)
@@ -3,8 +3,6 @@ DEF_HELPER_FLAGS_1(load_pcc, TCG_CALL_NO_RWG_SE, i64, env)
 
 DEF_HELPER_FLAGS_3(check_overflow, TCG_CALL_NO_WG, void, env, i64, i64)
 
-DEF_HELPER_FLAGS_1(ctpop, TCG_CALL_NO_RWG_SE, i64, i64)
-
 DEF_HELPER_FLAGS_2(zap, TCG_CALL_NO_RWG_SE, i64, i64, i64)
 DEF_HELPER_FLAGS_2(zapnot, TCG_CALL_NO_RWG_SE, i64, i64, i64)
 
index 3c303bd1dbfd66bb9121d74d06df7000b2786064..e43b50a743565012b912f819f02f5c421e5a2b49 100644 (file)
 #include "qemu/host-utils.h"
 
 
-uint64_t helper_ctpop(uint64_t arg)
-{
-    return ctpop64(arg);
-}
-
 uint64_t helper_zapnot(uint64_t val, uint64_t mskb)
 {
     uint64_t mask;
index 6e2e5638a3934bc5341b8c0ce473e94bd916eb5a..055286a7b8ddb31f9372a381b0a1570eb2283a5b 100644 (file)
@@ -2541,7 +2541,7 @@ static ExitStatus translate_one(DisasContext *ctx, uint32_t insn)
             REQUIRE_TB_FLAG(TB_FLAGS_AMASK_CIX);
             REQUIRE_REG_31(ra);
             REQUIRE_NO_LIT;
-            gen_helper_ctpop(vc, vb);
+            tcg_gen_ctpop_i64(vc, vb);
             break;
         case 0x31:
             /* PERR */