What is the process of creating an interpreted language? [duplicate]

跟風遠走 提交于 2019-12-03 08:08:10

You need to implement both a parser and an interpreter.

There is a great free text book called "Programming Languages: Application and Interpretation" that uses scheme to build increasingly more complex interpreters. It also serves as a great introduction to programming language features.

Check it out here: http://www.cs.brown.edu/~sk/Publications/Books/ProgLangs/

If Scheme isn't your cup of tea it may be worth looking into.

A few steps:

First, build the lexer and parser. This is really easy to do with common tools such as lex and yacc, or using a more modern framework such as Antlr (which is what I recommend). These tools will generate source code for your target language that you can then compile and include in your project.

The lexer and parser will build the internal representation of the source file. There are a few different ways of approaching this:

  1. In the bytecode model, the source file is compiled into a low-level internal language, for which you write a bytecode interpreter that directly executes the operations. This is the way that Perl and the .NET languages work, for example.
  2. In the object tree model, the source file is compiled into an object tree where every object knows how to execute itself. Once parsing is completed, you just call Exec() on the root object (which in turn calls Exec() on its children, etc.). This is basically the method that I use for my interpreted domain-specific language Phonix.

Take a look at the boost library "spirit" LL parser.

To create an interpreted language, you need to create two things:

  • A formal definition of the language's grammar
  • A parser that can read and interpret the language

Once you have defined the language itself, there are several tools available to assist in creating a language parser. The classic tools are lex and yacc, and their open-source versions flex and bison.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!