This change generalizes llvm-stress by adding a sub-command to mutate an input IR file. This involves splitting the existing functionality into a sub-command of it's own (though its still the default).
The main change for the existing behavior is the following:
- An optional "generate" command is added. You can continue to not specify a sub-command, and we default to "generate" (i.e. legacy behavior.)
- Several cl::opts which are specific to generate are moved under that sub-command. This is unfortunately, a breaking change. These options will no longer be accepted without an explicit sub-command being given, and the help text is moved under "llvm-stress help generate".
The newly added mode exposes the existing mutation logic used by our various libfuzzer based fuzzers. This allows the logic to be exercised, and used, when not linking against libfuzzer.
p.s. I know the command guide page needs rewritten. I figured I'd get initial feedback on the approach before doing so. That's definitely a blocker item for landing this.
Maybe enough to say "Randomly mutates IR provided on standard in".
(to get rid of the repeated use of "provided")