A64: Implement AESE

This commit is contained in:
Lioncash
2018-02-03 13:16:02 -05:00
committed by MerryMage
parent 68f46c8334
commit ccef85dbb7
8 changed files with 98 additions and 8 deletions

View File

@@ -723,11 +723,15 @@ U32 IREmitter::CRC32ISO64(const U32& a, const U64& b) {
return Inst<U32>(Opcode::CRC32ISO64, a, b);
}
U128 IREmitter::AESInverseMixColumns(const U128 &a) {
U128 IREmitter::AESEncrypt(const U128& a) {
return Inst<U128>(Opcode::AESEncrypt, a);
}
U128 IREmitter::AESInverseMixColumns(const U128& a) {
return Inst<U128>(Opcode::AESInverseMixColumns, a);
}
U128 IREmitter::AESMixColumns(const U128 &a) {
U128 IREmitter::AESMixColumns(const U128& a) {
return Inst<U128>(Opcode::AESMixColumns, a);
}