A64: Implement SIMD instruction SHL

This commit is contained in:
MerryMage 2018-02-10 09:49:55 +00:00
parent f6247125c0
commit 1d0cd95b23
5 changed files with 100 additions and 50 deletions

View file

@ -21,6 +21,11 @@ bool TranslatorVisitor::UnpredictableInstruction() {
return false;
}
bool TranslatorVisitor::DecodeError() {
// TODO: This is an internal error.
return UnallocatedEncoding();
}
bool TranslatorVisitor::ReservedValue() {
ir.ExceptionRaised(Exception::ReservedValue);
ir.SetTerm(IR::Term::CheckHalt{IR::Term::ReturnToDispatch{}});