| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 clEnumValN(Ice::IceV_Preds, "pred", "Show predecessors"), | 227 clEnumValN(Ice::IceV_Preds, "pred", "Show predecessors"), |
| 228 clEnumValN(Ice::IceV_Succs, "succ", "Show successors"), | 228 clEnumValN(Ice::IceV_Succs, "succ", "Show successors"), |
| 229 clEnumValN(Ice::IceV_Liveness, "live", "Liveness information"), | 229 clEnumValN(Ice::IceV_Liveness, "live", "Liveness information"), |
| 230 clEnumValN(Ice::IceV_RegOrigins, "orig", "Physical register origins"), | 230 clEnumValN(Ice::IceV_RegOrigins, "orig", "Physical register origins"), |
| 231 clEnumValN(Ice::IceV_LinearScan, "regalloc", "Linear scan details"), | 231 clEnumValN(Ice::IceV_LinearScan, "regalloc", "Linear scan details"), |
| 232 clEnumValN(Ice::IceV_Frame, "frame", "Stack frame layout details"), | 232 clEnumValN(Ice::IceV_Frame, "frame", "Stack frame layout details"), |
| 233 clEnumValN(Ice::IceV_AddrOpt, "addropt", "Address mode optimization"), | 233 clEnumValN(Ice::IceV_AddrOpt, "addropt", "Address mode optimization"), |
| 234 clEnumValN(Ice::IceV_Random, "random", "Randomization details"), | 234 clEnumValN(Ice::IceV_Random, "random", "Randomization details"), |
| 235 clEnumValN(Ice::IceV_Folding, "fold", "Instruction folding details"), | 235 clEnumValN(Ice::IceV_Folding, "fold", "Instruction folding details"), |
| 236 clEnumValN(Ice::IceV_RMW, "rmw", "ReadModifyWrite optimization"), | 236 clEnumValN(Ice::IceV_RMW, "rmw", "ReadModifyWrite optimization"), |
| 237 clEnumValN(Ice::IceV_Loop, "loop", "Loop nest depth analysis"), |
| 237 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), | 238 clEnumValN(Ice::IceV_All, "all", "Use all verbose options"), |
| 238 clEnumValN(Ice::IceV_Most, "most", | 239 clEnumValN(Ice::IceV_Most, "most", |
| 239 "Use all verbose options except 'regalloc'"), | 240 "Use all verbose options except 'regalloc'"), |
| 240 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)); | 241 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)); |
| 241 | 242 |
| 242 // Options not captured in Ice::ClFlags and propagated. | 243 // Options not captured in Ice::ClFlags and propagated. |
| 243 | 244 |
| 244 cl::opt<bool> AlwaysExitSuccess( | 245 cl::opt<bool> AlwaysExitSuccess( |
| 245 "exit-success", cl::desc("Exit with success status, even if errors found"), | 246 "exit-success", cl::desc("Exit with success status, even if errors found"), |
| 246 cl::init(false)); | 247 cl::init(false)); |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); | 463 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); |
| 463 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); | 464 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); |
| 464 OutFlagsExtra.setAppName(AppName); | 465 OutFlagsExtra.setAppName(AppName); |
| 465 OutFlagsExtra.setInputFileFormat(InputFileFormat); | 466 OutFlagsExtra.setInputFileFormat(InputFileFormat); |
| 466 OutFlagsExtra.setIRFilename(IRFilename); | 467 OutFlagsExtra.setIRFilename(IRFilename); |
| 467 OutFlagsExtra.setLogFilename(LogFilename); | 468 OutFlagsExtra.setLogFilename(LogFilename); |
| 468 OutFlagsExtra.setOutputFilename(OutputFilename); | 469 OutFlagsExtra.setOutputFilename(OutputFilename); |
| 469 } | 470 } |
| 470 | 471 |
| 471 } // end of namespace Ice | 472 } // end of namespace Ice |
| OLD | NEW |