| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 X(qEmitPush) \ | 58 X(qEmitPush) \ |
| 59 X(qTransPop) \ | 59 X(qTransPop) \ |
| 60 X(qTransPush) \ | 60 X(qTransPush) \ |
| 61 X(regAlloc) \ | 61 X(regAlloc) \ |
| 62 X(renumberInstructions) \ | 62 X(renumberInstructions) \ |
| 63 X(szmain) \ | 63 X(szmain) \ |
| 64 X(translate) \ | 64 X(translate) \ |
| 65 X(translateFunctions) \ | 65 X(translateFunctions) \ |
| 66 X(validateLiveness) \ | 66 X(validateLiveness) \ |
| 67 X(vmetadata) \ | 67 X(vmetadata) \ |
| 68 X(wasm) \ |
| 69 X(wasmGenIce) \ |
| 68 X(writeELF) | 70 X(writeELF) |
| 69 //#define X(tag) | 71 //#define X(tag) |
| 70 | 72 |
| 71 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 73 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
| OLD | NEW |