Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: src/IceClFlags.cpp

Issue 1318553003: Compute the loop nest depth of each CfgNode and weight Variables by it. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceDefs.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceDefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698