OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |