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

Side by Side Diff: src/IceClFlags.def

Issue 2069923004: Short Circuit Evaluation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Address formatting issues apparently missed by 'make format' Created 4 years, 5 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/IceInst.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.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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 X(DumpStrings, bool, dev_opt_flag, \ 133 X(DumpStrings, bool, dev_opt_flag, \
134 "dump-strings", \ 134 "dump-strings", \
135 cl::desc("Dump string pools during compilation"), \ 135 cl::desc("Dump string pools during compilation"), \
136 cl::init(false)) \ 136 cl::init(false)) \
137 \ 137 \
138 X(EnableBlockProfile, bool, dev_opt_flag, "enable-block-profile", \ 138 X(EnableBlockProfile, bool, dev_opt_flag, "enable-block-profile", \
139 cl::desc("Instrument basic blocks, and output profiling " \ 139 cl::desc("Instrument basic blocks, and output profiling " \
140 "information to stdout at the end of program execution."), \ 140 "information to stdout at the end of program execution."), \
141 cl::init(false)) \ 141 cl::init(false)) \
142 \ 142 \
143 X(EnableExperimental, bool, dev_opt_flag, "enable-experimental", \ 143 X(EnableExperimental, bool, dev_opt_flag, "enable-experimental", \
144 cl::desc("Enable Optimizations not yet part of O2"), \ 144 cl::desc("Enable Optimizations not yet part of O2"), \
145 cl::init(false)) \ 145 cl::init(false)) \
146 \ 146 \
147 X(EnablePhiEdgeSplit, bool, dev_opt_flag, "phi-edge-split", \ 147 X(EnablePhiEdgeSplit, bool, dev_opt_flag, "phi-edge-split", \
148 cl::desc("Enable edge splitting for Phi lowering"), cl::init(true)) \ 148 cl::desc("Enable edge splitting for Phi lowering"), cl::init(true)) \
149 \ 149 \
150 X(EnableShortCircuit, bool, dev_opt_flag, "enable-sc", \
151 cl::desc("Split Nodes for short circuit evaluation"), cl::init(false)) \
152 \
150 X(ExcludedRegisters, std::string, dev_list_flag, "reg-exclude", \ 153 X(ExcludedRegisters, std::string, dev_list_flag, "reg-exclude", \
151 cl::CommaSeparated, cl::desc("Don't use specified registers")) \ 154 cl::CommaSeparated, cl::desc("Don't use specified registers")) \
152 \ 155 \
153 X(ForceMemIntrinOpt, bool, dev_opt_flag, "fmem-intrin-opt", \ 156 X(ForceMemIntrinOpt, bool, dev_opt_flag, "fmem-intrin-opt", \
154 cl::desc("Force optimization of memory intrinsics.")) \ 157 cl::desc("Force optimization of memory intrinsics.")) \
155 \ 158 \
156 X(ForceO2String, std::string, dev_opt_flag, "force-O2", \ 159 X(ForceO2String, std::string, dev_opt_flag, "force-O2", \
157 cl::desc("Force -O2 for certain functions (assumes -Om1)"), cl::init("")) \ 160 cl::desc("Force -O2 for certain functions (assumes -Om1)"), cl::init("")) \
158 \ 161 \
159 X(FunctionSections, bool, dev_opt_flag, "ffunction-sections", \ 162 X(FunctionSections, bool, dev_opt_flag, "ffunction-sections", \
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 \ 364 \
362 X(WasmBoundsCheck, bool, dev_opt_flag, "wasm-bounds-check", \ 365 X(WasmBoundsCheck, bool, dev_opt_flag, "wasm-bounds-check", \
363 cl::desc("Add bounds checking code in WASM frontend"), \ 366 cl::desc("Add bounds checking code in WASM frontend"), \
364 cl::init(true)) 367 cl::init(true))
365 368
366 //#define X(Name, Type, ClType, ...) 369 //#define X(Name, Type, ClType, ...)
367 370
368 } // end of namespace Ice 371 } // end of namespace Ice
369 372
370 #endif // SUBZERO_SRC_ICECLFLAGS_DEF 373 #endif // SUBZERO_SRC_ICECLFLAGS_DEF
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698