RE/flex | |
Developer: | Dr. Robert van Engelen |
Latest Release Version: | 4.0 |
Operating System: | Cross-platform |
Programming Language: | C++ |
Genre: | Lexical analysis |
License: | BSD license |
Website: | https://github.com/Genivia/RE-flex |
RE/flex (regex-centric, fast lexical analyzer)[1] [2] is a free and open source computer program written in C++ that generates fast lexical analyzers (also known as "scanners" or "lexers")[3] [4] in C++. RE/flex offers full Unicode support, indentation anchors, word boundaries, lazy quantifiers (non-greedy, lazy repeats), and performance tuning options. RE/flex accepts Flex lexer specifications and offers options to generate scanners for Bison parsers. RE/flex includes a fast C++ regular expression library.
The RE/flex project was designed and implemented by professor Robert van Engelen in 2016 and released as free open source. The software evolved with several contributions made by others. The RE/flex tool generates lexical analyzers based on regular expression ("regex") libraries, instead of fixed DFA tables generated by traditional lexical analyzer generators.[5]
The RE/flex lexical analyzer generator accepts an extended syntax of Flex lexer specifications as input. The RE/flex specification syntax is more expressive than the traditional Flex lexer specification syntax and may include indentation anchors, word boundaries, lazy quantifiers (non-greedy, lazy repeats), and new actions such as wstr
to retrieve Unicode wide-string matches.
A lexer specification is of the form:
The Definitions section includes declarations and customization options, followed by name-pattern pairs to define names for regular expression patterns. Named patterns may be referenced in other patterns by embracing them in {
and }
. The following example defines two names for two patterns, where the second pattern number
uses the previously named pattern digit
:
%class
%init
%option flex
digit [0-9]number +
The Rules section defines pattern-action pairs. The following example defines a rule to translate a number to the lexer class integer value
member:
The User Code section typically defines C/C++ functions, for example a main
program:
The yyFlexLexer
class is generated by RE/flex as instructed by the %option flex
directive in the lexer specification. The generated lex.yy.cpp
source code contains the algorithm for lexical analysis, which is linked with the libreflex
library.
The generated algorithm for lexical analysis is based on the concept that any regular expression engine can in principle be used to tokenize input into tokens: given a set of regular expression patterns
pi
i=1,\ldots,n
"(<math>p_1</math>)|(<math>p_2</math>)|...|(<math>p_n</math>)"
with alternations may be specified to match and tokenize the input. In this way, the group capture index of a matching pattern pi
pi
This approach makes it possible for any regex library that supports group captures to be utilized as a matcher. However, note that all groupings of the form (X)
in patterns must be converted to non-capturing groups of the form (?:X)
to avoid any unwanted group capturing within sub-expressions.
The following RE/flex-generated yyFlexLexer
class yylex
method repeatedly invokes the matcher's scan
(continuous partial matching) operation to tokenize input:
If none of the patterns match and the end-of-file (EOF) is not reached, the so-called "default rule" is invoked. The default rule echo's the current input character and advances the scanner to the next character in the input.
The regular expression pattern "(<math>p_1</math>)|(<math>p_2</math>)|...|(<math>p_n</math>)"
is produced by RE/flex from a lexer specification with rules of pattern-action pairs:
From this specification, RE/flex generates the aforementioned yyFlexLexer
class with the yylex
method that executes actions corresponding to the patterns matched in the input. The generated yyFlexLexer
class is used in a C++ application, such as a parser, to tokenize the input into the integer-valued tokens returned by the actions in the lexer specification. For example:
Note that yylex
returns an integer value when an action executes return token_value;
. Otherwise, yylex
does not return a value and continues scanning the input, which is often used by rules that ignore input such as comments.
This example tokenizes a file. A lexical analyzer often serves as a tokenizer for a parser generated by a parser generator such as Bison.
RE/flex is compatible with Flex specifications when %option flex
is used. This generates a yyFlexLexer
class with yylex
method. RE/flex is also compatible with Bison using a range of RE/flex options for complete coverage of Bison options and features.
By contrast to Flex, RE/flex scanners are thread-safe by default on work with reentrant Bison parsers.
RE/flex supports Unicode regular expression patterns in lexer specifications and automatically tokenizes UTF-8, UTF-16, and UTF-32 input files. Code pages may be specified to tokenize input files encoded in ISO/IEC 8859 1 to 16, Windows-1250 to Windows-1258, CP-437, CP-850, CP-858, MacRoman, KOI-8, EBCDIC, and so on. Normalization to UTF-8 is automatically performed by internal incremental buffering for (partial) pattern matching with Unicode regular expression patterns.
RE/flex integrates indent and dedent matching directly in the regular expression syntax with new \i
and \j
anchors. These indentation anchors detect changes of line indentation in the input. This allows many practical scenarios to be covered to tokenize programming languages with indented block structures. For example, the following lexer specification detects and reports indentation changes:
Lazy quantifiers may be associated with repeats in RE/flex regular expression patterns to simplify the expressions using non-greedy repeats, when applicable. Normally matching is "greedy", meaning that the longest pattern is matched. For example, the pattern a.*b
with the greedy *
repeat matches aab
, but also matches abab
because .*
matches any characters except newline and abab
is longer than ab
. Using a lazy quantifier ?
for the lazy repeat *?
, pattern a.*?b
matches ab
but not abab
.
As a practical application of lazy quantifiers, consider matching C/C++ multiline comments of the form /*...*/
. The lexer specification pattern *?
matches multiline comments. Without lazy repeats the pattern "..."
is allowed in lexer specifications only, this construct is comparable to the \Q...\E
quotations supported by most regex libraries.)
Besides the built-in RE/flex POSIX regex pattern matcher, RE/flex also supports PCRE2, Boost.Regex and std::regex pattern matching libraries. PCRE2 and Boost.Regex offer a richer regular expression pattern syntax with Perl pattern matching semantics, but are slower due to their intrinsic NFA-based matching algorithm.
Lex, Flex and RE/flex translate regular expressions to DFA, which are implemented in tables for run-time scanning. RE/flex differs from Lex and Flex in that the generated tables contain a list of opcode words executed by a virtual machine to perform pattern matching. In addition, a DFA implemented in code instead of opcode tables is generated with the --fast
option.
For example, the following direct-coded DFA for pattern \w+
is generated with option --fast
:
A list of virtual machine opcode words for pattern \w+
is generated with option --full
:
The RE/flex built-in profiler can be used to measure the performance of the generated scanner automatically. The profiler instruments the scanner source code to collect run-time metrics. At run-time when the instrumented scanner terminates, the profiler reports the number of times a rule is matched and the cumulative time consumed by the matching rule. Profiling includes the time spent in the parser when the rule returns control to the parser. This allows for fine-tuning the performance of the generated scanners and parsers. Lexer rules that are hot spots, i.e. computationally expensive, are detected and can be optimized by the user in the lexer source code.
Also debugging of the generated scanner is supported with Flex-compatible options. Debugging outputs annotated lexer rules during scanning.