mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 07:28:09 +01:00
A64: Implement FastDispatchHint
This commit is contained in:
parent
f96c43d422
commit
9b65100660
5 changed files with 92 additions and 23 deletions
|
|
@ -44,7 +44,7 @@ bool TranslatorVisitor::BLR(Reg Rn) {
|
|||
ir.PushRSB(ir.current_location->AdvancePC(4));
|
||||
|
||||
ir.SetPC(target);
|
||||
ir.SetTerm(IR::Term::ReturnToDispatch{});
|
||||
ir.SetTerm(IR::Term::FastDispatchHint{});
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -52,7 +52,7 @@ bool TranslatorVisitor::BR(Reg Rn) {
|
|||
auto target = X(64, Rn);
|
||||
|
||||
ir.SetPC(target);
|
||||
ir.SetTerm(IR::Term::ReturnToDispatch{});
|
||||
ir.SetTerm(IR::Term::FastDispatchHint{});
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue