A Declarative Extension of Parsing Expression Grammars for Recognizing Most Programming Languages
Total Page:16
File Type:pdf, Size:1020Kb
Journal of Information Processing Vol.24 No.2 256–264 (Mar. 2016) [DOI: 10.2197/ipsjjip.24.256] Regular Paper A Declarative Extension of Parsing Expression Grammars for Recognizing Most Programming Languages Tetsuro Matsumura1,†1 Kimio Kuramitsu1,a) Received: May 18, 2015, Accepted: November 5, 2015 Abstract: Parsing Expression Grammars are a popular foundation for describing syntax. Unfortunately, several syn- tax of programming languages are still hard to recognize with pure PEGs. Notorious cases appears: typedef-defined names in C/C++, indentation-based code layout in Python, and HERE document in many scripting languages. To recognize such PEG-hard syntax, we have addressed a declarative extension to PEGs. The “declarative” extension means no programmed semantic actions, which are traditionally used to realize the extended parsing behavior. Nez is our extended PEG language, including symbol tables and conditional parsing. This paper demonstrates that the use of Nez Extensions can realize many practical programming languages, such as C, C#, Ruby, and Python, which involve PEG-hard syntax. Keywords: parsing expression grammars, semantic actions, context-sensitive syntax, and case studies on program- ming languages invalidate the declarative property of PEGs, thus resulting in re- 1. Introduction duced reusability of grammars. As a result, many developers need Parsing Expression Grammars [5], or PEGs, are a popu- to redevelop grammars for their software engineering tools. lar foundation for describing programming language syntax [6], In this paper, we propose a declarative extension of PEGs for [15]. Indeed, the formalism of PEGs has many desirable prop- recognizing context-sensitive syntax. The “declarative” exten- erties, including deterministic behaviors, unlimited look-aheads, sion means no arbitrary semantic actions that are written in a gen- and integrated lexical analysis known as scanner-less parsing. eral purpose programming language. In our proposal, a variety of Due to these properties, PEGs allow grammar developers to avoid semantic actions are abstracted to two modeled states: the dangling if-else problem and to express the contextual tokens • Symbol Table – a table that manages a list of symbols that and the nested block comment, which are known problems in tra- are differently treaded in a specific context ditional LR(k) and LL(k) grammars. • Parsing Condition – a Boolean flag that dynamically Despite the powerful features of PEGs, several real syntax used switches the parsing behaviors. in popular programming languages is hard to express. This prob- Nez is an extended PEG language that is designed to provide lem comes chiefly from context-sensitive syntax, whose mean- additional operators to handle the above states in parsing contexts ings are changed depending on the parsing context. Typical ex- of PEGs. In this paper, we call Nez extensions to distinguish from amples of such syntax are: pure PEGs operators. • Typedef-defined name in C/C++ [5], [6] Using Nez, we have performed extensive case studies by spec- • HERE document appearing in Perl, Ruby, and other many ifying various popular programming languages. The grammars scripting languages that we have developed for now include C, Java, C#, JavaScript, • Indentation-based code layout appearing in Python and Lua, Ruby, and Python. Since these grammars include many Haskell [1] context-sensitive syntax, we conclude that Nez extensions pro- • Contextual keywords used in C# and other evolving lan- vide improved expressiveness for programming languages in guages [3] practical manners. Technically, a language grammar involving such context- The remainder of this paper proceeds as follows. Section 2 de- sensitive syntax is implemented with semantic actions [8], an em- scribes PEG-hard syntax patterns. Section 3 presents a language bedded code that is hocked to execute the extended action at the design for Nez. Section 4 demonstrates case studies with our parsing time. Since semantic actions are written in a host lan- emphasis on Nez extensions. Section 5 briefly reviews related guage of the generated parser, the use of semantic actions may work. Section 6 concludes the paper. The tools and grammars that are presented in this paper are available online at http://nez- 1 Graduate School of Electronic and Computer Engineering, Yokohama peg.github.io/. National University, Yokohama, Kanagawa 240–8501, Japan †1 Presently with Zuken Inc. a) [email protected] c 2016 Information Processing Society of Japan 256 Journal of Information Processing Vol.24 No.2 256–264 (Mar. 2016) • a type cast of the number 1 to the type T 2. Background and Problem Statement Note that Java avoids this problem by a careful design of lan- 2.1 PEGs guage syntax. The casting (T)-1 is disallowed by restricting that PEGs are a recognition-based foundation for describing syn- the unary + and - is only available for primitive number types. tax, formalized by Ford [5]. While PEGs are relatively new, most 2.2.2 HERE Document (in Ruby, Bash, etc.) of their notations are familiar, coming from EBNF (e.g., produc- The HERE document is a string literal for multiple lines, tions and recursive nonterminals) and regular expressions (kleene widely adopted in scripting languages, such as Bash, Perl, and operators such as ? and *). Figure 1 shows a PEG, which ex- Ruby. While there are many variations, the users are in common presses the basic mathematical notations. allowed to define a delimiting identifier that stands for an end of The interpretation of PEGs significantly differs from CFGs in lines. In the following, the symbol END is an example of the user- that PEG’s choice is ordered. That is, the first subexpression of defined delimiting identifier. a choice is always matched first, and the next subexpression is print <<END attempted only if the first fails. This brings us to deterministic the string parsing behavior, which is regarded as desirable for parsing non- next line natural languages. The ordered choice, on the contrary, disallows END the left recursion, because the deterministic interpretation of the In PEGs, the syntax of a HERE document can be specified with left recursion results in unlimited looping. The PEG example in multi-lines that continue until the nonterminal DELIM is matched Fig. 1 is defined in a form of eliminating left recursions. in the head of a line. However, we cannot assume specific key- The expressiveness of PEGs is almost similar to that of deter- words or possible identifiers to define DELIM, since the user- ministic CFGs (such as LALR and LL family). In general, PEGs defined delimiting identifiers are totally unpredictable. can express all LR grammar languages, which are widely used in 2.2.3 Indentation-based Layout (in Python, Haskell, etc.) a standard parser generator such as Lex/Yacc. In addition, PEG’s Indentation-based code layout is a popular syntax that uses the syntactic predicates (& and !) provide us with the expressiveness depth of indentations for representing the beginning and the end of unlimited look-aheads, suggesting that PEGs are more expres- of a code block. Typically, Python and Haskell are well known sive than CFGs. As a result, PEGs can recognize non context free for such indentation-based code layout, a large number of other languages such as {an bn cn | n > 0}. languages including YAML, F#, and Markdown also use inden- tation. 2.2 Context-Sensitive Syntax PEGs are very powerful, but, in practice, are not able to ex- mapAccumR f = loop press all programming language syntax. This mostly comes from where loop acc (x:xs) = (acc, x : xs) where (acc, x) = f acc x context-sensitive syntax, where the meaning of symbols may vary (acc, xs) = loop acc xs in different contexts. Note that the same limitation commonly ex- loop acc [] = (acc, []) ists in CFG-based grammars. This subsection demonstrates typi- cal examples of context-sensitive syntax. The problem with PEGs is that the user is allowed to use ar- 2.2.1 Typedef-defined Name (in C/C++) bitrary indentation for their code layout. As with in delimiting Typedef-defined name in C/C++ is a typical example of identifiers in the HERE documents, it is hard to prepare all possi- context-sensitive syntax. The identifier is simply supposed as a ble indentations for code layout. sequence of word characters; for example, T is a legal identifier 2.2.4 Contextual Keyword in C# in C/C++. On the other hand, the following typedef statement Popular programming languages are long standing, and then allows the users to declare T as a new type name. evolve to meet the user’s demands. In the language evolution, adding a new keyword is often considered to identify a new syn- typedef unsigned int T; tactical structure. On the other hand, a backward compatibility Once T is a declared type, T is not regarded as an identifier. problem inevitably arises since the added keyword might have In general, the interpretation of an identifier class should be per- already been used as identifiers in legacy code. formed in the phase of semantic analysis, not in syntactic analy- A contextual keyword is used to avoid the compatibility prob- await sis. However, in C/C++, we need to produce a different syntax lem. For example, C#5.0 newly added the keyword, only async tree depending on the contextually varying type of T.Thatis,an available in the qualified method. expression (T)-1 can be parsed differently: async Task<string> GetPageAsync(string path) • a subtract operator of a variable T and the number 1, or { HttpClient c = new HttpClient(); return await c.GetStringAsync(uri + path); } As with in typedef names, the different meaning of await needs to produce different syntax trees in the phase of syntac- tic analysis. It is also hard to specify different syntax analysis Fig. 1 Mathematical Operators in a PEG. c 2016 Information Processing Society of Japan 257 Journal of Information Processing Vol.24 No.2 256–264 (Mar.