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 /// \file | 10 /// \file |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 bool getAllowExternDefinedSymbols() const { | 42 bool getAllowExternDefinedSymbols() const { |
43 return AllowExternDefinedSymbols; | 43 return AllowExternDefinedSymbols; |
44 } | 44 } |
45 void setAllowExternDefinedSymbols(bool NewValue) { | 45 void setAllowExternDefinedSymbols(bool NewValue) { |
46 AllowExternDefinedSymbols = NewValue; | 46 AllowExternDefinedSymbols = NewValue; |
47 } | 47 } |
48 | 48 |
49 bool getAllowIacaMarks() const { return AllowIacaMarks; } | 49 bool getAllowIacaMarks() const { return AllowIacaMarks; } |
50 void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; } | 50 void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; } |
51 | 51 |
52 bool getAllowUnsafeIas() const { return AllowUnsafeIas; } | |
53 void setAllowUnsafeIas(bool NewValue) { AllowUnsafeIas = NewValue; } | |
54 | |
55 bool getAllowUninitializedGlobals() const { | 52 bool getAllowUninitializedGlobals() const { |
56 return AllowUninitializedGlobals; | 53 return AllowUninitializedGlobals; |
57 } | 54 } |
58 void setAllowUninitializedGlobals(bool NewValue) { | 55 void setAllowUninitializedGlobals(bool NewValue) { |
59 AllowUninitializedGlobals = NewValue; | 56 AllowUninitializedGlobals = NewValue; |
60 } | 57 } |
61 | 58 |
62 bool getDataSections() const { return DataSections; } | 59 bool getDataSections() const { return DataSections; } |
63 void setDataSections(bool NewValue) { DataSections = NewValue; } | 60 void setDataSections(bool NewValue) { DataSections = NewValue; } |
64 | 61 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 } | 249 } |
253 | 250 |
254 uint64_t getRandomSeed() const { return RandomSeed; } | 251 uint64_t getRandomSeed() const { return RandomSeed; } |
255 void setRandomSeed(size_t NewValue) { RandomSeed = NewValue; } | 252 void setRandomSeed(size_t NewValue) { RandomSeed = NewValue; } |
256 | 253 |
257 private: | 254 private: |
258 bool AllowErrorRecovery; | 255 bool AllowErrorRecovery; |
259 bool AllowExternDefinedSymbols; | 256 bool AllowExternDefinedSymbols; |
260 bool AllowIacaMarks; | 257 bool AllowIacaMarks; |
261 bool AllowUninitializedGlobals; | 258 bool AllowUninitializedGlobals; |
262 // TODO(kschimpf): This is a temporary flag. Nuke this once the ARM integrated | |
263 // assembler is working. | |
264 bool AllowUnsafeIas; | |
265 bool DataSections; | 259 bool DataSections; |
266 bool DecorateAsm; | 260 bool DecorateAsm; |
267 bool DisableHybridAssembly; | 261 bool DisableHybridAssembly; |
268 bool DisableInternal; | 262 bool DisableInternal; |
269 bool DisableIRGeneration; | 263 bool DisableIRGeneration; |
270 bool DisableTranslation; | 264 bool DisableTranslation; |
271 bool DumpStats; | 265 bool DumpStats; |
272 bool EnableBlockProfile; | 266 bool EnableBlockProfile; |
273 bool ForceMemIntrinOpt; | 267 bool ForceMemIntrinOpt; |
274 bool FunctionSections; | 268 bool FunctionSections; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 IceString TranslateOnly; | 300 IceString TranslateOnly; |
307 IceString VerboseFocusOn; | 301 IceString VerboseFocusOn; |
308 | 302 |
309 size_t NumTranslationThreads; // 0 means completely sequential | 303 size_t NumTranslationThreads; // 0 means completely sequential |
310 uint64_t RandomSeed; | 304 uint64_t RandomSeed; |
311 }; | 305 }; |
312 | 306 |
313 } // end of namespace Ice | 307 } // end of namespace Ice |
314 | 308 |
315 #endif // SUBZERO_SRC_ICECLFLAGS_H | 309 #endif // SUBZERO_SRC_ICECLFLAGS_H |
OLD | NEW |