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. |
(...skipping 17 matching lines...) Expand all Loading... |
28 AllowUninitializedGlobals(false), TimeEachFunction(false), | 28 AllowUninitializedGlobals(false), TimeEachFunction(false), |
29 DefaultGlobalPrefix(""), DefaultFunctionPrefix(""), TimingFocusOn(""), | 29 DefaultGlobalPrefix(""), DefaultFunctionPrefix(""), TimingFocusOn(""), |
30 VerboseFocusOn("") {} | 30 VerboseFocusOn("") {} |
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 DumpStats; | 39 bool DumpStats; |
39 bool AllowUninitializedGlobals; | 40 bool AllowUninitializedGlobals; |
40 bool TimeEachFunction; | 41 bool TimeEachFunction; |
41 IceString DefaultGlobalPrefix; | 42 IceString DefaultGlobalPrefix; |
42 IceString DefaultFunctionPrefix; | 43 IceString DefaultFunctionPrefix; |
43 IceString TimingFocusOn; | 44 IceString TimingFocusOn; |
44 IceString VerboseFocusOn; | 45 IceString VerboseFocusOn; |
| 46 IceString TranslateOnly; |
45 }; | 47 }; |
46 | 48 |
47 } // end of namespace Ice | 49 } // end of namespace Ice |
48 | 50 |
49 #endif // SUBZERO_SRC_ICECLFLAGS_H | 51 #endif // SUBZERO_SRC_ICECLFLAGS_H |
OLD | NEW |