mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 22:18:16 +01:00
A64: Implement ADD_shifted
This commit is contained in:
parent
d1eb757f93
commit
d1cef6ffb0
21 changed files with 451 additions and 75 deletions
|
|
@ -23,10 +23,10 @@ void ConstantPropagation(IR::Block& block, const A32::UserCallbacks::Memory& mem
|
|||
}
|
||||
break;
|
||||
}
|
||||
case IR::Opcode::LogicalShiftLeft:
|
||||
case IR::Opcode::LogicalShiftRight:
|
||||
case IR::Opcode::ArithmeticShiftRight:
|
||||
case IR::Opcode::RotateRight: {
|
||||
case IR::Opcode::LogicalShiftLeft32:
|
||||
case IR::Opcode::LogicalShiftRight32:
|
||||
case IR::Opcode::ArithmeticShiftRight32:
|
||||
case IR::Opcode::RotateRight32: {
|
||||
if (!inst.GetAssociatedPseudoOperation(IR::Opcode::GetCarryFromOp)) {
|
||||
inst.SetArg(2, IR::Value(false));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue