OLD | NEW |
1 //===- subzero/src/IceClFlags.h - Cl Flags for translation ------*- C++ -*-===// | 1 //===- subzero/src/IceClFlags.h - Cl Flags for translation ------*- 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 declares command line flags controlling translation. | 10 // This file declares command line flags controlling translation. |
11 // | 11 // |
12 //===----------------------------------------------------------------------===// | 12 //===----------------------------------------------------------------------===// |
13 | 13 |
14 #ifndef SUBZERO_SRC_ICECLFLAGS_H | 14 #ifndef SUBZERO_SRC_ICECLFLAGS_H |
15 #define SUBZERO_SRC_ICECLFLAGS_H | 15 #define SUBZERO_SRC_ICECLFLAGS_H |
16 | 16 |
17 #include "IceTypes.def" | 17 #include "IceTypes.def" |
18 | 18 |
19 namespace Ice { | 19 namespace Ice { |
20 | 20 |
21 // TODO(stichnot) Move more command line flags into ClFlags. | |
22 class ClFlags { | 21 class ClFlags { |
23 public: | 22 public: |
24 ClFlags() | 23 ClFlags() |
25 : DisableInternal(false), SubzeroTimingEnabled(false), | 24 : DisableInternal(false), SubzeroTimingEnabled(false), |
26 DisableTranslation(false), FunctionSections(false), DataSections(false), | 25 DisableTranslation(false), FunctionSections(false), DataSections(false), |
27 UseIntegratedAssembler(false), UseSandboxing(false), DumpStats(false), | 26 UseIntegratedAssembler(false), UseSandboxing(false), |
| 27 PhiEdgeSplit(false), DecorateAsm(false), DumpStats(false), |
28 AllowUninitializedGlobals(false), TimeEachFunction(false), | 28 AllowUninitializedGlobals(false), TimeEachFunction(false), |
29 DefaultGlobalPrefix(""), DefaultFunctionPrefix(""), TimingFocusOn(""), | 29 DefaultGlobalPrefix(""), DefaultFunctionPrefix(""), TimingFocusOn(""), |
30 VerboseFocusOn(""), TranslateOnly("") {} | 30 VerboseFocusOn(""), TranslateOnly("") {} |
31 bool DisableInternal; | 31 bool DisableInternal; |
32 bool SubzeroTimingEnabled; | 32 bool SubzeroTimingEnabled; |
33 bool DisableTranslation; | 33 bool DisableTranslation; |
34 bool FunctionSections; | 34 bool FunctionSections; |
35 bool DataSections; | 35 bool DataSections; |
36 bool UseIntegratedAssembler; | 36 bool UseIntegratedAssembler; |
37 bool UseSandboxing; | 37 bool UseSandboxing; |
38 bool PhiEdgeSplit; | 38 bool PhiEdgeSplit; |
| 39 bool DecorateAsm; |
39 bool DumpStats; | 40 bool DumpStats; |
40 bool AllowUninitializedGlobals; | 41 bool AllowUninitializedGlobals; |
41 bool TimeEachFunction; | 42 bool TimeEachFunction; |
42 IceString DefaultGlobalPrefix; | 43 IceString DefaultGlobalPrefix; |
43 IceString DefaultFunctionPrefix; | 44 IceString DefaultFunctionPrefix; |
44 IceString TimingFocusOn; | 45 IceString TimingFocusOn; |
45 IceString VerboseFocusOn; | 46 IceString VerboseFocusOn; |
46 IceString TranslateOnly; | 47 IceString TranslateOnly; |
47 }; | 48 }; |
48 | 49 |
49 } // end of namespace Ice | 50 } // end of namespace Ice |
50 | 51 |
51 #endif // SUBZERO_SRC_ICECLFLAGS_H | 52 #endif // SUBZERO_SRC_ICECLFLAGS_H |
OLD | NEW |