mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 22:50:46 -07:00
Implement block placement (#1549)
* Implement block placement Implement a simple pass which re-orders cold blocks at the end of the list of blocks in the CFG. * Set PPTC version * Use Array.Resize Address gdkchan's feedback
This commit is contained in:
@ -57,6 +57,11 @@ namespace ARMeilleure.Diagnostics
|
||||
{
|
||||
DumpBlockName(block);
|
||||
|
||||
if (block.Frequency == BasicBlockFrequency.Cold)
|
||||
{
|
||||
_builder.Append(" cold");
|
||||
}
|
||||
|
||||
if (block.SuccessorCount > 0)
|
||||
{
|
||||
_builder.Append(" (");
|
||||
|
Reference in New Issue
Block a user