Skip to main content

EffectEnv

Struct EffectEnv 

Source
pub struct EffectEnv { /* private fields */ }
Expand description

Environment tracking effects for variables and functions.

For each variable binding (Let x be <expr>), tracks the EffectSet of the bound expression. For each function, tracks the aggregate EffectSet of its body.

Implementations§

Source§

impl EffectEnv

Source

pub fn from_stmts(stmts: &[Stmt<'_>], interner: &Interner) -> Self

Analyze already-parsed statements and return the EffectEnv.

Source

pub fn analyze_source(source: &str) -> Result<Self, ParseError>

Analyze a complete LOGOS source and return the EffectEnv.

Source

pub fn is_binding_pure(&self, var_name: &str) -> bool

Source

pub fn binding_reads(&self, var_name: &str, read_var: &str) -> bool

Source

pub fn binding_allocates(&self, var_name: &str) -> bool

Source

pub fn has_write_to(&self, var_name: &str) -> bool

Source

pub fn has_io(&self) -> bool

Source

pub fn has_unknown(&self) -> bool

Source

pub fn has_security_check(&self) -> bool

Source

pub fn may_diverge(&self) -> bool

Source

pub fn function_is_pure(&self, fn_name: &str) -> bool

Source

pub fn function_has_io(&self, fn_name: &str) -> bool

Source

pub fn function_is_specialization_safe(&self, fn_name: &str) -> bool

Whether the partial evaluator may specialize a call to fn_name on a static argument. Reads, writes, allocation, and divergence are ordinary PE targets and stay safe. IO already blocks specialization (the historical gate). Nondeterminism and concurrency are the new exclusions: a concurrency / networking statement carries expression arguments (a timeout, spawn args, a branch body) that reference the static parameter, and the specializer’s substitution does not enter those statements — folding across one would drop the parameter and leave a dangling reference. A Check (security_check) is deliberately not excluded: it is preserved verbatim and never references a foldable parameter, so specializing across it is sound (see pe_effect_env_check_is_not_io). Escape blocks (unknown) are handled by the caller’s separate body_has_escape guard.

Auto Trait Implementations§

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
§

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.
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.
§

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,

§

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