| OLD | NEW |
| 1 //===- subzero/src/IceClFlags.cpp - Command line flags and parsing --------===// | 1 //===- subzero/src/IceClFlags.cpp - Command line flags and parsing --------===// |
| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 clEnumValN(Ice::IceV_Frame, "frame", "Stack frame layout details"), | 328 clEnumValN(Ice::IceV_Frame, "frame", "Stack frame layout details"), |
| 329 clEnumValN(Ice::IceV_AddrOpt, "addropt", "Address mode optimization"), | 329 clEnumValN(Ice::IceV_AddrOpt, "addropt", "Address mode optimization"), |
| 330 clEnumValN(Ice::IceV_Random, "random", "Randomization details"), | 330 clEnumValN(Ice::IceV_Random, "random", "Randomization details"), |
| 331 clEnumValN(Ice::IceV_Folding, "fold", "Instruction folding details"), | 331 clEnumValN(Ice::IceV_Folding, "fold", "Instruction folding details"), |
| 332 clEnumValN(Ice::IceV_RMW, "rmw", "ReadModifyWrite optimization"), | 332 clEnumValN(Ice::IceV_RMW, "rmw", "ReadModifyWrite optimization"), |
| 333 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), | 333 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), |
| 334 clEnumValN(Ice::IceV_Status, "status", | 334 clEnumValN(Ice::IceV_Status, "status", |
| 335 "Print the name of the function being translated"), | 335 "Print the name of the function being translated"), |
| 336 clEnumValN(Ice::IceV_AvailableRegs, "registers", | 336 clEnumValN(Ice::IceV_AvailableRegs, "registers", |
| 337 "Show available registers for register allocation"), | 337 "Show available registers for register allocation"), |
| 338 clEnumValN(Ice::IceV_Mem, "mem", "Memory usage details"), |
| 338 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), | 339 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), |
| 339 clEnumValN(Ice::IceV_Most, "most", | 340 clEnumValN(Ice::IceV_Most, "most", |
| 340 "Use all verbose options except 'regalloc'"), | 341 "Use all verbose options except 'regalloc'"), |
| 341 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)); | 342 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)); |
| 342 | 343 |
| 343 // Options not captured in Ice::ClFlags and propagated. | 344 // Options not captured in Ice::ClFlags and propagated. |
| 344 | 345 |
| 345 /// Exit with success status, even if errors found. | 346 /// Exit with success status, even if errors found. |
| 346 cl::opt<bool> AlwaysExitSuccess( | 347 cl::opt<bool> AlwaysExitSuccess( |
| 347 "exit-success", cl::desc("Exit with success status, even if errors found"), | 348 "exit-success", cl::desc("Exit with success status, even if errors found"), |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); | 584 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); |
| 584 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); | 585 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); |
| 585 OutFlagsExtra.setAppName(AppName); | 586 OutFlagsExtra.setAppName(AppName); |
| 586 OutFlagsExtra.setInputFileFormat(InputFileFormat); | 587 OutFlagsExtra.setInputFileFormat(InputFileFormat); |
| 587 OutFlagsExtra.setIRFilename(IRFilename); | 588 OutFlagsExtra.setIRFilename(IRFilename); |
| 588 OutFlagsExtra.setLogFilename(LogFilename); | 589 OutFlagsExtra.setLogFilename(LogFilename); |
| 589 OutFlagsExtra.setOutputFilename(OutputFilename); | 590 OutFlagsExtra.setOutputFilename(OutputFilename); |
| 590 } | 591 } |
| 591 | 592 |
| 592 } // end of namespace Ice | 593 } // end of namespace Ice |
| OLD | NEW |