diff options
-rw-r--r-- | tvix/eval/docs/known-optimisation-potential.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tvix/eval/docs/known-optimisation-potential.md b/tvix/eval/docs/known-optimisation-potential.md index 9390e8c601fa..64101b861753 100644 --- a/tvix/eval/docs/known-optimisation-potential.md +++ b/tvix/eval/docs/known-optimisation-potential.md @@ -104,3 +104,9 @@ optimisations, but note the most important ones here. This can be avoided, as we statically analyse the scope and should be able to tell whether any such logic was required. + +* Intern literals [easy] + + Currently, the compiler emits a separate entry in the constant + table for each literal. So the program `1 + 1 + 1` will have + three entries in its `Chunk::constants` instead of only one. |