PassName.cs 285 B

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