Readit News logoReadit News
williamdclt · 6 months ago
Well done, writing interpreters is fun!

I’m not really sold on why Go would be a particularly good fit for the task, compared to other languages. Seems to be mostly “interfaces are useful for interpreters, and GC means I don’t have to care about memory management” - both of which are true but hardly specific to Go. There’s some form of interface in almost every mainstream language, I think the implementation would be pretty much the same in any GCd language

lopatin · 6 months ago
I never thought that Go would be a technology of choise for PL stuff. I always considered it more of a Java-lite for Web systems and also for CLI stuff, but here we are! TypeScript rewrote their compiler to Go. Being a compiler, they had no use of piggy backing on the GC, looks like they just liked the language.
3836293648 · 6 months ago
Typescript chose Go specicfically because they didn't rewrite it. Go has close enough semantics to TypeScript that they could write a Go backend for tsc and do a machine port to Go and continue working from that
shadowgovt · 6 months ago
I used Go awhile ago for a Blockly interpreter. It's remarkably friendly; if memory serves, the ability to attach metadata to structs was pretty useful.

One hack I'm not super proud of is I implemented return and break with panic / recover. Were I to do it all over, I'd probably use continuations to model that instead.

(Side-note on Lua specifically: among the reasons I like Lua is that it's very simple and its reference interpreter implementation is some very understandable code. I did some truly horrible things to it back in the day for a game engine, and it was very amenable to getting beat up like that).

9rx · 6 months ago
> I’m not really sold on why Go would be a particularly good fit for the task, compared to other languages.

Can't every language rock for building a Lua interpreter? It isn't a competition.

williamdclt · 6 months ago
I think that’s re-interpretation, making the subject of the article about “why go rocks” shows the author thinks Go has something over other languages. Otherwise it’s like saying “why orange cats are fluffy” then saying stuff that applies to all cats without orangeness specificity

Deleted Comment

Jyaif · 6 months ago
I mainly write code in languages without GCs so this article was very interesting to me, and the title was very fitting.
ufo · 6 months ago
I know the author starts the post by saying he won't explain the reasons why he had to write a new Lua interpreter from scratch, but I'm still curious about that. Does anyone know? I dug through some of the links in the post and couldn't find the answer.
zombiezen · 6 months ago
Yup, as others have mentioned, it's for zb. I originally outlined some background on design goals for this blog post, but the outline for that section was as big as the outline for the rest of the post, so I cut it. I'll probably write that one up as another blog post in the near future. :)

(Also, my pronouns are she/her.)

Lyngbakr · 6 months ago
This is exactly the part I got hung up on, too.

    The exact reasons aren’t important for this blog post, but neither the reference implementation [...] nor the other open source Go Lua intepreters I could find were a good fit for my needs.
I'm intrigued because presumably the shortcomings of the other implementations are important to how they chose to implement Lua here.

Scaevolus · 6 months ago
It's for zb, a Bazel-inspired build system that uses Lua instead of Starlark (stripped down python).
mdaniel · 6 months ago
Zb: An Early-Stage Build System - https://news.ycombinator.com/item?id=41595310 - Sep, 2024 (125 comments)

and the beta announcement was also recently submitted, but without commentary https://news.ycombinator.com/item?id=44290692

wavemode · 6 months ago
Given this is going to be used as a scripting language for a build system, it's possible they are trying to implement a restricted subset of Lua rather than than the full language.
shhsshs · 6 months ago
From the article:

    My Lua data types have a notable difference from C Lua: an ability to be “frozen”.

skybrian · 6 months ago
Performance is scarcely mentioned. It probably doesn’t matter that much for a build system. But for projects where it does matter, you won’t get performance in the same ballpark as a Lua interpreter written in C if you use Go.

In particular, because Go is memory-safe, you don’t have the control over memory layout you need to do tricks like NaN-boxing. Anything that requires a union with a pointer (which will be every value in a dynamically typed language) must be represented as a value of interface type, and interface values are quite fat - 16 bytes on a 64-bit machine.

Interpreters are atypical programs to optimize. Few other programs use unions so much in their inner loop.

pjmlp · 6 months ago
Or do it like C in the age of K&R C, and compilers ramping up for C89 compliance, with a little bit of Assembly.

Most stuff people use in C for writing interpreters with optimal performance, isn't ISO C, rather C compiler specific extensions, or inline Assembly.

All things being equal, same rules apply.

skybrian · 6 months ago
It’s different because Go is garbage collected. See my other reply.
foldr · 6 months ago
You can do raw memory access via the ‘unsafe’ package, so I don’t think it would be impossible to do NaN boxing in Go. It would be somewhat less convenient than in C.
skybrian · 6 months ago
Unlike C, Go is garbage collected. Hiding pointers from the garbage collector so it can’t trace them without breaking something seems tricky. There would need to be pointers to that memory somewhere else to prevent it from being collected.

And then since you’ve disabled the system GC, you need to write your own GC that understands NaN boxing to find out when memory can really be freed.

I see it as so awkward that it’s not worth doing.

andrewmcwatters · 6 months ago
Not that it's terribly important, but in the Lua circles, the reference implementation is usually referred to as PUC-Rio Lua.
zombiezen · 6 months ago
Thanks for letting me know! I've updated the blog post to reflect that terminology.
andrewmcwatters · 6 months ago
Oh, you’re welcome! I didn’t think the author would read this comment. Cool software!
osigurdson · 6 months ago
It was mostly funded by Petrobras in Brazil.
wavemode · 6 months ago
I'm surprised there was no mention of implementing Lua's coroutines via Go's goroutines.
shadowgovt · 6 months ago
That feels not quite correct. Lua coroutines aren't separate threads and trying to farm them out to goroutines (which are separate threads) risks violating expectations you can assume with non-concurrent execution. With coroutines, you can fairly believe that your state isn't going to change when you're running until you yield.
anaempromptu · 6 months ago
tfw you learn lua so you can build robots on minecraft
jhbadger · 6 months ago
Lua has a long history with gaming since the late 1990s. The LucasArts adventure game "Grim Fandango" (1998) used Lua internally, and more recently it seems to have become the standard language for "fantasy console" game development such as in PICO-8 and TIC-80.
photochemsyn · 6 months ago
Is it just me or is Go/Rust proseltyzing on HN kind of getting ridiculous?
jekwoooooe · 6 months ago
Go rocks for pretty much everything
osigurdson · 6 months ago
Go routines are very nice. Way better than async await nonsense in other languages. if err != nil {return .., err} gets pretty tedious however. Everything tends to be very mutable / nullable as well which could be better. Also not really any faster than Java/C# - just another GCed language.
jekwoooooe · 6 months ago
Go can be way faster than those. Garbage collection is not an issue at all if you write efficient code

And the error handling is way better than catching stuff because it’s so explicit

pjmlp · 6 months ago
Except for having a modern type system.
jekwoooooe · 6 months ago
What’s missing? It has generics and robust typing. Man this website must be full of old geezers with all the go hate I see