2022-08-07 22:41:42 +02:00
|
|
|
//! This module implements a compiler for compiling the rnix AST
|
|
|
|
//! representation to Tvix bytecode.
|
2022-08-11 13:07:37 +02:00
|
|
|
//!
|
|
|
|
//! A note on `unwrap()`: This module contains a lot of calls to
|
|
|
|
//! `unwrap()` or `expect(...)` on data structures returned by `rnix`.
|
|
|
|
//! The reason for this is that rnix uses the same data structures to
|
|
|
|
//! represent broken and correct ASTs, so all typed AST variants have
|
|
|
|
//! the ability to represent an incorrect node.
|
|
|
|
//!
|
|
|
|
//! However, at the time that the AST is passed to the compiler we
|
|
|
|
//! have verified that `rnix` considers the code to be correct, so all
|
2022-08-16 14:11:06 +02:00
|
|
|
//! variants are fulfilled. In cases where the invariant is guaranteed
|
|
|
|
//! by the code in this module, `debug_assert!` has been used to catch
|
2022-08-11 13:07:37 +02:00
|
|
|
//! mistakes early during development.
|
2022-08-07 22:41:42 +02:00
|
|
|
|
2022-08-27 18:49:08 +02:00
|
|
|
mod scope;
|
|
|
|
|
2022-08-12 17:52:48 +02:00
|
|
|
use path_clean::PathClean;
|
2022-08-16 22:43:45 +02:00
|
|
|
use rnix::ast::{self, AstToken, HasEntry};
|
|
|
|
use rowan::ast::AstNode;
|
2022-08-27 02:31:28 +02:00
|
|
|
use smol_str::SmolStr;
|
2022-08-27 18:49:08 +02:00
|
|
|
use std::collections::HashMap;
|
2022-08-12 17:28:45 +02:00
|
|
|
use std::path::{Path, PathBuf};
|
2022-08-24 14:37:09 +02:00
|
|
|
use std::rc::Rc;
|
2022-08-12 17:04:05 +02:00
|
|
|
|
2022-08-07 22:41:42 +02:00
|
|
|
use crate::chunk::Chunk;
|
2022-08-22 22:48:47 +02:00
|
|
|
use crate::errors::{Error, ErrorKind, EvalResult};
|
2022-08-28 18:38:17 +02:00
|
|
|
use crate::opcode::{CodeIdx, Count, JumpOffset, OpCode, UpvalueIdx};
|
2022-08-28 22:53:20 +02:00
|
|
|
use crate::value::{Closure, Lambda, Thunk, Value};
|
2022-08-12 16:13:41 +02:00
|
|
|
use crate::warnings::{EvalWarning, WarningKind};
|
2022-08-09 15:53:09 +02:00
|
|
|
|
2022-08-28 18:38:17 +02:00
|
|
|
use self::scope::{Local, LocalIdx, LocalPosition, Scope, Upvalue};
|
2022-08-27 18:49:08 +02:00
|
|
|
|
2022-08-12 16:07:32 +02:00
|
|
|
/// Represents the result of compiling a piece of Nix code. If
|
|
|
|
/// compilation was successful, the resulting bytecode can be passed
|
|
|
|
/// to the VM.
|
2022-08-26 19:17:40 +02:00
|
|
|
pub struct CompilationOutput {
|
2022-08-23 21:54:25 +02:00
|
|
|
pub lambda: Lambda,
|
2022-08-12 16:07:32 +02:00
|
|
|
pub warnings: Vec<EvalWarning>,
|
2022-08-22 22:48:47 +02:00
|
|
|
pub errors: Vec<Error>,
|
2022-08-12 16:07:32 +02:00
|
|
|
}
|
|
|
|
|
2022-08-23 23:01:45 +02:00
|
|
|
/// Represents the lambda currently being compiled.
|
|
|
|
struct LambdaCtx {
|
2022-08-23 21:54:25 +02:00
|
|
|
lambda: Lambda,
|
2022-08-14 22:14:37 +02:00
|
|
|
scope: Scope,
|
2022-08-23 23:01:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LambdaCtx {
|
|
|
|
fn new() -> Self {
|
|
|
|
LambdaCtx {
|
|
|
|
lambda: Lambda::new_anonymous(),
|
|
|
|
scope: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-13 16:34:20 +02:00
|
|
|
|
2022-08-27 18:49:08 +02:00
|
|
|
/// Alias for the map of globally available functions that should
|
|
|
|
/// implicitly be resolvable in the global scope.
|
2022-08-24 14:37:09 +02:00
|
|
|
type GlobalsMap = HashMap<&'static str, Rc<dyn Fn(&mut Compiler)>>;
|
|
|
|
|
2022-09-01 15:38:05 +02:00
|
|
|
struct Compiler<'code> {
|
2022-08-23 23:01:45 +02:00
|
|
|
contexts: Vec<LambdaCtx>,
|
2022-08-12 16:07:32 +02:00
|
|
|
warnings: Vec<EvalWarning>,
|
2022-08-22 22:48:47 +02:00
|
|
|
errors: Vec<Error>,
|
2022-08-12 17:28:45 +02:00
|
|
|
root_dir: PathBuf,
|
2022-08-24 14:37:09 +02:00
|
|
|
|
|
|
|
/// Carries all known global tokens; the full set of which is
|
|
|
|
/// created when the compiler is invoked.
|
|
|
|
///
|
|
|
|
/// Each global has an associated token, which when encountered as
|
|
|
|
/// an identifier is resolved against the scope poisoning logic,
|
|
|
|
/// and a function that should emit code for the token.
|
|
|
|
globals: GlobalsMap,
|
2022-09-01 15:38:05 +02:00
|
|
|
|
|
|
|
/// File reference in the codemap contains all known source code
|
|
|
|
/// and is used to track the spans from which instructions where
|
|
|
|
/// derived.
|
|
|
|
file: &'code codemap::File,
|
2022-08-07 22:41:42 +02:00
|
|
|
}
|
|
|
|
|
2022-08-23 20:00:53 +02:00
|
|
|
// Helper functions for emitting code and metadata to the internal
|
|
|
|
// structures of the compiler.
|
2022-09-01 15:38:05 +02:00
|
|
|
impl Compiler<'_> {
|
2022-08-23 23:01:45 +02:00
|
|
|
fn context(&self) -> &LambdaCtx {
|
|
|
|
&self.contexts[self.contexts.len() - 1]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn context_mut(&mut self) -> &mut LambdaCtx {
|
|
|
|
let idx = self.contexts.len() - 1;
|
|
|
|
&mut self.contexts[idx]
|
|
|
|
}
|
|
|
|
|
2022-08-23 20:00:53 +02:00
|
|
|
fn chunk(&mut self) -> &mut Chunk {
|
2022-08-27 19:41:10 +02:00
|
|
|
&mut self.context_mut().lambda.chunk
|
2022-08-23 20:00:53 +02:00
|
|
|
}
|
|
|
|
|
2022-08-23 22:57:36 +02:00
|
|
|
fn scope(&self) -> &Scope {
|
2022-08-23 23:01:45 +02:00
|
|
|
&self.context().scope
|
2022-08-23 22:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn scope_mut(&mut self) -> &mut Scope {
|
2022-08-23 23:01:45 +02:00
|
|
|
&mut self.context_mut().scope
|
2022-08-23 22:57:36 +02:00
|
|
|
}
|
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
/// Push a single instruction to the current bytecode chunk.
|
|
|
|
fn push_op(&mut self, data: OpCode) -> CodeIdx {
|
|
|
|
self.chunk().push_op(data)
|
|
|
|
}
|
|
|
|
|
2022-08-23 20:00:53 +02:00
|
|
|
fn emit_constant(&mut self, value: Value) {
|
|
|
|
let idx = self.chunk().push_constant(value);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpConstant(idx));
|
2022-08-23 20:00:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Actual code-emitting AST traversal methods.
|
2022-09-01 15:38:05 +02:00
|
|
|
impl Compiler<'_> {
|
2022-08-28 18:38:17 +02:00
|
|
|
fn compile(&mut self, slot: Option<LocalIdx>, expr: ast::Expr) {
|
2022-08-16 22:43:45 +02:00
|
|
|
match expr {
|
|
|
|
ast::Expr::Literal(literal) => self.compile_literal(literal),
|
|
|
|
ast::Expr::Path(path) => self.compile_path(path),
|
2022-08-29 20:51:08 +02:00
|
|
|
ast::Expr::Str(s) => self.compile_str(slot, s),
|
|
|
|
ast::Expr::UnaryOp(op) => self.compile_unary_op(slot, op),
|
|
|
|
ast::Expr::BinOp(op) => self.compile_binop(slot, op),
|
2022-08-29 20:33:15 +02:00
|
|
|
ast::Expr::HasAttr(has_attr) => self.compile_has_attr(slot, has_attr),
|
2022-08-29 20:51:08 +02:00
|
|
|
ast::Expr::List(list) => self.compile_list(slot, list),
|
2022-08-30 18:55:04 +02:00
|
|
|
ast::Expr::AttrSet(attrs) => self.thunk(slot, move |c, s| c.compile_attr_set(s, attrs)),
|
2022-08-29 20:33:15 +02:00
|
|
|
ast::Expr::Select(select) => self.compile_select(slot, select),
|
2022-08-29 20:51:08 +02:00
|
|
|
ast::Expr::Assert(assert) => self.compile_assert(slot, assert),
|
|
|
|
ast::Expr::IfElse(if_else) => self.compile_if_else(slot, if_else),
|
|
|
|
ast::Expr::LetIn(let_in) => self.compile_let_in(slot, let_in),
|
2022-08-28 23:11:23 +02:00
|
|
|
ast::Expr::Ident(ident) => self.compile_ident(slot, ident),
|
2022-08-29 20:51:08 +02:00
|
|
|
ast::Expr::With(with) => self.compile_with(slot, with),
|
2022-08-28 15:50:46 +02:00
|
|
|
ast::Expr::Lambda(lambda) => self.compile_lambda(slot, lambda),
|
2022-08-29 20:51:08 +02:00
|
|
|
ast::Expr::Apply(apply) => self.compile_apply(slot, apply),
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
// Parenthesized expressions are simply unwrapped, leaving
|
|
|
|
// their value on the stack.
|
2022-08-28 15:32:35 +02:00
|
|
|
ast::Expr::Paren(paren) => self.compile(slot, paren.expr().unwrap()),
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
ast::Expr::LegacyLet(_) => todo!("legacy let"),
|
|
|
|
|
|
|
|
ast::Expr::Root(_) => unreachable!("there cannot be more than one root"),
|
|
|
|
ast::Expr::Error(_) => unreachable!("compile is only called on validated trees"),
|
2022-08-07 22:41:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-22 22:48:47 +02:00
|
|
|
fn compile_literal(&mut self, node: ast::Literal) {
|
2022-08-16 22:43:45 +02:00
|
|
|
match node.kind() {
|
|
|
|
ast::LiteralKind::Float(f) => {
|
2022-08-23 20:00:53 +02:00
|
|
|
self.emit_constant(Value::Float(f.value().unwrap()));
|
2022-08-07 22:41:42 +02:00
|
|
|
}
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
ast::LiteralKind::Integer(i) => {
|
2022-08-23 20:00:53 +02:00
|
|
|
self.emit_constant(Value::Integer(i.value().unwrap()));
|
2022-08-07 22:41:42 +02:00
|
|
|
}
|
2022-08-16 22:43:45 +02:00
|
|
|
ast::LiteralKind::Uri(u) => {
|
2022-08-22 22:01:40 +02:00
|
|
|
self.emit_warning(node.syntax().clone(), WarningKind::DeprecatedLiteralURL);
|
2022-08-23 20:00:53 +02:00
|
|
|
self.emit_constant(Value::String(u.syntax().text().into()));
|
2022-08-12 15:34:39 +02:00
|
|
|
}
|
2022-08-07 22:41:42 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-08 01:16:28 +02:00
|
|
|
|
2022-08-22 22:48:47 +02:00
|
|
|
fn compile_path(&mut self, node: ast::Path) {
|
2022-08-16 22:43:45 +02:00
|
|
|
// TODO(tazjin): placeholder implementation while waiting for
|
|
|
|
// https://github.com/nix-community/rnix-parser/pull/96
|
|
|
|
|
|
|
|
let raw_path = node.to_string();
|
|
|
|
let path = if raw_path.starts_with('/') {
|
|
|
|
Path::new(&raw_path).to_owned()
|
|
|
|
} else if raw_path.starts_with('~') {
|
2022-08-22 22:48:47 +02:00
|
|
|
let mut buf = match dirs::home_dir() {
|
|
|
|
Some(buf) => buf,
|
|
|
|
None => {
|
|
|
|
self.emit_error(
|
|
|
|
node.syntax().clone(),
|
|
|
|
ErrorKind::PathResolution("failed to determine home directory".into()),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
buf.push(&raw_path);
|
|
|
|
buf
|
|
|
|
} else if raw_path.starts_with('.') {
|
|
|
|
let mut buf = self.root_dir.clone();
|
|
|
|
buf.push(&raw_path);
|
|
|
|
buf
|
|
|
|
} else {
|
|
|
|
// TODO: decide what to do with findFile
|
|
|
|
todo!("other path types (e.g. <...> lookups) not yet implemented")
|
2022-08-12 17:04:05 +02:00
|
|
|
};
|
|
|
|
|
2022-08-12 17:52:48 +02:00
|
|
|
// TODO: Use https://github.com/rust-lang/rfcs/issues/2208
|
|
|
|
// once it is available
|
|
|
|
let value = Value::Path(path.clean());
|
2022-08-23 20:00:53 +02:00
|
|
|
self.emit_constant(value);
|
2022-08-12 17:04:05 +02:00
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_str(&mut self, slot: Option<LocalIdx>, node: ast::Str) {
|
2022-08-09 16:37:38 +02:00
|
|
|
let mut count = 0;
|
|
|
|
|
|
|
|
// The string parts are produced in literal order, however
|
|
|
|
// they need to be reversed on the stack in order to
|
|
|
|
// efficiently create the real string in case of
|
|
|
|
// interpolation.
|
2022-08-22 20:04:50 +02:00
|
|
|
for part in node.normalized_parts().into_iter().rev() {
|
2022-08-09 16:37:38 +02:00
|
|
|
count += 1;
|
|
|
|
|
|
|
|
match part {
|
|
|
|
// Interpolated expressions are compiled as normal and
|
|
|
|
// dealt with by the VM before being assembled into
|
|
|
|
// the final string.
|
2022-08-29 20:51:08 +02:00
|
|
|
ast::InterpolPart::Interpolation(node) => self.compile(slot, node.expr().unwrap()),
|
2022-08-09 16:37:38 +02:00
|
|
|
|
2022-08-22 20:04:50 +02:00
|
|
|
ast::InterpolPart::Literal(lit) => {
|
2022-08-23 20:00:53 +02:00
|
|
|
self.emit_constant(Value::String(lit.into()));
|
2022-08-09 16:37:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if count != 1 {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpInterpolate(Count(count)));
|
2022-08-09 16:37:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_unary_op(&mut self, slot: Option<LocalIdx>, op: ast::UnaryOp) {
|
|
|
|
self.compile(slot, op.expr().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
let opcode = match op.operator().unwrap() {
|
|
|
|
ast::UnaryOpKind::Invert => OpCode::OpInvert,
|
|
|
|
ast::UnaryOpKind::Negate => OpCode::OpNegate,
|
|
|
|
};
|
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(opcode);
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_binop(&mut self, slot: Option<LocalIdx>, op: ast::BinOp) {
|
2022-08-16 22:43:45 +02:00
|
|
|
use ast::BinOpKind;
|
|
|
|
|
2022-08-11 16:06:23 +02:00
|
|
|
// Short-circuiting and other strange operators, which are
|
|
|
|
// under the same node type as NODE_BIN_OP, but need to be
|
|
|
|
// handled separately (i.e. before compiling the expressions
|
|
|
|
// used for standard binary operators).
|
2022-08-16 22:43:45 +02:00
|
|
|
|
2022-08-11 13:12:58 +02:00
|
|
|
match op.operator().unwrap() {
|
2022-08-29 20:51:08 +02:00
|
|
|
BinOpKind::And => return self.compile_and(slot, op),
|
|
|
|
BinOpKind::Or => return self.compile_or(slot, op),
|
|
|
|
BinOpKind::Implication => return self.compile_implication(slot, op),
|
2022-08-11 13:12:58 +02:00
|
|
|
_ => {}
|
|
|
|
};
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
// For all other operators, the two values need to be left on
|
|
|
|
// the stack in the correct order before pushing the
|
|
|
|
// instruction for the operation itself.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, op.lhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, op.rhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
2022-08-08 01:16:28 +02:00
|
|
|
|
2022-08-10 20:09:59 +02:00
|
|
|
match op.operator().unwrap() {
|
2022-09-01 15:23:48 +02:00
|
|
|
BinOpKind::Add => self.push_op(OpCode::OpAdd),
|
|
|
|
BinOpKind::Sub => self.push_op(OpCode::OpSub),
|
|
|
|
BinOpKind::Mul => self.push_op(OpCode::OpMul),
|
|
|
|
BinOpKind::Div => self.push_op(OpCode::OpDiv),
|
|
|
|
BinOpKind::Update => self.push_op(OpCode::OpAttrsUpdate),
|
|
|
|
BinOpKind::Equal => self.push_op(OpCode::OpEqual),
|
|
|
|
BinOpKind::Less => self.push_op(OpCode::OpLess),
|
|
|
|
BinOpKind::LessOrEq => self.push_op(OpCode::OpLessOrEq),
|
|
|
|
BinOpKind::More => self.push_op(OpCode::OpMore),
|
|
|
|
BinOpKind::MoreOrEq => self.push_op(OpCode::OpMoreOrEq),
|
|
|
|
BinOpKind::Concat => self.push_op(OpCode::OpConcat),
|
2022-08-10 20:09:59 +02:00
|
|
|
|
|
|
|
BinOpKind::NotEqual => {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpEqual);
|
|
|
|
self.push_op(OpCode::OpInvert)
|
2022-08-10 20:09:59 +02:00
|
|
|
}
|
|
|
|
|
2022-08-11 13:12:58 +02:00
|
|
|
// Handled by separate branch above.
|
2022-08-16 22:43:45 +02:00
|
|
|
BinOpKind::And | BinOpKind::Implication | BinOpKind::Or => {
|
2022-08-11 16:06:23 +02:00
|
|
|
unreachable!()
|
|
|
|
}
|
2022-08-08 01:16:28 +02:00
|
|
|
};
|
|
|
|
}
|
2022-08-08 01:32:07 +02:00
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_and(&mut self, slot: Option<LocalIdx>, node: ast::BinOp) {
|
2022-08-16 22:43:45 +02:00
|
|
|
debug_assert!(
|
|
|
|
matches!(node.operator(), Some(ast::BinOpKind::And)),
|
|
|
|
"compile_and called with wrong operator kind: {:?}",
|
|
|
|
node.operator(),
|
|
|
|
);
|
2022-08-08 01:32:07 +02:00
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
// Leave left-hand side value on the stack.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.lhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
// If this value is false, jump over the right-hand side - the
|
|
|
|
// whole expression is false.
|
2022-09-01 15:23:48 +02:00
|
|
|
let end_idx = self.push_op(OpCode::OpJumpIfFalse(JumpOffset(0)));
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
// Otherwise, remove the previous value and leave the
|
|
|
|
// right-hand side on the stack. Its result is now the value
|
|
|
|
// of the whole expression.
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpPop);
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.rhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
self.patch_jump(end_idx);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAssertBool);
|
2022-08-08 01:32:07 +02:00
|
|
|
}
|
2022-08-08 02:07:56 +02:00
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_or(&mut self, slot: Option<LocalIdx>, node: ast::BinOp) {
|
2022-08-16 22:43:45 +02:00
|
|
|
debug_assert!(
|
|
|
|
matches!(node.operator(), Some(ast::BinOpKind::Or)),
|
|
|
|
"compile_or called with wrong operator kind: {:?}",
|
|
|
|
node.operator(),
|
|
|
|
);
|
2022-08-08 02:07:56 +02:00
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
// Leave left-hand side value on the stack
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.lhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
2022-08-15 00:31:02 +02:00
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
// Opposite of above: If this value is **true**, we can
|
|
|
|
// short-circuit the right-hand side.
|
2022-09-01 15:23:48 +02:00
|
|
|
let end_idx = self.push_op(OpCode::OpJumpIfTrue(JumpOffset(0)));
|
|
|
|
self.push_op(OpCode::OpPop);
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.rhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
self.patch_jump(end_idx);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAssertBool);
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_implication(&mut self, slot: Option<LocalIdx>, node: ast::BinOp) {
|
2022-08-16 22:43:45 +02:00
|
|
|
debug_assert!(
|
|
|
|
matches!(node.operator(), Some(ast::BinOpKind::Implication)),
|
|
|
|
"compile_implication called with wrong operator kind: {:?}",
|
|
|
|
node.operator(),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Leave left-hand side value on the stack and invert it.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.lhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpInvert);
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
// Exactly as `||` (because `a -> b` = `!a || b`).
|
2022-09-01 15:23:48 +02:00
|
|
|
let end_idx = self.push_op(OpCode::OpJumpIfTrue(JumpOffset(0)));
|
|
|
|
self.push_op(OpCode::OpPop);
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.rhs().unwrap());
|
2022-08-29 20:57:28 +02:00
|
|
|
self.emit_force();
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
self.patch_jump(end_idx);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAssertBool);
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
|
2022-08-29 20:33:15 +02:00
|
|
|
fn compile_has_attr(&mut self, slot: Option<LocalIdx>, node: ast::HasAttr) {
|
2022-08-16 22:43:45 +02:00
|
|
|
// Put the attribute set on the stack.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.expr().unwrap());
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
// Push all path fragments with an operation for fetching the
|
|
|
|
// next nested element, for all fragments except the last one.
|
2022-08-25 17:39:27 +02:00
|
|
|
for (count, fragment) in node.attrpath().unwrap().attrs().enumerate() {
|
2022-08-16 22:43:45 +02:00
|
|
|
if count > 0 {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrsTrySelect);
|
2022-08-13 19:17:25 +02:00
|
|
|
}
|
2022-08-25 17:39:27 +02:00
|
|
|
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile_attr(slot, fragment);
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// After the last fragment, emit the actual instruction that
|
|
|
|
// leaves a boolean on the stack.
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrsIsSet);
|
2022-08-08 02:07:56 +02:00
|
|
|
}
|
2022-08-09 15:53:09 +02:00
|
|
|
|
2022-08-29 20:33:15 +02:00
|
|
|
fn compile_attr(&mut self, slot: Option<LocalIdx>, node: ast::Attr) {
|
2022-08-16 22:43:45 +02:00
|
|
|
match node {
|
2022-08-29 21:06:28 +02:00
|
|
|
ast::Attr::Dynamic(dynamic) => {
|
|
|
|
self.compile(slot, dynamic.expr().unwrap());
|
|
|
|
self.emit_force();
|
|
|
|
}
|
|
|
|
|
|
|
|
ast::Attr::Str(s) => {
|
|
|
|
self.compile_str(slot, s);
|
|
|
|
self.emit_force();
|
|
|
|
}
|
|
|
|
|
2022-08-22 22:48:47 +02:00
|
|
|
ast::Attr::Ident(ident) => self.emit_literal_ident(&ident),
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compile list literals into equivalent bytecode. List
|
|
|
|
// construction is fairly simple, consisting of pushing code for
|
|
|
|
// each literal element and an instruction with the element count.
|
|
|
|
//
|
|
|
|
// The VM, after evaluating the code for each element, simply
|
|
|
|
// constructs the list from the given number of elements.
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_list(&mut self, slot: Option<LocalIdx>, node: ast::List) {
|
2022-08-16 22:43:45 +02:00
|
|
|
let mut count = 0;
|
|
|
|
|
|
|
|
for item in node.items() {
|
|
|
|
count += 1;
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, item);
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpList(Count(count)));
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
|
2022-08-09 15:53:09 +02:00
|
|
|
// Compile attribute set literals into equivalent bytecode.
|
|
|
|
//
|
|
|
|
// This is complicated by a number of features specific to Nix
|
|
|
|
// attribute sets, most importantly:
|
|
|
|
//
|
|
|
|
// 1. Keys can be dynamically constructed through interpolation.
|
|
|
|
// 2. Keys can refer to nested attribute sets.
|
|
|
|
// 3. Attribute sets can (optionally) be recursive.
|
2022-08-29 20:33:15 +02:00
|
|
|
fn compile_attr_set(&mut self, slot: Option<LocalIdx>, node: ast::AttrSet) {
|
2022-08-16 22:43:45 +02:00
|
|
|
if node.rec_token().is_some() {
|
2022-08-10 20:01:15 +02:00
|
|
|
todo!("recursive attribute sets are not yet implemented")
|
|
|
|
}
|
|
|
|
|
2022-08-09 15:53:09 +02:00
|
|
|
let mut count = 0;
|
|
|
|
|
2022-08-14 16:33:16 +02:00
|
|
|
// Inherits have to be evaluated before entering the scope of
|
|
|
|
// a potentially recursive attribute sets (i.e. we always
|
|
|
|
// inherit "from the outside").
|
|
|
|
for inherit in node.inherits() {
|
|
|
|
match inherit.from() {
|
2022-08-14 19:12:20 +02:00
|
|
|
Some(from) => {
|
2022-08-14 16:33:16 +02:00
|
|
|
for ident in inherit.idents() {
|
|
|
|
count += 1;
|
|
|
|
|
2022-08-30 18:55:04 +02:00
|
|
|
// First emit the identifier itself (this
|
|
|
|
// becomes the new key).
|
2022-08-14 19:12:20 +02:00
|
|
|
self.emit_literal_ident(&ident);
|
|
|
|
|
|
|
|
// Then emit the node that we're inheriting
|
|
|
|
// from.
|
|
|
|
//
|
|
|
|
// TODO: Likely significant optimisation
|
|
|
|
// potential in having a multi-select
|
|
|
|
// instruction followed by a merge, rather
|
|
|
|
// than pushing/popping the same attrs
|
|
|
|
// potentially a lot of times.
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile(slot, from.expr().unwrap());
|
2022-08-30 18:55:04 +02:00
|
|
|
self.emit_force();
|
2022-08-14 19:12:20 +02:00
|
|
|
self.emit_literal_ident(&ident);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrsSelect);
|
2022-08-14 19:12:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None => {
|
|
|
|
for ident in inherit.idents() {
|
|
|
|
count += 1;
|
2022-08-29 21:28:13 +02:00
|
|
|
|
|
|
|
// Emit the key to use for OpAttrs
|
2022-08-14 19:12:20 +02:00
|
|
|
self.emit_literal_ident(&ident);
|
2022-08-14 16:33:16 +02:00
|
|
|
|
2022-08-29 21:28:13 +02:00
|
|
|
// Emit the value.
|
|
|
|
self.compile_ident(slot, ident);
|
2022-08-14 16:33:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
for kv in node.attrpath_values() {
|
2022-08-09 15:53:09 +02:00
|
|
|
count += 1;
|
|
|
|
|
|
|
|
// Because attribute set literals can contain nested keys,
|
|
|
|
// there is potentially more than one key fragment. If
|
|
|
|
// this is the case, a special operation to construct a
|
|
|
|
// runtime value representing the attribute path is
|
|
|
|
// emitted.
|
|
|
|
let mut key_count = 0;
|
2022-08-16 22:43:45 +02:00
|
|
|
for fragment in kv.attrpath().unwrap().attrs() {
|
2022-08-09 15:53:09 +02:00
|
|
|
key_count += 1;
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile_attr(slot, fragment);
|
2022-08-09 15:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// We're done with the key if there was only one fragment,
|
|
|
|
// otherwise we need to emit an instruction to construct
|
|
|
|
// the attribute path.
|
|
|
|
if key_count > 1 {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrPath(Count(key_count)));
|
2022-08-09 15:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// The value is just compiled as normal so that its
|
|
|
|
// resulting value is on the stack when the attribute set
|
|
|
|
// is constructed at runtime.
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile(slot, kv.value().unwrap());
|
2022-08-09 15:53:09 +02:00
|
|
|
}
|
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrs(Count(count)));
|
2022-08-09 15:53:09 +02:00
|
|
|
}
|
2022-08-09 16:23:20 +02:00
|
|
|
|
2022-08-29 20:33:15 +02:00
|
|
|
fn compile_select(&mut self, slot: Option<LocalIdx>, node: ast::Select) {
|
2022-08-16 22:43:45 +02:00
|
|
|
let set = node.expr().unwrap();
|
|
|
|
let path = node.attrpath().unwrap();
|
2022-08-11 14:29:11 +02:00
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
if node.or_token().is_some() {
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile_select_or(slot, set, path, node.default_expr().unwrap());
|
2022-08-22 22:48:47 +02:00
|
|
|
return;
|
2022-08-09 16:23:20 +02:00
|
|
|
}
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
// Push the set onto the stack
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, set);
|
2022-08-30 18:55:04 +02:00
|
|
|
self.emit_force();
|
2022-08-11 16:06:23 +02:00
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
// Compile each key fragment and emit access instructions.
|
2022-08-11 16:06:23 +02:00
|
|
|
//
|
2022-08-16 22:43:45 +02:00
|
|
|
// TODO: multi-select instruction to avoid re-pushing attrs on
|
|
|
|
// nested selects.
|
|
|
|
for fragment in path.attrs() {
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile_attr(slot, fragment);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrsSelect);
|
2022-08-11 16:06:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-11 21:03:10 +02:00
|
|
|
/// Compile an `or` expression into a chunk of conditional jumps.
|
|
|
|
///
|
|
|
|
/// If at any point during attribute set traversal a key is
|
|
|
|
/// missing, the `OpAttrOrNotFound` instruction will leave a
|
|
|
|
/// special sentinel value on the stack.
|
|
|
|
///
|
|
|
|
/// After each access, a conditional jump evaluates the top of the
|
|
|
|
/// stack and short-circuits to the default value if it sees the
|
|
|
|
/// sentinel.
|
|
|
|
///
|
|
|
|
/// Code like `{ a.b = 1; }.a.c or 42` yields this bytecode and
|
|
|
|
/// runtime stack:
|
|
|
|
///
|
|
|
|
/// ```notrust
|
|
|
|
/// Bytecode Runtime stack
|
|
|
|
/// ┌────────────────────────────┐ ┌─────────────────────────┐
|
|
|
|
/// │ ... │ │ ... │
|
|
|
|
/// │ 5 OP_ATTRS(1) │ → │ 5 [ { a.b = 1; } ] │
|
|
|
|
/// │ 6 OP_CONSTANT("a") │ → │ 6 [ { a.b = 1; } "a" ] │
|
|
|
|
/// │ 7 OP_ATTR_OR_NOT_FOUND │ → │ 7 [ { b = 1; } ] │
|
|
|
|
/// │ 8 JUMP_IF_NOT_FOUND(13) │ → │ 8 [ { b = 1; } ] │
|
|
|
|
/// │ 9 OP_CONSTANT("C") │ → │ 9 [ { b = 1; } "c" ] │
|
|
|
|
/// │ 10 OP_ATTR_OR_NOT_FOUND │ → │ 10 [ NOT_FOUND ] │
|
|
|
|
/// │ 11 JUMP_IF_NOT_FOUND(13) │ → │ 11 [ ] │
|
|
|
|
/// │ 12 JUMP(14) │ │ .. jumped over │
|
|
|
|
/// │ 13 CONSTANT(42) │ → │ 12 [ 42 ] │
|
|
|
|
/// │ 14 ... │ │ .. .... │
|
|
|
|
/// └────────────────────────────┘ └─────────────────────────┘
|
|
|
|
/// ```
|
2022-08-29 20:33:15 +02:00
|
|
|
fn compile_select_or(
|
|
|
|
&mut self,
|
|
|
|
slot: Option<LocalIdx>,
|
|
|
|
set: ast::Expr,
|
|
|
|
path: ast::Attrpath,
|
|
|
|
default: ast::Expr,
|
|
|
|
) {
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, set);
|
2022-08-30 18:55:04 +02:00
|
|
|
self.emit_force();
|
2022-08-11 21:03:10 +02:00
|
|
|
let mut jumps = vec![];
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
for fragment in path.attrs() {
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile_attr(slot, fragment);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrsTrySelect);
|
2022-08-26 19:46:43 +02:00
|
|
|
jumps.push(
|
|
|
|
self.chunk()
|
|
|
|
.push_op(OpCode::OpJumpIfNotFound(JumpOffset(0))),
|
|
|
|
);
|
2022-08-11 21:03:10 +02:00
|
|
|
}
|
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
let final_jump = self.push_op(OpCode::OpJump(JumpOffset(0)));
|
2022-08-16 22:43:45 +02:00
|
|
|
|
2022-08-11 21:03:10 +02:00
|
|
|
for jump in jumps {
|
|
|
|
self.patch_jump(jump);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compile the default value expression and patch the final
|
|
|
|
// jump to point *beyond* it.
|
2022-08-29 20:33:15 +02:00
|
|
|
self.compile(slot, default);
|
2022-08-11 21:03:10 +02:00
|
|
|
self.patch_jump(final_jump);
|
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_assert(&mut self, slot: Option<LocalIdx>, node: ast::Assert) {
|
2022-08-16 22:43:45 +02:00
|
|
|
// Compile the assertion condition to leave its value on the stack.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.condition().unwrap());
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAssert);
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
// The runtime will abort evaluation at this point if the
|
|
|
|
// assertion failed, if not the body simply continues on like
|
|
|
|
// normal.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.body().unwrap());
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compile conditional expressions using jumping instructions in the VM.
|
|
|
|
//
|
|
|
|
// ┌────────────────────┐
|
|
|
|
// │ 0 [ conditional ] │
|
|
|
|
// │ 1 JUMP_IF_FALSE →┼─┐
|
|
|
|
// │ 2 [ main body ] │ │ Jump to else body if
|
|
|
|
// ┌┼─3─← JUMP │ │ condition is false.
|
|
|
|
// Jump over else body ││ 4 [ else body ]←┼─┘
|
|
|
|
// if condition is true.└┼─5─→ ... │
|
|
|
|
// └────────────────────┘
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_if_else(&mut self, slot: Option<LocalIdx>, node: ast::IfElse) {
|
|
|
|
self.compile(slot, node.condition().unwrap());
|
2022-08-16 22:43:45 +02:00
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
let then_idx = self.push_op(OpCode::OpJumpIfFalse(JumpOffset(0)));
|
2022-08-16 22:43:45 +02:00
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpPop); // discard condition value
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.body().unwrap());
|
2022-08-16 22:43:45 +02:00
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
let else_idx = self.push_op(OpCode::OpJump(JumpOffset(0)));
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
self.patch_jump(then_idx); // patch jump *to* else_body
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpPop); // discard condition value
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.else_body().unwrap());
|
2022-08-16 22:43:45 +02:00
|
|
|
|
|
|
|
self.patch_jump(else_idx); // patch jump *over* else body
|
|
|
|
}
|
|
|
|
|
2022-08-24 19:25:08 +02:00
|
|
|
// Compile an `inherit` node of a `let`-expression.
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_let_inherit<I: Iterator<Item = ast::Inherit>>(
|
|
|
|
&mut self,
|
|
|
|
slot: Option<LocalIdx>,
|
|
|
|
inherits: I,
|
|
|
|
) {
|
2022-08-24 19:25:08 +02:00
|
|
|
for inherit in inherits {
|
2022-08-14 21:28:30 +02:00
|
|
|
match inherit.from() {
|
|
|
|
// Within a `let` binding, inheriting from the outer
|
2022-08-24 19:01:39 +02:00
|
|
|
// scope is a no-op *if* the identifier can be
|
|
|
|
// statically resolved.
|
2022-08-27 18:55:02 +02:00
|
|
|
None if !self.scope().has_with() => {
|
2022-08-22 22:01:40 +02:00
|
|
|
self.emit_warning(inherit.syntax().clone(), WarningKind::UselessInherit);
|
2022-08-14 21:28:30 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-08-24 19:01:39 +02:00
|
|
|
None => {
|
|
|
|
for ident in inherit.idents() {
|
|
|
|
// If the identifier resolves statically, it
|
|
|
|
// has precedence over dynamic bindings, and
|
|
|
|
// the inherit is useless.
|
2022-08-27 17:59:31 +02:00
|
|
|
if matches!(
|
|
|
|
self.scope_mut()
|
|
|
|
.resolve_local(ident.ident_token().unwrap().text()),
|
|
|
|
LocalPosition::Known(_)
|
|
|
|
) {
|
2022-08-24 19:01:39 +02:00
|
|
|
self.emit_warning(ident.syntax().clone(), WarningKind::UselessInherit);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile_ident(slot, ident.clone());
|
2022-08-28 15:21:26 +02:00
|
|
|
let idx = self.declare_local(
|
2022-08-24 19:01:39 +02:00
|
|
|
ident.syntax().clone(),
|
|
|
|
ident.ident_token().unwrap().text(),
|
|
|
|
);
|
2022-08-28 18:38:17 +02:00
|
|
|
self.scope_mut().mark_initialised(idx);
|
2022-08-24 19:01:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-16 13:40:06 +02:00
|
|
|
Some(from) => {
|
2022-08-14 21:28:30 +02:00
|
|
|
for ident in inherit.idents() {
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, from.expr().unwrap());
|
2022-08-30 18:55:04 +02:00
|
|
|
self.emit_force();
|
|
|
|
|
2022-08-16 13:40:06 +02:00
|
|
|
self.emit_literal_ident(&ident);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpAttrsSelect);
|
2022-08-28 15:21:26 +02:00
|
|
|
let idx = self.declare_local(
|
2022-08-23 10:26:00 +02:00
|
|
|
ident.syntax().clone(),
|
|
|
|
ident.ident_token().unwrap().text(),
|
|
|
|
);
|
2022-08-28 18:38:17 +02:00
|
|
|
self.scope_mut().mark_initialised(idx);
|
2022-08-14 21:28:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-24 19:25:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compile a standard `let ...; in ...` statement.
|
|
|
|
//
|
|
|
|
// Unless in a non-standard scope, the encountered values are
|
|
|
|
// simply pushed on the stack and their indices noted in the
|
|
|
|
// entries vector.
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_let_in(&mut self, slot: Option<LocalIdx>, node: ast::LetIn) {
|
2022-08-24 19:25:08 +02:00
|
|
|
self.begin_scope();
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile_let_inherit(slot, node.inherits());
|
2022-08-13 16:34:20 +02:00
|
|
|
|
2022-08-28 14:41:57 +02:00
|
|
|
// First pass to ensure that all identifiers are known;
|
|
|
|
// required for resolving recursion.
|
2022-08-28 22:44:56 +02:00
|
|
|
let mut entries: Vec<(LocalIdx, ast::Expr)> = vec![];
|
2022-08-16 22:43:45 +02:00
|
|
|
for entry in node.attrpath_values() {
|
2022-08-22 22:48:47 +02:00
|
|
|
let mut path = match normalise_ident_path(entry.attrpath().unwrap().attrs()) {
|
|
|
|
Ok(p) => p,
|
|
|
|
Err(err) => {
|
|
|
|
self.errors.push(err);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
2022-08-13 16:34:20 +02:00
|
|
|
|
|
|
|
if path.len() != 1 {
|
|
|
|
todo!("nested bindings in let expressions :(")
|
|
|
|
}
|
|
|
|
|
2022-08-28 15:21:26 +02:00
|
|
|
let idx = self.declare_local(
|
|
|
|
entry.attrpath().unwrap().syntax().clone(),
|
|
|
|
path.pop().unwrap(),
|
|
|
|
);
|
2022-08-28 18:38:17 +02:00
|
|
|
|
2022-08-28 15:21:26 +02:00
|
|
|
entries.push((idx, entry.value().unwrap()));
|
2022-08-28 14:41:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Second pass to place the values in the correct stack slots.
|
2022-08-28 18:38:17 +02:00
|
|
|
let indices: Vec<LocalIdx> = entries.iter().map(|(idx, _)| *idx).collect();
|
2022-08-28 15:21:26 +02:00
|
|
|
for (idx, value) in entries.into_iter() {
|
2022-08-28 15:32:35 +02:00
|
|
|
self.compile(Some(idx), value);
|
2022-08-28 14:41:57 +02:00
|
|
|
|
|
|
|
// Any code after this point will observe the value in the
|
|
|
|
// right stack slot, so mark it as initialised.
|
2022-08-28 18:38:17 +02:00
|
|
|
self.scope_mut().mark_initialised(idx);
|
2022-08-13 16:34:20 +02:00
|
|
|
}
|
|
|
|
|
2022-08-28 16:57:52 +02:00
|
|
|
// Third pass to emit finaliser instructions if necessary.
|
|
|
|
for idx in indices {
|
2022-08-28 18:38:17 +02:00
|
|
|
if self.scope()[idx].needs_finaliser {
|
|
|
|
let stack_idx = self.scope().stack_index(idx);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpFinalise(stack_idx));
|
2022-08-28 16:57:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-13 16:34:20 +02:00
|
|
|
// Deal with the body, then clean up the locals afterwards.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.body().unwrap());
|
2022-08-13 16:34:20 +02:00
|
|
|
self.end_scope();
|
|
|
|
}
|
|
|
|
|
2022-08-28 23:11:23 +02:00
|
|
|
fn compile_ident(&mut self, slot: Option<LocalIdx>, node: ast::Ident) {
|
2022-08-24 14:37:09 +02:00
|
|
|
let ident = node.ident_token().unwrap();
|
|
|
|
|
|
|
|
// If the identifier is a global, and it is not poisoned, emit
|
|
|
|
// the global directly.
|
|
|
|
if let Some(global) = self.globals.get(ident.text()) {
|
|
|
|
if !self.scope().is_poisoned(ident.text()) {
|
|
|
|
global.clone()(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-24 21:37:02 +02:00
|
|
|
match self.scope_mut().resolve_local(ident.text()) {
|
2022-08-27 17:59:31 +02:00
|
|
|
LocalPosition::Unknown => {
|
2022-08-26 20:48:51 +02:00
|
|
|
// Are we possibly dealing with an upvalue?
|
|
|
|
if let Some(idx) = self.resolve_upvalue(self.contexts.len() - 1, ident.text()) {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpGetUpvalue(idx));
|
2022-08-26 20:48:51 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-28 00:52:55 +02:00
|
|
|
// Even worse - are we dealing with a dynamic upvalue?
|
|
|
|
if let Some(idx) =
|
|
|
|
self.resolve_dynamic_upvalue(self.contexts.len() - 1, ident.text())
|
|
|
|
{
|
fix(tvix/eval): correctly thread through dynamic upvalues
This puts together the puzzle pieces for threading dynamic
upvalues (that is, upvalues resolved from the `with`-stack) all the
way through.
Reading the test case enclosed in this commit and walking through it
is recommended to understand what problem is being tackled here.
In short, because the compiler can not statically know *which*
with-scope a dynamic argument is resolved from it needs to lay the
groundwork for resolving from *all* possible scopes.
There are multiple different approaches to doing this. The approach
chosen in this commit is that if a dynamic upvalue is detected, the
compiler will emit instructions to close over this dynamic value
in *all* enclosing lambda contexts.
It uses a new instruction for this that will leave around a sentinel
value in case an identifier could not be resolved, and wire the
location of this found value (or sentinel) up through the upvalues to
the next level of nesting.
In this tradeoff, tvix potentially closes over more upvalues than are
needed (but in practice, how often do people create *really* deep
`with`-stacks? and in *this* kind of code situation? maybe we should
even warn for this!) but avoids keeping the entire attribute sets
themselves around.
Looking at the test case, each surrounding closure will close
over *all* dynamic identifiers that are referenced later on visible to
it, but only the last one for each identifier will actually end up
being used.
This also covers our bases for an additional edge-case this creates,
in which an identifier potentially resolves to a dynamic upvalue *and*
to a dynamic value within the function's own scope (again, would
anyone really do this?) by introducing a resolution instruction for
that particular case.
There is likely some potential for cleaning up this code which is
quite ugly in some parts, but as this implementation is now carefully
calibrated to work I decided it is time to commit it and clean it up
in subsequent commits.
Change-Id: Ib701e3e6da39bd2c95938d1384036ff4f9fb3749
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6322
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-08-28 02:45:45 +02:00
|
|
|
// Edge case: Current scope *also* has a non-empty
|
|
|
|
// `with`-stack. This means we need to resolve
|
|
|
|
// both in this scope, and in the upvalues.
|
|
|
|
if self.scope().has_with() {
|
|
|
|
self.emit_constant(Value::String(ident.text().into()));
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpResolveWithOrUpvalue(idx));
|
fix(tvix/eval): correctly thread through dynamic upvalues
This puts together the puzzle pieces for threading dynamic
upvalues (that is, upvalues resolved from the `with`-stack) all the
way through.
Reading the test case enclosed in this commit and walking through it
is recommended to understand what problem is being tackled here.
In short, because the compiler can not statically know *which*
with-scope a dynamic argument is resolved from it needs to lay the
groundwork for resolving from *all* possible scopes.
There are multiple different approaches to doing this. The approach
chosen in this commit is that if a dynamic upvalue is detected, the
compiler will emit instructions to close over this dynamic value
in *all* enclosing lambda contexts.
It uses a new instruction for this that will leave around a sentinel
value in case an identifier could not be resolved, and wire the
location of this found value (or sentinel) up through the upvalues to
the next level of nesting.
In this tradeoff, tvix potentially closes over more upvalues than are
needed (but in practice, how often do people create *really* deep
`with`-stacks? and in *this* kind of code situation? maybe we should
even warn for this!) but avoids keeping the entire attribute sets
themselves around.
Looking at the test case, each surrounding closure will close
over *all* dynamic identifiers that are referenced later on visible to
it, but only the last one for each identifier will actually end up
being used.
This also covers our bases for an additional edge-case this creates,
in which an identifier potentially resolves to a dynamic upvalue *and*
to a dynamic value within the function's own scope (again, would
anyone really do this?) by introducing a resolution instruction for
that particular case.
There is likely some potential for cleaning up this code which is
quite ugly in some parts, but as this implementation is now carefully
calibrated to work I decided it is time to commit it and clean it up
in subsequent commits.
Change-Id: Ib701e3e6da39bd2c95938d1384036ff4f9fb3749
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6322
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-08-28 02:45:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpGetUpvalue(idx));
|
2022-08-28 00:52:55 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-27 18:55:02 +02:00
|
|
|
if !self.scope().has_with() {
|
2022-08-24 14:37:09 +02:00
|
|
|
self.emit_error(node.syntax().clone(), ErrorKind::UnknownStaticVariable);
|
|
|
|
return;
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
2022-08-24 14:37:09 +02:00
|
|
|
|
2022-08-26 20:48:51 +02:00
|
|
|
// Variable needs to be dynamically resolved at
|
|
|
|
// runtime.
|
2022-08-24 14:37:09 +02:00
|
|
|
self.emit_constant(Value::String(ident.text().into()));
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpResolveWith);
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
2022-08-27 17:59:31 +02:00
|
|
|
|
2022-08-28 18:38:17 +02:00
|
|
|
LocalPosition::Known(idx) => {
|
|
|
|
let stack_idx = self.scope().stack_index(idx);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpGetLocal(stack_idx));
|
2022-08-28 18:38:17 +02:00
|
|
|
}
|
2022-08-27 21:58:39 +02:00
|
|
|
|
2022-08-28 23:11:23 +02:00
|
|
|
// This identifier is referring to a value from the same
|
|
|
|
// scope which is not yet defined. This identifier access
|
|
|
|
// must be thunked.
|
|
|
|
LocalPosition::Recursive(idx) => self.thunk(slot, move |compiler, _| {
|
|
|
|
let upvalue_idx =
|
|
|
|
compiler.add_upvalue(compiler.contexts.len() - 1, Upvalue::Local(idx));
|
|
|
|
compiler.chunk().push_op(OpCode::OpGetUpvalue(upvalue_idx));
|
|
|
|
}),
|
2022-08-16 22:43:45 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-08-14 23:13:57 +02:00
|
|
|
// Compile `with` expressions by emitting instructions that
|
|
|
|
// pop/remove the indices of attribute sets that are implicitly in
|
|
|
|
// scope through `with` on the "with-stack".
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_with(&mut self, slot: Option<LocalIdx>, node: ast::With) {
|
2022-08-27 18:33:41 +02:00
|
|
|
self.begin_scope();
|
2022-08-14 23:13:57 +02:00
|
|
|
// TODO: Detect if the namespace is just an identifier, and
|
|
|
|
// resolve that directly (thus avoiding duplication on the
|
|
|
|
// stack).
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.namespace().unwrap());
|
2022-08-30 18:55:04 +02:00
|
|
|
self.emit_force();
|
|
|
|
|
2022-08-28 18:38:17 +02:00
|
|
|
let local_idx = self.scope_mut().declare_phantom();
|
|
|
|
let with_idx = self.scope().stack_index(local_idx);
|
2022-08-27 17:59:31 +02:00
|
|
|
|
2022-08-27 18:55:02 +02:00
|
|
|
self.scope_mut().push_with();
|
2022-08-14 23:13:57 +02:00
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpPushWith(with_idx));
|
2022-08-14 23:13:57 +02:00
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.body().unwrap());
|
2022-08-27 01:59:03 +02:00
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpPopWith);
|
2022-08-27 18:55:02 +02:00
|
|
|
self.scope_mut().pop_with();
|
2022-08-27 18:33:41 +02:00
|
|
|
self.end_scope();
|
2022-08-14 23:13:57 +02:00
|
|
|
}
|
|
|
|
|
2022-08-28 18:38:17 +02:00
|
|
|
fn compile_lambda(&mut self, slot: Option<LocalIdx>, node: ast::Lambda) {
|
2022-08-24 00:54:34 +02:00
|
|
|
// Open new lambda context in compiler, which has its own
|
|
|
|
// scope etc.
|
|
|
|
self.contexts.push(LambdaCtx::new());
|
|
|
|
self.begin_scope();
|
|
|
|
|
|
|
|
// Compile the function itself
|
|
|
|
match node.param().unwrap() {
|
|
|
|
ast::Param::Pattern(_) => todo!("formals function definitions"),
|
|
|
|
ast::Param::IdentParam(param) => {
|
|
|
|
let name = param
|
|
|
|
.ident()
|
|
|
|
.unwrap()
|
|
|
|
.ident_token()
|
|
|
|
.unwrap()
|
|
|
|
.text()
|
|
|
|
.to_string();
|
|
|
|
|
2022-08-28 15:21:26 +02:00
|
|
|
let idx = self.declare_local(param.syntax().clone(), &name);
|
2022-08-28 18:38:17 +02:00
|
|
|
self.scope_mut().mark_initialised(idx);
|
2022-08-24 00:54:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.body().unwrap());
|
2022-08-24 00:54:34 +02:00
|
|
|
self.end_scope();
|
|
|
|
|
|
|
|
// TODO: determine and insert enclosing name, if available.
|
|
|
|
|
|
|
|
// Pop the lambda context back off, and emit the finished
|
|
|
|
// lambda as a constant.
|
|
|
|
let compiled = self.contexts.pop().unwrap();
|
|
|
|
|
|
|
|
#[cfg(feature = "disassembler")]
|
|
|
|
{
|
|
|
|
crate::disassembler::disassemble_chunk(&compiled.lambda.chunk);
|
|
|
|
}
|
|
|
|
|
2022-08-26 23:21:08 +02:00
|
|
|
// If the function is not a closure, just emit it directly and
|
|
|
|
// move on.
|
|
|
|
if compiled.lambda.upvalue_count == 0 {
|
2022-08-28 05:07:20 +02:00
|
|
|
self.emit_constant(Value::Closure(Closure::new(Rc::new(compiled.lambda))));
|
2022-08-26 23:21:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the function is a closure, we need to emit the variable
|
|
|
|
// number of operands that allow the runtime to close over the
|
2022-08-28 05:07:20 +02:00
|
|
|
// upvalues and leave a blueprint in the constant index from
|
|
|
|
// which the runtime closure can be constructed.
|
2022-08-28 22:44:56 +02:00
|
|
|
let blueprint_idx = self
|
2022-08-26 23:21:08 +02:00
|
|
|
.chunk()
|
2022-08-28 05:07:20 +02:00
|
|
|
.push_constant(Value::Blueprint(Rc::new(compiled.lambda)));
|
2022-08-26 23:21:08 +02:00
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpClosure(blueprint_idx));
|
2022-08-28 22:44:56 +02:00
|
|
|
self.emit_upvalue_data(slot, compiled.scope.upvalues);
|
|
|
|
}
|
|
|
|
|
2022-08-29 20:51:08 +02:00
|
|
|
fn compile_apply(&mut self, slot: Option<LocalIdx>, node: ast::Apply) {
|
2022-08-28 22:44:56 +02:00
|
|
|
// To call a function, we leave its arguments on the stack,
|
|
|
|
// followed by the function expression itself, and then emit a
|
|
|
|
// call instruction. This way, the stack is perfectly laid out
|
|
|
|
// to enter the function call straight away.
|
2022-08-29 20:51:08 +02:00
|
|
|
self.compile(slot, node.argument().unwrap());
|
|
|
|
self.compile(slot, node.lambda().unwrap());
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpCall);
|
2022-08-28 22:44:56 +02:00
|
|
|
}
|
|
|
|
|
2022-08-28 22:53:20 +02:00
|
|
|
/// Compile an expression into a runtime thunk which should be
|
|
|
|
/// lazily evaluated when accessed.
|
|
|
|
// TODO: almost the same as Compiler::compile_lambda; unify?
|
|
|
|
fn thunk<F>(&mut self, slot: Option<LocalIdx>, content: F)
|
|
|
|
where
|
|
|
|
F: FnOnce(&mut Compiler, Option<LocalIdx>),
|
|
|
|
{
|
|
|
|
self.contexts.push(LambdaCtx::new());
|
|
|
|
self.begin_scope();
|
|
|
|
content(self, slot);
|
|
|
|
self.end_scope();
|
|
|
|
|
|
|
|
let thunk = self.contexts.pop().unwrap();
|
|
|
|
|
|
|
|
#[cfg(feature = "disassembler")]
|
|
|
|
{
|
|
|
|
crate::disassembler::disassemble_chunk(&thunk.lambda.chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Emit the thunk directly if it does not close over the
|
|
|
|
// environment.
|
|
|
|
if thunk.lambda.upvalue_count == 0 {
|
2022-08-29 17:03:24 +02:00
|
|
|
self.emit_constant(Value::Thunk(Thunk::new(Rc::new(thunk.lambda))));
|
2022-08-28 22:53:20 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise prepare for runtime construction of the thunk.
|
|
|
|
let blueprint_idx = self
|
|
|
|
.chunk()
|
|
|
|
.push_constant(Value::Blueprint(Rc::new(thunk.lambda)));
|
|
|
|
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpThunk(blueprint_idx));
|
2022-08-28 22:53:20 +02:00
|
|
|
self.emit_upvalue_data(slot, thunk.scope.upvalues);
|
|
|
|
}
|
|
|
|
|
2022-08-28 22:44:56 +02:00
|
|
|
/// Emit the data instructions that the runtime needs to correctly
|
|
|
|
/// assemble the provided upvalues array.
|
|
|
|
fn emit_upvalue_data(&mut self, slot: Option<LocalIdx>, upvalues: Vec<Upvalue>) {
|
|
|
|
for upvalue in upvalues {
|
2022-08-26 23:21:08 +02:00
|
|
|
match upvalue {
|
2022-08-28 18:38:17 +02:00
|
|
|
Upvalue::Local(idx) if slot.is_none() => {
|
|
|
|
let stack_idx = self.scope().stack_index(idx);
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::DataLocalIdx(stack_idx));
|
fix(tvix/eval): correctly thread through dynamic upvalues
This puts together the puzzle pieces for threading dynamic
upvalues (that is, upvalues resolved from the `with`-stack) all the
way through.
Reading the test case enclosed in this commit and walking through it
is recommended to understand what problem is being tackled here.
In short, because the compiler can not statically know *which*
with-scope a dynamic argument is resolved from it needs to lay the
groundwork for resolving from *all* possible scopes.
There are multiple different approaches to doing this. The approach
chosen in this commit is that if a dynamic upvalue is detected, the
compiler will emit instructions to close over this dynamic value
in *all* enclosing lambda contexts.
It uses a new instruction for this that will leave around a sentinel
value in case an identifier could not be resolved, and wire the
location of this found value (or sentinel) up through the upvalues to
the next level of nesting.
In this tradeoff, tvix potentially closes over more upvalues than are
needed (but in practice, how often do people create *really* deep
`with`-stacks? and in *this* kind of code situation? maybe we should
even warn for this!) but avoids keeping the entire attribute sets
themselves around.
Looking at the test case, each surrounding closure will close
over *all* dynamic identifiers that are referenced later on visible to
it, but only the last one for each identifier will actually end up
being used.
This also covers our bases for an additional edge-case this creates,
in which an identifier potentially resolves to a dynamic upvalue *and*
to a dynamic value within the function's own scope (again, would
anyone really do this?) by introducing a resolution instruction for
that particular case.
There is likely some potential for cleaning up this code which is
quite ugly in some parts, but as this implementation is now carefully
calibrated to work I decided it is time to commit it and clean it up
in subsequent commits.
Change-Id: Ib701e3e6da39bd2c95938d1384036ff4f9fb3749
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6322
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-08-28 02:45:45 +02:00
|
|
|
}
|
2022-08-28 15:50:46 +02:00
|
|
|
|
2022-08-28 18:38:17 +02:00
|
|
|
Upvalue::Local(idx) => {
|
|
|
|
let stack_idx = self.scope().stack_index(idx);
|
|
|
|
|
2022-08-28 15:50:46 +02:00
|
|
|
// If the upvalue slot is located *after* the
|
|
|
|
// closure, the upvalue resolution must be
|
|
|
|
// deferred until the scope is fully initialised
|
|
|
|
// and can be finalised.
|
2022-08-28 18:38:17 +02:00
|
|
|
if slot.unwrap() < idx {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::DataDeferredLocal(stack_idx));
|
2022-08-28 18:38:17 +02:00
|
|
|
self.scope_mut().mark_needs_finaliser(slot.unwrap());
|
2022-08-28 15:50:46 +02:00
|
|
|
} else {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::DataLocalIdx(stack_idx));
|
2022-08-28 15:50:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
fix(tvix/eval): correctly thread through dynamic upvalues
This puts together the puzzle pieces for threading dynamic
upvalues (that is, upvalues resolved from the `with`-stack) all the
way through.
Reading the test case enclosed in this commit and walking through it
is recommended to understand what problem is being tackled here.
In short, because the compiler can not statically know *which*
with-scope a dynamic argument is resolved from it needs to lay the
groundwork for resolving from *all* possible scopes.
There are multiple different approaches to doing this. The approach
chosen in this commit is that if a dynamic upvalue is detected, the
compiler will emit instructions to close over this dynamic value
in *all* enclosing lambda contexts.
It uses a new instruction for this that will leave around a sentinel
value in case an identifier could not be resolved, and wire the
location of this found value (or sentinel) up through the upvalues to
the next level of nesting.
In this tradeoff, tvix potentially closes over more upvalues than are
needed (but in practice, how often do people create *really* deep
`with`-stacks? and in *this* kind of code situation? maybe we should
even warn for this!) but avoids keeping the entire attribute sets
themselves around.
Looking at the test case, each surrounding closure will close
over *all* dynamic identifiers that are referenced later on visible to
it, but only the last one for each identifier will actually end up
being used.
This also covers our bases for an additional edge-case this creates,
in which an identifier potentially resolves to a dynamic upvalue *and*
to a dynamic value within the function's own scope (again, would
anyone really do this?) by introducing a resolution instruction for
that particular case.
There is likely some potential for cleaning up this code which is
quite ugly in some parts, but as this implementation is now carefully
calibrated to work I decided it is time to commit it and clean it up
in subsequent commits.
Change-Id: Ib701e3e6da39bd2c95938d1384036ff4f9fb3749
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6322
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-08-28 02:45:45 +02:00
|
|
|
Upvalue::Upvalue(idx) => {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::DataUpvalueIdx(idx));
|
fix(tvix/eval): correctly thread through dynamic upvalues
This puts together the puzzle pieces for threading dynamic
upvalues (that is, upvalues resolved from the `with`-stack) all the
way through.
Reading the test case enclosed in this commit and walking through it
is recommended to understand what problem is being tackled here.
In short, because the compiler can not statically know *which*
with-scope a dynamic argument is resolved from it needs to lay the
groundwork for resolving from *all* possible scopes.
There are multiple different approaches to doing this. The approach
chosen in this commit is that if a dynamic upvalue is detected, the
compiler will emit instructions to close over this dynamic value
in *all* enclosing lambda contexts.
It uses a new instruction for this that will leave around a sentinel
value in case an identifier could not be resolved, and wire the
location of this found value (or sentinel) up through the upvalues to
the next level of nesting.
In this tradeoff, tvix potentially closes over more upvalues than are
needed (but in practice, how often do people create *really* deep
`with`-stacks? and in *this* kind of code situation? maybe we should
even warn for this!) but avoids keeping the entire attribute sets
themselves around.
Looking at the test case, each surrounding closure will close
over *all* dynamic identifiers that are referenced later on visible to
it, but only the last one for each identifier will actually end up
being used.
This also covers our bases for an additional edge-case this creates,
in which an identifier potentially resolves to a dynamic upvalue *and*
to a dynamic value within the function's own scope (again, would
anyone really do this?) by introducing a resolution instruction for
that particular case.
There is likely some potential for cleaning up this code which is
quite ugly in some parts, but as this implementation is now carefully
calibrated to work I decided it is time to commit it and clean it up
in subsequent commits.
Change-Id: Ib701e3e6da39bd2c95938d1384036ff4f9fb3749
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6322
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-08-28 02:45:45 +02:00
|
|
|
}
|
|
|
|
Upvalue::Dynamic { name, up } => {
|
2022-08-28 00:52:55 +02:00
|
|
|
let idx = self.chunk().push_constant(Value::String(name.into()));
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::DataDynamicIdx(idx));
|
fix(tvix/eval): correctly thread through dynamic upvalues
This puts together the puzzle pieces for threading dynamic
upvalues (that is, upvalues resolved from the `with`-stack) all the
way through.
Reading the test case enclosed in this commit and walking through it
is recommended to understand what problem is being tackled here.
In short, because the compiler can not statically know *which*
with-scope a dynamic argument is resolved from it needs to lay the
groundwork for resolving from *all* possible scopes.
There are multiple different approaches to doing this. The approach
chosen in this commit is that if a dynamic upvalue is detected, the
compiler will emit instructions to close over this dynamic value
in *all* enclosing lambda contexts.
It uses a new instruction for this that will leave around a sentinel
value in case an identifier could not be resolved, and wire the
location of this found value (or sentinel) up through the upvalues to
the next level of nesting.
In this tradeoff, tvix potentially closes over more upvalues than are
needed (but in practice, how often do people create *really* deep
`with`-stacks? and in *this* kind of code situation? maybe we should
even warn for this!) but avoids keeping the entire attribute sets
themselves around.
Looking at the test case, each surrounding closure will close
over *all* dynamic identifiers that are referenced later on visible to
it, but only the last one for each identifier will actually end up
being used.
This also covers our bases for an additional edge-case this creates,
in which an identifier potentially resolves to a dynamic upvalue *and*
to a dynamic value within the function's own scope (again, would
anyone really do this?) by introducing a resolution instruction for
that particular case.
There is likely some potential for cleaning up this code which is
quite ugly in some parts, but as this implementation is now carefully
calibrated to work I decided it is time to commit it and clean it up
in subsequent commits.
Change-Id: Ib701e3e6da39bd2c95938d1384036ff4f9fb3749
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6322
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-08-28 02:45:45 +02:00
|
|
|
if let Some(up) = up {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::DataDynamicAncestor(up));
|
fix(tvix/eval): correctly thread through dynamic upvalues
This puts together the puzzle pieces for threading dynamic
upvalues (that is, upvalues resolved from the `with`-stack) all the
way through.
Reading the test case enclosed in this commit and walking through it
is recommended to understand what problem is being tackled here.
In short, because the compiler can not statically know *which*
with-scope a dynamic argument is resolved from it needs to lay the
groundwork for resolving from *all* possible scopes.
There are multiple different approaches to doing this. The approach
chosen in this commit is that if a dynamic upvalue is detected, the
compiler will emit instructions to close over this dynamic value
in *all* enclosing lambda contexts.
It uses a new instruction for this that will leave around a sentinel
value in case an identifier could not be resolved, and wire the
location of this found value (or sentinel) up through the upvalues to
the next level of nesting.
In this tradeoff, tvix potentially closes over more upvalues than are
needed (but in practice, how often do people create *really* deep
`with`-stacks? and in *this* kind of code situation? maybe we should
even warn for this!) but avoids keeping the entire attribute sets
themselves around.
Looking at the test case, each surrounding closure will close
over *all* dynamic identifiers that are referenced later on visible to
it, but only the last one for each identifier will actually end up
being used.
This also covers our bases for an additional edge-case this creates,
in which an identifier potentially resolves to a dynamic upvalue *and*
to a dynamic value within the function's own scope (again, would
anyone really do this?) by introducing a resolution instruction for
that particular case.
There is likely some potential for cleaning up this code which is
quite ugly in some parts, but as this implementation is now carefully
calibrated to work I decided it is time to commit it and clean it up
in subsequent commits.
Change-Id: Ib701e3e6da39bd2c95938d1384036ff4f9fb3749
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6322
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-08-28 02:45:45 +02:00
|
|
|
}
|
2022-08-27 02:31:28 +02:00
|
|
|
}
|
2022-08-26 23:21:08 +02:00
|
|
|
};
|
|
|
|
}
|
2022-08-24 00:54:34 +02:00
|
|
|
}
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
/// Emit the literal string value of an identifier. Required for
|
|
|
|
/// several operations related to attribute sets, where
|
|
|
|
/// identifiers are used as string keys.
|
|
|
|
fn emit_literal_ident(&mut self, ident: &ast::Ident) {
|
2022-08-23 20:00:53 +02:00
|
|
|
self.emit_constant(Value::String(ident.ident_token().unwrap().text().into()));
|
2022-08-14 19:12:20 +02:00
|
|
|
}
|
|
|
|
|
2022-08-26 17:38:20 +02:00
|
|
|
/// Patch the jump instruction at the given index, setting its
|
|
|
|
/// jump offset from the placeholder to the current code position.
|
|
|
|
///
|
|
|
|
/// This is required because the actual target offset of jumps is
|
|
|
|
/// not known at the time when the jump operation itself is
|
|
|
|
/// emitted.
|
2022-08-11 12:12:07 +02:00
|
|
|
fn patch_jump(&mut self, idx: CodeIdx) {
|
2022-08-26 19:46:43 +02:00
|
|
|
let offset = JumpOffset(self.chunk().code.len() - 1 - idx.0);
|
2022-08-11 12:12:07 +02:00
|
|
|
|
2022-08-23 20:00:53 +02:00
|
|
|
match &mut self.chunk().code[idx.0] {
|
2022-08-11 21:03:10 +02:00
|
|
|
OpCode::OpJump(n)
|
|
|
|
| OpCode::OpJumpIfFalse(n)
|
|
|
|
| OpCode::OpJumpIfTrue(n)
|
|
|
|
| OpCode::OpJumpIfNotFound(n) => {
|
2022-08-11 12:12:07 +02:00
|
|
|
*n = offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
op => panic!("attempted to patch unsupported op: {:?}", op),
|
|
|
|
}
|
|
|
|
}
|
2022-08-13 16:34:20 +02:00
|
|
|
|
|
|
|
fn begin_scope(&mut self) {
|
2022-08-23 22:57:36 +02:00
|
|
|
self.scope_mut().scope_depth += 1;
|
2022-08-13 16:34:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn end_scope(&mut self) {
|
2022-08-23 22:57:36 +02:00
|
|
|
debug_assert!(self.scope().scope_depth != 0, "can not end top scope");
|
2022-08-16 14:11:06 +02:00
|
|
|
|
|
|
|
// If this scope poisoned any builtins or special identifiers,
|
|
|
|
// they need to be reset.
|
2022-08-24 14:37:09 +02:00
|
|
|
let depth = self.scope().scope_depth;
|
|
|
|
self.scope_mut().unpoison(depth);
|
2022-08-16 14:11:06 +02:00
|
|
|
|
2022-08-23 22:57:36 +02:00
|
|
|
self.scope_mut().scope_depth -= 1;
|
2022-08-13 16:34:20 +02:00
|
|
|
|
|
|
|
// When ending a scope, all corresponding locals need to be
|
|
|
|
// removed, but the value of the body needs to remain on the
|
|
|
|
// stack. This is implemented by a separate instruction.
|
|
|
|
let mut pops = 0;
|
|
|
|
|
|
|
|
// TL;DR - iterate from the back while things belonging to the
|
|
|
|
// ended scope still exist.
|
2022-08-23 22:57:36 +02:00
|
|
|
while !self.scope().locals.is_empty()
|
2022-08-28 14:34:35 +02:00
|
|
|
&& self.scope().locals[self.scope().locals.len() - 1].above(self.scope().scope_depth)
|
2022-08-13 16:34:20 +02:00
|
|
|
{
|
|
|
|
pops += 1;
|
2022-08-23 10:26:00 +02:00
|
|
|
|
|
|
|
// While removing the local, analyse whether it has been
|
|
|
|
// accessed while it existed and emit a warning to the
|
|
|
|
// user otherwise.
|
|
|
|
if let Some(Local {
|
|
|
|
node: Some(node),
|
|
|
|
used,
|
2022-08-27 23:04:47 +02:00
|
|
|
name,
|
2022-08-23 10:26:00 +02:00
|
|
|
..
|
2022-08-23 22:57:36 +02:00
|
|
|
}) = self.scope_mut().locals.pop()
|
2022-08-23 10:26:00 +02:00
|
|
|
{
|
2022-08-27 23:04:47 +02:00
|
|
|
if !used && !name.starts_with('_') {
|
2022-08-23 10:26:00 +02:00
|
|
|
self.emit_warning(node, WarningKind::UnusedBinding);
|
|
|
|
}
|
|
|
|
}
|
2022-08-13 16:34:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if pops > 0 {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpCloseScope(Count(pops)));
|
2022-08-13 16:34:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-13 19:17:25 +02:00
|
|
|
|
2022-08-16 14:16:56 +02:00
|
|
|
/// Declare a local variable known in the scope that is being
|
|
|
|
/// compiled by pushing it to the locals. This is used to
|
|
|
|
/// determine the stack offset of variables.
|
2022-08-28 18:38:17 +02:00
|
|
|
fn declare_local<S: Into<String>>(&mut self, node: rnix::SyntaxNode, name: S) -> LocalIdx {
|
2022-08-16 14:11:06 +02:00
|
|
|
let name = name.into();
|
2022-08-24 14:37:09 +02:00
|
|
|
let depth = self.scope().scope_depth;
|
2022-08-16 14:11:06 +02:00
|
|
|
|
2022-08-24 14:37:09 +02:00
|
|
|
// Do this little dance to get ahold of the *static* key and
|
|
|
|
// use it for poisoning if required.
|
|
|
|
let key: Option<&'static str> = match self.globals.get_key_value(name.as_str()) {
|
|
|
|
Some((key, _)) => Some(*key),
|
|
|
|
None => None,
|
2022-08-16 14:11:06 +02:00
|
|
|
};
|
2022-08-16 14:16:56 +02:00
|
|
|
|
2022-08-24 14:37:09 +02:00
|
|
|
if let Some(global_ident) = key {
|
2022-08-24 15:31:28 +02:00
|
|
|
self.emit_warning(node.clone(), WarningKind::ShadowedGlobal(global_ident));
|
2022-08-24 14:37:09 +02:00
|
|
|
self.scope_mut().poison(global_ident, depth);
|
|
|
|
}
|
|
|
|
|
2022-08-27 16:16:46 +02:00
|
|
|
let mut shadowed = false;
|
2022-08-28 14:34:35 +02:00
|
|
|
for other in self.scope().locals.iter().rev() {
|
|
|
|
if other.name == name && other.depth == depth {
|
2022-08-27 16:16:46 +02:00
|
|
|
shadowed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if shadowed {
|
|
|
|
self.emit_error(
|
|
|
|
node.clone(),
|
|
|
|
ErrorKind::VariableAlreadyDefined(name.clone()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-08-28 18:38:17 +02:00
|
|
|
self.scope_mut().declare_local(name, node)
|
2022-08-28 16:50:16 +02:00
|
|
|
}
|
|
|
|
|
2022-08-26 20:48:51 +02:00
|
|
|
fn resolve_upvalue(&mut self, ctx_idx: usize, name: &str) -> Option<UpvalueIdx> {
|
|
|
|
if ctx_idx == 0 {
|
|
|
|
// There can not be any upvalue at the outermost context.
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2022-08-27 02:31:28 +02:00
|
|
|
// Determine whether the upvalue is a local in the enclosing context.
|
2022-08-27 17:59:31 +02:00
|
|
|
match self.contexts[ctx_idx - 1].scope.resolve_local(name) {
|
2022-08-27 21:58:39 +02:00
|
|
|
// recursive upvalues are dealt with the same way as
|
|
|
|
// standard known ones, as thunks and closures are
|
|
|
|
// guaranteed to be placed on the stack (i.e. in the right
|
|
|
|
// position) *during* their runtime construction
|
|
|
|
LocalPosition::Known(idx) | LocalPosition::Recursive(idx) => {
|
2022-08-28 18:38:17 +02:00
|
|
|
return Some(self.add_upvalue(ctx_idx, Upvalue::Local(idx)))
|
2022-08-27 17:59:31 +02:00
|
|
|
}
|
2022-08-27 21:58:39 +02:00
|
|
|
|
2022-08-27 17:59:31 +02:00
|
|
|
LocalPosition::Unknown => { /* continue below */ }
|
|
|
|
};
|
2022-08-26 20:48:51 +02:00
|
|
|
|
2022-08-27 02:31:28 +02:00
|
|
|
// If the upvalue comes from even further up, we need to
|
2022-08-26 20:48:51 +02:00
|
|
|
// recurse to make sure that the upvalues are created at each
|
|
|
|
// level.
|
|
|
|
if let Some(idx) = self.resolve_upvalue(ctx_idx - 1, name) {
|
|
|
|
return Some(self.add_upvalue(ctx_idx, Upvalue::Upvalue(idx)));
|
|
|
|
}
|
|
|
|
|
2022-08-28 00:52:55 +02:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
/// If no static resolution for a potential upvalue was found,
|
|
|
|
/// finds the lowest lambda context that has a `with`-stack and
|
|
|
|
/// thread dynamic upvalues all the way through.
|
|
|
|
///
|
|
|
|
/// At runtime, as closures are being constructed they either
|
|
|
|
/// capture a dynamically available upvalue, take an upvalue from
|
|
|
|
/// their "ancestor" or leave a sentinel value on the stack.
|
|
|
|
///
|
|
|
|
/// As such an upvalue is actually accessed, an error is produced
|
|
|
|
/// when the sentinel is found. See the runtime's handling of
|
|
|
|
/// dynamic upvalues for details.
|
|
|
|
fn resolve_dynamic_upvalue(&mut self, at: usize, name: &str) -> Option<UpvalueIdx> {
|
|
|
|
if at == 0 {
|
|
|
|
// There can not be any upvalue at the outermost context.
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some((lowest_idx, _)) = self
|
|
|
|
.contexts
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.find(|(_, c)| c.scope.has_with())
|
|
|
|
{
|
|
|
|
// An enclosing lambda context has dynamic values. Each
|
|
|
|
// context in the chain from that point on now needs to
|
|
|
|
// capture dynamic upvalues because we can not statically
|
|
|
|
// know at which level the correct one is located.
|
|
|
|
let name = SmolStr::new(name);
|
|
|
|
let mut upvalue_idx = None;
|
|
|
|
|
|
|
|
for idx in lowest_idx..=at {
|
|
|
|
upvalue_idx = Some(self.add_upvalue(
|
|
|
|
idx,
|
|
|
|
Upvalue::Dynamic {
|
|
|
|
name: name.clone(),
|
|
|
|
up: upvalue_idx,
|
|
|
|
},
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the outermost upvalue index (i.e. the one of the
|
|
|
|
// current context).
|
|
|
|
return upvalue_idx;
|
2022-08-27 22:58:46 +02:00
|
|
|
}
|
|
|
|
|
2022-08-26 20:48:51 +02:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_upvalue(&mut self, ctx_idx: usize, upvalue: Upvalue) -> UpvalueIdx {
|
|
|
|
// If there is already an upvalue closing over the specified
|
|
|
|
// index, retrieve that instead.
|
|
|
|
for (idx, existing) in self.contexts[ctx_idx].scope.upvalues.iter().enumerate() {
|
|
|
|
if *existing == upvalue {
|
|
|
|
return UpvalueIdx(idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.contexts[ctx_idx].scope.upvalues.push(upvalue);
|
|
|
|
|
|
|
|
let idx = UpvalueIdx(self.contexts[ctx_idx].lambda.upvalue_count);
|
|
|
|
self.contexts[ctx_idx].lambda.upvalue_count += 1;
|
|
|
|
idx
|
|
|
|
}
|
|
|
|
|
2022-08-29 20:57:28 +02:00
|
|
|
fn emit_force(&mut self) {
|
2022-09-01 15:23:48 +02:00
|
|
|
self.push_op(OpCode::OpForce);
|
2022-08-29 20:57:28 +02:00
|
|
|
}
|
|
|
|
|
2022-08-22 22:01:40 +02:00
|
|
|
fn emit_warning(&mut self, node: rnix::SyntaxNode, kind: WarningKind) {
|
|
|
|
self.warnings.push(EvalWarning { node, kind })
|
|
|
|
}
|
2022-08-22 22:48:47 +02:00
|
|
|
|
|
|
|
fn emit_error(&mut self, node: rnix::SyntaxNode, kind: ErrorKind) {
|
|
|
|
self.errors.push(Error {
|
|
|
|
node: Some(node),
|
|
|
|
kind,
|
|
|
|
})
|
|
|
|
}
|
2022-08-07 22:41:42 +02:00
|
|
|
}
|
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
/// Convert a non-dynamic string expression to a string if possible,
|
|
|
|
/// or raise an error.
|
|
|
|
fn expr_str_to_string(expr: ast::Str) -> EvalResult<String> {
|
2022-08-22 20:04:50 +02:00
|
|
|
if expr.normalized_parts().len() == 1 {
|
|
|
|
if let ast::InterpolPart::Literal(s) = expr.normalized_parts().pop().unwrap() {
|
2022-08-16 22:43:45 +02:00
|
|
|
return Ok(s);
|
2022-08-13 18:42:50 +02:00
|
|
|
}
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
2022-08-13 18:42:50 +02:00
|
|
|
|
2022-08-22 22:48:47 +02:00
|
|
|
return Err(Error {
|
|
|
|
node: Some(expr.syntax().clone()),
|
|
|
|
kind: ErrorKind::DynamicKeyInLet(expr.syntax().clone()),
|
|
|
|
});
|
2022-08-16 22:43:45 +02:00
|
|
|
}
|
2022-08-13 18:42:50 +02:00
|
|
|
|
2022-08-16 22:43:45 +02:00
|
|
|
/// Convert a single identifier path fragment to a string if possible,
|
|
|
|
/// or raise an error about the node being dynamic.
|
|
|
|
fn attr_to_string(node: ast::Attr) -> EvalResult<String> {
|
|
|
|
match node {
|
|
|
|
ast::Attr::Ident(ident) => Ok(ident.ident_token().unwrap().text().into()),
|
|
|
|
ast::Attr::Str(s) => expr_str_to_string(s),
|
|
|
|
|
|
|
|
// The dynamic node type is just a wrapper. C++ Nix does not
|
|
|
|
// care about the dynamic wrapper when determining whether the
|
|
|
|
// node itself is dynamic, it depends solely on the expression
|
|
|
|
// inside (i.e. `let ${"a"} = 1; in a` is valid).
|
|
|
|
ast::Attr::Dynamic(ref dynamic) => match dynamic.expr().unwrap() {
|
|
|
|
ast::Expr::Str(s) => expr_str_to_string(s),
|
2022-08-22 22:20:50 +02:00
|
|
|
_ => Err(ErrorKind::DynamicKeyInLet(node.syntax().clone()).into()),
|
2022-08-16 22:43:45 +02:00
|
|
|
},
|
2022-08-13 18:42:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normalises identifier fragments into a single string vector for
|
|
|
|
// `let`-expressions; fails if fragments requiring dynamic computation
|
|
|
|
// are encountered.
|
2022-08-16 22:43:45 +02:00
|
|
|
fn normalise_ident_path<I: Iterator<Item = ast::Attr>>(path: I) -> EvalResult<Vec<String>> {
|
|
|
|
path.map(attr_to_string).collect()
|
2022-08-13 18:42:50 +02:00
|
|
|
}
|
|
|
|
|
2022-08-24 14:37:09 +02:00
|
|
|
/// Prepare the full set of globals from additional globals supplied
|
|
|
|
/// by the caller of the compiler, as well as the built-in globals
|
|
|
|
/// that are always part of the language.
|
|
|
|
///
|
|
|
|
/// Note that all builtin functions are *not* considered part of the
|
|
|
|
/// language in this sense and MUST be supplied as additional global
|
|
|
|
/// values, including the `builtins` set itself.
|
|
|
|
fn prepare_globals(additional: HashMap<&'static str, Value>) -> GlobalsMap {
|
|
|
|
let mut globals: GlobalsMap = HashMap::new();
|
|
|
|
|
|
|
|
globals.insert(
|
|
|
|
"true",
|
|
|
|
Rc::new(|compiler| {
|
|
|
|
compiler.chunk().push_op(OpCode::OpTrue);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
globals.insert(
|
|
|
|
"false",
|
|
|
|
Rc::new(|compiler| {
|
|
|
|
compiler.chunk().push_op(OpCode::OpFalse);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
globals.insert(
|
|
|
|
"null",
|
|
|
|
Rc::new(|compiler| {
|
|
|
|
compiler.chunk().push_op(OpCode::OpNull);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
for (ident, value) in additional.into_iter() {
|
|
|
|
globals.insert(
|
|
|
|
ident,
|
|
|
|
Rc::new(move |compiler| compiler.emit_constant(value.clone())),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
globals
|
|
|
|
}
|
|
|
|
|
2022-09-01 15:38:05 +02:00
|
|
|
pub fn compile<'code>(
|
2022-08-24 15:03:17 +02:00
|
|
|
expr: ast::Expr,
|
|
|
|
location: Option<PathBuf>,
|
2022-09-01 15:38:05 +02:00
|
|
|
file: &'code codemap::File,
|
2022-08-24 15:03:17 +02:00
|
|
|
globals: HashMap<&'static str, Value>,
|
2022-08-26 19:17:40 +02:00
|
|
|
) -> EvalResult<CompilationOutput> {
|
2022-08-12 17:28:45 +02:00
|
|
|
let mut root_dir = match location {
|
|
|
|
Some(dir) => Ok(dir),
|
|
|
|
None => std::env::current_dir().map_err(|e| {
|
2022-08-22 22:20:50 +02:00
|
|
|
ErrorKind::PathResolution(format!("could not determine current directory: {}", e))
|
2022-08-12 17:28:45 +02:00
|
|
|
}),
|
|
|
|
}?;
|
|
|
|
|
|
|
|
// If the path passed from the caller points to a file, the
|
|
|
|
// filename itself needs to be truncated as this must point to a
|
|
|
|
// directory.
|
|
|
|
if root_dir.is_file() {
|
|
|
|
root_dir.pop();
|
|
|
|
}
|
|
|
|
|
2022-08-07 22:41:42 +02:00
|
|
|
let mut c = Compiler {
|
2022-08-12 17:28:45 +02:00
|
|
|
root_dir,
|
2022-09-01 15:38:05 +02:00
|
|
|
file,
|
2022-08-24 15:03:17 +02:00
|
|
|
globals: prepare_globals(globals),
|
2022-08-23 23:01:45 +02:00
|
|
|
contexts: vec![LambdaCtx::new()],
|
2022-08-12 16:07:32 +02:00
|
|
|
warnings: vec![],
|
2022-08-22 22:48:47 +02:00
|
|
|
errors: vec![],
|
2022-08-07 22:41:42 +02:00
|
|
|
};
|
|
|
|
|
2022-08-28 15:32:35 +02:00
|
|
|
c.compile(None, expr);
|
2022-08-07 22:41:42 +02:00
|
|
|
|
2022-08-29 17:40:52 +02:00
|
|
|
// The final operation of any top-level Nix program must always be
|
|
|
|
// `OpForce`. A thunk should not be returned to the user in an
|
|
|
|
// unevaluated state (though in practice, a value *containing* a
|
|
|
|
// thunk might be returned).
|
2022-08-29 20:57:28 +02:00
|
|
|
c.emit_force();
|
2022-08-29 17:40:52 +02:00
|
|
|
|
2022-08-26 19:17:40 +02:00
|
|
|
Ok(CompilationOutput {
|
2022-08-23 23:01:45 +02:00
|
|
|
lambda: c.contexts.pop().unwrap().lambda,
|
2022-08-12 16:07:32 +02:00
|
|
|
warnings: c.warnings,
|
2022-08-22 22:48:47 +02:00
|
|
|
errors: c.errors,
|
2022-08-12 16:07:32 +02:00
|
|
|
})
|
2022-08-07 22:41:42 +02:00
|
|
|
}
|