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

Side by Side Diff: src/IceClFlags.cpp

Issue 1185703004: Add constant blinding/pooling option for X8632 code translation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add bool flag: Randomized to OperandX8632Mem class, fix comments, rebased to master:b0a8c24ecd98f4b… Created 5 years, 6 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
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 // This file defines commandline flags parsing. 10 // This file defines commandline flags parsing.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 cl::opt<bool> 99 cl::opt<bool>
100 EnablePhiEdgeSplit("phi-edge-split", 100 EnablePhiEdgeSplit("phi-edge-split",
101 cl::desc("Enable edge splitting for Phi lowering"), 101 cl::desc("Enable edge splitting for Phi lowering"),
102 cl::init(true)); 102 cl::init(true));
103 103
104 // TODO(stichnot): See if we can easily use LLVM's -rng-seed option 104 // TODO(stichnot): See if we can easily use LLVM's -rng-seed option
105 // and implementation. I expect the implementation is different and 105 // and implementation. I expect the implementation is different and
106 // therefore the tests would need to be changed. 106 // therefore the tests would need to be changed.
107 cl::opt<unsigned long long> 107 cl::opt<unsigned long long>
108 RandomSeed("sz-seed", cl::desc("Seed the random number generator"), 108 RandomSeed("sz-seed", cl::desc("Seed the random number generator"),
109 cl::init(time(0))); 109 // cl::init(time(0)));
110 cl::init(1));
110 111
111 cl::opt<bool> ShouldDoNopInsertion("nop-insertion", 112 cl::opt<bool> ShouldDoNopInsertion("nop-insertion",
112 cl::desc("Randomly insert NOPs"), 113 cl::desc("Randomly insert NOPs"),
113 cl::init(false)); 114 cl::init(false));
114 115
115 cl::opt<bool> 116 cl::opt<bool>
116 RandomizeRegisterAllocation("randomize-regalloc", 117 RandomizeRegisterAllocation("randomize-regalloc",
117 cl::desc("Randomize register allocation"), 118 cl::desc("Randomize register allocation"),
118 cl::init(false)); 119 cl::init(false));
119 120
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 cl::opt<bool> LLVMVerboseErrors( 252 cl::opt<bool> LLVMVerboseErrors(
252 "verbose-llvm-parse-errors", 253 "verbose-llvm-parse-errors",
253 cl::desc("Print out more descriptive PNaCl bitcode parse errors when " 254 cl::desc("Print out more descriptive PNaCl bitcode parse errors when "
254 "building LLVM IR first"), 255 "building LLVM IR first"),
255 cl::init(false)); 256 cl::init(false));
256 cl::opt<std::string> OutputFilename("o", cl::desc("Override output filename"), 257 cl::opt<std::string> OutputFilename("o", cl::desc("Override output filename"),
257 cl::init("-"), cl::value_desc("filename")); 258 cl::init("-"), cl::value_desc("filename"));
258 259
259 Ice::IceString AppName; 260 Ice::IceString AppName;
260 261
262 // Define the command line options for immediates pooling and randomization
263 cl::opt<Ice::RandomizeAndPoolImmediatesEnum> RandomizeAndPoolImmediatesOption(
264 "randomize-pool-immediates",
265 cl::desc("Randomize or pooling the representation of immediates"),
266 cl::init(Ice::RPI_None),
267 // cl::init(Ice::RPI_Randomize),
268 // cl::init(Ice::RPI_Pool),
269 cl::values(clEnumValN(Ice::RPI_None, "none",
270 "Do not randomize or pooling immediates (default)"),
271 clEnumValN(Ice::RPI_Randomize, "randomize",
272 "Turn on immediate constants blinding"),
273 clEnumValN(Ice::RPI_Pool, "pool",
274 "Turn on immediate constants pooling"),
275 clEnumValEnd));
276
261 } // end of anonymous namespace 277 } // end of anonymous namespace
262 278
263 namespace Ice { 279 namespace Ice {
264 280
265 void ClFlags::parseFlags(int argc, char **argv) { 281 void ClFlags::parseFlags(int argc, char **argv) {
266 cl::ParseCommandLineOptions(argc, argv); 282 cl::ParseCommandLineOptions(argc, argv);
267 AppName = IceString(argv[0]); 283 AppName = IceString(argv[0]);
268 } 284 }
269 285
270 void ClFlags::resetClFlags(ClFlags &OutFlags) { 286 void ClFlags::resetClFlags(ClFlags &OutFlags) {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 OutFlags.setTestPrefix(::TestPrefix); 359 OutFlags.setTestPrefix(::TestPrefix);
344 OutFlags.setTimeEachFunction(::TimeEachFunction); 360 OutFlags.setTimeEachFunction(::TimeEachFunction);
345 OutFlags.setTimingFocusOn(::TimingFocusOn); 361 OutFlags.setTimingFocusOn(::TimingFocusOn);
346 OutFlags.setTranslateOnly(::TranslateOnly); 362 OutFlags.setTranslateOnly(::TranslateOnly);
347 OutFlags.setUseSandboxing(::UseSandboxing); 363 OutFlags.setUseSandboxing(::UseSandboxing);
348 OutFlags.setVerboseFocusOn(::VerboseFocusOn); 364 OutFlags.setVerboseFocusOn(::VerboseFocusOn);
349 OutFlags.setOutFileType(::OutFileType); 365 OutFlags.setOutFileType(::OutFileType);
350 OutFlags.setMaxNopsPerInstruction(::MaxNopsPerInstruction); 366 OutFlags.setMaxNopsPerInstruction(::MaxNopsPerInstruction);
351 OutFlags.setNopProbabilityAsPercentage(::NopProbabilityAsPercentage); 367 OutFlags.setNopProbabilityAsPercentage(::NopProbabilityAsPercentage);
352 OutFlags.setVerbose(VMask); 368 OutFlags.setVerbose(VMask);
369
370 // set for immediates randomization or pooling option
371 OutFlags.setRandomizeAndPoolImmediatesOption(
372 ::RandomizeAndPoolImmediatesOption);
353 } 373 }
354 374
355 void ClFlags::getParsedClFlagsExtra(ClFlagsExtra &OutFlagsExtra) { 375 void ClFlags::getParsedClFlagsExtra(ClFlagsExtra &OutFlagsExtra) {
356 OutFlagsExtra.setAlwaysExitSuccess(AlwaysExitSuccess); 376 OutFlagsExtra.setAlwaysExitSuccess(AlwaysExitSuccess);
357 OutFlagsExtra.setBuildOnRead(BuildOnRead); 377 OutFlagsExtra.setBuildOnRead(BuildOnRead);
358 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); 378 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts);
359 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); 379 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors);
360 OutFlagsExtra.setAppName(AppName); 380 OutFlagsExtra.setAppName(AppName);
361 OutFlagsExtra.setInputFileFormat(InputFileFormat); 381 OutFlagsExtra.setInputFileFormat(InputFileFormat);
362 OutFlagsExtra.setIRFilename(IRFilename); 382 OutFlagsExtra.setIRFilename(IRFilename);
363 OutFlagsExtra.setLogFilename(LogFilename); 383 OutFlagsExtra.setLogFilename(LogFilename);
364 OutFlagsExtra.setOutputFilename(OutputFilename); 384 OutFlagsExtra.setOutputFilename(OutputFilename);
365 } 385 }
366 386
367 } // end of namespace Ice 387 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceClFlags.h ('k') | src/IceDefs.h » ('j') | src/IceInstX8632.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698