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 24 matching lines...) Expand all Loading... |
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(localCse) \ |
| 45 X(loopInvariantCodeMotion) \ |
45 X(lowerPhiAssignments) \ | 46 X(lowerPhiAssignments) \ |
46 X(materializeVectorShuffles) \ | 47 X(materializeVectorShuffles) \ |
47 X(parse) \ | 48 X(parse) \ |
48 X(parseConstants) \ | 49 X(parseConstants) \ |
49 X(parseFunctions) \ | 50 X(parseFunctions) \ |
50 X(parseFunctionValuesymtabs) \ | 51 X(parseFunctionValuesymtabs) \ |
51 X(parseGlobals) \ | 52 X(parseGlobals) \ |
52 X(parseModule) \ | 53 X(parseModule) \ |
53 X(parseModuleValuesymtabs) \ | 54 X(parseModuleValuesymtabs) \ |
54 X(parseTypes) \ | 55 X(parseTypes) \ |
(...skipping 11 matching lines...) Expand all Loading... |
66 X(translate) \ | 67 X(translate) \ |
67 X(translateFunctions) \ | 68 X(translateFunctions) \ |
68 X(validateLiveness) \ | 69 X(validateLiveness) \ |
69 X(vmetadata) \ | 70 X(vmetadata) \ |
70 X(wasm) \ | 71 X(wasm) \ |
71 X(wasmGenIce) \ | 72 X(wasmGenIce) \ |
72 X(writeELF) | 73 X(writeELF) |
73 //#define X(tag) | 74 //#define X(tag) |
74 | 75 |
75 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 76 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
OLD | NEW |