Chromium Code Reviews| 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 28 matching lines...) Expand all Loading... | |
| 39 bool getAllowErrorRecovery() const { return AllowErrorRecovery; } | 39 bool getAllowErrorRecovery() const { return AllowErrorRecovery; } | 
| 40 void setAllowErrorRecovery(bool NewValue) { AllowErrorRecovery = NewValue; } | 40 void setAllowErrorRecovery(bool NewValue) { AllowErrorRecovery = NewValue; } | 
| 41 | 41 | 
| 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 getAllowHybridAssembly() const { return AllowHybridAssembly; } | |
| 50 void setAllowHybridAssembly(bool NewValue) { AllowHybridAssembly = NewValue; } | |
| 51 | |
| 49 bool getAllowIacaMarks() const { return AllowIacaMarks; } | 52 bool getAllowIacaMarks() const { return AllowIacaMarks; } | 
| 50 void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; } | 53 void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; } | 
| 51 | 54 | 
| 52 bool getAllowUninitializedGlobals() const { | 55 bool getAllowUninitializedGlobals() const { | 
| 53 return AllowUninitializedGlobals; | 56 return AllowUninitializedGlobals; | 
| 54 } | 57 } | 
| 55 void setAllowUninitializedGlobals(bool NewValue) { | 58 void setAllowUninitializedGlobals(bool NewValue) { | 
| 56 AllowUninitializedGlobals = NewValue; | 59 AllowUninitializedGlobals = NewValue; | 
| 57 } | 60 } | 
| 58 | 61 | 
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 242 void setNumTranslationThreads(size_t NewValue) { | 245 void setNumTranslationThreads(size_t NewValue) { | 
| 243 NumTranslationThreads = NewValue; | 246 NumTranslationThreads = NewValue; | 
| 244 } | 247 } | 
| 245 | 248 | 
| 246 uint64_t getRandomSeed() const { return RandomSeed; } | 249 uint64_t getRandomSeed() const { return RandomSeed; } | 
| 247 void setRandomSeed(size_t NewValue) { RandomSeed = NewValue; } | 250 void setRandomSeed(size_t NewValue) { RandomSeed = NewValue; } | 
| 248 | 251 | 
| 249 private: | 252 private: | 
| 250 bool AllowErrorRecovery; | 253 bool AllowErrorRecovery; | 
| 251 bool AllowExternDefinedSymbols; | 254 bool AllowExternDefinedSymbols; | 
| 255 bool AllowHybridAssembly; | |
| 
 
Jim Stichnoth
2015/10/21 01:13:38
Possible suggestion, if you agree.  It might be us
 
 | |
| 252 bool AllowIacaMarks; | 256 bool AllowIacaMarks; | 
| 253 bool AllowUninitializedGlobals; | 257 bool AllowUninitializedGlobals; | 
| 254 bool DataSections; | 258 bool DataSections; | 
| 255 bool DecorateAsm; | 259 bool DecorateAsm; | 
| 256 bool DisableInternal; | 260 bool DisableInternal; | 
| 257 bool DisableIRGeneration; | 261 bool DisableIRGeneration; | 
| 258 bool DisableTranslation; | 262 bool DisableTranslation; | 
| 259 bool DumpStats; | 263 bool DumpStats; | 
| 260 bool EnableBlockProfile; | 264 bool EnableBlockProfile; | 
| 261 bool ForceMemIntrinOpt; | 265 bool ForceMemIntrinOpt; | 
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 294 IceString TranslateOnly; | 298 IceString TranslateOnly; | 
| 295 IceString VerboseFocusOn; | 299 IceString VerboseFocusOn; | 
| 296 | 300 | 
| 297 size_t NumTranslationThreads; // 0 means completely sequential | 301 size_t NumTranslationThreads; // 0 means completely sequential | 
| 298 uint64_t RandomSeed; | 302 uint64_t RandomSeed; | 
| 299 }; | 303 }; | 
| 300 | 304 | 
| 301 } // end of namespace Ice | 305 } // end of namespace Ice | 
| 302 | 306 | 
| 303 #endif // SUBZERO_SRC_ICECLFLAGS_H | 307 #endif // SUBZERO_SRC_ICECLFLAGS_H | 
| OLD | NEW |