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

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: Cleanup 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), \ 316 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), \
317 clEnumValN(Ice::IceV_Mem, "mem", "Memory usage details"), \ 317 clEnumValN(Ice::IceV_Mem, "mem", "Memory usage details"), \
318 clEnumValN(Ice::IceV_Status, "status", \ 318 clEnumValN(Ice::IceV_Status, "status", \
319 "Print the name of the function being translated"), \ 319 "Print the name of the function being translated"), \
320 clEnumValN(Ice::IceV_AvailableRegs, "registers", \ 320 clEnumValN(Ice::IceV_AvailableRegs, "registers", \
321 "Show available registers for register allocation"), \ 321 "Show available registers for register allocation"), \
322 clEnumValN(Ice::IceV_GlobalInit, "global_init", \ 322 clEnumValN(Ice::IceV_GlobalInit, "global_init", \
323 "Global initializers"), \ 323 "Global initializers"), \
324 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \ 324 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \
325 "Constant pool counters"), \ 325 "Constant pool counters"), \
326 clEnumValN(Ice::IceV_Wasm, "wasm", "WebAssembly builder"), \
326 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \ 327 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \
327 clEnumValN(Ice::IceV_Most, "most", \ 328 clEnumValN(Ice::IceV_Most, "most", \
328 "Use all verbose options except 'regalloc,global_init'"), \ 329 "Use all verbose options except 'regalloc,global_init'"), \
329 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ 330 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \
330 \ 331 \
331 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \ 332 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \
332 cl::desc("Override with -verbose=none except for the specified function"), \ 333 cl::desc("Override with -verbose=none except for the specified function"), \
333 cl::init("")) 334 cl::init(""))
334 //#define X(Name, Type, ClType, ...) 335 //#define X(Name, Type, ClType, ...)
335 336
336 } // end of namespace Ice 337 } // end of namespace Ice
337 338
338 #endif // SUBZERO_SRC_ICECLFLAGS_DEF 339 #endif // SUBZERO_SRC_ICECLFLAGS_DEF
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698