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

Side by Side Diff: src/IceClFlags.h

Issue 673783002: Subzero: Improve debugging controls, plus minor refactoring. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 1 month 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 | « src/IceCfgNode.cpp ('k') | src/IceInstX8632.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 // This file declares command line flags controlling translation. 10 // This file declares command line flags controlling translation.
(...skipping 17 matching lines...) Expand all
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
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceInstX8632.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698