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

Side by Side Diff: src/IceClFlags.h

Issue 1395693005: Subzero: Implement "second-chance bin-packing" for register allocation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Change the internal flag name. Fix a broken MINIMAL=1 test. Created 5 years, 2 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
« no previous file with comments | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 bool getPhiEdgeSplit() const { return PhiEdgeSplit; } 100 bool getPhiEdgeSplit() const { return PhiEdgeSplit; }
101 void setPhiEdgeSplit(bool NewValue) { PhiEdgeSplit = NewValue; } 101 void setPhiEdgeSplit(bool NewValue) { PhiEdgeSplit = NewValue; }
102 102
103 bool shouldDoNopInsertion() const { return RandomNopInsertion; } 103 bool shouldDoNopInsertion() const { return RandomNopInsertion; }
104 void setShouldDoNopInsertion(bool NewValue) { RandomNopInsertion = NewValue; } 104 void setShouldDoNopInsertion(bool NewValue) { RandomNopInsertion = NewValue; }
105 105
106 bool shouldRandomizeRegAlloc() const { return RandomRegAlloc; } 106 bool shouldRandomizeRegAlloc() const { return RandomRegAlloc; }
107 void setShouldRandomizeRegAlloc(bool NewValue) { RandomRegAlloc = NewValue; } 107 void setShouldRandomizeRegAlloc(bool NewValue) { RandomRegAlloc = NewValue; }
108 108
109 bool shouldRepeatRegAlloc() const { return RepeatRegAlloc; }
110 void setShouldRepeatRegAlloc(bool NewValue) { RepeatRegAlloc = NewValue; }
111
109 bool getSkipUnimplemented() const { return SkipUnimplemented; } 112 bool getSkipUnimplemented() const { return SkipUnimplemented; }
110 void setSkipUnimplemented(bool NewValue) { SkipUnimplemented = NewValue; } 113 void setSkipUnimplemented(bool NewValue) { SkipUnimplemented = NewValue; }
111 114
112 bool getSubzeroTimingEnabled() const { return SubzeroTimingEnabled; } 115 bool getSubzeroTimingEnabled() const { return SubzeroTimingEnabled; }
113 void setSubzeroTimingEnabled(bool NewValue) { 116 void setSubzeroTimingEnabled(bool NewValue) {
114 SubzeroTimingEnabled = NewValue; 117 SubzeroTimingEnabled = NewValue;
115 } 118 }
116 119
117 bool getTimeEachFunction() const { 120 bool getTimeEachFunction() const {
118 return BuildDefs::dump() && TimeEachFunction; 121 return BuildDefs::dump() && TimeEachFunction;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 bool DisableTranslation; 258 bool DisableTranslation;
256 bool DumpStats; 259 bool DumpStats;
257 bool EnableBlockProfile; 260 bool EnableBlockProfile;
258 bool ForceMemIntrinOpt; 261 bool ForceMemIntrinOpt;
259 bool FunctionSections; 262 bool FunctionSections;
260 bool GenerateUnitTestMessages; 263 bool GenerateUnitTestMessages;
261 bool MockBoundsCheck; 264 bool MockBoundsCheck;
262 bool PhiEdgeSplit; 265 bool PhiEdgeSplit;
263 bool RandomNopInsertion; 266 bool RandomNopInsertion;
264 bool RandomRegAlloc; 267 bool RandomRegAlloc;
268 bool RepeatRegAlloc;
265 bool ReorderBasicBlocks; 269 bool ReorderBasicBlocks;
266 bool ReorderFunctions; 270 bool ReorderFunctions;
267 bool ReorderGlobalVariables; 271 bool ReorderGlobalVariables;
268 bool ReorderPooledConstants; 272 bool ReorderPooledConstants;
269 bool SkipUnimplemented; 273 bool SkipUnimplemented;
270 bool SubzeroTimingEnabled; 274 bool SubzeroTimingEnabled;
271 bool TimeEachFunction; 275 bool TimeEachFunction;
272 bool UseSandboxing; 276 bool UseSandboxing;
273 277
274 OptLevel Opt; 278 OptLevel Opt;
(...skipping 15 matching lines...) Expand all
290 IceString TranslateOnly; 294 IceString TranslateOnly;
291 IceString VerboseFocusOn; 295 IceString VerboseFocusOn;
292 296
293 size_t NumTranslationThreads; // 0 means completely sequential 297 size_t NumTranslationThreads; // 0 means completely sequential
294 uint64_t RandomSeed; 298 uint64_t RandomSeed;
295 }; 299 };
296 300
297 } // end of namespace Ice 301 } // end of namespace Ice
298 302
299 #endif // SUBZERO_SRC_ICECLFLAGS_H 303 #endif // SUBZERO_SRC_ICECLFLAGS_H
OLDNEW
« no previous file with comments | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698