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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 cl::init(false)) \ | 88 cl::init(false)) \ |
89 \ | 89 \ |
90 X(AllowUninitializedGlobals, bool, dev_opt_flag, \ | 90 X(AllowUninitializedGlobals, bool, dev_opt_flag, \ |
91 "allow-uninitialized-globals", \ | 91 "allow-uninitialized-globals", \ |
92 cl::desc("Allow global variables to be uninitialized")) \ | 92 cl::desc("Allow global variables to be uninitialized")) \ |
93 \ | 93 \ |
94 X(AlwaysExitSuccess, bool, dev_opt_flag, "exit-success", \ | 94 X(AlwaysExitSuccess, bool, dev_opt_flag, "exit-success", \ |
95 cl::desc("Exit with success status, even if errors found"), \ | 95 cl::desc("Exit with success status, even if errors found"), \ |
96 cl::init(false)) \ | 96 cl::init(false)) \ |
97 \ | 97 \ |
| 98 X(AggressiveLea, bool, dev_opt_flag, "aggressive-lea", \ |
| 99 cl::desc("Convert additions to lea when it reduces code size"), \ |
| 100 cl::init(false)) \ |
| 101 \ |
98 X(BitcodeAsText, bool, dev_opt_flag, "bitcode-as-text", \ | 102 X(BitcodeAsText, bool, dev_opt_flag, "bitcode-as-text", \ |
99 cl::desc("Accept textual form of PNaCl bitcode " \ | 103 cl::desc("Accept textual form of PNaCl bitcode " \ |
100 "records (i.e. not .ll assembly)"), \ | 104 "records (i.e. not .ll assembly)"), \ |
101 cl::init(false)) \ | 105 cl::init(false)) \ |
102 \ | 106 \ |
103 X(BuildOnRead, bool, dev_opt_flag, "build-on-read", \ | 107 X(BuildOnRead, bool, dev_opt_flag, "build-on-read", \ |
104 cl::desc("Build ICE instructions when reading bitcode"), cl::init(true)) \ | 108 cl::desc("Build ICE instructions when reading bitcode"), cl::init(true)) \ |
105 \ | 109 \ |
106 X(DataSections, bool, dev_opt_flag, "fdata-sections", \ | 110 X(DataSections, bool, dev_opt_flag, "fdata-sections", \ |
107 cl::desc("Emit (global) data into separate sections")) \ | 111 cl::desc("Emit (global) data into separate sections")) \ |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 \ | 371 \ |
368 X(WasmBoundsCheck, bool, dev_opt_flag, "wasm-bounds-check", \ | 372 X(WasmBoundsCheck, bool, dev_opt_flag, "wasm-bounds-check", \ |
369 cl::desc("Add bounds checking code in WASM frontend"), \ | 373 cl::desc("Add bounds checking code in WASM frontend"), \ |
370 cl::init(true)) | 374 cl::init(true)) |
371 | 375 |
372 //#define X(Name, Type, ClType, ...) | 376 //#define X(Name, Type, ClType, ...) |
373 | 377 |
374 } // end of namespace Ice | 378 } // end of namespace Ice |
375 | 379 |
376 #endif // SUBZERO_SRC_ICECLFLAGS_DEF | 380 #endif // SUBZERO_SRC_ICECLFLAGS_DEF |
OLD | NEW |