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