| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 clEnumValN(Ice::IceV_Liveness, "live", "Liveness information"), \ | 320 clEnumValN(Ice::IceV_Liveness, "live", "Liveness information"), \ |
| 321 clEnumValN(Ice::IceV_RegOrigins, "orig", "Physical register origins"), \ | 321 clEnumValN(Ice::IceV_RegOrigins, "orig", "Physical register origins"), \ |
| 322 clEnumValN(Ice::IceV_LinearScan, "regalloc", "Linear scan details"), \ | 322 clEnumValN(Ice::IceV_LinearScan, "regalloc", "Linear scan details"), \ |
| 323 clEnumValN(Ice::IceV_Frame, "frame", "Stack frame layout details"), \ | 323 clEnumValN(Ice::IceV_Frame, "frame", "Stack frame layout details"), \ |
| 324 clEnumValN(Ice::IceV_AddrOpt, "addropt", "Address mode optimization"), \ | 324 clEnumValN(Ice::IceV_AddrOpt, "addropt", "Address mode optimization"), \ |
| 325 clEnumValN(Ice::IceV_Random, "random", "Randomization details"), \ | 325 clEnumValN(Ice::IceV_Random, "random", "Randomization details"), \ |
| 326 clEnumValN(Ice::IceV_Folding, "fold", "Instruction folding details"), \ | 326 clEnumValN(Ice::IceV_Folding, "fold", "Instruction folding details"), \ |
| 327 clEnumValN(Ice::IceV_RMW, "rmw", "ReadModifyWrite optimization"), \ | 327 clEnumValN(Ice::IceV_RMW, "rmw", "ReadModifyWrite optimization"), \ |
| 328 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), \ | 328 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), \ |
| 329 clEnumValN(Ice::IceV_Mem, "mem", "Memory usage details"), \ | 329 clEnumValN(Ice::IceV_Mem, "mem", "Memory usage details"), \ |
| 330 clEnumValN(Ice::IceV_ShufMat, "shufvec", \ |
| 331 "Shufflevector rematerialization"), \ |
| 330 clEnumValN(Ice::IceV_Status, "status", \ | 332 clEnumValN(Ice::IceV_Status, "status", \ |
| 331 "Print the name of the function being translated"), \ | 333 "Print the name of the function being translated"), \ |
| 332 clEnumValN(Ice::IceV_AvailableRegs, "registers", \ | 334 clEnumValN(Ice::IceV_AvailableRegs, "registers", \ |
| 333 "Show available registers for register allocation"), \ | 335 "Show available registers for register allocation"), \ |
| 334 clEnumValN(Ice::IceV_GlobalInit, "global_init", \ | 336 clEnumValN(Ice::IceV_GlobalInit, "global_init", \ |
| 335 "Global initializers"), \ | 337 "Global initializers"), \ |
| 336 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \ | 338 clEnumValN(Ice::IceV_ConstPoolStats, "cpool", \ |
| 337 "Constant pool counters"), \ | 339 "Constant pool counters"), \ |
| 338 clEnumValN(Ice::IceV_Wasm, "wasm", "WebAssembly builder"), \ | 340 clEnumValN(Ice::IceV_Wasm, "wasm", "WebAssembly builder"), \ |
| 339 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \ | 341 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), \ |
| 340 clEnumValN(Ice::IceV_Most, "most", \ | 342 clEnumValN(Ice::IceV_Most, "most", \ |
| 341 "Use all verbose options except 'regalloc,global_init'"), \ | 343 "Use all verbose options except 'regalloc,global_init'"), \ |
| 342 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ | 344 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ |
| 343 \ | 345 \ |
| 344 X(VerboseFocusOnString, std::string, dev_opt_flag, "verbose-focus", \ | 346 X(VerboseFocusOnString, std::string, dev_opt_flag, "verbose-focus", \ |
| 345 cl::desc("Override with -verbose=none except for specified functions"), \ | 347 cl::desc("Override with -verbose=none except for specified functions"), \ |
| 346 cl::init(":")) | 348 cl::init(":")) |
| 347 //#define X(Name, Type, ClType, ...) | 349 //#define X(Name, Type, ClType, ...) |
| 348 | 350 |
| 349 } // end of namespace Ice | 351 } // end of namespace Ice |
| 350 | 352 |
| 351 #endif // SUBZERO_SRC_ICECLFLAGS_DEF | 353 #endif // SUBZERO_SRC_ICECLFLAGS_DEF |
| OLD | NEW |