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