diff options
author | Richard Henderson <rth@twiddle.net> | 2016-11-21 11:48:24 +0100 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2017-01-10 08:48:56 -0800 |
commit | de26a584d23b983f4db192a078827abe6dc894ac (patch) | |
tree | 5281f89f3aacfeb3b2b6938a8f78f08e41bfcb64 /target/alpha | |
parent | a768e4e99247911f00c5c0267c12d4e207d5f6cc (diff) |
target-alpha: Use ctpop helper
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/alpha')
-rw-r--r-- | target/alpha/helper.h | 2 | ||||
-rw-r--r-- | target/alpha/int_helper.c | 5 | ||||
-rw-r--r-- | target/alpha/translate.c | 2 |
3 files changed, 1 insertions, 8 deletions
diff --git a/target/alpha/helper.h b/target/alpha/helper.h index eed3906bd4..d60f208703 100644 --- a/target/alpha/helper.h +++ b/target/alpha/helper.h @@ -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) diff --git a/target/alpha/int_helper.c b/target/alpha/int_helper.c index 3c303bd1db..e43b50a743 100644 --- a/target/alpha/int_helper.c +++ b/target/alpha/int_helper.c @@ -24,11 +24,6 @@ #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; diff --git a/target/alpha/translate.c b/target/alpha/translate.c index 6e2e5638a3..055286a7b8 100644 --- a/target/alpha/translate.c +++ b/target/alpha/translate.c @@ -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 */ |