| 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 avoid a | 10 // This file lists predefined timing tags. New tags can be added to avoid a |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 X(genCode) \ | 34 X(genCode) \ |
| 35 X(genFrame) \ | 35 X(genFrame) \ |
| 36 X(genHelpers) \ | 36 X(genHelpers) \ |
| 37 X(initUnhandled) \ | 37 X(initUnhandled) \ |
| 38 X(linearScan) \ | 38 X(linearScan) \ |
| 39 X(liveRange) \ | 39 X(liveRange) \ |
| 40 X(liveness) \ | 40 X(liveness) \ |
| 41 X(livenessLightweight) \ | 41 X(livenessLightweight) \ |
| 42 X(llvmConvert) \ | 42 X(llvmConvert) \ |
| 43 X(loadOpt) \ | 43 X(loadOpt) \ |
| 44 X(localCse) \ |
| 44 X(lowerPhiAssignments) \ | 45 X(lowerPhiAssignments) \ |
| 45 X(materializeVectorShuffles) \ | 46 X(materializeVectorShuffles) \ |
| 46 X(parse) \ | 47 X(parse) \ |
| 47 X(parseConstants) \ | 48 X(parseConstants) \ |
| 48 X(parseFunctions) \ | 49 X(parseFunctions) \ |
| 49 X(parseFunctionValuesymtabs) \ | 50 X(parseFunctionValuesymtabs) \ |
| 50 X(parseGlobals) \ | 51 X(parseGlobals) \ |
| 51 X(parseModule) \ | 52 X(parseModule) \ |
| 52 X(parseModuleValuesymtabs) \ | 53 X(parseModuleValuesymtabs) \ |
| 53 X(parseTypes) \ | 54 X(parseTypes) \ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 64 X(translate) \ | 65 X(translate) \ |
| 65 X(translateFunctions) \ | 66 X(translateFunctions) \ |
| 66 X(validateLiveness) \ | 67 X(validateLiveness) \ |
| 67 X(vmetadata) \ | 68 X(vmetadata) \ |
| 68 X(wasm) \ | 69 X(wasm) \ |
| 69 X(wasmGenIce) \ | 70 X(wasmGenIce) \ |
| 70 X(writeELF) | 71 X(writeELF) |
| 71 //#define X(tag) | 72 //#define X(tag) |
| 72 | 73 |
| 73 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 74 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
| OLD | NEW |