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

Side by Side Diff: src/IceClFlags.h

Issue 574133002: Add initial integrated assembler w/ some Xmm ops. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: remove duplicate pxor, and use enum Created 6 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 | « src/IceCfgNode.cpp ('k') | src/IceDefs.h » ('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.
11 // 11 //
12 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===//
13 13
14 #ifndef SUBZERO_SRC_ICECLFLAGS_H 14 #ifndef SUBZERO_SRC_ICECLFLAGS_H
15 #define SUBZERO_SRC_ICECLFLAGS_H 15 #define SUBZERO_SRC_ICECLFLAGS_H
16 16
17 #include "IceTypes.def" 17 #include "IceTypes.def"
18 18
19 namespace Ice { 19 namespace Ice {
20 20
21 // TODO(stichnot) Move more command line flags into ClFlags. 21 // TODO(stichnot) Move more command line flags into ClFlags.
22 class ClFlags { 22 class ClFlags {
23 public: 23 public:
24 ClFlags() 24 ClFlags()
25 : DisableInternal(false), SubzeroTimingEnabled(false), 25 : DisableInternal(false), SubzeroTimingEnabled(false),
26 DisableTranslation(false), DisableGlobals(false), 26 DisableTranslation(false), DisableGlobals(false),
27 FunctionSections(false), UseSandboxing(false), DumpStats(false), 27 FunctionSections(false), UseIntegratedAssembler(false),
28 DefaultGlobalPrefix(""), DefaultFunctionPrefix("") {} 28 UseSandboxing(false), DumpStats(false), DefaultGlobalPrefix(""),
29 DefaultFunctionPrefix("") {}
29 bool DisableInternal; 30 bool DisableInternal;
30 bool SubzeroTimingEnabled; 31 bool SubzeroTimingEnabled;
31 bool DisableTranslation; 32 bool DisableTranslation;
32 bool DisableGlobals; 33 bool DisableGlobals;
33 bool FunctionSections; 34 bool FunctionSections;
35 bool UseIntegratedAssembler;
34 bool UseSandboxing; 36 bool UseSandboxing;
35 bool DumpStats; 37 bool DumpStats;
36 IceString DefaultGlobalPrefix; 38 IceString DefaultGlobalPrefix;
37 IceString DefaultFunctionPrefix; 39 IceString DefaultFunctionPrefix;
38 }; 40 };
39 41
40 } // end of namespace Ice 42 } // end of namespace Ice
41 43
42 #endif // SUBZERO_SRC_ICECLFLAGS_H 44 #endif // SUBZERO_SRC_ICECLFLAGS_H
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceDefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698