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 13 matching lines...) Expand all Loading... |
24 X(computeLoopNestDepth) \ | 24 X(computeLoopNestDepth) \ |
25 X(convertToIce) \ | 25 X(convertToIce) \ |
26 X(deletePhis) \ | 26 X(deletePhis) \ |
27 X(doAddressOpt) \ | 27 X(doAddressOpt) \ |
28 X(doArgLowering) \ | 28 X(doArgLowering) \ |
29 X(doBranchOpt) \ | 29 X(doBranchOpt) \ |
30 X(doNopInsertion) \ | 30 X(doNopInsertion) \ |
31 X(emitAsm) \ | 31 X(emitAsm) \ |
32 X(emitGlobalInitializers) \ | 32 X(emitGlobalInitializers) \ |
33 X(findRMW) \ | 33 X(findRMW) \ |
| 34 X(floatConstantCse) \ |
34 X(genCode) \ | 35 X(genCode) \ |
35 X(genFrame) \ | 36 X(genFrame) \ |
36 X(genHelpers) \ | 37 X(genHelpers) \ |
37 X(initUnhandled) \ | 38 X(initUnhandled) \ |
38 X(linearScan) \ | 39 X(linearScan) \ |
39 X(liveRange) \ | 40 X(liveRange) \ |
40 X(liveness) \ | 41 X(liveness) \ |
41 X(livenessLightweight) \ | 42 X(livenessLightweight) \ |
42 X(llvmConvert) \ | 43 X(llvmConvert) \ |
43 X(loadOpt) \ | 44 X(loadOpt) \ |
(...skipping 24 matching lines...) Expand all Loading... |
68 X(translate) \ | 69 X(translate) \ |
69 X(translateFunctions) \ | 70 X(translateFunctions) \ |
70 X(validateLiveness) \ | 71 X(validateLiveness) \ |
71 X(vmetadata) \ | 72 X(vmetadata) \ |
72 X(wasm) \ | 73 X(wasm) \ |
73 X(wasmGenIce) \ | 74 X(wasmGenIce) \ |
74 X(writeELF) | 75 X(writeELF) |
75 //#define X(tag) | 76 //#define X(tag) |
76 | 77 |
77 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 78 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
OLD | NEW |