| OLD | NEW |
| 1 //===- subzero/src/IceTimerTree.def - X-macros for timing -------*- C++ -*-===// | 1 //===- subzero/src/IceTimerTree.def - X-macros for timing -------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 // | 9 // |
| 10 // This file lists predefined timing tags. New tags can be added to | 10 // This file lists predefined timing tags. New tags can be added to |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 X(initUnhandled) \ | 30 X(initUnhandled) \ |
| 31 X(linearScan) \ | 31 X(linearScan) \ |
| 32 X(liveRange) \ | 32 X(liveRange) \ |
| 33 X(liveRangeCtor) \ | 33 X(liveRangeCtor) \ |
| 34 X(liveness) \ | 34 X(liveness) \ |
| 35 X(livenessLightweight) \ | 35 X(livenessLightweight) \ |
| 36 X(llvmConvert) \ | 36 X(llvmConvert) \ |
| 37 X(parse) \ | 37 X(parse) \ |
| 38 X(placePhiLoads) \ | 38 X(placePhiLoads) \ |
| 39 X(placePhiStores) \ | 39 X(placePhiStores) \ |
| 40 X(postLower) \ | |
| 41 X(regAlloc) \ | 40 X(regAlloc) \ |
| 42 X(renumberInstructions) \ | 41 X(renumberInstructions) \ |
| 43 X(szmain) \ | 42 X(szmain) \ |
| 44 X(translate) \ | 43 X(translate) \ |
| 45 X(validateLiveness) \ | 44 X(validateLiveness) \ |
| 46 X(vmetadata) | 45 X(vmetadata) |
| 47 //#define X(tag) | 46 //#define X(tag) |
| 48 | 47 |
| 49 #define SUBZERO_SRC_ICETIMERTREE_DEF | 48 #define SUBZERO_SRC_ICETIMERTREE_DEF |
| 50 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 49 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
| OLD | NEW |