enum IsleTarget {
Lower,
Opt,
}
Expand description
Which ISLE target are we generating code for?
Variants§
Lower
Generating code for instruction selection and lowering.
Opt
Generating code for CLIF to CLIF optimizations.
Trait Implementations§
Source§impl Clone for IsleTarget
impl Clone for IsleTarget
Source§fn clone(&self) -> IsleTarget
fn clone(&self) -> IsleTarget
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for IsleTarget
impl PartialEq for IsleTarget
impl Copy for IsleTarget
impl Eq for IsleTarget
impl StructuralPartialEq for IsleTarget
Auto Trait Implementations§
impl Freeze for IsleTarget
impl RefUnwindSafe for IsleTarget
impl Send for IsleTarget
impl Sync for IsleTarget
impl Unpin for IsleTarget
impl UnwindSafe for IsleTarget
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more