target-arm: A64: Implement two-register SHA instructions
Implement the two-register SHA instruction group from the optional Crypto Extensions. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1401458125-27977-10-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
be56f04eea
commit
f6fe04d566
@ -541,6 +541,8 @@ static uint32_t get_elf_hwcap(void)
|
||||
do { if (arm_feature(&cpu->env, feat)) { hwcaps |= hwcap; } } while (0)
|
||||
GET_FEATURE(ARM_FEATURE_V8_AES, ARM_HWCAP_A64_AES);
|
||||
GET_FEATURE(ARM_FEATURE_V8_PMULL, ARM_HWCAP_A64_PMULL);
|
||||
GET_FEATURE(ARM_FEATURE_V8_SHA1, ARM_HWCAP_A64_SHA1);
|
||||
GET_FEATURE(ARM_FEATURE_V8_SHA256, ARM_HWCAP_A64_SHA2);
|
||||
GET_FEATURE(ARM_FEATURE_CRC, ARM_HWCAP_A64_CRC32);
|
||||
#undef GET_FEATURE
|
||||
|
||||
|
@ -85,6 +85,7 @@ typedef void NeonGenWidenFn(TCGv_i64, TCGv_i32);
|
||||
typedef void NeonGenTwoSingleOPFn(TCGv_i32, TCGv_i32, TCGv_i32, TCGv_ptr);
|
||||
typedef void NeonGenTwoDoubleOPFn(TCGv_i64, TCGv_i64, TCGv_i64, TCGv_ptr);
|
||||
typedef void NeonGenOneOpFn(TCGv_i64, TCGv_i64);
|
||||
typedef void CryptoTwoOpEnvFn(TCGv_ptr, TCGv_i32, TCGv_i32);
|
||||
typedef void CryptoThreeOpEnvFn(TCGv_ptr, TCGv_i32, TCGv_i32, TCGv_i32);
|
||||
|
||||
/* initialize TCG globals. */
|
||||
@ -10677,7 +10678,49 @@ static void disas_crypto_three_reg_sha(DisasContext *s, uint32_t insn)
|
||||
*/
|
||||
static void disas_crypto_two_reg_sha(DisasContext *s, uint32_t insn)
|
||||
{
|
||||
unsupported_encoding(s, insn);
|
||||
int size = extract32(insn, 22, 2);
|
||||
int opcode = extract32(insn, 12, 5);
|
||||
int rn = extract32(insn, 5, 5);
|
||||
int rd = extract32(insn, 0, 5);
|
||||
CryptoTwoOpEnvFn *genfn;
|
||||
int feature;
|
||||
TCGv_i32 tcg_rd_regno, tcg_rn_regno;
|
||||
|
||||
if (size != 0) {
|
||||
unallocated_encoding(s);
|
||||
return;
|
||||
}
|
||||
|
||||
switch (opcode) {
|
||||
case 0: /* SHA1H */
|
||||
feature = ARM_FEATURE_V8_SHA1;
|
||||
genfn = gen_helper_crypto_sha1h;
|
||||
break;
|
||||
case 1: /* SHA1SU1 */
|
||||
feature = ARM_FEATURE_V8_SHA1;
|
||||
genfn = gen_helper_crypto_sha1su1;
|
||||
break;
|
||||
case 2: /* SHA256SU0 */
|
||||
feature = ARM_FEATURE_V8_SHA256;
|
||||
genfn = gen_helper_crypto_sha256su0;
|
||||
break;
|
||||
default:
|
||||
unallocated_encoding(s);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!arm_dc_feature(s, feature)) {
|
||||
unallocated_encoding(s);
|
||||
return;
|
||||
}
|
||||
|
||||
tcg_rd_regno = tcg_const_i32(rd << 1);
|
||||
tcg_rn_regno = tcg_const_i32(rn << 1);
|
||||
|
||||
genfn(cpu_env, tcg_rd_regno, tcg_rn_regno);
|
||||
|
||||
tcg_temp_free_i32(tcg_rd_regno);
|
||||
tcg_temp_free_i32(tcg_rn_regno);
|
||||
}
|
||||
|
||||
/* C3.6 Data processing - SIMD, inc Crypto
|
||||
|
Loading…
Reference in New Issue
Block a user