|
barretenberg
|
A class representing a single fuzzing instruction. More...
#include <bool.fuzzer.hpp>
Classes | |
| union | ArgumentContents |
| struct | FourArgs |
| struct | ThreeArgs |
| struct | TwoArgs |
Public Types | |
| enum | OPCODE { CONSTANT , WITNESS , AND , OR , XOR , NOT , ASSERT_EQUAL , SELECT_IF_EQ , SET , RANDOMSEED , _LAST } |
Static Public Member Functions | |
| template<typename T > requires SimpleRng<T> | |
| static Instruction | generateRandom (T &rng) |
| Generate a random instruction. | |
| template<typename T > requires SimpleRng<T> | |
| static Instruction | mutateInstruction (Instruction instruction, T &rng, HavocSettings &havoc_config) |
| Mutate a single instruction. | |
Public Attributes | |
| OPCODE | id |
| ArgumentContents | arguments |
A class representing a single fuzzing instruction.
|
inlinestatic |
Generate a random instruction.
| T | PRNG class type |
| rng | PRNG used |
|
inlinestatic |
Mutate a single instruction.
| T | PRNG class |
| instruction | The instruction |
| rng | PRNG |
| havoc_config | Mutation configuration |