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 | 10 // This file lists predefined timing tags. New tags can be added to |
11 // avoid a runtime string lookup. | 11 // avoid a runtime string lookup. |
12 // | 12 // |
13 //===----------------------------------------------------------------------===// | 13 //===----------------------------------------------------------------------===// |
14 | 14 |
15 #ifndef SUBZERO_SRC_ICETIMERTREE_DEF | 15 #ifndef SUBZERO_SRC_ICETIMERTREE_DEF |
| 16 #define SUBZERO_SRC_ICETIMERTREE_DEF |
16 | 17 |
17 #define TIMERTREE_TABLE \ | 18 #define TIMERTREE_TABLE \ |
18 /* enum value */ \ | 19 /* enum value */ \ |
19 X(O2) \ | 20 X(O2) \ |
20 X(Om1) \ | 21 X(Om1) \ |
21 X(advancedPhiLowering) \ | 22 X(advancedPhiLowering) \ |
22 X(convertToIce) \ | 23 X(convertToIce) \ |
23 X(deletePhis) \ | 24 X(deletePhis) \ |
24 X(doAddressOpt) \ | 25 X(doAddressOpt) \ |
25 X(doArgLowering) \ | 26 X(doArgLowering) \ |
(...skipping 20 matching lines...) Expand all Loading... |
46 X(placePhiLoads) \ | 47 X(placePhiLoads) \ |
47 X(placePhiStores) \ | 48 X(placePhiStores) \ |
48 X(regAlloc) \ | 49 X(regAlloc) \ |
49 X(renumberInstructions) \ | 50 X(renumberInstructions) \ |
50 X(szmain) \ | 51 X(szmain) \ |
51 X(translate) \ | 52 X(translate) \ |
52 X(validateLiveness) \ | 53 X(validateLiveness) \ |
53 X(vmetadata) | 54 X(vmetadata) |
54 //#define X(tag) | 55 //#define X(tag) |
55 | 56 |
56 #define SUBZERO_SRC_ICETIMERTREE_DEF | |
57 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 57 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
OLD | NEW |