depot
this commit
canon
subtree-staging
monorepo for the virus lounge
The Virus Lounge
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tvix
/
eval
/
src
/
compiler
/
mod.rs
Age
Commit message (
Expand
)
Author
Files
Lines
2023-05-29
r/6217
fix(tvix/eval): thunk lambda expressions
sterni
1
-5
/
+3
2023-05-29
r/6216
fix(tvix/eval): thunk HasAttr expressions
sterni
1
-1
/
+3
2023-05-29
r/6215
fix(tvix/eval): thunk legacy let to match regular one
sterni
1
-1
/
+3
2023-05-29
r/6214
fix(tvix/eval): thunk unary operator applications
sterni
1
-1
/
+1
2023-05-25
r/6205
feat(tvix/eval): unthunk empty lists and attribute sets
Vincent Ambo
1
-0
/
+4
2023-05-25
r/6204
feat(tvix/eval): implement unthunking in compiler
Vincent Ambo
1
-1
/
+22
2023-03-17
r/6027
fix(tvix/eval): use span of `set` for OpForce in attribute access
Vincent Ambo
1
-2
/
+2
2023-03-17
r/6024
feat(tvix/eval): add generator "name" to NativeError kind
Vincent Ambo
1
-1
/
+4
2023-03-17
r/6023
feat(tvix/eval): enrich errors with VM's frame stack information
Vincent Ambo
1
-1
/
+2
2023-03-13
r/5970
fix(tvix/eval): correctly thunk deferred formals access
Vincent Ambo
1
-1
/
+11
2023-03-13
r/5969
refactor(tvix/eval): box PathBuf
Vincent Ambo
1
-3
/
+6
2023-03-13
r/5964
refactor(tvix/eval): flatten call stack of VM using generators
Vincent Ambo
1
-0
/
+7
2023-03-11
r/5954
feat(tvix/eval): don't warn twice about dead code
Florian Klink
1
-1
/
+3
2023-03-07
r/5898
refactor(tvix/eval): merge OpCall & OpTailCall
Vincent Ambo
1
-18
/
+0
2023-03-04
r/5888
refactor(tvix/eval): remove VM argument from suspended native thunks
Vincent Ambo
1
-2
/
+2
2023-03-03
r/5870
chore(tvix/eval): fix clippy warnings
Vincent Ambo
1
-2
/
+2
2023-02-04
r/5837
fix(tvix/eval): fix the default case for path parsing
Vincent Ambo
1
-10
/
+4
2023-02-03
r/5831
refactor(tvix/eval): statically resolve select from constant attrs
Vincent Ambo
1
-3
/
+86
2023-02-03
r/5828
fix(tvix/eval): ensure all evaluated thunks are correctly memoized
Vincent Ambo
1
-2
/
+2
2023-01-22
r/5735
feat(tvix/eval): support builtins implemented in Nix itself
Vincent Ambo
1
-16
/
+76
2023-01-22
r/5734
docs(tvix/eval): update some outdated comments
Vincent Ambo
1
-8
/
+3
2023-01-21
r/5721
refactor(tvix/eval): administer antidote for poison
Adam Joseph
1
-68
/
+22
2023-01-20
r/5706
feat(tvix/eval): add error contexts to annotate error kinds
Vincent Ambo
1
-7
/
+9
2023-01-17
r/5675
refactor(tvix/eval): remove `Box` in new_suspended_native
Vincent Ambo
1
-2
/
+2
2023-01-17
r/5674
feat(tvix/eval): add builtins to builtins
Vincent Ambo
1
-2
/
+32
2023-01-06
r/5603
fix(tvix/eval): compile but don't emit dead code
Vincent Ambo
1
-2
/
+28
2023-01-06
r/5602
feat(tvix/eval): implement initial compiler::optimiser module
Vincent Ambo
1
-0
/
+3
2023-01-06
r/5601
refactor(tvix/eval): take owned ast::Expr in Compiler::compile
Vincent Ambo
1
-31
/
+31
2023-01-06
r/5599
feat(tvix/eval): add Evaluation::compile_only method
Vincent Ambo
1
-1
/
+3
2023-01-04
r/5581
refactor(tvix/eval): streamline construction of globals/builtins
Vincent Ambo
1
-21
/
+82
2022-12-25
r/5486
fix(tvix/eval): fix current clippy warnings
Vincent Ambo
1
-3
/
+3
2022-12-21
r/5457
refactor(tvix/eval): add a LightSpan type for lighter span tracking
Vincent Ambo
1
-1
/
+2
2022-12-21
r/5454
refactor(tvix/eval): add name-based index over compiler's locals
Vincent Ambo
1
-6
/
+7
2022-12-21
r/5452
feat(tvix/eval): wrap Closure in Rc<> to match cppnix semantics
Adam Joseph
1
-1
/
+1
2022-11-05
r/5250
refactor(tvix/eval): rename Opcode::DataLocalIdx to DataStackIdx
Adam Joseph
1
-1
/
+1
2022-10-27
r/5214
refactor(tvix/eval): search-and-replace changes
Adam Joseph
1
-5
/
+5
2022-10-27
r/5213
feat(tvix/eval): builtins.import without RefCell
Adam Joseph
1
-45
/
+51
2022-10-23
r/5186
feat(tvix/eval): initial attempt at setting lambda names
Vincent Ambo
1
-2
/
+8
2022-10-23
r/5184
fix(tvix/eval): thunk let-expression
Vincent Ambo
1
-1
/
+5
2022-10-23
r/5182
refactor(tvix/eval): simplify check for deferring upvalue resolution
Vincent Ambo
1
-9
/
+4
2022-10-23
r/5180
refactor(tvix/eval): simplify self-reference check
Vincent Ambo
1
-1
/
+1
2022-10-21
r/5172
fix(tvix): distinguish search- and relative path resolution errors
sterni
1
-2
/
+2
2022-10-19
r/5159
feat(tvix/eval): deduplicate overlap between Closure and Thunk
Adam Joseph
1
-4
/
+25
2022-10-17
r/5154
feat(tvix/eval): Validate closed formals
Griffin Smith
1
-7
/
+6
2022-10-17
r/5153
feat(tvix/eval): Record formals on lambda
Griffin Smith
1
-11
/
+20
2022-10-16
r/5150
refactor(tvix/eval): unify compile_lambda() with thunk()
Adam Joseph
1
-61
/
+59
2022-10-16
r/5147
fix(tvix/eval): resolve home relative paths at runtime
sterni
1
-12
/
+8
2022-10-16
r/5146
refactor(tvix/eval): make OpFindFile use internal UnresolvedPath
sterni
1
-1
/
+1
2022-10-13
r/5121
fix(tvix/eval): fix Compiler::new on wasm
Vincent Ambo
1
-1
/
+3
2022-10-13
r/5120
fix(tvix/eval): src/compiler: ensure root_dir is absolute
Adam Joseph
1
-8
/
+16
[next]