Struct FuzzGen

Source
pub struct FuzzGen<'r, 'data>
where 'data: 'r,
{ pub u: &'r mut Unstructured<'data>, pub config: Config, }

Fields§

§u: &'r mut Unstructured<'data>§config: Config

Implementations§

Source§

impl<'r, 'data> FuzzGen<'r, 'data>
where 'data: 'r,

Source

pub fn new(u: &'r mut Unstructured<'data>) -> Self

Source

pub fn generate_signature(&mut self, isa: &dyn TargetIsa) -> Result<Signature>

Source

pub fn generate_test_inputs( self, signature: &Signature, ) -> Result<Vec<TestCaseInput>>

Source

pub fn generate_func( &mut self, name: UserFuncName, isa: OwnedTargetIsa, usercalls: Vec<(UserExternalName, Signature)>, libcalls: Vec<LibCall>, ) -> Result<Function>

Source

pub fn generate_flags(&mut self, target_arch: Architecture) -> Result<Flags>

Generate a random set of cranelift flags. Only semantics preserving flags are considered

Source

pub fn set_isa_flags( &mut self, builder: &mut Builder, mode: IsaFlagGen, ) -> Result<()>

Generate a random set of ISA flags and apply them to a Builder.

Based on mode we can either allow all flags, or just the subset that is supported by the current host.

In all cases only a subset of the allowed flags is applied to the builder.

Auto Trait Implementations§

§

impl<'r, 'data> Freeze for FuzzGen<'r, 'data>

§

impl<'r, 'data> RefUnwindSafe for FuzzGen<'r, 'data>

§

impl<'r, 'data> Send for FuzzGen<'r, 'data>

§

impl<'r, 'data> Sync for FuzzGen<'r, 'data>

§

impl<'r, 'data> Unpin for FuzzGen<'r, 'data>

§

impl<'r, 'data> !UnwindSafe for FuzzGen<'r, 'data>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.