Translational Backus–Naur Form
   HOME

TheInfoList



OR:

Translational Backus–Naur Form (TBNF or Translational BNF) refers to
Backus–Naur form In computer science, Backus–Naur form (BNF, pronounced ), also known as Backus normal form, is a notation system for defining the Syntax (programming languages), syntax of Programming language, programming languages and other Formal language, for ...
, which is a
formal grammar A formal grammar is a set of Terminal and nonterminal symbols, symbols and the Production (computer science), production rules for rewriting some of them into every possible string of a formal language over an Alphabet (formal languages), alphabe ...
notation used to define the syntax of computer languages, such as
Algol ALGOL (; short for "Algorithmic Language") is a family of imperative computer programming languages originally developed in 1958. ALGOL heavily influenced many other languages and was the standard method for algorithm description used by the ...
, Ada, C++,
COBOL COBOL (; an acronym for "common business-oriented language") is a compiled English-like computer programming language designed for business use. It is an imperative, procedural, and, since 2002, object-oriented language. COBOL is primarily ...
, Fortran,
Java Java is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea (a part of Pacific Ocean) to the north. With a population of 156.9 million people (including Madura) in mid 2024, proje ...
,
Perl Perl is a high-level, general-purpose, interpreted, dynamic programming language. Though Perl is not officially an acronym, there are various backronyms in use, including "Practical Extraction and Reporting Language". Perl was developed ...
, Python, and many others. TBNF goes beyond BNF and extended BNF (EBNF) grammar notation because it not only defines the syntax of a language, but also defines the structure of the
abstract syntax tree An abstract syntax tree (AST) is a data structure used in computer science to represent the structure of a program or code snippet. It is a tree representation of the abstract syntactic structure of text (often source code) written in a formal ...
(AST) to be created in memory and the output intermediate code to be generated. Thus TBNF defines the complete translation process from input source code to intermediate code. Specification of the output intermediate code is optional, in which case you will still get automatic AST creation and have the ability to define its structure in the grammar.


Overview

The TBNF concept was first published in April 2006 in a paper at SIGPLAN Notices, a special interest group of the ACM. Here is a sample grammar specified in TBNF: /* TBNF Grammar for a simple language. Five node arguments are used in this grammar to avoid having to create node actions. */ /* Input Tokens. */ => error() ; => lookup(); // Lookup & store in symbol table. => lookup(); // Lookup & store in symbol table. ; /* Operator precedence. */ << // Lowest priority. << << // Highest priority. /* Productions. */ Goal -> Program... *> goal_ (0,,"\t\tSTART\n" ,,"\t\tEOF\n\n") Program -> 'program' '' *> program_ (2,,"\t\tPROGRAM %s\n",,"\t\tEND PROGRAM %s\n") Stmt -> Assignment -> IfThen -> IfElse -> IfThenElse Assignment ~> Target '=' Exp ';' *> assign_ (0,, ,,"\t\tSTORE\n") IfThen -> 'if' RelExp Then 'endif' *> if_ (0,,"if&0:\n",,"endif&0:\n" ) IfElse -> 'if' RelExp Else 'endif' *> if_ (0,,"if&0:\n",,"endif&0:\n" ) IfThenElse -> 'if' RelExp Then2 Else2 'endif' *> if_ (0,,"if&0:\n",,"endif&0:\n" ) Target -> *> ident_ (1,,,,"\t\tLADR %s\n") RelExp -> Exp '

' Exp *> eq_ (0,,,,"\t\tEQ\n" ) -> Exp '!=' Exp *> ne_ (0,,,,"\t\tNE\n" ) Exp -> Primary -> Exp '+' Exp *> add_ (0,,,,"\t\tADD\n") -> Exp '-' Exp *> sub_ (0,,,,"\t\tSUB\n") -> Exp '*' Exp *> mul_ (0,,,,"\t\tMUL\n") -> Exp '/' Exp *> div_ (0,,,,"\t\tDIV\n") Primary -> *> intr_ (1,,,,"\t\tLOAD %s\n") -> *> ident_ (1,,,,"\t\tLOAD %s\n") -> '(' Exp ')' Then -> 'then' Stmt... *> then_ (0,,"\t\tBR NZ endif&1\nthen&1:\n",,) Else -> 'else' Stmt... *> else_ (0,,"\t\tBR Z endif&1\nelse&1:\n" ,,) Then2 -> 'then' Stmt... *> then2_ (0,,"\t\tBR NZ else&1\nthen&1:\n" ,,) Else2 -> 'else' Stmt... *> else2_ (0,,"\t\tBR endif&1\nelse&1:\n" ,,) /* End of Grammar. */
Given this input: program test Running the translator generated from the above grammar would produce this output: START PROGRAM test if1: LOAD a LOAD 0 EQ BR NZ else1 then1: if2: LOAD x LOAD 0 EQ BR NZ else2 then2: LOAD 10 LADR b STORE BR endif2 else2: LOAD 20 LADR b STORE endif2: BR endif1 else1: if3: LOAD x LOAD 1 EQ BR NZ else3 then3: LOAD 30 LADR b STORE BR endif3 else3: LOAD 40 LADR b STORE endif3: endif1: END PROGRAM test EOF


References

{{DEFAULTSORT:Translational Backus-Naur form Compiling tools Parser generators Compiler construction