mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
InstEmitMemory32: Literal loads always have word-aligned PC (#3104)
This commit is contained in:
parent
f861f0bca2
commit
ce71f9144e
|
@ -47,6 +47,20 @@ namespace ARMeilleure.Instructions
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Operand GetIntA32AlignedPC(ArmEmitterContext context, int regIndex)
|
||||||
|
{
|
||||||
|
if (regIndex == RegisterAlias.Aarch32Pc)
|
||||||
|
{
|
||||||
|
OpCode32 op = (OpCode32)context.CurrOp;
|
||||||
|
|
||||||
|
return Const((int)(op.GetPc() & 0xfffffffc));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return Register(GetRegisterAlias(context.Mode, regIndex), RegisterType.Integer, OperandType.I32);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static Operand GetVecA32(int regIndex)
|
public static Operand GetVecA32(int regIndex)
|
||||||
{
|
{
|
||||||
return Register(regIndex, RegisterType.Vector, OperandType.V128);
|
return Register(regIndex, RegisterType.Vector, OperandType.V128);
|
||||||
|
|
|
@ -153,7 +153,7 @@ namespace ARMeilleure.Instructions
|
||||||
{
|
{
|
||||||
OpCode32Mem op = (OpCode32Mem)context.CurrOp;
|
OpCode32Mem op = (OpCode32Mem)context.CurrOp;
|
||||||
|
|
||||||
Operand n = context.Copy(GetIntA32(context, op.Rn));
|
Operand n = context.Copy(GetIntA32AlignedPC(context, op.Rn));
|
||||||
Operand m = GetMemM(context, setCarry: false);
|
Operand m = GetMemM(context, setCarry: false);
|
||||||
|
|
||||||
Operand temp = default;
|
Operand temp = default;
|
||||||
|
|
Loading…
Reference in a new issue