diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-29T15·07+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-06T14·58+0000 |
commit | 25c62dd0ef70a37915957bb1eb8ba3f4885c7aad (patch) | |
tree | adfd834383a0238bafc1cd64418b7114e4c4521e /tvix/eval/src/value/function.rs | |
parent | 8033a7abaea3c44a16eb6d3db477a89c2fa88a82 (diff) |
refactor(tvix/eval): introduce UpvalueCarrier trait r/4677
This trait abstracts over the commonalities of upvalue handling between closures and thunks. It allows the VM to simplify the code used for setting up upvalues, without duplicating between the two different types. Note that this does not yet refactor the VM code to optimally make use of this. Change-Id: If8de5181f26ae1fa00d554f1ae6ea473ee4b6070 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6347 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/src/value/function.rs')
-rw-r--r-- | tvix/eval/src/value/function.rs | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/tvix/eval/src/value/function.rs b/tvix/eval/src/value/function.rs index e8301d82da11..4f5cc1154bd7 100644 --- a/tvix/eval/src/value/function.rs +++ b/tvix/eval/src/value/function.rs @@ -1,10 +1,10 @@ //! This module implements the runtime representation of functions. use std::{ - cell::{Ref, RefCell}, + cell::{Ref, RefCell, RefMut}, rc::Rc, }; -use crate::{chunk::Chunk, opcode::UpvalueIdx, Value}; +use crate::{chunk::Chunk, upvalues::UpvalueCarrier, Value}; #[derive(Clone, Debug)] pub struct Lambda { @@ -49,26 +49,21 @@ impl Closure { Ref::map(self.0.borrow(), |c| &c.lambda.chunk) } - pub fn upvalue(&self, idx: UpvalueIdx) -> Ref<'_, Value> { - Ref::map(self.0.borrow(), |c| &c.upvalues[idx.0]) + pub fn lambda(&self) -> Rc<Lambda> { + self.0.borrow().lambda.clone() } +} - pub fn upvalue_count(&self) -> usize { +impl UpvalueCarrier for Closure { + fn upvalue_count(&self) -> usize { self.0.borrow().lambda.upvalue_count } - pub fn push_upvalue(&self, value: Value) { - self.0.borrow_mut().upvalues.push(value) + fn upvalues(&self) -> Ref<'_, [Value]> { + Ref::map(self.0.borrow(), |c| c.upvalues.as_slice()) } - /// Resolve the deferred upvalues in the closure from a slice of - /// the current stack, using the indices stored in the deferred - /// values. - pub fn resolve_deferred_upvalues(&self, stack: &[Value]) { - for upvalue in self.0.borrow_mut().upvalues.iter_mut() { - if let Value::DeferredUpvalue(idx) = upvalue { - *upvalue = stack[idx.0].clone(); - } - } + fn upvalues_mut(&self) -> RefMut<'_, Vec<Value>> { + RefMut::map(self.0.borrow_mut(), |c| &mut c.upvalues) } } |