| 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 18 matching lines...) Expand all Loading... |
| 29 X(emit) \ | 29 X(emit) \ |
| 30 X(emitGlobalInitializers) \ | 30 X(emitGlobalInitializers) \ |
| 31 X(genCode) \ | 31 X(genCode) \ |
| 32 X(genFrame) \ | 32 X(genFrame) \ |
| 33 X(initUnhandled) \ | 33 X(initUnhandled) \ |
| 34 X(linearScan) \ | 34 X(linearScan) \ |
| 35 X(liveRange) \ | 35 X(liveRange) \ |
| 36 X(liveness) \ | 36 X(liveness) \ |
| 37 X(livenessLightweight) \ | 37 X(livenessLightweight) \ |
| 38 X(llvmConvert) \ | 38 X(llvmConvert) \ |
| 39 X(lowerPhiAssignments) \ |
| 39 X(parse) \ | 40 X(parse) \ |
| 40 X(parseConstants) \ | 41 X(parseConstants) \ |
| 41 X(parseFunctions) \ | 42 X(parseFunctions) \ |
| 42 X(parseFunctionValuesymtabs) \ | 43 X(parseFunctionValuesymtabs) \ |
| 43 X(parseGlobals) \ | 44 X(parseGlobals) \ |
| 44 X(parseModule) \ | 45 X(parseModule) \ |
| 45 X(parseModuleValuesymtabs) \ | 46 X(parseModuleValuesymtabs) \ |
| 46 X(parseTypes) \ | 47 X(parseTypes) \ |
| 47 X(placePhiLoads) \ | 48 X(placePhiLoads) \ |
| 48 X(placePhiStores) \ | 49 X(placePhiStores) \ |
| 49 X(regAlloc) \ | 50 X(regAlloc) \ |
| 50 X(renumberInstructions) \ | 51 X(renumberInstructions) \ |
| 51 X(szmain) \ | 52 X(szmain) \ |
| 52 X(translate) \ | 53 X(translate) \ |
| 53 X(validateLiveness) \ | 54 X(validateLiveness) \ |
| 54 X(vmetadata) | 55 X(vmetadata) |
| 55 //#define X(tag) | 56 //#define X(tag) |
| 56 | 57 |
| 57 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 58 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
| OLD | NEW |