Skip to main content

Opt

Enum Opt 

Source
#[repr(u8)]
pub enum Opt {
Show 40 variants Memo = 0, Tco = 1, Peephole = 2, Borrow = 3, Specialize = 4, Comptime = 5, Inline = 6, Unfold = 7, Defunctionalize = 8, LoopHoist = 9, Unroll = 10, LoopSplit = 11, ClosedForm = 12, Fuse = 13, LoopCse = 14, Cse = 15, DeadCode = 16, Scalarize = 17, Affine = 18, Interleave = 19, Unbox = 20, HoistBorrows = 21, Narrow = 22, NarrowVm = 23, NarrowMap = 24, DenseMap = 25, ElemType = 26, FastDiv = 27, FloatStrength = 28, Oracle = 29, OracleHints = 30, Unchecked = 31, Simd = 32, Cascade = 33, IndexString = 34, CapScale = 35, Symmetry = 36, Popcount = 37, Saturate = 38, Supercompile = 39,
}
Expand description

Every optimization the compiler can toggle. The discriminant is the bit index used by OptimizationConfig, so the order here is stable and must not be reordered casually (it also defines conflict-resolution precedence: an earlier variant wins a conflict against a later one).

Variants§

§

Memo = 0

Automatic memoization of pure functions.

§

Tco = 1

Tail-call optimization (self-tail-recursion → loop).

§

Peephole = 2

Peephole rewrites (swap, vec-fill, for-range, …).

§

Borrow = 3

Read-only / mutable borrow inference (&[T] / &mut [T] params).

§

Specialize = 4

Partial evaluation / polyvariant specialization.

§

Comptime = 5

Compile-time function evaluation (CTFE).

§

Inline = 6

Inlining of tiny and leaf helper functions.

§

Unfold = 7

Bounded unrolling of recursive functions.

§

Defunctionalize = 8

Defunctionalization (closures → first-order functions).

§

LoopHoist = 9

Loop-invariant code motion (LICM).

§

Unroll = 10

Loop unrolling of constant-trip loops.

§

LoopSplit = 11

Guard-based loop index-set splitting (for vectorization).

§

ClosedForm = 12

Accumulator-loop → closed-form recognition.

§

Fuse = 13

Deforestation (producer/consumer stream fusion).

§

LoopCse = 14

Loop-carried common-subexpression hoisting.

§

Cse = 15

Global value numbering / common-subexpression elimination.

§

DeadCode = 16

Dead-code elimination.

§

Scalarize = 17

Fixed-size sequence scalarization (SROA).

§

Affine = 18

Affine offset-array deletion → closed-form indexing.

§

Interleave = 19

Array-of-structs interleaving of co-indexed sequences.

§

Unbox = 20

De-Rc: unique-owned sequences become plain Vec.

§

HoistBorrows = 21

Hoisting borrow live-ranges out of loop nests.

§

Narrow = 22

i64i32 sequence element narrowing (codegen).

§

NarrowVm = 23

i64i32 sequence element narrowing (VM).

§

NarrowMap = 24

i64i32 map-key narrowing.

§

DenseMap = 25

Sparse map → dense direct-addressed array.

§

ElemType = 26

Element-type narrowing via abstract interpretation.

§

FastDiv = 27

Constant-divisor magic-reciprocal division.

§

FloatStrength = 28

Float induction-variable strength reduction.

§

Oracle = 29

Abstract interpretation / oracle-fact production (interval analysis).

§

OracleHints = 30

Oracle-derived precise bounds-check guards.

§

Unchecked = 31

Oracle-proven unchecked indexing (get_unchecked).

§

Simd = 32

SIMD-vectorized search kernels.

§

Cascade = 33

Cascade folding of sequential comparisons.

§

IndexString = 34

Indexed string-search codegen.

§

CapScale = 35

Capacity-scaling buffer-fill simplification.

§

Symmetry = 36

Reflection symmetry breaking (bitmask search).

§

Popcount = 37

Popcount base-case collapse for bitmask search.

§

Saturate = 38

Equality-saturation rewriting (e-graph).

§

Supercompile = 39

Supercompilation (heavy residual specialization, AOT only).

Implementations§

Source§

impl Opt

Source

pub const fn bit(self) -> u64

The bit index this optimization occupies in an OptimizationConfig.

Source

pub fn meta(self) -> &'static OptMeta

This optimization’s registry row.

Source

pub fn cost(self) -> OptCost

How expensive this optimization is to run — the lever the tiered optimizer uses to decide which hotness tier pays for it.

Trait Implementations§

Source§

impl Clone for Opt

Source§

fn clone(&self) -> Opt

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Opt

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Opt

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<Opt, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Hash for Opt

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for Opt

Source§

fn cmp(&self, other: &Opt) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Opt

Source§

fn eq(&self, other: &Opt) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Opt

Source§

fn partial_cmp(&self, other: &Opt) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for Opt

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for Opt

Source§

impl Eq for Opt

Source§

impl StructuralPartialEq for Opt

Auto Trait Implementations§

§

impl Freeze for Opt

§

impl RefUnwindSafe for Opt

§

impl Send for Opt

§

impl Sync for Opt

§

impl Unpin for Opt

§

impl UnsafeUnpin for Opt

§

impl UnwindSafe for Opt

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<T> Downcast for T
where T: 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>

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)

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)

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
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

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
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,