Chromium Code Reviews| 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 |
| 11 // runtime string lookup. | 11 // 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 #define SUBZERO_SRC_ICETIMERTREE_DEF |
| 17 | 17 |
| 18 #define TIMERTREE_TABLE \ | 18 #define TIMERTREE_TABLE \ |
| 19 /* enum value */ \ | 19 /* enum value */ \ |
| 20 X(O2) \ | 20 X(O2) \ |
| 21 X(Om1) \ | 21 X(Om1) \ |
| 22 X(advancedPhiLowering) \ | 22 X(advancedPhiLowering) \ |
| 23 X(computeLoopNestDepth) \ | 23 X(computeLoopNestDepth) \ |
| 24 X(convertToIce) \ | 24 X(convertToIce) \ |
| 25 X(deletePhis) \ | 25 X(deletePhis) \ |
| 26 X(doAddressOpt) \ | 26 X(doAddressOpt) \ |
| 27 X(doArgLowering) \ | 27 X(doArgLowering) \ |
| 28 X(doBranchOpt) \ | 28 X(doBranchOpt) \ |
| 29 X(doNopInsertion) \ | 29 X(doNopInsertion) \ |
| 30 X(emit) \ | 30 X(emit) \ |
|
Jim Stichnoth
2016/03/07 23:20:12
What do you think about renaming this to something
Karl
2016/03/08 21:52:47
Done.
| |
| 31 X(emitGlobalInitializers) \ | 31 X(emitGlobalInitializers) \ |
| 32 X(genCode) \ | 32 X(genCode) \ |
| 33 X(genFrame) \ | 33 X(genFrame) \ |
| 34 X(initUnhandled) \ | 34 X(initUnhandled) \ |
| 35 X(linearScan) \ | 35 X(linearScan) \ |
| 36 X(liveRange) \ | 36 X(liveRange) \ |
| 37 X(liveness) \ | 37 X(liveness) \ |
| 38 X(livenessLightweight) \ | 38 X(livenessLightweight) \ |
| 39 X(llvmConvert) \ | 39 X(llvmConvert) \ |
| 40 X(lowerPhiAssignments) \ | 40 X(lowerPhiAssignments) \ |
| 41 X(parse) \ | 41 X(parse) \ |
| 42 X(parseConstants) \ | 42 X(parseConstants) \ |
| 43 X(parseFunctions) \ | 43 X(parseFunctions) \ |
| 44 X(parseFunctionValuesymtabs) \ | 44 X(parseFunctionValuesymtabs) \ |
| 45 X(parseGlobals) \ | 45 X(parseGlobals) \ |
| 46 X(parseModule) \ | 46 X(parseModule) \ |
| 47 X(parseModuleValuesymtabs) \ | 47 X(parseModuleValuesymtabs) \ |
| 48 X(parseTypes) \ | 48 X(parseTypes) \ |
| 49 X(phiValidation) \ | 49 X(phiValidation) \ |
| 50 X(placePhiLoads) \ | 50 X(placePhiLoads) \ |
| 51 X(placePhiStores) \ | 51 X(placePhiStores) \ |
| 52 X(regAlloc) \ | 52 X(regAlloc) \ |
| 53 X(renumberInstructions) \ | 53 X(renumberInstructions) \ |
| 54 X(szmain) \ | 54 X(szmain) \ |
| 55 X(translate) \ | 55 X(translate) \ |
| 56 X(translateFunctions) \ | |
| 56 X(validateLiveness) \ | 57 X(validateLiveness) \ |
| 57 X(vmetadata) | 58 X(vmetadata) \ |
| 59 X(writeELF) | |
| 58 //#define X(tag) | 60 //#define X(tag) |
| 59 | 61 |
| 60 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 62 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
| OLD | NEW |