I came across this some time ago, may be of interest:<p><a href="https://github.com/Wilfred/remacs" rel="nofollow">https://github.com/Wilfred/remacs</a><p>It's a port of the EmacsOS to Rust, should be able to run all your elisp code at some point.
<i>The main difference between the current mark-and-sweep garbage
collector and the SpiderMonkey garbage collector is that the latter is
a copying garbage collector and precise, meaning that objects may
change address during GC and that only typed values, not memory
locations that might or might not be, must be trace</i><p>Out of all the types of gc out there going to a copying gc seems not very compelling. Mark and sweep is not bad at all (well understood, straight forward to implement), and you don't have to worry about double dereferencing pointers (ie some implementations of Cheneys, I don't know if spidermonkey refercences are indirect pointers to one of two buffers).