mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-07 13:26:27 +00:00
A64: Implement SHA1H
This is a fairly trivial instruction it's essentially: result = ROL(data, 30);
This commit is contained in:
21
src/frontend/A64/translate/impl/simd_sha.cpp
Normal file
21
src/frontend/A64/translate/impl/simd_sha.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
/* This file is part of the dynarmic project.
|
||||
* Copyright (c) 2018 MerryMage
|
||||
* This software may be used and distributed according to the terms of the GNU
|
||||
* General Public License version 2 or any later version.
|
||||
*/
|
||||
|
||||
#include "frontend/A64/translate/impl/impl.h"
|
||||
|
||||
namespace Dynarmic::A64 {
|
||||
|
||||
bool TranslatorVisitor::SHA1H(Vec Vn, Vec Vd) {
|
||||
const IR::U128 data = ir.GetS(Vn);
|
||||
|
||||
const IR::U128 result = ir.VectorOr(ir.VectorLogicalShiftLeft(32, data, 30),
|
||||
ir.VectorLogicalShiftRight(32, data, 2));
|
||||
|
||||
ir.SetS(Vd, result);
|
||||
return true;
|
||||
}
|
||||
|
||||
} // namespace Dynarmic::A64
|
||||
Reference in New Issue
Block a user