• Home
  • Raw
  • Download

Lines Matching full:replay

61   REPLAY,  // Replay an existing sequence of transformations.  enumerator
106 with replay and shrink modes. The file should be empty if no in PrintUsage()
146 --replay in PrintUsage()
147 File from which to read a sequence of transformations to replay in PrintUsage()
149 --replay-range= in PrintUsage()
151 first N transformations will be applied during replay. If set to in PrintUsage()
153 applied during replay. If set to 0 (the default), all in PrintUsage()
154 transformations will be applied during replay. Ignored unless in PrintUsage()
155 --replay is used. in PrintUsage()
156 --replay-validation in PrintUsage()
158 replay (including the replay that occurs during shrinking). in PrintUsage()
248 } else if (0 == strncmp(cur_arg, "--replay=", sizeof("--replay=") - 1)) { in ParseFlags()
285 } else if (0 == strncmp(cur_arg, "--replay-range=", in ParseFlags()
286 sizeof("--replay-range=") - 1)) { in ParseFlags()
294 } else if (0 == strncmp(cur_arg, "--replay-validation", in ParseFlags()
295 sizeof("--replay-validation") - 1)) { in ParseFlags()
381 "The --replay-validation argument can only be used with " in ParseFlags()
382 "one of the --replay or --shrink arguments."); in ParseFlags()
407 "The --donors argument is not compatible with --replay " in ParseFlags()
414 // A replay transformations file was given, thus the tool is being invoked in ParseFlags()
415 // in replay mode. in ParseFlags()
419 "The --replay and --shrink arguments are mutually exclusive."); in ParseFlags()
422 return {FuzzActions::REPLAY, 0}; in ParseFlags()
461 bool Replay(const spv_target_env& target_env, in Replay() function
478 // We have a positive replay range, N. We would like transformations in Replay()
485 // We have non-positive replay range, -N (where N may be 0). We would like in Replay()
758 case FuzzActions::REPLAY: in main()
759 if (!Replay(target_env, fuzzer_options, validator_options, binary_in, in main()