Add host CPU memory barriers for DMB/DSB and ordered load/store (#3015)
* Add host CPU memory barriers for DMB/DSB and ordered load/store * PPTC version bump * Revert to old barrier order
This commit is contained in:
parent
7e967d796c
commit
f0824fde9f
6 changed files with 21 additions and 5 deletions
|
@ -358,6 +358,12 @@ namespace ARMeilleure.CodeGen.X86
|
||||||
WriteInstruction(dest, source, type, X86Instruction.Lea);
|
WriteInstruction(dest, source, type, X86Instruction.Lea);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void LockOr(Operand dest, Operand source, OperandType type)
|
||||||
|
{
|
||||||
|
WriteByte(LockPrefix);
|
||||||
|
WriteInstruction(dest, source, type, X86Instruction.Or);
|
||||||
|
}
|
||||||
|
|
||||||
public void Mov(Operand dest, Operand source, OperandType type)
|
public void Mov(Operand dest, Operand source, OperandType type)
|
||||||
{
|
{
|
||||||
WriteInstruction(dest, source, type, X86Instruction.Mov);
|
WriteInstruction(dest, source, type, X86Instruction.Mov);
|
||||||
|
|
|
@ -49,6 +49,7 @@ namespace ARMeilleure.CodeGen.X86
|
||||||
Add(Instruction.Load, GenerateLoad);
|
Add(Instruction.Load, GenerateLoad);
|
||||||
Add(Instruction.Load16, GenerateLoad16);
|
Add(Instruction.Load16, GenerateLoad16);
|
||||||
Add(Instruction.Load8, GenerateLoad8);
|
Add(Instruction.Load8, GenerateLoad8);
|
||||||
|
Add(Instruction.MemoryBarrier, GenerateMemoryBarrier);
|
||||||
Add(Instruction.Multiply, GenerateMultiply);
|
Add(Instruction.Multiply, GenerateMultiply);
|
||||||
Add(Instruction.Multiply64HighSI, GenerateMultiply64HighSI);
|
Add(Instruction.Multiply64HighSI, GenerateMultiply64HighSI);
|
||||||
Add(Instruction.Multiply64HighUI, GenerateMultiply64HighUI);
|
Add(Instruction.Multiply64HighUI, GenerateMultiply64HighUI);
|
||||||
|
@ -976,6 +977,11 @@ namespace ARMeilleure.CodeGen.X86
|
||||||
context.Assembler.Movzx8(value, address, value.Type);
|
context.Assembler.Movzx8(value, address, value.Type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void GenerateMemoryBarrier(CodeGenContext context, Operation operation)
|
||||||
|
{
|
||||||
|
context.Assembler.LockOr(MemoryOp(OperandType.I64, Register(X86Register.Rsp)), Const(0), OperandType.I32);
|
||||||
|
}
|
||||||
|
|
||||||
private static void GenerateMultiply(CodeGenContext context, Operation operation)
|
private static void GenerateMultiply(CodeGenContext context, Operation operation)
|
||||||
{
|
{
|
||||||
Operand dest = operation.Destination;
|
Operand dest = operation.Destination;
|
||||||
|
|
|
@ -167,9 +167,7 @@ namespace ARMeilleure.Instructions
|
||||||
|
|
||||||
private static void EmitBarrier(ArmEmitterContext context)
|
private static void EmitBarrier(ArmEmitterContext context)
|
||||||
{
|
{
|
||||||
// Note: This barrier is most likely not necessary, and probably
|
context.MemoryBarrier();
|
||||||
// doesn't make any difference since we need to do a ton of stuff
|
|
||||||
// (software MMU emulation) to read or write anything anyway.
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -26,6 +26,7 @@ namespace ARMeilleure.IntermediateRepresentation
|
||||||
Load16,
|
Load16,
|
||||||
Load8,
|
Load8,
|
||||||
LoadArgument,
|
LoadArgument,
|
||||||
|
MemoryBarrier,
|
||||||
Multiply,
|
Multiply,
|
||||||
Multiply64HighSI,
|
Multiply64HighSI,
|
||||||
Multiply64HighUI,
|
Multiply64HighUI,
|
||||||
|
|
|
@ -325,6 +325,11 @@ namespace ARMeilleure.Translation
|
||||||
Add(Instruction.LoadFromContext);
|
Add(Instruction.LoadFromContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void MemoryBarrier()
|
||||||
|
{
|
||||||
|
Add(Instruction.MemoryBarrier);
|
||||||
|
}
|
||||||
|
|
||||||
public Operand Multiply(Operand op1, Operand op2)
|
public Operand Multiply(Operand op1, Operand op2)
|
||||||
{
|
{
|
||||||
return Add(Instruction.Multiply, Local(op1.Type), op1, op2);
|
return Add(Instruction.Multiply, Local(op1.Type), op1, op2);
|
||||||
|
|
|
@ -27,7 +27,7 @@ namespace ARMeilleure.Translation.PTC
|
||||||
private const string OuterHeaderMagicString = "PTCohd\0\0";
|
private const string OuterHeaderMagicString = "PTCohd\0\0";
|
||||||
private const string InnerHeaderMagicString = "PTCihd\0\0";
|
private const string InnerHeaderMagicString = "PTCihd\0\0";
|
||||||
|
|
||||||
private const uint InternalVersion = 2953; //! To be incremented manually for each change to the ARMeilleure project.
|
private const uint InternalVersion = 3015; //! To be incremented manually for each change to the ARMeilleure project.
|
||||||
|
|
||||||
private const string ActualDir = "0";
|
private const string ActualDir = "0";
|
||||||
private const string BackupDir = "1";
|
private const string BackupDir = "1";
|
||||||
|
|
Loading…
Reference in a new issue