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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |