1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-27 01:56:47 -06:00
FICTURE7 f60033e0aa
Implement block placement ()
* 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
2020-09-19 20:00:24 -03:00

8 lines
126 B
C#

namespace ARMeilleure.IntermediateRepresentation
{
enum BasicBlockFrequency
{
Default,
Cold
}
}