mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-21 00:53:27 -06:00
target/riscv: Use aesenc_SB_SR_MC_AK
This implements the AES64ESM instruction. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
607a5f9d62
commit
274f33765a
1 changed files with 6 additions and 1 deletions
|
@ -198,7 +198,12 @@ static inline target_ulong aes64_operation(target_ulong rs1, target_ulong rs2,
|
||||||
|
|
||||||
target_ulong HELPER(aes64esm)(target_ulong rs1, target_ulong rs2)
|
target_ulong HELPER(aes64esm)(target_ulong rs1, target_ulong rs2)
|
||||||
{
|
{
|
||||||
return aes64_operation(rs1, rs2, true, true);
|
AESState t;
|
||||||
|
|
||||||
|
t.d[HOST_BIG_ENDIAN] = rs1;
|
||||||
|
t.d[!HOST_BIG_ENDIAN] = rs2;
|
||||||
|
aesenc_SB_SR_MC_AK(&t, &t, &aes_zero, false);
|
||||||
|
return t.d[HOST_BIG_ENDIAN];
|
||||||
}
|
}
|
||||||
|
|
||||||
target_ulong HELPER(aes64es)(target_ulong rs1, target_ulong rs2)
|
target_ulong HELPER(aes64es)(target_ulong rs1, target_ulong rs2)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue