How to Write Your Own Compiler (2009)
staff.polito.it
How to Write Your Own Compiler (2009)
1–10 of 43 posts
Re: How to Write Your Own Compiler (2009)
#2Re: How to Write Your Own Compiler (2009)
#3Re: How to Write Your Own Compiler (2009)
#4> " rel="nofollow">http://www.w3.org/TR/REC-html40">
Re: How to Write Your Own Compiler (2009)
#5From its earliest year UNIX/Linux had utilities including lex and yacc that automate much of these fuctions. I tended to use awk to create powerful new command scripts.
Re: How to Write Your Own Compiler (2009)
#6One of the best resources I've seen on this is Capon and Jinks 'Compiler Engineering Using Pascal' (1988; ISBN 0-333-47155-5) if you can get hold of it http://www.cs.man.ac.uk/~pjj/book.html
https://www.amazon.com/Brinch-Hansen-Pascal-Compilers/dp/013...
Re: How to Write Your Own Compiler (2009)
#7One of the best resources I've seen on this is Capon and Jinks 'Compiler Engineering Using Pascal' (1988; ISBN 0-333-47155-5) if you can get hold of it http://www.cs.man.ac.uk/~pjj/book.html
Also Brinch Hansen on Pascal Compilers : https://www.amazon.com/Brinch-Hansen-Pascal-Compilers/dp/013...
Uau! I should take care of my old books.
Re: How to Write Your Own Compiler (2009)
#8If you're wondering why that page looks the way it does, well: > " rel="nofollow">http://www.w3.org/TR/REC-html40">
Re: How to Write Your Own Compiler (2009)
#9If you're wondering why that page looks the way it does, well: > " rel="nofollow">http://www.w3.org/TR/REC-html40">
Re: How to Write Your Own Compiler (2009)
#10I've had a lot of fun hacking Forths, writing my own languages didn't really click until I finally had a serious look. Forth skips on most of the complexity of getting from bytes to semantics; even Lisp is complex in comparison; but is still powerful enough to do interesting things; and the best foundation for DSL's I've come across.
My latest rabbit hole is called Snabel: https://github.com/andreas-gone-wild/snackis/blob/master/sna...