Rollinglisp 001 - Of closures, mutability and switchable references

Im currently in the first stages to implement my first ever lisp. And like every good lispy language, closures are a realy important part of the language and it's versatility. And as I choose to implement my lisp for the time being without any fancy tracing gc, only with good old ARC (Atomic reference counted), there arise some serious problems when trying to implement colsures.

posted on Mon, 09 December 2024 by mai

Lapyst devlog #001 - Pro and cons of an own IR

Currently, the lapyst language works like the following:

  1. Lex and parse the sourcecode into an AST
  2. Enhance the AST via scope information and interfered types for (nearly) each node
  3. Walk the AST to generate LLVM IR
  4. Let LLVM do it's magic, with some LLD sprinkled in so we get a fully linked result
  5. Profit!

The problem with this is the second and third steps; not only store we some non-sourcecode related informations inside the AST, but we face problems when we want to transform the AST, being it inefficenties in the AST creation or be it simple loosing the ability to reason about the AST.

I finally took this problem head on in an attempt to finally solve it, and thats what I want to write today about.

posted on Mon, 28 October 2024 by mai