Improve branch operations (#1442)
* Add Compare instruction * Add BranchIf instruction * Use test when BranchIf & Compare against 0 * Propagate Compare into BranchIfTrue/False use - Propagate Compare operations into their BranchIfTrue/False use and turn these into a BranchIf. - Clean up Comparison enum. * Replace BranchIfTrue/False with BranchIf * Use BranchIf in EmitPtPointerLoad - Using BranchIf early instead of BranchIfTrue/False improves LCQ and reduces the amount of work needed by the Optimizer. EmitPtPointerLoader was a/the big producer of BranchIfTrue/False. - Fix asserts firing when assembling BitwiseAnd because of type mismatch in EmitStoreExclusive. This is harmless and should not cause any diffs. * Increment PPTC interval version * Improve IRDumper for BranchIf & Compare * Use BranchIf in EmitNativeCall * Clean up * Do not emit test when immediately preceded by and
This commit is contained in:
parent
a33dc2f491
commit
ee22517d92
12 changed files with 311 additions and 145 deletions
|
@ -198,6 +198,8 @@ namespace ARMeilleure.Diagnostics
|
|||
break;
|
||||
|
||||
case Operation operation:
|
||||
bool comparison = false;
|
||||
|
||||
_builder.Append(operation.Instruction);
|
||||
|
||||
if (operation.Instruction == Instruction.Extended)
|
||||
|
@ -206,17 +208,32 @@ namespace ARMeilleure.Diagnostics
|
|||
|
||||
_builder.Append('.').Append(intrinOp.Intrinsic);
|
||||
}
|
||||
else if (operation.Instruction == Instruction.BranchIf ||
|
||||
operation.Instruction == Instruction.Compare)
|
||||
{
|
||||
comparison = true;
|
||||
}
|
||||
|
||||
_builder.Append(' ');
|
||||
|
||||
for (int index = 0; index < operation.SourcesCount; index++)
|
||||
{
|
||||
DumpOperand(operation.GetSource(index));
|
||||
Operand source = operation.GetSource(index);
|
||||
|
||||
if (index < operation.SourcesCount - 1)
|
||||
{
|
||||
DumpOperand(source);
|
||||
|
||||
_builder.Append(", ");
|
||||
}
|
||||
else if (comparison)
|
||||
{
|
||||
_builder.Append((Comparison)source.AsInt32());
|
||||
}
|
||||
else
|
||||
{
|
||||
DumpOperand(source);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue