So You Want to Build a Language VM - Part 23 - SSH Server: Part 1
Covers the first part of adding an SSH server to the Iridium VM
Intro
So You Want to Build a Language VM - Part 22 - Parallelism: Part 1
Adds in setting the number of logical cores found on the host system
Intro
Hello! In this post, our focus is going to be on starting to add some parallelism to the Iridium VM.
So You Want to Build a Language VM - Part 21 - Header Offset
Adds in calculating the starting PC location based on how much read-only data there is
Intro
So You Want to Build a Language VM - Part 20 - Benchmarks
Adds in Criterion to do benchmarks
Doh
We’ve been having so much fun, we haven’t written any benchmarks! Though it isn’t the most exciting thing to write, they are important. == Benchmarks There’s two things to understand about benchmarks:
So You Want to Build a Language VM - Part 18b - REPL Command Parsing
Improves command processing in the REPL
Intro
Hello! In this part, we’re going to factor out the command parsing done in the REPL for user input. Right now, there isn’t much flexibility; a user cannot type:
So You Want to Build a Language VM - Part 19 - Starting on Palladium
Begins building the higher level language and compiler
Introduction
If you’ve been following the development of Iridium, you know how heavily it uses Nom
to parse the assembly language. I hope you liked it, because we’re going to be using Nom
for this as well. =)
In this tutorial, we’re going to start creating a language called Palladium
that will compile down to the assembly code we’ve been using.
Before we get started, please remember…