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

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: Fix the default randomization/pooling threshold to be 0xffff 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::values(clEnumValN(Ice::RPI_None, "none",
268 "Do not randomize or pooling immediates (default)"),
269 clEnumValN(Ice::RPI_Randomize, "randomize",
270 "Turn on immediate constants blinding"),
271 clEnumValN(Ice::RPI_Pool, "pool",
272 "Turn on immediate constants pooling"),
273 clEnumValEnd));
274 // Command line option for x86 immediate integer randomization/pooling
275 // threshold. Immediates whose representation are between:
276 // -RandomizeAndPoolImmediatesThreshold/2 and
277 // +RandomizeAndPoolImmediatesThreshold/2 will be randomized or pooled.
278 cl::opt<uint32_t> RandomizeAndPoolImmediatesThreshold(
279 "randomize-pool-threshold",
280 cl::desc("The threshold for immediates randomization and pooling"),
281 cl::init(0xffff));
282
261 } // end of anonymous namespace 283 } // end of anonymous namespace
262 284
263 namespace Ice { 285 namespace Ice {
264 286
265 void ClFlags::parseFlags(int argc, char **argv) { 287 void ClFlags::parseFlags(int argc, char **argv) {
266 cl::ParseCommandLineOptions(argc, argv); 288 cl::ParseCommandLineOptions(argc, argv);
267 AppName = IceString(argv[0]); 289 AppName = IceString(argv[0]);
268 } 290 }
269 291
270 void ClFlags::resetClFlags(ClFlags &OutFlags) { 292 void ClFlags::resetClFlags(ClFlags &OutFlags) {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 OutFlags.setTestPrefix(::TestPrefix); 365 OutFlags.setTestPrefix(::TestPrefix);
344 OutFlags.setTimeEachFunction(::TimeEachFunction); 366 OutFlags.setTimeEachFunction(::TimeEachFunction);
345 OutFlags.setTimingFocusOn(::TimingFocusOn); 367 OutFlags.setTimingFocusOn(::TimingFocusOn);
346 OutFlags.setTranslateOnly(::TranslateOnly); 368 OutFlags.setTranslateOnly(::TranslateOnly);
347 OutFlags.setUseSandboxing(::UseSandboxing); 369 OutFlags.setUseSandboxing(::UseSandboxing);
348 OutFlags.setVerboseFocusOn(::VerboseFocusOn); 370 OutFlags.setVerboseFocusOn(::VerboseFocusOn);
349 OutFlags.setOutFileType(::OutFileType); 371 OutFlags.setOutFileType(::OutFileType);
350 OutFlags.setMaxNopsPerInstruction(::MaxNopsPerInstruction); 372 OutFlags.setMaxNopsPerInstruction(::MaxNopsPerInstruction);
351 OutFlags.setNopProbabilityAsPercentage(::NopProbabilityAsPercentage); 373 OutFlags.setNopProbabilityAsPercentage(::NopProbabilityAsPercentage);
352 OutFlags.setVerbose(VMask); 374 OutFlags.setVerbose(VMask);
375
376 // set for immediates randomization or pooling option
377 OutFlags.setRandomizeAndPoolImmediatesOption(
378 ::RandomizeAndPoolImmediatesOption);
379 OutFlags.setRandomizeAndPoolImmediatesThreshold(
380 ::RandomizeAndPoolImmediatesThreshold);
353 } 381 }
354 382
355 void ClFlags::getParsedClFlagsExtra(ClFlagsExtra &OutFlagsExtra) { 383 void ClFlags::getParsedClFlagsExtra(ClFlagsExtra &OutFlagsExtra) {
356 OutFlagsExtra.setAlwaysExitSuccess(AlwaysExitSuccess); 384 OutFlagsExtra.setAlwaysExitSuccess(AlwaysExitSuccess);
357 OutFlagsExtra.setBuildOnRead(BuildOnRead); 385 OutFlagsExtra.setBuildOnRead(BuildOnRead);
358 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts); 386 OutFlagsExtra.setGenerateBuildAtts(GenerateBuildAtts);
359 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors); 387 OutFlagsExtra.setLLVMVerboseErrors(LLVMVerboseErrors);
360 OutFlagsExtra.setAppName(AppName); 388 OutFlagsExtra.setAppName(AppName);
361 OutFlagsExtra.setInputFileFormat(InputFileFormat); 389 OutFlagsExtra.setInputFileFormat(InputFileFormat);
362 OutFlagsExtra.setIRFilename(IRFilename); 390 OutFlagsExtra.setIRFilename(IRFilename);
363 OutFlagsExtra.setLogFilename(LogFilename); 391 OutFlagsExtra.setLogFilename(LogFilename);
364 OutFlagsExtra.setOutputFilename(OutputFilename); 392 OutFlagsExtra.setOutputFilename(OutputFilename);
365 } 393 }
366 394
367 } // end of namespace Ice 395 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceClFlags.h ('k') | src/IceDefs.h » ('j') | src/IceGlobalContext.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698