What are the best resources on designing a new language? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:19:07Z http://stackoverflow.com/feeds/question/10216 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language 10 What are the best resources on designing a new language? James A. Rosen 2008-08-13T18:53:24Z 2009-04-25T18:13:23Z <p>I've been toying with the idea of building a new general purpose programming language lately, and I was wondering where to go for help. Does anyone have a favorite book? Tutorial? Tools? I see the primary benefit of the project being that I will learn more about language design. I have little hope that it will become the next Ruby or whatever. Still, I'd like to put real thought into it and understand the decisions I'm making.</p> <p>I'm not looking for advice on the language itself here, although I may ask particular questions along the way.</p> <p>Edit:</p> <p>I hesitated to provide specifics at first, because I didn't want to bias the answers. I have had some experience with ANTLR in college, but that was a while back, and I didn't do so well in my compilers course. I still can't remember the difference between LALR and, um, the opposite of LALR.</p> <p>That said, I'm thinking of targeting the Java VM because it has vast deployment in Enterprise America (which is where I'm likely to spend a good portion of my career), and it's very well supported. I may look at the Parrot VM as well.</p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/10299#10299 0 Answer by Will for What are the best resources on designing a new language? Will 2008-08-13T19:43:18Z 2008-08-13T19:43:18Z <p>A good starting point might be <a href="http://msdn.microsoft.com/en-us/library/bb126235.aspx" rel="nofollow" title="I/O management and disk scheduling">DSL Tools.</a></p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/10316#10316 2 Answer by aardvark for What are the best resources on designing a new language? aardvark 2008-08-13T20:06:55Z 2008-08-13T20:06:55Z <p>You can define a syntax using <a href="http://cui.unige.ch/db-research/Enseignement/analyseinfo/AboutBNF.html" rel="nofollow">Backus Naur Form</a>.</p> <p>I've found the book <em>Brinch Hansen on Pascal Compilers</em> (although the title says Pascal, the advice can be generalized to other languages) to be both readable and informative in explaining semantic considerations. These are rules to guarantee that your grammar is understandable to a compiler. I don't know if this book is still in print, but you can probably find a used copy somewhere.</p> <p>The <a href="http://xamber.org/" rel="nofollow">Amber Scripting Language</a> website has lots of details on the design of the Amber language, and provides a good example to study.</p> <p>You might want to look into compiler tools like <a href="http://dinosaur.compilertools.net/" rel="nofollow">Lex and Yacc</a> to build a compiler for your language.</p> <p>Finally, you might take a look at the <a href="http://www.parrotcode.org/" rel="nofollow">Parrot Virtual Machine</a> and the languages others have built for it.</p> <p>These should at least give you some ideas on the way to go.</p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/10319#10319 1 Answer by John the Statistician for What are the best resources on designing a new language? John the Statistician 2008-08-13T20:13:25Z 2008-08-13T20:13:25Z <p>I like ANTLRWorks for prototyping and debugging grammars when working on languages with Java.</p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/10329#10329 1 Answer by Derek Park for What are the best resources on designing a new language? Derek Park 2008-08-13T20:22:46Z 2008-08-14T01:45:24Z <p>If you're completely new to compilers, I would strongly suggest that you get <a href="http://www.amazon.com/s/ref=nb_ss_gw?url=search-alias%3Dstripbooks&amp;field-keywords=compiler&amp;x=0&amp;y=0" rel="nofollow">a book</a>. For learning an entirely new subject, I almost always find books to be better than tutorials. The material is often better presented in books, and the material definitely gets better coverage. A tutorial just can't complete with 400 dedicated pages. A good book will have exercises to help you learn the material as well.</p> <p>I recommend <a href="http://rads.stackoverflow.com/amzn/click/0534939724" rel="nofollow">Compiler Construction: Principles and Practice</a> by Louden. It's well written, and has a very practical slant. It's less about theory and more about getting stuff built. There are also several free books online dedicated to compilers, including Wirth's <a href="http://www-old.oberon.ethz.ch/WirthPubl/CBEAll.pdf" rel="nofollow">Compiler Construction</a>.</p> <p>Edit: I have no idea what Markdown is mangling my links. They look fine the edit preview. <a href="http://stackoverflow.uservoice.com/pages/general/suggestions/17605" rel="nofollow">Filed a bug report</a>.</p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/10361#10361 8 Answer by Chris Hanson for What are the best resources on designing a new language? Chris Hanson 2008-08-13T20:52:02Z 2008-08-13T20:52:02Z <p>I've lent out my hardcopy of <a href="http://www.oberon.ethz.ch/WirthPubl/CBEAll.pdf" rel="nofollow" title="Compiler Construction (PDF)">Compiler Construction</a> (free PDF!) by <a href="http://www.inf.ethz.ch/personal/wirth/" rel="nofollow" title="Niklaus Wirth">Niklaus Wirth</a> — the creator of Pascal — several times as an "introduction to building a compiler" book. It's not the most comprehensive book on creating compilers, but it's a short, concise read and will get you started quickly. </p> <p>Also, <strong>do not</strong> write your own JIT and consider very carefully whether you should even create your own virtual machine. <a href="http://llvm.org/" rel="nofollow" title="LLVM">LLVM</a>, the Low-Level Virtual Machine, is a very well-designed Open Source framework with an extremely liberal license, and it's specifically for doing code generation and optimization for a wide variety of target CPUs given input in an abstract RISC instruction set.</p> <p>Essentially, with LLVM, you generate LLVM "bitcode" and ask LLVM to perform optimizations and code generation for your target CPU based on that. The bitcode is itself a very efficient representation, and it has a property (<a href="http://en.wikipedia.org/wiki/Static_single_assignment_form" rel="nofollow" title="Single Static Assignment (SSA) form">single static assignment form</a>) that makes it very straightforward to do good optimization with. The effort you spend figuring out how to implement your own interpreter or virtual machine would be almost guaranteed to be better spent learning how to use LLVM for your code generation; after all, if you do that, you'll get both static and dynamic native code generation for a wide variety of platforms (including exotic ones like Cell).</p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/13997#13997 0 Answer by Mark Cidade for What are the best resources on designing a new language? Mark Cidade 2008-08-17T22:50:23Z 2008-08-17T22:50:23Z <p>There's <a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">Let's Build a Compiler</a></p> <p>I have other links at <a href="http://delicious.com/marxidad/langdev" rel="nofollow">http://delicious.com/marxidad/langdev</a></p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/14976#14976 2 Answer by mk for What are the best resources on designing a new language? mk 2008-08-18T17:41:58Z 2008-08-18T17:41:58Z <p>I have not read it but many people tout the <a href="http://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools" rel="nofollow">Dragon Book</a> as THE book for compilers.</p> <p>That being said I have also heard that it is much too much data to start out with and that you should start off with something much simpler. Peruse through a bit of <a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">Lets build a compiler</a>. Try some things out.</p> <p>In fact <a href="http://prog21.dadgum.com/30.htm" rel="nofollow">here is a good resource</a>. It has the linked above Lets build a compiler as well as another interesting article called A Nanopass Framework for Compiler Education.</p> <blockquote> <p>That brings me to A Nanopass Framework for Compiler Education [PDF] by Sarkar, Waddell, and Dybvig. The details of this paper aren't quite as important as the general concept: a compiler is nothing more than a series of transformations of the internal representation of a program. The authors promote using dozens or hundreds of compiler passes, each being as simple as possible. Don't combine transformations; keep them separate. The framework mentioned in the title is a way of specifying the inputs and outputs for each pass. The code is in Scheme, which is dynamically typed, so data is validated at runtime. </p> </blockquote> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/82689#82689 6 Answer by Antti Sykäri for What are the best resources on designing a new language? Antti Sykäri 2008-09-17T12:40:52Z 2008-09-17T12:56:30Z <p>Books:</p> <ul> <li><p>If you only had time to read one language design / implementation book, I'd recommend reading <a href="http://rads.stackoverflow.com/amzn/click/0126339511" rel="nofollow">Programming Language Pragmatics</a> for both inspiration and information.</p></li> <li><p>If you really want to get serious with ANTLR (and it's not a bad choice), you should pick up <a href="http://pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">The Definitive ANTLR reference</a>. The PDF version costs just $24 and is far superior to the documentation that can be found online.</p></li> <li><p>For an entertaining and educational story about designing a real world language, I heartily recommend <a href="http://rads.stackoverflow.com/amzn/click/0201543303" rel="nofollow">The Design and Evolution of C++</a>. At least if statically typed, compiled-to-native-code languages are your cup of tea.</p></li> </ul> <p>As for language design, I've found the following articles inspiring:</p> <ul> <li><p>Paul Graham: <a href="http://www.paulgraham.com/langdes.html" rel="nofollow">Five Questions About Language Design</a>, <a href="http://www.paulgraham.com/taste.html" rel="nofollow">Taste for Makers</a>, <a href="http://www.paulgraham.com/power.html" rel="nofollow">Succinctness is Power</a>, <a href="http://www.paulgraham.com/desres.html" rel="nofollow">Design and Research</a> and <a href="http://www.paulgraham.com/articles.html" rel="nofollow">others</a></p></li> <li><p>Steve Yegge: <a href="http://steve-yegge.blogspot.com/2007/01/pinocchio-problem.html" rel="nofollow">http://steve-yegge.blogspot.com/2007/01/pinocchio-problem.html</a>, <a href="http://steve-yegge.blogspot.com/2007/02/next-big-language.html" rel="nofollow">The Next Big Language</a></p></li> </ul> <p>Discussion forums:</p> <ul> <li><p>If you are looking for information regarding a particular design issue, it has been probably discussed in <a href="http://groups.google.fi/group/comp.lang.misc/topics" rel="nofollow">comp.lang.misc</a>. Not too active nowadays.</p></li> <li><p>The <a href="http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&amp;group=digitalmars.D" rel="nofollow">D language newsgroup</a> contains some good language design specific discussion, or at least it did when I frequented there a couple of years ago.</p></li> <li><p><a href="http://lambda-the-ultimate.org/" rel="nofollow">Lambda the Ultimate</a> is mostly about theoretical functional programming stuff but occasionally touches upon language design issues (for example, <a href="http://lambda-the-ultimate.org/node/687#comment-18074" rel="nofollow">Some words of advice on language design</a>)</p></li> </ul> <p>Interesting languages-under-design I've bumped upon are <a href="http://jolt-lang.org/" rel="nofollow">Jolt</a>, Heron and and <a href="http://web.archive.org/web/20020616202714/www.regexps.com/labnotes/devo-meta-x/view-topic/PicoC/IntroTopic" rel="nofollow">PicoC</a> (from the Internet Archive as the pages are no longer available as they were.)</p> <p>Link to Heron at Internet Archive (MarkDown formatter doesn't support * in URL):</p> <p><a href="http://web.archive.org/web/" rel="nofollow">http://web.archive.org/web/</a>*/<a href="http://www.heron-language.com/" rel="nofollow">http://www.heron-language.com/</a></p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/395496#395496 0 Answer by joel.neely for What are the best resources on designing a new language? joel.neely 2008-12-27T22:14:44Z 2008-12-27T22:14:44Z <p>I'd suggest looking at the reading list from <a href="http://lambda-the-ultimate.org/node/492" rel="nofollow">this discussion on "Lambda the Ultimate"</a> (a discussion site targeted for academic programming language research and advanced practitioners).</p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/789374#789374 2 Answer by eKek0 for What are the best resources on designing a new language? eKek0 2009-04-25T17:33:05Z 2009-04-25T17:33:05Z <p>Definitely, the <a href="http://rads.stackoverflow.com/amzn/click/0201100886" rel="nofollow">Dragon Book</a> is the resource you are looking for.</p> <p>It will give you a wide range of topics to pay attention when building your compiler, but if you never read about this kind of topics it may be a little difficult. For help in formal language theory you can get <a href="http://rads.stackoverflow.com/amzn/click/0201441241" rel="nofollow">this</a> book.</p> <p>Also, see my resource list <a href="http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/789357#789357">here</a> for more information.</p> http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/789432#789432 6 Answer by Damien Pollet for What are the best resources on designing a new language? Damien Pollet 2009-04-25T18:13:23Z 2009-04-25T18:13:23Z <p>I'm rather surprised that most of the answers only consider compiler writing. But the compiler only a small and rather simple part. A complete language is way more than that, it's the model, the syntax, and the tools, etc. So,</p> <p><strong>Stand on the shoulder of giants</strong></p> <ul> <li>Learn Lisp. Virtually all known language features have been implemented in it.</li> <li>Learn Smalltalk. The compiler and the debugger are both written in Smalltalk and their code is available for reading in any image.</li> <li>Learn a functional language like Haskell or O'Caml. This is how to do static types seriously, if you're on that side of the static/dynamic argument.</li> <li>Think of the syntax as a user interface, with all the affordance/usability questions this suggests.</li> </ul> <p>Also, keep an open mind and a critical eye for technical choices. E.g. the traditional parsing algorithms are indeed well documented in textbooks, but the whole family of PEG and packrat parsers are really simple and efficient, and way more debuggable than table-driven LALR algorithms. You also probably don't want a complicated compiler, e.g. Chrome V8's compiler was designed as an extremely simple one, for robustness, but it still outperforms other JS implementations.</p> <p>Speaking of a debugger, design the tools with the language. IMHO every language should come with pretty-printer, real debugger, refactoring support, etc.</p>