Chromium Code Reviews| 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 338 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \ | 338 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \ |
| 339 "Constant pool counters"), \ | 339 "Constant pool counters"), \ |
| 340 clEnumValN(Ice::IceV_Wasm, "wasm", "WebAssembly builder"), \ | 340 clEnumValN(Ice::IceV_Wasm, "wasm", "WebAssembly builder"), \ |
| 341 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \ | 341 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \ |
| 342 clEnumValN(Ice::IceV_Most, "most", \ | 342 clEnumValN(Ice::IceV_Most, "most", \ |
| 343 "Use all verbose options except 'regalloc,global_init'"), \ | 343 "Use all verbose options except 'regalloc,global_init'"), \ |
| 344 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ | 344 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ |
| 345 \ | 345 \ |
| 346 X(VerboseFocusOnString, std::string, dev_opt_flag, "verbose-focus", \ | 346 X(VerboseFocusOnString, std::string, dev_opt_flag, "verbose-focus", \ |
| 347 cl::desc("Override with -verbose=none except for specified functions"), \ | 347 cl::desc("Override with -verbose=none except for specified functions"), \ |
| 348 cl::init(":")) | 348 cl::init(":")) \ |
| 349 \ | |
| 350 X(WasmBoundsCheck, bool, dev_opt_flag, "wasm-bounds-check", \ | |
| 351 cl::desc("Omit bounds checking code in WASM frontend"), \ | |
|
Jim Stichnoth
2016/05/06 21:09:17
s/Omit/Add/
Eric Holk
2016/05/06 21:28:15
Done.
| |
| 352 cl::init(true)) | |
| 349 //#define X(Name, Type, ClType, ...) | 353 //#define X(Name, Type, ClType, ...) |
| 350 | 354 |
| 351 } // end of namespace Ice | 355 } // end of namespace Ice |
| 352 | 356 |
| 353 #endif // SUBZERO_SRC_ICECLFLAGS_DEF | 357 #endif // SUBZERO_SRC_ICECLFLAGS_DEF |
| OLD | NEW |