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

Side by Side Diff: src/IceClFlags.def

Issue 2218363002: Subzero: Embed the revision string into translated output. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Insert new global in GlobalContext ctor. Created 4 years, 4 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 | « pydir/run-pnacl-sz.py ('k') | src/IceCompileServer.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.def - Cl Flags for translation ----*- C++ -*-===// 1 //===- subzero/src/IceClFlags.def - 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 \ 146 \
147 X(LocalCSE, Ice::LCSEOptions, dev_opt_flag, "lcse", \ 147 X(LocalCSE, Ice::LCSEOptions, dev_opt_flag, "lcse", \
148 cl::desc("Local common subexpression elimination"), \ 148 cl::desc("Local common subexpression elimination"), \
149 cl::init(Ice::LCSE_EnabledSSA), \ 149 cl::init(Ice::LCSE_EnabledSSA), \
150 cl::values( \ 150 cl::values( \
151 clEnumValN(Ice::LCSE_Disabled, "0", "disabled"), \ 151 clEnumValN(Ice::LCSE_Disabled, "0", "disabled"), \
152 clEnumValN(Ice::LCSE_EnabledSSA, "enabled", "assume-ssa"), \ 152 clEnumValN(Ice::LCSE_EnabledSSA, "enabled", "assume-ssa"), \
153 clEnumValN(Ice::LCSE_EnabledNoSSA, "no-ssa", "no-assume-ssa"), \ 153 clEnumValN(Ice::LCSE_EnabledNoSSA, "no-ssa", "no-assume-ssa"), \
154 clEnumValEnd)) \ 154 clEnumValEnd)) \
155 \ 155 \
156 X(EmitRevision, bool, dev_opt_flag, "emit-revision", \
157 cl::desc("Emit Subzero revision string into the output"), cl::init(true)) \
158 \
156 X(EnablePhiEdgeSplit, bool, dev_opt_flag, "phi-edge-split", \ 159 X(EnablePhiEdgeSplit, bool, dev_opt_flag, "phi-edge-split", \
157 cl::desc("Enable edge splitting for Phi lowering"), cl::init(true)) \ 160 cl::desc("Enable edge splitting for Phi lowering"), cl::init(true)) \
158 \ 161 \
159 X(EnableShortCircuit, bool, dev_opt_flag, "enable-sc", \ 162 X(EnableShortCircuit, bool, dev_opt_flag, "enable-sc", \
160 cl::desc("Split Nodes for short circuit evaluation"), cl::init(false)) \ 163 cl::desc("Split Nodes for short circuit evaluation"), cl::init(false)) \
161 \ 164 \
162 X(ExcludedRegisters, std::string, dev_list_flag, "reg-exclude", \ 165 X(ExcludedRegisters, std::string, dev_list_flag, "reg-exclude", \
163 cl::CommaSeparated, cl::desc("Don't use specified registers")) \ 166 cl::CommaSeparated, cl::desc("Don't use specified registers")) \
164 \ 167 \
165 X(ForceMemIntrinOpt, bool, dev_opt_flag, "fmem-intrin-opt", \ 168 X(ForceMemIntrinOpt, bool, dev_opt_flag, "fmem-intrin-opt", \
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 \ 389 \
387 X(WasmBoundsCheck, bool, dev_opt_flag, "wasm-bounds-check", \ 390 X(WasmBoundsCheck, bool, dev_opt_flag, "wasm-bounds-check", \
388 cl::desc("Add bounds checking code in WASM frontend"), \ 391 cl::desc("Add bounds checking code in WASM frontend"), \
389 cl::init(true)) 392 cl::init(true))
390 393
391 //#define X(Name, Type, ClType, ...) 394 //#define X(Name, Type, ClType, ...)
392 395
393 } // end of namespace Ice 396 } // end of namespace Ice
394 397
395 #endif // SUBZERO_SRC_ICECLFLAGS_DEF 398 #endif // SUBZERO_SRC_ICECLFLAGS_DEF
OLDNEW
« no previous file with comments | « pydir/run-pnacl-sz.py ('k') | src/IceCompileServer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698