PassName.cs 329 B

12345678910111213141516171819
  1. namespace ARMeilleure.Diagnostics
  2. {
  3. enum PassName
  4. {
  5. Decoding,
  6. Translation,
  7. RegisterUsage,
  8. TailMerge,
  9. Dominance,
  10. SsaConstruction,
  11. RegisterToLocal,
  12. Optimization,
  13. PreAllocation,
  14. RegisterAllocation,
  15. CodeGeneration,
  16. Count
  17. }
  18. }