Sunday, November 27, 2022

Writing Interpreters in Rust: A Guide

In this book we will walk through the basics of interpreted language implementation in Rust with a focus on the challenges that are specifc to using Rust.

At a glance, these are:

  • A custom allocator for use in an interpreter
  • A safe-Rust wrapper over allocation
  • A compiler and VM that interact with the above two layers

The goal of this book is not to cover a full featured language but rather to provide a solid foundation on which you can build further features. Along the way we'll implement as much as possible in terms of our own memory management abstractions rather than using Rust std collections.

Bob Nystrom's Crafting Interpreters is recommended introductory reading to this book for beginners to the topic. Bob has produced a high quality, accessible work and while there is considerable overlap, in some ways this book builds on Bob's work with some additional complexity, optimizations and discussions of Rust's safe vs unsafe.

We hope you find this book to be informative!

All the links below are acknowledged as inspiration or prior art.



from Hacker News https://ift.tt/qTmOZpo

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.