| 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 X(doAddressOpt) \ | 24 X(doAddressOpt) \ |
| 25 X(doArgLowering) \ | 25 X(doArgLowering) \ |
| 26 X(doBranchOpt) \ | 26 X(doBranchOpt) \ |
| 27 X(doNopInsertion) \ | 27 X(doNopInsertion) \ |
| 28 X(emit) \ | 28 X(emit) \ |
| 29 X(genCode) \ | 29 X(genCode) \ |
| 30 X(genFrame) \ | 30 X(genFrame) \ |
| 31 X(initUnhandled) \ | 31 X(initUnhandled) \ |
| 32 X(linearScan) \ | 32 X(linearScan) \ |
| 33 X(liveRange) \ | 33 X(liveRange) \ |
| 34 X(liveRangeCtor) \ | |
| 35 X(liveness) \ | 34 X(liveness) \ |
| 36 X(livenessLightweight) \ | 35 X(livenessLightweight) \ |
| 37 X(llvmConvert) \ | 36 X(llvmConvert) \ |
| 38 X(parse) \ | 37 X(parse) \ |
| 39 X(parseConstants) \ | 38 X(parseConstants) \ |
| 40 X(parseFunctions) \ | 39 X(parseFunctions) \ |
| 41 X(parseFunctionValuesymtabs) \ | 40 X(parseFunctionValuesymtabs) \ |
| 42 X(parseGlobals) \ | 41 X(parseGlobals) \ |
| 43 X(parseModule) \ | 42 X(parseModule) \ |
| 44 X(parseModuleValuesymtabs) \ | 43 X(parseModuleValuesymtabs) \ |
| 45 X(parseTypes) \ | 44 X(parseTypes) \ |
| 46 X(placePhiLoads) \ | 45 X(placePhiLoads) \ |
| 47 X(placePhiStores) \ | 46 X(placePhiStores) \ |
| 48 X(regAlloc) \ | 47 X(regAlloc) \ |
| 49 X(renumberInstructions) \ | 48 X(renumberInstructions) \ |
| 50 X(szmain) \ | 49 X(szmain) \ |
| 51 X(translate) \ | 50 X(translate) \ |
| 52 X(validateLiveness) \ | 51 X(validateLiveness) \ |
| 53 X(vmetadata) | 52 X(vmetadata) |
| 54 //#define X(tag) | 53 //#define X(tag) |
| 55 | 54 |
| 56 #define SUBZERO_SRC_ICETIMERTREE_DEF | 55 #define SUBZERO_SRC_ICETIMERTREE_DEF |
| 57 #endif // SUBZERO_SRC_ICETIMERTREE_DEF | 56 #endif // SUBZERO_SRC_ICETIMERTREE_DEF |
| OLD | NEW |