Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(499)

Side by Side Diff: src/IceTimerTree.def

Issue 874353006: Write out global initializers and data rel directly to ELF file. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: tweak comment Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 16
17 #define TIMERTREE_TABLE \ 17 #define TIMERTREE_TABLE \
18 /* enum value */ \ 18 /* enum value */ \
19 X(O2) \ 19 X(O2) \
20 X(Om1) \ 20 X(Om1) \
21 X(advancedPhiLowering) \ 21 X(advancedPhiLowering) \
22 X(convertToIce) \ 22 X(convertToIce) \
23 X(deletePhis) \ 23 X(deletePhis) \
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(emitGlobalInitializers) \
29 X(genCode) \ 30 X(genCode) \
30 X(genFrame) \ 31 X(genFrame) \
31 X(initUnhandled) \ 32 X(initUnhandled) \
32 X(linearScan) \ 33 X(linearScan) \
33 X(liveRange) \ 34 X(liveRange) \
34 X(liveness) \ 35 X(liveness) \
35 X(livenessLightweight) \ 36 X(livenessLightweight) \
36 X(llvmConvert) \ 37 X(llvmConvert) \
37 X(parse) \ 38 X(parse) \
38 X(parseConstants) \ 39 X(parseConstants) \
39 X(parseFunctions) \ 40 X(parseFunctions) \
40 X(parseFunctionValuesymtabs) \ 41 X(parseFunctionValuesymtabs) \
41 X(parseGlobals) \ 42 X(parseGlobals) \
42 X(parseModule) \ 43 X(parseModule) \
43 X(parseModuleValuesymtabs) \ 44 X(parseModuleValuesymtabs) \
44 X(parseTypes) \ 45 X(parseTypes) \
45 X(placePhiLoads) \ 46 X(placePhiLoads) \
46 X(placePhiStores) \ 47 X(placePhiStores) \
47 X(regAlloc) \ 48 X(regAlloc) \
48 X(renumberInstructions) \ 49 X(renumberInstructions) \
49 X(szmain) \ 50 X(szmain) \
50 X(translate) \ 51 X(translate) \
51 X(validateLiveness) \ 52 X(validateLiveness) \
52 X(vmetadata) 53 X(vmetadata)
53 //#define X(tag) 54 //#define X(tag)
54 55
55 #define SUBZERO_SRC_ICETIMERTREE_DEF 56 #define SUBZERO_SRC_ICETIMERTREE_DEF
56 #endif // SUBZERO_SRC_ICETIMERTREE_DEF 57 #endif // SUBZERO_SRC_ICETIMERTREE_DEF
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698