aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Diagnostics/PassName.cs
blob: 2d87659f0c763545817ff36e2ec02cde2734f6c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace ARMeilleure.Diagnostics
{
    enum PassName
    {
        Decoding,
        Translation,
        RegisterUsage,
        TailMerge,
        Dominance,
        SsaConstruction,
        RegisterToLocal,
        Optimization,
        PreAllocation,
        RegisterAllocation,
        CodeGeneration,

        Count,
    }
}