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

Side by Side Diff: src/IceClFlags.def

Issue 1837663002: Initial Subzero WASM prototype. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Merging with master Created 4 years, 8 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
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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), \ 321 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), \
322 clEnumValN(Ice::IceV_Mem, "mem", "Memory usage details"), \ 322 clEnumValN(Ice::IceV_Mem, "mem", "Memory usage details"), \
323 clEnumValN(Ice::IceV_Status, "status", \ 323 clEnumValN(Ice::IceV_Status, "status", \
324 "Print the name of the function being translated"), \ 324 "Print the name of the function being translated"), \
325 clEnumValN(Ice::IceV_AvailableRegs, "registers", \ 325 clEnumValN(Ice::IceV_AvailableRegs, "registers", \
326 "Show available registers for register allocation"), \ 326 "Show available registers for register allocation"), \
327 clEnumValN(Ice::IceV_GlobalInit, "global_init", \ 327 clEnumValN(Ice::IceV_GlobalInit, "global_init", \
328 "Global initializers"), \ 328 "Global initializers"), \
329 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \ 329 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \
330 "Constant pool counters"), \ 330 "Constant pool counters"), \
331 clEnumValN(Ice::IceV_Wasm, "wasm", "WebAssembly builder"), \
331 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \ 332 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \
332 clEnumValN(Ice::IceV_Most, "most", \ 333 clEnumValN(Ice::IceV_Most, "most", \
333 "Use all verbose options except 'regalloc,global_init'"), \ 334 "Use all verbose options except 'regalloc,global_init'"), \
334 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ 335 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \
335 \ 336 \
336 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \ 337 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \
337 cl::desc("Override with -verbose=none except for the specified function"), \ 338 cl::desc("Override with -verbose=none except for the specified function"), \
338 cl::init("")) 339 cl::init(""))
339 //#define X(Name, Type, ClType, ...) 340 //#define X(Name, Type, ClType, ...)
340 341
341 } // end of namespace Ice 342 } // end of namespace Ice
342 343
343 #endif // SUBZERO_SRC_ICECLFLAGS_DEF 344 #endif // SUBZERO_SRC_ICECLFLAGS_DEF
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698