pub enum OptCost {
Cheap = 0,
Medium = 1,
Heavy = 2,
}Expand description
How expensive an optimization pass is to RUN on the live path — the lever the
tiered optimizer uses to decide WHEN (at which hotness tier) to pay for it.
Orthogonal to MemClass (which is about the OUTPUT’s memory cost). The derived
Ord makes a tier gate a single comparison: Cheap < Medium < Heavy is exactly
the tier-inclusion order T1 ⊂ T2 ⊂ T3.
Variants§
Cheap = 0
A single structural sweep, no fixpoint (inline, DCE, TCO).
Medium = 1
A whole-function analysis or one bounded fixpoint (GVN, LICM, oracle, fusion, the capped PE-light fixpoint).
Heavy = 2
A cloning / region-growing pass (the full PE fixpoint, unroll, scalarize, recursion unfold, equality saturation).
Trait Implementations§
Source§impl Ord for OptCost
impl Ord for OptCost
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for OptCost
impl PartialOrd for OptCost
impl Copy for OptCost
impl Eq for OptCost
impl StructuralPartialEq for OptCost
Auto Trait Implementations§
impl Freeze for OptCost
impl RefUnwindSafe for OptCost
impl Send for OptCost
impl Sync for OptCost
impl Unpin for OptCost
impl UnsafeUnpin for OptCost
impl UnwindSafe for OptCost
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.