| 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(alloca) \ | 23 X(alloca) \ |
| 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(genCode) \ | 34 X(genCode) \ |
| 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(lowerPhiAssignments) \ | 44 X(lowerPhiAssignments) \ |
| 45 X(parse) \ | 45 X(materializeVectorShuffles) \ |
| 46 X(parseConstants) \ | 46 X(parse) \ |
| 47 X(parseFunctions) \ | 47 X(parseConstants) \ |
| 48 X(parseFunctionValuesymtabs) \ | 48 X(parseFunctions) \ |
| 49 X(parseGlobals) \ | 49 X(parseFunctionValuesymtabs) \ |
| 50 X(parseModule) \ | 50 X(parseGlobals) \ |
| 51 X(parseModuleValuesymtabs) \ | 51 X(parseModule) \ |
| 52 X(parseTypes) \ | 52 X(parseModuleValuesymtabs) \ |
| 53 X(phiValidation) \ | 53 X(parseTypes) \ |
| 54 X(placePhiLoads) \ | 54 X(phiValidation) \ |
| 55 X(placePhiStores) \ | 55 X(placePhiLoads) \ |
| 56 X(qEmitPop) \ | 56 X(placePhiStores) \ |
| 57 X(qEmitPush) \ | 57 X(qEmitPop) \ |
| 58 X(qTransPop) \ | 58 X(qEmitPush) \ |
| 59 X(qTransPush) \ | 59 X(qTransPop) \ |
| 60 X(regAlloc) \ | 60 X(qTransPush) \ |
| 61 X(renumberInstructions) \ | 61 X(regAlloc) \ |
| 62 X(szmain) \ | 62 X(renumberInstructions) \ |
| 63 X(translate) \ | 63 X(szmain) \ |
| 64 X(translateFunctions) \ | 64 X(translate) \ |
| 65 X(validateLiveness) \ | 65 X(translateFunctions) \ |
| 66 X(vmetadata) \ | 66 X(validateLiveness) \ |
| 67 X(vmetadata) \ |
| 67 X(writeELF) | 68 X(writeELF) |
| 68 //#define X(tag) | 69 //#define X(tag) |
| 69 | 70 |
| 70 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 71 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
| OLD | NEW |