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

Side by Side Diff: src/IceClFlags.def

Issue 1961583002: Subzero WASM: avoid needless comparisons, add bounds check flag option (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add BooleanVariable::classof Created 4 years, 7 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 | « no previous file | src/IceOperand.h » ('j') | src/WasmTranslator.cpp » ('J')
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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « no previous file | src/IceOperand.h » ('j') | src/WasmTranslator.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698