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(WasmNoBoundsCheck, bool, dev_opt_flag, "wasm-disable-bounds-check", \ | |
|
Jim Stichnoth
2016/05/06 20:37:51
Minor nit/request. Can we call this "-wasm-bounds
Eric Holk
2016/05/06 20:56:21
Done.
| |
| 351 cl::desc("Omit bounds checking code in WASM frontend")) | |
| 349 //#define X(Name, Type, ClType, ...) | 352 //#define X(Name, Type, ClType, ...) |
| 350 | 353 |
| 351 } // end of namespace Ice | 354 } // end of namespace Ice |
| 352 | 355 |
| 353 #endif // SUBZERO_SRC_ICECLFLAGS_DEF | 356 #endif // SUBZERO_SRC_ICECLFLAGS_DEF |
| OLD | NEW |