Scroll to navigation

RE2C(1) RE2C(1)

NAME

re2c - compile regular expressions to code

SYNOPSIS

re2c [OPTIONS] INPUT [-o OUTPUT]

re2go [OPTIONS] INPUT [-o OUTPUT]

DESCRIPTION

re2c is a tool for generating fast lexical analyzers for C, C++ and Go.

SYNTAX

A re2c program consists of normal code intermixed with re2c blocks and directives. Each re2c block may contain definitions, configurations and rules. Definitions are of the form name = regexp; where name is an identifier that consists of letters, digits and underscores, and regexp is a regular expression. Regular expressions may contain other definitions, but recursion is not allowed and each name should be defined before used. Configurations are of the form re2c:config = value; where config is the configuration descriptor and value can be a number, a string or a special word. Rules consist of a regular expression followed by a semantic action (a block of code enclosed in curly braces { and }, or a raw one line of code preceded with := and ended with a newline that is not followed by a whitespace). If the input matches the regular expression, the associated semantic action is executed. If multiple rules match, the longest match takes precedence. If multiple rules match the same string, the earlier rule takes precedence. There are two special rules: default rule * and EOF rule $. Default rule should always be defined, it has the lowest priority regardless of its place and matches any code unit (not necessarily a valid character, see encoding support). EOF rule matches the end of input, it should be defined if the corresponding method for handling the end of input is used. If start conditions are used, rules have more complex syntax. All rules of a single block are compiled into a deterministic finite-state automaton (DFA) and encoded in the form of a program in the target language. The generated code interfaces with the outer program by the means of a few user-defined primitives (see the program interface section). Reusable blocks allow sharing rules, definitions and configurations between different blocks.

EXAMPLE

Input file

// re2c $INPUT -o $OUTPUT -i
#include <assert.h>                 //

// C/C++ code int lex(const char *YYCURSOR) // {
/*!re2c // start of re2c block
re2c:define:YYCTYPE = char; // configuration
re2c:yyfill:enable = 0; // configuration
re2c:flags:case-ranges = 1; // configuration
//
ident = [a-zA-Z_][a-zA-Z_0-9]*; // named definition
//
ident { return 0; } // normal rule
* { return 1; } // default rule
*/ } //
// int main() // { // C/C++ code
assert(lex("_Zer0") == 0); //
return 0; // } //


Output file

/* Generated by re2c */
// re2c $INPUT -o $OUTPUT -i
#include <assert.h>                 //

// C/C++ code int lex(const char *YYCURSOR) // {
{
char yych;
yych = *YYCURSOR;
switch (yych) {
case 'A' ... 'Z':
case '_':
case 'a' ... 'z': goto yy4;
default: goto yy2;
} yy2:
++YYCURSOR;
{ return 1; } yy4:
yych = *++YYCURSOR;
switch (yych) {
case '0' ... '9':
case 'A' ... 'Z':
case '_':
case 'a' ... 'z': goto yy4;
default: goto yy6;
} yy6:
{ return 0; } } } //
// int main() // { // C/C++ code
assert(lex("_Zer0") == 0); //
return 0; // } //


OPTIONS

-? -h --help
Show help message.
-1 --single-pass
Deprecated. Does nothing (single pass is the default now).
-8 --utf-8
Generate a lexer that reads input in UTF-8 encoding. re2c assumes that character range is 0 -- 0x10FFFF and character size is 1 byte.
Optimize conditional jumps using bit masks. Implies -s.
Enable support of Flex-like "conditions": multiple interrelated lexers within one block. Option --start-conditions is a legacy alias; use --conditions instead.
Treat single-quoted and double-quoted strings as case-insensitive.
Invert the meaning of single-quoted and double-quoted strings: treat single-quoted strings as case-sensitive and double-quoted strings as case-insensitive.
Collapse consecutive cases in a switch statements into a range of the form case low ... high:. This syntax is an extension of the C/C++ language, supported by compilers like GCC, Clang and Tcc. The main advantage over using single cases is smaller generated C code and faster generation time, although for some compilers like Tcc it also results in smaller binary size. This option doesn't work for the Go backend.
Write dependency information to FILE in the form of a Makefile rule <output-file> : <input-file> [include-file ...]. This allows one to track build dependencies in the presence of /*!include:re2c*/ directives, so that updating include files triggers regeneration of the output file. This option requires that -o --output option is specified.
Generate a lexer that reads input in EBCDIC encoding. re2c assumes that character range is 0 -- 0xFF an character size is 1 byte.
Define the way re2c treats empty character classes. With match-empty (the default) empty class matches empty input (which is illogical, but backwards-compatible). With``match-none`` empty class always fails to match. With error empty class raises a compilation error.
Define the way re2c treats Unicode surrogates. With fail re2c aborts with an error when a surrogate is encountered. With substitute re2c silently replaces surrogates with the error code point 0xFFFD. With ignore (the default) re2c treats surrogates as normal code points. The Unicode standard says that standalone surrogates are invalid, but real-world libraries and programs behave in different ways.
Generate a lexer which can store its inner state. This is useful in push-model lexers which are stopped by an outer program when there is not enough input, and then resumed when more input becomes available. In this mode users should additionally define YYGETSTATE() and YYSETSTATE(state) macros and variables yych, yyaccept and state as part of the lexer state.
Partial support for Flex syntax: in this mode named definitions don't need the equal sign and the terminating semicolon, and when used they must be surrounded by curly braces. Names without curly braces are treated as double-quoted strings.
Optimize conditional jumps using non-standard "computed goto" extension (which must be supported by the compiler). re2c generates jump tables only in complex cases with a lot of conditional branches. Complexity threshold can be configured with cgoto:threshold configuration. This option implies -b. This option doesn't work for the Go backend.
Add PATH to the list of locations which are used when searching for include files. This option is useful in combination with /*!include:re2c ... */ directive. Re2c looks for FILE in the directory of including file and in the list of include paths specified by -I option.
Do not output #line information. This is useful when the generated code is tracked by some version control system or IDE.
Specify the API used by the generated code to interface with used-defined code. Option default is the C API based on pointer arithmetic (it is the default for the C backend). Option custom is the generic API (it is the default for the Go backend).
Specify the way re2c parses regular expressions. With ascii (the default) re2c handles input as ASCII-encoded: any sequence of code units is a sequence of standalone 1-byte characters. With utf8 re2c handles input as UTF8-encoded and recognizes multibyte characters.
Specify the output language. Supported languages are C and Go (the default is C).
Specify location format in messages. With gnu locations are printed as 'filename:line:column: ...'. With msvc locations are printed as 'filename(line,column) ...'. Default is gnu.
Suppress date output in the generated file.
Suppress version output in the generated file.
Specify the OUTPUT file.
Enable submatch extraction with POSIX-style capturing groups.
Allows reuse of re2c rules with /*!rules:re2c */ and /*!use:re2c */ blocks. Exactly one rules-block must be present. The rules are saved and used by every use-block that follows, which may add its own rules and configurations.
Ignore user-defined interface code and generate a self-contained "skeleton" program. Additionally, generate input files with strings derived from the regular grammar and compressed match results that are used to verify "skeleton" behavior on all inputs. This option is useful for finding bugs in optimizations and code generation. This option doesn't work for the Go backend.
Use nested if statements instead of switch statements in conditional jumps. This usually results in more efficient code with non-optimizing compilers.
Enable submatch extraction with tags.
Generate a HEADER file that contains enum with condition names. Requires -c option.
Generate a lexer that reads UTF32-encoded input. Re2c assumes that character range is 0 -- 0x10FFFF and character size is 4 bytes. This option implies -s.
Show version information in MMmmpp format (major, minor, patch).
Output a short message in case of success.
Show version information.
Generate a lexer that reads UCS2-encoded input. Re2c assumes that character range is 0 -- 0xFFFF and character size is 2 bytes. This option implies -s.
Generate a lexer that reads UTF16-encoded input. Re2c assumes that character range is 0 -- 0x10FFFF and character size is 2 bytes. This option implies -s.

Debug options

Instead of normal output generate lexer graph in .dot format. The output can be converted to an image with the help of Graphviz (e.g. something like dot -Tpng -odfa.png dfa.dot).
Emit YYDEBUG in the generated code. YYDEBUG should be defined by the user in the form of a void function with two parameters: state (lexer state or -1) and symbol (current input symbol of type YYCTYPE).
Debug option: output DFA after tunneling (in .dot format).
Debug option: output control flow graph of tag variables (in .dot format).
Debug option: output statistics on the number of states in closure.
Debug option: output DFA immediately after determinization (in .dot format).
Debug option: output DFA after minimization (in .dot format).
Debug option: output DFA after tag optimizations (in .dot format).
Debug option: output DFA under construction with states represented as tag history trees (in .dot format).
Debug option: output DFA under construction with expanded state-sets (in .dot format).
Debug option: output interference table produced by liveness analysis of tag variables.
Debug option: output NFA (in .dot format).

Internal options

Internal option: DFA minimization algorithm used by re2c. The moore option is the Moore algorithm (it is the default). The table option is the "table filling" algorithm. Both algorithms should produce the same DFA up to states relabeling; table filling is simpler and much slower and serves as a reference implementation.
Internal option: make the generated lexer advance the input position eagerly -- immediately after reading the input symbol. This changes the default behavior when the input position is advanced lazily -- after transition to the next state. This option is implied by --no-lookahead.
Internal option: use TDFA(0) instead of TDFA(1). This option has effect only with --tags or --posix-captures options.
Internal optionL: suppress optimization of tag variables (useful for debugging).
Internal option: specify shortest-path algorithm used for the construction of epsilon-closure with POSIX disambiguation semantics: gor1 (the default) stands for Goldberg-Radzik algorithm, and gtop stands for "global topological order" algorithm.
Internal option: specify the algorithm used to compute POSIX precedence table. The complex algorithm computes precedence table in one traversal of tag history tree and has quadratic complexity in the number of TNFA states; it is the default. The naive algorithm has worst-case cubic complexity in the number of TNFA states, but it is much simpler than complex and may be slightly faster in non-pathological cases.
Internal option: use staDFA algorithm for submatch extraction. The main difference with TDFA is that tag operations in staDFA are placed in states, not on transitions.
Internal option: specify whether the fixed-tag optimization should be applied to all tags (all), none of them (none), or only those in toplevel concatenation (toplevel). The default is all. "Fixed" tags are those that are located within a fixed distance to some other tag (called "base"). In such cases only tha base tag needs to be tracked, and the value of the fixed tag can be computed as the value of the base tag plus a static offset. For tags that are under alternative or repetition it is also necessary to check if the base tag has a no-match value (in that case fixed tag should also be set to no-match, disregarding the offset). For tags in top-level concatenation the check is not needed, because they always match.

Warnings

Turn on all warnings.
Turn warnings into errors. Note that this option alone doesn't turn on any warnings; it only affects those warnings that have been turned on so far or will be turned on later.
Turn on warning.
Turn off warning.
Turn on warning and treat it as an error (this implies -W<warning>).
Don't treat this particular warning as an error. This doesn't turn off the warning itself.

Warn if the generated program makes implicit assumptions about condition numbering. One should use either the -t, --type-header option or the /*!types:re2c*/ directive to generate a mapping of condition names to numbers and then use the autogenerated condition names.
Warn if a regular expression contains an empty character class. Trying to match an empty character class makes no sense: it should always fail. However, for backwards compatibility reasons re2c allows empty character classes and treats them as empty strings. Use the --empty-class option to change the default behavior.
Warn if a rule is nullable (matches an empty string). If the lexer runs in a loop and the empty match is unintentional, the lexer may unexpectedly hang in an infinite loop.
Warn if the lower bound of a range is greater than its upper bound. The default behavior is to silently swap the range bounds.
Warn if some input strings cause undefined control flow in the lexer (the faulty patterns are reported). This is the most dangerous and most common mistake. It can be easily fixed by adding the default rule * which has the lowest priority, matches any code unit, and consumes exactly one code unit.
Warn about rules that are shadowed by other rules and will never match.
Warn if a symbol is escaped when it shouldn't be. By default, re2c silently ignores such escapes, but this may as well indicate a typo or an error in the escape sequence.
Warn if a tag has n-th degree of nondeterminism, where n is greater than 1.
Warn if the sentinel symbol occurs in the middle of a rule --- this may cause reads past the end of buffer, crashes or memory corruption in the generated lexer. This warning is only applicable if the sentinel method of checking for the end of input is used. It is set to an error if re2c:sentinel configuration is used.

PROGRAM INTERFACE

Re2c has a flexible interface that gives the user both the freedom and the responsibility to define how the generated code interacts with the outer program. There are two major options:

  • Pointer API. It is also called "default API", since it was historically the first, and for a long time the only one. This is a more restricted API based on C pointer arithmetics. It consists of pointer-like primitives YYCURSOR, YYMARKER, YYCTXMARKER and YYLIMIT, which are normally defined as pointers of type YYCTYPE*. Pointer API is enabled by default for the C backend, and it cannot be used with other backends that do not have pointer arithmetics.
        

  • Generic API. This is a less restricted API that does not assume pointer semantics. It consists of primitives YYPEEK, YYSKIP, YYBACKUP, YYBACKUPCTX, YYSTAGP, YYSTAGN, YYMTAGP, YYMTAGN, YYRESTORE, YYRESTORECTX, YYRESTORETAG, YYSHIFT, YYSHIFTSTAG, YYSHIFTMTAG and YYLESSTHAN. For the C backend generic API is enabled with --input custom option or re2c:flags:input = custom; configuration; for the Go backend it is enabled by default. Generic API was added in version 0.14. It is intentionally designed to give the user as much freedom as possible in redefining the input model and the semantics of different actions performed by the generated code. As an example, one can override YYPEEK to check for the end of input before reading the input character, or do some logging, etc.

Generic API has two styles:

Function-like. This style is enabled with re2c:api:style = functions; configuration, and it is the default for C backend. In this style API primitives should be defined as functions or macros with parentheses, accepting the necessary arguments. For example, in C the default pointer API can be defined in function-like style generic API as follows:

#define  YYPEEK()                 *YYCURSOR
#define  YYSKIP()                 ++YYCURSOR
#define  YYBACKUP()               YYMARKER = YYCURSOR
#define  YYBACKUPCTX()            YYCTXMARKER = YYCURSOR
#define  YYRESTORE()              YYCURSOR = YYMARKER
#define  YYRESTORECTX()           YYCURSOR = YYCTXMARKER
#define  YYRESTORETAG(tag)        YYCURSOR = tag
#define  YYLESSTHAN(len)          YYLIMIT - YYCURSOR < len
#define  YYSTAGP(tag)             tag = YYCURSOR
#define  YYSTAGN(tag)             tag = NULL
#define  YYSHIFT(shift)           YYCURSOR += shift
#define  YYSHIFTSTAG(tag, shift)  tag += shift



Free-form. This style is enabled with re2c:api:style = free-form; configuration, and it is the default for Go backend. In this style API primitives can be defined as free-form pieces of code, and instead of arguments they have interpolated variables of the form @@{name}, or optionally just @@ if there is only one argument. The @@ text is called "sigil". It can be redefined to any other text with re2c:api:sigil configuration. For example, the default pointer API can be defined in free-form style generic API as follows:

re2c:define:YYPEEK       = "*YYCURSOR";
re2c:define:YYSKIP       = "++YYCURSOR";
re2c:define:YYBACKUP     = "YYMARKER = YYCURSOR";
re2c:define:YYBACKUPCTX  = "YYCTXMARKER = YYCURSOR";
re2c:define:YYRESTORE    = "YYCURSOR = YYMARKER";
re2c:define:YYRESTORECTX = "YYCURSOR = YYCTXMARKER";
re2c:define:YYRESTORETAG = "YYCURSOR = ${tag}";
re2c:define:YYLESSTHAN   = "YYLIMIT - YYCURSOR < @@{len}";
re2c:define:YYSTAGP      = "@@{tag} = YYCURSOR";
re2c:define:YYSTAGN      = "@@{tag} = NULL";
re2c:define:YYSHIFT      = "YYCURSOR += @@{shift}";
re2c:define:YYSHIFTSTAG  = "@@{tag} += @@{shift}";



API primitives

Here is a list of API primitives that may be used by the generated code in order to interface with the outer program. Which primitives are needed depends on multiple factors, including the complexity of regular expressions, input representation, buffering, the use of various features and so on. All the necessary primitives should be defined by the user in the form of macros, functions, variables, free-form pieces of code or any other suitable form. Re2c does not (and cannot) check the definitions, so if anything is missing or defined incorrectly the generated code will not compile.

The type of the input characters (code units). For ASCII, EBCDIC and UTF-8 encodings it should be 1-byte unsigned integer. For UTF-16 or UCS-2 it should be 2-byte unsigned integer. For UTF-32 it should be 4-byte unsigned integer.
A pointer-like l-value that stores the current input position (usually a pointer of type YYCTYPE*). Initially YYCURSOR should point to the first input character. It is advanced by the generated code. When a rule matches, YYCURSOR points to the one after the last matched character. It is used only in the default C API.
A pointer-like r-value that stores the end of input position (usually a pointer of type YYCTYPE*). Initially YYLIMIT should point to the one after the last available input character. It is not changed by the generated code. Lexer compares YYCURSOR to YYLIMIT in order to determine if there is enough input characters left. YYLIMIT is used only in the default C API.
A pointer-like l-value (usually a pointer of type YYCTYPE*) that stores the position of the latest matched rule. It is used to restores YYCURSOR position if the longer match fails and lexer needs to rollback. Initialization is not needed. YYMARKER is used only in the default C API.
A pointer-like l-value that stores the position of the trailing context (usually a pointer of type YYCTYPE*). No initialization is needed. It is used only in the default C API, and only with the lookahead operator /.
API primitive with one argument len. The meaning of YYFILL is to provide at least len more input characters or fail. If EOF rule is used, YYFILL should always return to the calling function; the return value should be zero on success and non-zero on failure. If EOF rule is not used, YYFILL return value is ignored and it should not return on failure. Maximal value of len is YYMAXFILL, which can be generated with /*!max:re2c*/ directive. The definition of YYFILL can be either function-like or free-form depending on the API style (see re2c:api:style and re2c:define:YYFILL:naked).
An integral constant equal to the maximal value of YYFILL argument. It can be generated with /*!max:re2c*/ directive.
A generic API primitive with one argument len. It should be defined as an r-value of boolean type that equals true if and only if there is less than len input characters left. The definition can be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with no arguments. It should be defined as an r-value of type YYCTYPE that is equal to the character at the current input position. The definition can be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with no arguments. The meaning of YYSKIP is to advance the current input position by one character. The definition can be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with no arguments. The meaning of YYBACKUP is to save the current input position, which is later restored with YYRESTORE. The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with no arguments. The meaning of YYRESTORE is to restore the current input position to the value saved by YYBACKUP. The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with zero arguments. The meaning of YYBACKUPCTX is to save the current input position as the position of the trailing context, which is later restored by YYRESTORECTX. The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with no arguments. The meaning of YYRESTORECTX is to restore the trailing context position saved with YYBACKUPCTX. The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with one argument tag. The meaning of YYRESTORETAG is to restore the trailing context position to the value of tag. The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with one argument tag. The meaning of YYSTAGP is to set tag value to the current input position. The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with one argument tag. The meaning of YYSTAGN is to set tag value to null (or some default value). The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with one argument tag. The meaning of YYMTAGP is to append the current position to the history of tag. The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with one argument tag. The meaning of YYMTAGN is to append null (or some other default) value to the history of tag. The definition can be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with one argument shift. The meaning of YYSHIFT is to shift the current input position by shift characters (the shift value may be negative). The definition can be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with two arguments, tag and shift. The meaning of YYSHIFTSTAG is to shift tag by shift characters (the shift value may be negative). The definition can be either function-like or free-form depending on the API style (see re2c:api:style).
A generic API primitive with two arguments, tag and shift. The meaning of YYSHIFTMTAG is to shift the latest value in the history of tag by shift characters (the shift value may be negative). The definition should be either function-like or free-form depending on the API style (see re2c:api:style).
An integral constant equal to the maximal number of POSIX capturing groups in a rule. It is generated with /*!maxnmatch:re2c*/ directive.
The type of the condition enum. It should be generated either with /*!types:re2c*/ directive or -t --type-header option.
An API primitive with zero arguments. It should be defined as an r-value of type YYCONDTYPE that is equal to the current condition identifier. The definition can be either function-like or free-form depending on the API style (see re2c:api:style and re2c:define:YYGETCONDITION:naked).
An API primitive with one argument cond. The meaning of YYSETCONDITION is to set the current condition identifier to cond. The definition should be either function-like or free-form depending on the API style (see re2c:api:style and re2c:define:YYSETCONDITION@cond).
An API primitive with zero arguments. It should be defined as an r-value of integer type that is equal to the current lexer state. Should be initialized to -1. The definition can be either function-like or free-form depending on the API style (see re2c:api:style and re2c:define:YYGETSTATE:naked).
An API primitive with one argument state. The meaning of YYSETSTATE is to set the current lexer state to state. The definition should be either function-like or free-form depending on the API style (see re2c:api:style and re2c:define:YYSETSTATE@state).
A debug API primitive with two arguments. It can be used to debug the generated code (with -d --debug-output option). YYDEBUG should return no value and accept two arguments: state (either a DFA state index or -1) and symbol (the current input symbol).
An l-value of type YYCTYPE that stores the current input character. User definition is necessary only with -f --storable-state option.
An l-value of unsigned integral type that stores the number of the latest matched rule. User definition is necessary only with -f --storable-state option.
An l-value of unsigned integral type that stores the number of POSIX capturing groups in the matched rule. Used only with -P --posix-captures option.
An array of l-values that are used to hold the tag values corresponding to the capturing parentheses in the matching rule. Array length must be at least yynmatch * 2 (usually YYMAXNMATCH * 2 is a good choice). Used only with -P --posix-captures option.

Directives

Below is the list of all directives provided by re2c (in no particular order). More information on each directive can be found in the related sections.

/*!re2c ... */
A standard re2c block.
%{ ... %}
A standard re2c block in -F --flex-support mode.
/*!rules:re2c ... */
A reusable re2c block (requires -r --reuse option).
/*!use:re2c ... */
A block that reuses previous rules-block specified with /*!rules:re2c ... */ (requires -r --reuse option).
/*!ignore:re2c ... */
A block which contents are ignored and cut off from the output file.
/*!max:re2c*/
This directive is substituted with the macro-definition of YYMAXFILL.
/*!maxnmatch:re2c*/
This directive is substituted with the macro-definition of YYMAXNMATCH (requires -P --posix-captures option).
/*!getstate:re2c*/
This directive is substituted with conditional dispatch on lexer state (requires -f --storable-state option).
/*!types:re2c ... */
This directive is substituted with the definition of condition enum (requires -c --conditions option).
/*!stags:re2c ... */, /*!mtags:re2c ... */
These directives allow one to specify a template piece of code that is expanded for each s-tag/m-tag variable generated by re2c. This block has two optional configurations: format = "@@"; (specifies the template where @@ is substituted with the name of each tag variable), and separator = ""; (specifies the piece of code used to join the generated pieces for different tag variables).
/*!include:re2c FILE */
This directive allows one to include FILE (in the same sense as #include directive in C/C++).
/*!header:re2c:on*/
This directive marks the start of header file. Everything after it and up to the following /*!header:re2c:off*/ directive is processed by re2c and written to the header file specified with -t --type-header option.
/*!header:re2c:off*/
This directive marks the end of header file started with /*!header:re2c:on*/.

Configurations

Specify the name of the generated header file relative to the directory of the output file. (Same as -t, --type-header command-line option except that the filepath is relative.)
Same as --input command-line option.
Allows one to specify the style of generic API. Possible values are functions and free-form. With functions style (the default for the C backend) API primitives behave like functions, and re2c generates parentheses with an argument list after the name of each primitive. With free-form style (the default for the Go backend) re2c treats API definitions as interpolated strings and substitutes argument placeholders with the actual argument values. This option can be overridden by options for individual API primitives, e.g. re2c:define:YYFILL:naked for YYFILL.
Allows one to specify the "sigil" symbol (or string) that is used to recognize argument placeholders in the definitions of generic API primitives. The default value is @@. Placeholders start with sigil, followed by the argument name in curly braces. For example, if sigil is set to $, then placeholders will have the form ${name}. Single-argument APIs may use shorthand notation without the name in braces. This option can be overridden by options for individual API primitives, e.g. re2c:define:YYFILL@len for YYFILL.
Defines YYCTYPE (see the user interface section).
Defines C API primitive YYCURSOR (see the user interface section).
Defines C API primitive YYLIMIT (see the user interface section).
Defines C API primitive YYMARKER (see the user interface section).
Defines C API primitive YYCTXMARKER (see the user interface section).
Defines API primitive YYFILL (see the user interface section).
Specifies the sigil used for argument substitution in YYFILL definition. Defaults to @@. Overrides the more generic re2c:api:sigil configuration.
Allows one to override re2c:api:style for YYFILL. Value 0 corresponds to free-form API style.
Defaults to 1 (YYFILL is enabled). Set this to zero to suppress the generation of YYFILL. Use warnings (-W option) and re2c:sentinel configuration to verify that the generated lexer cannot read past the end of input, as this might introduce severe security issues to your programs.
Controls the argument in the parentheses that follow YYFILL. Defaults to 1, which means that the argument is generated. If zero, the argument is omitted. Can be overridden with re2c:define:YYFILL:naked or re2c:api:style.
Specifies the sentinel symbol used with EOF rule $ to check for the end of input in the generated lexer. The default value is -1 (EOF rule is not used). Other possible values include all valid code units. Only decimal numbers are recognized.
Specifies the sentinel symbol used with the sentinel method of checking for the end of input in the generated lexer (the case when bounds checking is disabled with re2c:yyfill:enable = 0; and EOF rule $ is not used). This configuration does not affect code generation. It is used by re2c to verify that the sentinel symbol is not allowed in the middle of the rule, and prevent possible reads past the end of buffer in the generated lexer. The default value is -1 (re2c assumes that the sentinel symbol is 0, which is the most common case). Other possible values include all valid code units. Only decimal numbers are recognized.
Defines generic API primitive YYLESSTHAN (see the user interface section).
Setting this to zero allows one to suppress the generation of YYFILL check (YYLESSTHAN in generic API of YYLIMIT-based comparison in default C API). This configuration is useful when the necessary input is always available. it defaults to 1 (the check is generated).
Allows one to change the prefix of YYFILL labels (used with EOF rule or with storable states).
Defines generic API primitive YYPEEK (see the user interface section).
Defines generic API primitive YYSKIP (see the user interface section).
Defines generic API primitive YYBACKUP (see the user interface section).
Defines generic API primitive YYBACKUPCTX (see the user interface section).
Defines generic API primitive YYRESTORE (see the user interface section).
Defines generic API primitive YYRESTORECTX (see the user interface section).
Defines generic API primitive YYRESTORETAG (see the user interface section).
Defines generic API primitive YYSHIFT (see the user interface section).
Defines generic API primitive YYSHIFTMTAG (see the user interface section).
Defines generic API primitive YYSHIFTSTAG (see the user interface section).
Defines generic API primitive YYSTAGN (see the user interface section).
Defines generic API primitive YYSTAGP (see the user interface section).
Defines generic API primitive YYMTAGN (see the user interface section).
Defines generic API primitive YYMTAGP (see the user interface section).
Same as -T --tags command-line option.
Same as -P --posix-captures command-line option.
Allows one to customize the way re2c addresses tag variables. By default re2c generates expressions of the form yyt<N>. This might be inconvenient, for example if tag variables are defined as fields in a struct. Re2c recognizes placeholder of the form @@{tag} or @@ and replaces it with the actual tag name. Sigil @@ can be redefined with re2c:api:sigil configuration. For example, setting re2c:tags:expression = "p->@@"; results in expressions of the form p->yyt<N> in the generated code.
Allows one to override the prefix of tag variables (defaults to yyt).
Same as inverted --no-lookahead command-line option.
Same as inverted --no-optimize-tags command-line option.
Defines YYCONDTYPE (see the user interface section).
Defines API primitive YYGETCONDITION (see the user interface section).
Allows one to override re2c:api:style for YYGETCONDITION. Value 0 corresponds to free-form API style.
Defines API primitive YYSETCONDITION (see the user interface section).
Specifies the sigil used for argument substitution in YYSETCONDITION definition. The default value is @@. Overrides the more generic re2c:api:sigil configuration.
Allows one to override re2c:api:style for YYSETCONDITION. Value 0 corresponds to free-form API style.
Allows one to customize the goto statements used with the shortcut :=> rules in conditions. The default value is goto @@;. Placeholders are substituted with condition name (see re2c:api;sigil and re2c:cond:goto@cond).
Specifies the sigil used for argument substitution in re2c:cond:goto definition. The default value is @@. Overrides the more generic re2c:api:sigil configuration.
Defines the divider for condition blocks. The default value is /* *********************************** */. Placeholders are substituted with condition name (see re2c:api;sigil and re2c:cond:divider@cond).
Specifies the sigil used for argument substitution in re2c:cond:divider definition. The default value is @@. Overrides the more generic re2c:api:sigil configuration.
Specifies the prefix used for condition labels. The default value is yyc_.
Specifies the prefix used for condition identifiers. The default value is yyc.
Defines API primitive YYGETSTATE (see the user interface section).
Allows one to override re2c:api:style for YYGETSTATE. Value 0 corresponds to free-form API style.
Defines API primitive YYSETSTATE (see the user interface section).
Specifies the sigil used for argument substitution in YYSETSTATE definition. The default value is @@. Overrides the more generic re2c:api:sigil configuration.
Allows one to override re2c:api:style for YYSETSTATE. Value 0 corresponds to free-form API style.
If set to a positive integer value, changes the form of the YYGETSTATE switch: instead of using default case to jump to the beginning of the lexer block, a -1 case is used, and the default case aborts the program.
With storable states, allows one to control if the YYGETSTATE block is followed by a yyNext label (the default value is zero, which corresponds to no label). Instead of using yyNext it is possible to use re2c:startlabel to force the generation of a specific start label. Instead of using labels it is often more convenient to generate YYGETSTATE code using /*!getstate:re2c*/.
Allows one to change the name of the yyNext label.
Controls the generation of start label for the next lexer block. The default value is zero, which means that the start label is generated only if it is used. An integer value greater than zero forces the generation of start label even if it is unused by the lexer. A string value also forces start label generation and sets the label name to the specified string. This configuration applies only to the current block (it is reset to default for the next block).
Same as -s --nested-ifs command-line option.
Same as -b --bit-vectors command-line option.
Overrides the name of the yybm variable.
Defaults to zero (a decimal bitmap table is generated). If set to nonzero, a hexadecimal table is generated.
Same as -g --computed-gotos command-line option.
With -g --computed-gotos option this value specifies the complexity threshold that triggers the generation of jump tables instead of nested if statements and bitmaps. The default value is 9.
Same as --case-ranges command-line option.
Same as -e --ecb command-line option.
Same as -8 --utf-8 command-line option.
Same as -w --wide-chars command-line option.
Same as -x --utf-16 command-line option.
Same as -u --unicode command-line option.
Same as --encoding-policy command-line option.
Same as --empty-class command-line option.
Same as --case-insensitive command-line option.
Same as --case-inverted command-line option.
Same as -i --no-debug-info command-line option.
Specifies the string to use for indentation. The default value is "\t". Indent string should contain only whitespace characters. To disable indentation entirely, set this configuration to empty string "".
Specifies the minimum amount of indentation to use. The default value is zero. The value should be a non-negative integer number.
Allows one to change the prefix of DFA state labels. The default value is yy.
Set this to zero to suppress the generation of yych definition. Defaults to 1 (the definition is generated).
Overrides the name of the yych variable.
If set to nonzero, re2c automatically generates a cast to YYCTYPE every time yych is read. Defaults to zero (no cast).
Overrides the name of the yyaccept variable.
Overrides the name of the yytarget variable.
Deprecated.
When both -c --conditions and -g --computed-gotos are active, re2c will use this variable to generate a static jump table for YYGETCONDITION.
Defines YYDEBUG (see the user interface section).
Same as -d --debug-output command-line option.
Same as --dfa-minimization command-line option.
Same as --eager-skip command-line option.

REGULAR EXPRESSIONS

re2c uses the following syntax for regular expressions:

  • "foo" case-sensitive string literal
  • 'foo' case-insensitive string literal
  • [a-xyz], [^a-xyz] character class (possibly negated)
  • . any character except newline
  • R \ S difference of character classes R and S
  • R* zero or more occurrences of R
  • R+ one or more occurrences of R
  • R? optional R
  • R{n} repetition of R exactly n times
  • R{n,} repetition of R at least n times
  • R{n,m} repetition of R from n to m times
  • (R) just R; parentheses are used to override precedence or for POSIX-style submatch
  • R S concatenation: R followed by S
  • R | S alternative: R or S
  • R / S lookahead: R followed by S, but S is not consumed
  • name the regular expression defined as name (or literal string "name" in Flex compatibility mode)
  • {name} the regular expression defined as name in Flex compatibility mode
  • @stag an s-tag: saves the last input position at which @stag matches in a variable named stag
  • #mtag an m-tag: saves all input positions at which #mtag matches in a variable named mtag

Character classes and string literals may contain the following escape sequences: \a, \b, \f, \n, \r, \t, \v, \\, octal escapes \ooo and hexadecimal escapes \xhh, \uhhhh and \Uhhhhhhhh.

HANDLING THE END OF INPUT

One of the main problems for the lexer is to know when to stop. There are a few terminating conditions:

  • the lexer may match some rule (including default rule *) and come to a final state
  • the lexer may fail to match any rule and come to a default state
  • the lexer may reach the end of input

The first two conditions terminate the lexer in a "natural" way: it comes to a state with no outgoing transitions, and the matching automatically stops. The third condition, end of input, is different: it may happen in any state, and the lexer should be able to handle it. Checking for the end of input interrupts the normal lexer workflow and adds conditional branches to the generated program, therefore it is necessary to minimize the number of such checks. re2c supports a few different methods for end of input handling. Which one to use depends on the complexity of regular expressions, the need for buffering, performance considerations and other factors. Here is a list of all methods:

  • Sentinel character. This method eliminates the need for the end of input checks altogether. It is simple and efficient, but limited to the case when there is a natural "sentinel" character that can never occur in valid input. This character may still occur in invalid input, but it is not allowed by the regular expressions, except perhaps as the last character of a rule. The sentinel character is appended at the end of input and serves as a stop signal: when the lexer reads it, it must be either the end of input, or a syntax error. In both cases the lexer stops. This method is used if YYFILL is disabled with re2c:yyfill:enable = 0; and re2c:eof has the default value -1.
        

  • Sentinel character with bounds checks. This method is generic: it allows one to handle any input without restrictions on the regular expressions. The idea is to reduce the number of end of input checks by performing them only on certain characters. Similar to the "sentinel character" method, one of the characters is chosen as a "sentinel" and appended at the end of input. However, there is no restriction on where the sentinel character may occur (in fact, any character can be chosen for a sentinel). When the lexer reads this character, it additionally performs a bounds check. If the current position is within bounds, the lexer will resume matching and handle the sentinel character as a regular one. Otherwise it will try to get more input with YYFILL (unless YYFILL is disabled). If more input is available, the lexer will rematch the last character and continue as if the sentinel never occurred. Otherwise it is the real end of input, and the lexer will stop. This method is used if re2c:eof has non-negative value (it should be set to the ordinal of the sentinel character). YYFILL must be either defined or disabled with re2c:yyfill:enable = 0;.
        

  • Bounds checks with padding. This method is the default one. It is generic, and it is usually faster than the "sentinel character with bounds checks" method, but also more complex to use. The idea is to partition the underlying finite-state automaton into strongly connected components (SCCs), and generate only one bounds check per SCC, but make it check for multiple characters at once (enough to cover the longest non-looping path in the SCC). This way the checks are less frequent, which makes the lexer run much faster. If a check shows that there is not enough input, the lexer will invoke YYFILL, which may either supply enough input or else it should not return (in the latter case the lexer will stop). This approach has a problem with matching short lexemes at the end of input, because the multi-character check requires enough characters to cover the longest possible lexeme. To fix this problem, it is necessary to append a few fake characters at the end of input. The padding should not form a valid lexeme suffix to avoid fooling the lexer into matching it as part of the input. The minimum sufficient length of padding is YYMAXFILL and it is autogenerated by re2c with /*!max:re2c*/. This method is used if re2c:yyfill:enable has the default nonzero value, and re2c:eof has the default value -1. YYFILL must be defined.
        

  • Custom methods with generic API. Generic API allows one to override basic operations like reading a character, which makes it possible to include the end of input checks as part of them. Such methods are error-prone and should be used with caution, only if other methods cannot be used. These methods are used if generic API is enabled with --input custom or re2c:flags:input = custom; and default bounds checks are disabled with re2c:yyfill:enable = 0;. Note that the use of generic API does not imply the use of custom methods, it merely allows it.

The following subsections contain an example of each method.

Sentinel character

In this example the lexer uses a sentinel character to handle the end of input. The program counts space-separated words in a null-terminated string. Configuration re2c:yyfill:enable = 0; suppresses the generation of bounds checks and YYFILL invocations. The sentinel character is null. It is the last character of each input string, and it is not allowed in the middle of a lexeme by any of the rules (in particular, it is not included in the character ranges, where it is easy to overlook). If a null occurs in the middle of a string, it is a syntax error and the lexer will match default rule *, but it won't read past the end of input or crash. -Wsentinel-in-midrule warning verifies that the rules do not allow sentinel in the middle (it is possible to tell re2c which character is used as a sentinel with re2c:sentinel configuration --- the default assumption is null, since this is the most common case).

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
// expect a null-terminated string
static int lex(const char *YYCURSOR)
{

int count = 0; loop:
/*!re2c
re2c:define:YYCTYPE = char;
re2c:yyfill:enable = 0;
* { return -1; }
[\x00] { return count; }
[a-z]+ { ++count; goto loop; }
[ ]+ { goto loop; }
*/ } int main() {
assert(lex("") == 0);
assert(lex("one two three") == 3);
assert(lex("f0ur") == -1);
return 0; }


Sentinel character with bounds checks

In this example the lexer uses sentinel character with bounds checks to handle the end of input (this method was added in version 1.2). The program counts single-quoted strings separated with spaces. The sentinel character is null, which is specified with re2c:eof = 0; configuration. Null is the last character of each input string --- this is essential to detect the end of input. Null, as well as any other character, is allowed in the middle of a rule (for example, 'aaa\0aa'\0 is valid input, but 'aaa\0 is a syntax error). Bounds checks are generated in each state that has a switch on an input character, in the conditional branch that corresponds to null (that branch may also cover other characters --- re2c does not split out a separate branch for sentinel, because increasing the number of branches degrades performance more than bounds checks do). Bounds checks are of the form YYLIMIT <= YYCURSOR or YYLESSTHAN(1) with generic API. If a bounds check succeeds, the lexer will continue matching. If a bounds check fails, the lexer has reached the end of input, and it should stop. In this example YYFILL is disabled with re2c:yyfill:enable = 0; and the lexer does not attempt to get more input (see another example that uses YYFILL in the YYFILL with sentinel character section). When the end of input has been reached, there are three possibilities: if the lexer is in the initial state, it will match the end of input rule $, otherwise it will either fallback to a previously matched rule (including default rule *) or go to a default state, causing -Wundefined-control-flow.

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
// expect a null-terminated string
static int lex(const char *str, unsigned int len)
{

const char *YYCURSOR = str, *YYLIMIT = str + len, *YYMARKER;
int count = 0; loop:
/*!re2c
re2c:define:YYCTYPE = char;
re2c:yyfill:enable = 0;
re2c:eof = 0;
* { return -1; }
$ { return count; }
['] ([^'\\] | [\\][^])* ['] { ++count; goto loop; }
[ ]+ { goto loop; }
*/ } #define TEST(s, r) assert(lex(s, sizeof(s) - 1) == r) int main() {
TEST("", 0);
TEST("'qu\0tes' 'are' 'fine: \\'' ", 3);
TEST("'unterminated\\'", -1);
return 0; }


Bounds checks with padding

In this example the lexer uses bounds checking with padding to handle the end of input (it is the default method). The program counts single-quoted strings separated with spaces. There is a padding of YYMAXFILL null characters appended at the end of input, where YYMAXFILL value is autogenerated with /*!max:re2c*/ directive. It is not necessary to use null for padding --- any characters can be used, as long as they do not form a valid lexeme suffix (in this example padding should not contain single quotes, as they may be mistaken for a suffix of a single-quoted string). There is a "stop" rule that matches the first padding character (null) and terminates the lexer (it returns success only if it has matched at the beginning of padding, otherwise a stray null is syntax error). Bounds checks are generated only in some states that depend on the strongly connected components of the underlying automaton. They are of the form (YYLIMIT - YYCURSOR) < n or YYLESSTHAN(n) with generic API, where n is the minimum number of characters that are needed for the lexer to proceed (it also means that the next bounds check will occur in at most n characters). If a bounds check succeeds, the lexer will continue matching. If a bounds check fails, the lexer has reached the end of input and will invoke YYFILL(n), which should either supply at least n input characters, or it should not return. In this example YYFILL always fails and terminates the lexer with an error. This is fine, because in this example YYFILL can only be called when the lexer has advanced into the padding, which means that is has encountered an unterminated string and should return a syntax error. See the YYFILL with padding section for an example that refills the input buffer with YYFILL.

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
#include <stdlib.h>
#include <string.h>
/*!max:re2c*/
// expect YYMAXFILL-padded string
static int lex(const char *str, unsigned int len)
{

const char *YYCURSOR = str, *YYLIMIT = str + len + YYMAXFILL;
int count = 0; loop:
/*!re2c
re2c:api:style = free-form;
re2c:define:YYCTYPE = char;
re2c:define:YYFILL = "return -1;";
* { return -1; }
[\x00] { return YYCURSOR + YYMAXFILL - 1 == YYLIMIT ? count : -1; }
['] ([^'\\] | [\\][^])* ['] { ++count; goto loop; }
[ ]+ { goto loop; }
*/ } // make a copy of the string with YYMAXFILL zeroes at the end static void test(const char *str, unsigned int len, int res) {
char *s = (char*) malloc(len + YYMAXFILL);
memcpy(s, str, len);
memset(s + len, 0, YYMAXFILL);
int r = lex(s, len);
free(s);
assert(r == res); } #define TEST(s, r) test(s, sizeof(s) - 1, r) int main() {
TEST("", 0);
TEST("'qu\0tes' 'are' 'fine: \\'' ", 3);
TEST("'unterminated\\'", -1);
return 0; }


Custom methods with generic API

In this example the lexer uses a custom end of input handling method based on generic API. The program counts single-quoted strings separated with spaces. It is the same as the sentinel character with bounds checks example, except that the input is not null-terminated (so this method can be used if it's not possible to have any padding at all, not even a single sentinel character). To cover up for the absence of sentinel character at the end of input, YYPEEK is redefined to perform a bounds check before it reads the next input character. This is inefficient, because checks are done very often. If the check succeeds, YYPEEK returns the real character, otherwise it returns a fake sentinel character.

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
#include <stdlib.h>
#include <string.h>
// expect a string without terminating null
static int lex(const char *str, unsigned int len)
{

const char *cur = str, *lim = str + len, *mar;
int count = 0; loop:
/*!re2c
re2c:yyfill:enable = 0;
re2c:eof = 0;
re2c:flags:input = custom;
re2c:api:style = free-form;
re2c:define:YYCTYPE = char;
re2c:define:YYLESSTHAN = "cur >= lim";
re2c:define:YYPEEK = "cur < lim ? *cur : 0"; // fake null
re2c:define:YYSKIP = "++cur;";
re2c:define:YYBACKUP = "mar = cur;";
re2c:define:YYRESTORE = "cur = mar;";
* { return -1; }
$ { return count; }
['] ([^'\\] | [\\][^])* ['] { ++count; goto loop; }
[ ]+ { goto loop; }
*/ } // make a copy of the string without terminating null static void test(const char *str, unsigned int len, int res) {
char *s = (char*) malloc(len);
memcpy(s, str, len);
int r = lex(s, len);
free(s);
assert(r == res); } #define TEST(s, r) test(s, sizeof(s) - 1, r) int main() {
TEST("", 0);
TEST("'qu\0tes' 'are' 'fine: \\'' ", 3);
TEST("'unterminated\\'", -1);
return 0; }


BUFFER REFILLING

The need for buffering arises when the input cannot be mapped in memory all at once: either it is too large, or it comes in a streaming fashion (like reading from a socket). The usual technique in such cases is to allocate a fixed-sized memory buffer and process input in chunks that fit into the buffer. When the current chunk is processed, it is moved out and new data is moved in. In practice it is somewhat more complex, because lexer state consists not of a single input position, but a set of interrelated posiitons:

  • cursor: the next input character to be read (YYCURSOR in default API or YYSKIP/YYPEEK in generic API)
  • limit: the position after the last available input character (YYLIMIT in default API, implicitly handled by YYLESSTHAN in generic API)
  • marker: the position of the most recent match, if any (YYMARKER in default API or YYBACKUP/YYRESTORE in generic API)
  • token: the start of the current lexeme (implicit in re2c API, as it is not needed for the normal lexer operation and can be defined and updated by the user)
  • context marker: the position of the trailing context (YYCTXMARKER in default API or YYBACKUPCTX/YYRESTORECTX in generic API)
  • tag variables: submatch positions (defined with /*!stags:re2c*/ and /*!mtags:re2c*/ directives and YYSTAGP/YYSTAGN/YYMTAGP/YYMTAGN in generic API)

Not all these are used in every case, but if used, they must be updated by YYFILL. All active positions are contained in the segment between token and cursor, therefore everything between buffer start and token can be discarded, the segment from token and up to limit should be moved to the beginning of buffer, and the free space at the end of buffer should be filled with new data. In order to avoid frequent YYFILL calls it is best to fill in as many input characters as possible (even though fewer characters might suffice to resume the lexer). The details of YYFILL implementation are slightly different depending on which EOF handling method is used: the case of EOF rule is somewhat simpler than the case of bounds-checking with padding. Also note that if -f --storable-state option is used, YYFILL has slightly different semantics (desrbed in the section about storable state).

YYFILL with sentinel character

If EOF rule is used, YYFILL is a function-like primitive that accepts no arguments and returns a value which is checked against zero. YYFILL invocation is triggered by condition YYLIMIT <= YYCURSOR in default API and YYLESSTHAN() in generic API. A non-zero return value means that YYFILL has failed. A successful YYFILL call must supply at least one character and adjust input positions accordingly. Limit must always be set to one after the last input position in buffer, and the character at the limit position must be the sentinel symbol specified by re2c:eof configuration. The pictures below show the relative locations of input positions in buffer before and after YYFILL call (sentinel symbol is marked with #, and the second picture shows the case when there is not enough input to fill the whole buffer).


<-- shift -->
>-A------------B---------C-------------D#-----------E->
buffer token marker limit,
cursor >-A------------B---------C-------------D------------E#->
buffer, marker cursor limit
token
<-- shift -->
>-A------------B---------C-------------D#--E (EOF)
buffer token marker limit,
cursor >-A------------B---------C-------------D---E#........
buffer, marker cursor limit
token


Here is an example of a program that reads input file input.txt in chunks of 4096 bytes and uses EOF rule.

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
#include <stdio.h>
#include <string.h>
#define SIZE 4096
typedef struct {

FILE *file;
char buf[SIZE + 1], *lim, *cur, *mar, *tok;
int eof; } Input; static int fill(Input *in) {
if (in->eof) {
return 1;
}
const size_t free = in->tok - in->buf;
if (free < 1) {
return 2;
}
memmove(in->buf, in->tok, in->lim - in->tok);
in->lim -= free;
in->cur -= free;
in->mar -= free;
in->tok -= free;
in->lim += fread(in->lim, 1, free, in->file);
in->lim[0] = 0;
in->eof |= in->lim < in->buf + SIZE;
return 0; } static void init(Input *in, FILE *file) {
in->file = file;
in->cur = in->mar = in->tok = in->lim = in->buf + SIZE;
in->eof = 0;
fill(in); } static int lex(Input *in) {
int count = 0; loop:
in->tok = in->cur;
/*!re2c
re2c:eof = 0;
re2c:api:style = free-form;
re2c:define:YYCTYPE = char;
re2c:define:YYCURSOR = in->cur;
re2c:define:YYMARKER = in->mar;
re2c:define:YYLIMIT = in->lim;
re2c:define:YYFILL = "fill(in) == 0";
* { return -1; }
$ { return count; }
['] ([^'\\] | [\\][^])* ['] { ++count; goto loop; }
[ ]+ { goto loop; }
*/ } int main() {
const char *fname = "input";
const char str[] = "'qu\0tes' 'are' 'fine: \\'' ";
FILE *f;
Input in;
// prepare input file: a few times the size of the buffer,
// containing strings with zeroes and escaped quotes
f = fopen(fname, "w");
for (int i = 0; i < SIZE; ++i) {
fwrite(str, 1, sizeof(str) - 1, f);
}
fclose(f);
f = fopen(fname, "r");
init(&in, f);
assert(lex(&in) == SIZE * 3);
fclose(f);
remove(fname);
return 0; }


YYFILL with padding

In the default case (when EOF rule is not used) YYFILL is a function-like primitive that accepts a single argument and does not return any value. YYFILL invocation is triggered by condition (YYLIMIT - YYCURSOR) < n in default API and YYLESSTHAN(n) in generic API. The argument passed to YYFILL is the minimal number of characters that must be supplied. If it fails to do so, YYFILL must not return to the lexer (for that reason it is best implemented as a macro that returns from the calling function on failure). In case of a successful YYFILL invocation the limit position must be set either to one after the last input position in buffer, or to the end of YYMAXFILL padding (in case YYFILL has successfully read at least n characters, but not enough to fill the entire buffer). The pictures below show the relative locations of input positions in buffer before and after YYFILL invocation (YYMAXFILL padding on the second picture is marked with # symbols).


<-- shift --> <-- need -->
>-A------------B---------C-----D-------E---F--------G->
buffer token marker cursor limit >-A------------B---------C-----D-------E---F--------G->
buffer, marker cursor limit
token
<-- shift --> <-- need -->
>-A------------B---------C-----D-------E-F (EOF)
buffer token marker cursor limit >-A------------B---------C-----D-------E-F###############
buffer, marker cursor limit
token <- YYMAXFILL ->


Here is an example of a program that reads input file input.txt in chunks of 4096 bytes and uses bounds-checking with padding.

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
#include <stdio.h>
#include <string.h>
/*!max:re2c*/
#define SIZE 4096
typedef struct {

FILE *file;
char buf[SIZE + YYMAXFILL], *lim, *cur, *mar, *tok;
int eof; } Input; static int fill(Input *in, size_t need) {
if (in->eof) {
return 1;
}
const size_t free = in->tok - in->buf;
if (free < need) {
return 2;
}
memmove(in->buf, in->tok, in->lim - in->tok);
in->lim -= free;
in->cur -= free;
in->mar -= free;
in->tok -= free;
in->lim += fread(in->lim, 1, free, in->file);
if (in->lim < in->buf + SIZE) {
in->eof = 1;
memset(in->lim, 0, YYMAXFILL);
in->lim += YYMAXFILL;
}
return 0; } static void init(Input *in, FILE *file) {
in->file = file;
in->cur = in->mar = in->tok = in->lim = in->buf + SIZE;
in->eof = 0;
fill(in, 1); } static int lex(Input *in) {
int count = 0; loop:
in->tok = in->cur;
/*!re2c
re2c:api:style = free-form;
re2c:define:YYCTYPE = char;
re2c:define:YYCURSOR = in->cur;
re2c:define:YYMARKER = in->mar;
re2c:define:YYLIMIT = in->lim;
re2c:define:YYFILL = "if (fill(in, @@) != 0) return -1;";
* { return -1; }
[\x00] { return (in->lim - in->cur == YYMAXFILL - 1) ? count : -1; }
['] ([^'\\] | [\\][^])* ['] { ++count; goto loop; }
[ ]+ { goto loop; }
*/ } int main() {
const char *fname = "input";
const char str[] = "'qu\0tes' 'are' 'fine: \\'' ";
FILE *f;
Input in;
// prepare input file: a few times the size of the buffer,
// containing strings with zeroes and escaped quotes
f = fopen(fname, "w");
for (int i = 0; i < SIZE; ++i) {
fwrite(str, 1, sizeof(str) - 1, f);
}
fclose(f);
f = fopen(fname, "r");
init(&in, f);
assert(lex(&in) == SIZE * 3);
fclose(f);
remove(fname);
return 0; }


INCLUDE FILES

re2c allows one to include other files using directive /*!include:re2c FILE */, where FILE is the name of file to be included. re2c looks for included files in the directory of the including file and in include locations, which can be specified with -I option. Include directives in re2c work in the same way as C/C++ #include: the contents of FILE are copy-pasted verbatim in place of the directive. Include files may have further includes of their own. Use --depfile option to track build dependencies of the output file on include files. re2c provides some predefined include files that can be found in the include/ subdirectory of the project. These files contain definitions that can be useful to other projects (such as Unicode categories) and form something like a standard library for re2c. Below is an example of using include directive.

Include file (definitions.h)

typedef enum { OK, FAIL } Result;
/*!re2c

number = [1-9][0-9]*; */


Input file

// re2c $INPUT -o $OUTPUT -i
#include <assert.h>
/*!include:re2c "definitions.h" */
Result lex(const char *YYCURSOR)
{

/*!re2c
re2c:define:YYCTYPE = char;
re2c:yyfill:enable = 0;
number { return OK; }
* { return FAIL; }
*/ } int main() {
assert(lex("123") == OK);
return 0; }


HEADER FILES

Re2c allows one to generate header file from the input .re file using option -t, --type-header or configuration re2c:flags:type-header and directives /*!header:re2c:on*/ and /*!header:re2c:off*/. The first directive marks the beginning of header file, and the second directive marks the end of it. Everything between these directives is processed by re2c, and the generated code is written to the file specified by the -t --type-header option (or stdout if this option was not used). Autogenerated header file may be needed in cases when re2c is used to generate definitions of constants, variables and structs that must be visible from other translation units.

Here is an example of generating a header file that contains definition of the lexer state with tag variables (the number variables depends on the regular grammar and is unknown to the programmer).

Input file

// re2c $INPUT -o $OUTPUT -i --type-header src/lexer/lexer.h
#include <assert.h>
#include "src/lexer/lexer.h" // generated by re2c
/*!header:re2c:on*/
typedef struct {

const char *str, *cur, *mar;
/*!stags:re2c format = "const char *@@{tag}; "; */ } LexerState; /*!header:re2c:off*/ int lex(LexerState *st) {
/*!re2c
re2c:flags:type-header = "src/lexer/lexer.h";
re2c:yyfill:enable = 0;
re2c:flags:tags = 1;
re2c:define:YYCTYPE = char;
re2c:define:YYCURSOR = "st->cur";
re2c:define:YYMARKER = "st->mar";
re2c:tags:expression = "st->@@{tag}";
[x]{1,4} / [x]{3,5} { return 0; } // ambiguous trailing context
* { return 1; }
*/ } int main() {
LexerState st;
st.str = st.cur = "xxxxxxxx";
assert(lex(&st) == 0 && st.cur - st.str == 4);
return 0; }


Header file

/* Generated by re2c */
typedef struct {

const char *str, *cur, *mar;
const char *yyt1; const char *yyt2; const char *yyt3; } LexerState;


SUBMATCH EXTRACTION

Re2c has two options for submatch extraction.

The first option is -T --tags. With this option one can use standalone tags of the form @stag and #mtag, where stag and mtag are arbitrary used-defined names. Tags can be used anywhere inside of a regular expression; semantically they are just position markers. Tags of the form @stag are called s-tags: they denote a single submatch value (the last input position where this tag matched). Tags of the form #mtag are called m-tags: they denote multiple submatch values (the whole history of repetitions of this tag). All tags should be defined by the user as variables with the corresponding names. With standalone tags re2c uses leftmost greedy disambiguation: submatch positions correspond to the leftmost matching path through the regular expression.

The second option is -P --posix-captures: it enables POSIX-compliant capturing groups. In this mode parentheses in regular expressions denote the beginning and the end of capturing groups; the whole regular expression is group number zero. The number of groups for the matching rule is stored in a variable yynmatch, and submatch results are stored in yypmatch array. Both yynmatch and yypmatch should be defined by the user, and yypmatch size must be at least [yynmatch * 2]. Re2c provides a directive /*!maxnmatch:re2c*/ that defines YYMAXNMATCH: a constant equal to the maximal value of yynmatch among all rules. Note that re2c implements POSIX-compliant disambiguation: each subexpression matches as long as possible, and subexpressions that start earlier in regular expression have priority over those starting later. Capturing groups are translated into s-tags under the hood, therefore we use the word "tag" to describe them as well.

With both -P --posix-captures and T --tags options re2c uses efficient submatch extraction algorithm described in the Tagged Deterministic Finite Automata with Lookahead paper. The overhead on submatch extraction in the generated lexer grows with the number of tags --- if this number is moderate, the overhead is barely noticeable. In the lexer tags are implemented using a number of tag variables generated by re2c. There is no one-to-one correspondence between tag variables and tags: a single variable may be reused for different tags, and one tag may require multiple variables to hold all its ambiguous values. Eventually ambiguity is resolved, and only one final variable per tag survives. When a rule matches, all its tags are set to the values of the corresponding tag variables. The exact number of tag variables is unknown to the user; this number is determined by re2c. However, tag variables should be defined by the user as a part of the lexer state and updated by YYFILL, therefore re2c provides directives /*!stags:re2c*/ and /*!mtags:re2c*/ that can be used to declare, initialize and manipulate tag variables. These directives have two optional configurations: format = "@@"; (specifies the template where @@ is substituted with the name of each tag variable), and separator = ""; (specifies the piece of code used to join the generated pieces for different tag variables).

S-tags support the following operations:

  • save input position to an s-tag: t = YYCURSOR with default API or a user-defined operation YYSTAGP(t) with generic API
  • save default value to an s-tag: t = NULL with default API or a user-defined operation YYSTAGN(t) with generic API
  • copy one s-tag to another: t1 = t2

M-tags support the following operations:

  • append input position to an m-tag: a user-defined operation YYMTAGP(t) with both default and generic API
  • append default value to an m-tag: a user-defined operation YYMTAGN(t) with both default and generic API
  • copy one m-tag to another: t1 = t2

S-tags can be implemented as scalar values (pointers or offsets). M-tags need a more complex representation, as they need to store a sequence of tag values. The most naive and inefficient representation of an m-tag is a list (array, vector) of tag values; a more efficient representation is to store all m-tags in a prefix-tree represented as array of nodes (v, p), where v is tag value and p is a pointer to parent node.

Here is a simple example of using s-tags to parse an IPv4 address (see below for a more complex example that uses YYFILL).

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
#include <stdint.h>
static uint32_t num(const char *s, const char *e)
{

uint32_t n = 0;
for (; s < e; ++s) n = n * 10 + (*s - '0');
return n; } static const uint64_t ERROR = ~0lu; static uint64_t lex(const char *YYCURSOR) {
const char *YYMARKER, *o1, *o2, *o3, *o4;
/*!stags:re2c format = 'const char *@@;'; */
/*!re2c
re2c:yyfill:enable = 0;
re2c:flags:tags = 1;
re2c:define:YYCTYPE = char;
octet = [0-9] | [1-9][0-9] | [1][0-9][0-9] | [2][0-4][0-9] | [2][5][0-5];
dot = [.];
end = [\x00];
@o1 octet dot @o2 octet dot @o3 octet dot @o4 octet end {
return num(o4, YYCURSOR - 1)
+ (num(o3, o4 - 1) << 8)
+ (num(o2, o3 - 1) << 16)
+ (num(o1, o2 - 1) << 24);
}
* { return ERROR; }
*/ } int main() {
assert(lex("1.2.3.4") == 0x01020304);
assert(lex("127.0.0.1") == 0x7f000001);
assert(lex("255.255.255.255") == 0xffffffff);
assert(lex("1.2.3.") == ERROR);
assert(lex("1.2.3.256") == ERROR);
return 0; }


Here is a more complex example of using s-tags with YYFILL to parse a file with IPv4 addresses. Tag variables are part of the lexer state, and they are adjusted in YYFILL like other input positions. Note that it is necessary for s-tags because their values are invalidated after shifting buffer contents. It may not be necessary in a custom implementation where tag variables store offsets relative to the start of the input string rather than buffer, which may be the case with m-tags.

// re2c $INPUT -o $OUTPUT --tags
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <vector>
#define SIZE 4096
typedef struct {

FILE *file;
char buf[SIZE + 1], *lim, *cur, *mar, *tok;
// Tag variables must be part of the lexer state passed to YYFILL.
// They don't correspond to tags and should be autogenerated by re2c.
/*!stags:re2c format = 'const char *@@;'; */
int eof; } Input; static int fill(Input *in) {
if (in->eof) return 1;
const size_t free = in->tok - in->buf;
if (free < 1) return 2;
memmove(in->buf, in->tok, in->lim - in->tok);
in->lim -= free;
in->cur -= free;
in->mar -= free;
in->tok -= free;
// Tag variables need to be shifted like other input positions. The check
// for non-NULL is only needed if some tags are nested inside of alternative
// or repetition, so that they can have NULL value.
/*!stags:re2c format = "if (in->@@) in->@@ -= free;"; */
in->lim += fread(in->lim, 1, free, in->file);
in->lim[0] = 0;
in->eof |= in->lim < in->buf + SIZE;
return 0; } static void init(Input *in, FILE *file) {
in->file = file;
in->cur = in->mar = in->tok = in->lim = in->buf + SIZE;
// Initialization is only needed to avoid "use of uninitialized" warnings
// when shifting tags in YYFILL. In the lexer tags are guaranteed to be
// set before they are used (either to a valid input position, or NULL).
/*!stags:re2c format = "in->@@ = in->lim;"; */
in->eof = 0;
fill(in); } static uint32_t num(const char *s, const char *e) {
uint32_t n = 0;
for (; s < e; ++s) n = n * 10 + (*s - '0');
return n; } static bool lex(Input *in, std::vector<uint32_t> &ips) {
// User-defined local variables that store final tag values.
// They are different from tag variables autogenerated with /*!stags:re2c*/,
// as they are set at the end of match and used only in semantic actions.
const char *o1, *o2, *o3, *o4; loop:
in->tok = in->cur;
/*!re2c
re2c:eof = 0;
re2c:api:style = free-form;
re2c:define:YYCTYPE = char;
re2c:define:YYCURSOR = in->cur;
re2c:define:YYMARKER = in->mar;
re2c:define:YYLIMIT = in->lim;
re2c:define:YYFILL = "fill(in) == 0";
// The way tag variables are accessed from the lexer (not needed if tag
// variables are defined as local variables).
re2c:tags:expression = "in->@@";
octet = [0-9] | [1-9][0-9] | [1][0-9][0-9] | [2][0-4][0-9] | [2][5][0-5];
dot = [.];
eol = [\n];
@o1 octet dot @o2 octet dot @o3 octet dot @o4 octet eol {
ips.push_back(num(o4, in->cur - 1)
+ (num(o3, o4 - 1) << 8)
+ (num(o2, o3 - 1) << 16)
+ (num(o1, o2 - 1) << 24));
goto loop;
}
$ { return true; }
* { return false; }
*/ } int main() {
const char *fname = "input";
FILE *f;
Input in;
std::vector<uint32_t> have, want;
// Write a few IPv4 addresses to the input file and save them to compare
// against parse results.
f = fopen(fname, "w");
for (int i = 0; i < 256; ++i) {
fprintf(f, "%d.%d.%d.%d\n", i, i, i, i);
want.push_back(i + (i << 8) + (i << 16) + (i << 24));
}
fclose(f);
f = fopen(fname, "r");
init(&in, f);
assert(lex(&in, have) && have == want);
fclose(f);
remove(fname);
return 0; }


Here is an example of using POSIX capturing groups to parse an IPv4 address.

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
#include <stdint.h>
static uint32_t num(const char *s, const char *e)
{

uint32_t n = 0;
for (; s < e; ++s) n = n * 10 + (*s - '0');
return n; } /*!maxnmatch:re2c*/ static const uint64_t ERROR = ~0lu; static uint64_t lex(const char *YYCURSOR) {
const char *YYMARKER;
const char *yypmatch[YYMAXNMATCH * 2];
uint32_t yynmatch;
/*!stags:re2c format = 'const char *@@;'; */
/*!re2c
re2c:yyfill:enable = 0;
re2c:flags:posix-captures = 1;
re2c:define:YYCTYPE = char;
octet = [0-9] | [1-9][0-9] | [1][0-9][0-9] | [2][0-4][0-9] | [2][5][0-5];
dot = [.];
end = [\x00];
(octet) dot (octet) dot (octet) dot (octet) end {
assert(yynmatch == 5);
return num(yypmatch[8], yypmatch[9])
+ (num(yypmatch[6], yypmatch[7]) << 8)
+ (num(yypmatch[4], yypmatch[5]) << 16)
+ (num(yypmatch[2], yypmatch[3]) << 24);
}
* { return ERROR; }
*/ } int main() {
assert(lex("1.2.3.4") == 0x01020304);
assert(lex("127.0.0.1") == 0x7f000001);
assert(lex("255.255.255.255") == 0xffffffff);
assert(lex("1.2.3.") == ERROR);
assert(lex("1.2.3.256") == ERROR);
return 0; }


Here is an example of using m-tags to parse a semicolon-separated sequence of words (C++). Tag variables are stored in a tree that is packed in a vector.

// re2c $INPUT -o $OUTPUT 
#include <assert.h>
#include <vector>
#include <string>
static const int ROOT = -1;
struct Mtag {

int pred;
const char *tag; }; typedef std::vector<Mtag> MtagTree; typedef std::vector<std::string> Words; static void mtag(int *pt, const char *t, MtagTree *tree) {
Mtag m = {*pt, t};
*pt = (int)tree->size();
tree->push_back(m); } static void unfold(const MtagTree &tree, int x, int y, Words &words) {
if (x == ROOT) return;
unfold(tree, tree[x].pred, tree[y].pred, words);
const char *px = tree[x].tag, *py = tree[y].tag;
words.push_back(std::string(px, py - px)); } #define YYMTAGP(t) mtag(&t, YYCURSOR, &tree) #define YYMTAGN(t) mtag(&t, NULL, &tree) static bool lex(const char *YYCURSOR, Words &words) {
const char *YYMARKER;
/*!mtags:re2c format = "int @@ = ROOT;"; */
MtagTree tree;
int x, y;
/*!re2c
re2c:yyfill:enable = 0;
re2c:flags:tags = 1;
re2c:define:YYCTYPE = char;
(#x [a-z]+ #y [;])+ {
words.clear();
unfold(tree, x, y, words);
return true;
}
* { return false; }
*/ } int main() {
Words w;
assert(lex("one;two;three;", w) && w == Words({"one", "two", "three"}));
return 0; }


STORABLE STATE

With -f --storable-state option re2c generates a lexer that can store its current state, return to the caller, and later resume operations exactly where it left off. The default mode of operation in re2c is a "pull" model, in which the lexer "pulls" more input whenever it needs it. This may be unacceptable in cases when the input becomes available piece by piece (for example, if the lexer is invoked by the parser, or if the lexer program communicates via a socket protocol with some other program that must wait for a reply from the lexer before it transmits the next message). Storable state feature is intended exactly for such cases: it allows one to generate lexers that work in a "push" model. When the lexer needs more input, it stores its state and returns to the caller. Later, when more input becomes available, the caller resumes the lexer exactly where it stopped. There are a few changes necessary compared to the "pull" model:

  • Define YYSETSTATE() and YYGETSTATE(state) promitives.
  • Define yych, yyaccept and state variables as a part of persistent lexer state. The state variable should be initialized to -1.
  • YYFILL should return to the outer program instead of trying to supply more input. Return code should indicate that lexer needs more input.
  • The outer program should recognize situations when lexer needs more input and respond appropriately.
  • Use /*!getstate:re2c*/ directive if it is necessary to execute any code before entering the lexer.
  • Use configurations state:abort and state:nextlabel to further tweak the generated code.

Here is an example of a "push"-model lexer that reads input from stdin and expects a sequence of words separated by spaces and newlines. The lexer loops forever, waiting for more input. It can be terminated by sending a special EOF token --- a word "stop", in which case the lexer terminates successfully and prints the number of words it has seen. Abnormal termination happens in case of a syntax error, premature end of input (without the "stop" word) or in case the buffer is too small to hold a lexeme (for example, if one of the words exceeds buffer size). Premature end of input happens in case the lexer fails to read any input while being in the initial state --- this is the only case when EOF rule matches. Note that the lexer may call YYFILL twice before terminating (and thus require hitting Ctrl+D a few times). First time YYFILL is called when the lexer expects continuation of the current greedy lexeme (either a word or a whitespace sequence). If YYFILL fails, the lexer knows that it has reached the end of the current lexeme and executes the corresponding semantic action. The action jumps to the beginning of the loop, the lexer enters the initial state and calls YYFILL once more. If it fails, the lexer matches EOF rule. (Alternatively EOF rule can be used for termination instead of a special EOF lexeme.)

Example

// re2c $INPUT -o $OUTPUT -f
#include <assert.h>
#include <stdio.h>
#include <string.h>
#define DEBUG    0
#define LOG(...) if (DEBUG) fprintf(stderr, __VA_ARGS__);
#define BUFSIZE  10
typedef struct {

FILE *file;
char buf[BUFSIZE + 1], *lim, *cur, *mar, *tok;
unsigned yyaccept;
int state; } Input; static void init(Input *in, FILE *f) {
in->file = f;
in->cur = in->mar = in->tok = in->lim = in->buf + BUFSIZE;
in->lim[0] = 0; // append sentinel symbol
in->yyaccept = 0;
in->state = -1; } typedef enum {END, READY, WAITING, BAD_PACKET, BIG_PACKET} Status; static Status fill(Input *in) {
const size_t shift = in->tok - in->buf;
const size_t free = BUFSIZE - (in->lim - in->tok);
if (free < 1) return BIG_PACKET;
memmove(in->buf, in->tok, BUFSIZE - shift);
in->lim -= shift;
in->cur -= shift;
in->mar -= shift;
in->tok -= shift;
const size_t read = fread(in->lim, 1, free, in->file);
in->lim += read;
in->lim[0] = 0; // append sentinel symbol
return READY; } static Status lex(Input *in, unsigned int *recv) {
char yych;
/*!getstate:re2c*/ loop:
in->tok = in->cur;
/*!re2c
re2c:eof = 0;
re2c:api:style = free-form;
re2c:define:YYCTYPE = "char";
re2c:define:YYCURSOR = "in->cur";
re2c:define:YYMARKER = "in->mar";
re2c:define:YYLIMIT = "in->lim";
re2c:define:YYGETSTATE = "in->state";
re2c:define:YYSETSTATE = "in->state = @@;";
re2c:define:YYFILL = "return WAITING;";
packet = [a-z]+[;];
* { return BAD_PACKET; }
$ { return END; }
packet { *recv = *recv + 1; goto loop; }
*/ } void test(const char **packets, Status status) {
const char *fname = "pipe";
FILE *fw = fopen(fname, "w");
FILE *fr = fopen(fname, "r");
setvbuf(fw, NULL, _IONBF, 0);
setvbuf(fr, NULL, _IONBF, 0);
Input in;
init(&in, fr);
Status st;
unsigned int send = 0, recv = 0;
for (;;) {
st = lex(&in, &recv);
if (st == END) {
LOG("done: got %u packets\n", recv);
break;
} else if (st == WAITING) {
LOG("waiting...\n");
if (*packets) {
LOG("sent packet %u\n", send);
fprintf(fw, "%s", *packets++);
++send;
}
st = fill(&in);
LOG("queue: '%s'\n", in.buf);
if (st == BIG_PACKET) {
LOG("error: packet too big\n");
break;
}
assert(st == READY);
} else {
assert(st == BAD_PACKET);
LOG("error: ill-formed packet\n");
break;
}
}
LOG("\n");
assert(st == status);
if (st == END) assert(recv == send);
fclose(fw);
fclose(fr);
remove(fname); } int main() {
const char *packets1[] = {0};
const char *packets2[] = {"zero;", "one;", "two;", "three;", "four;", 0};
const char *packets3[] = {"zer0;", 0};
const char *packets4[] = {"goooooooooogle;", 0};
test(packets1, END);
test(packets2, END);
test(packets3, BAD_PACKET);
test(packets4, BIG_PACKET);
return 0; }


REUSABLE BLOCKS

Reuse mode is enabled with the -r --reusable option. In this mode re2c allows one to reuse definitions, configurations and rules specified by a /*!rules:re2c*/ block in subsequent /*!use:re2c*/ blocks. As of re2c-1.2 it is possible to mix such blocks with normal /*!re2c*/ blocks; prior to that re2c expects a single rules-block followed by use-blocks (normal blocks are disallowed). Use-blocks can have additional definitions, configurations and rules: they are merged to those specified by the rules-block. A very common use case for -r --reusable option is a lexer that supports multiple input encodings: lexer rules are defined once and reused multiple times with encoding-specific configurations, such as re2c:flags:utf-8.

Below is an example of a multi-encoding lexer: it reads a phrase with Unicode math symbols and accepts input either in UTF8 or in UT32. Note that the --input-encoding utf8 option allows us to write UTF8-encoded symbols in the regular expressions; without this option re2c would parse them as a plain ASCII byte sequnce (and we would have to use hexadecimal escape sequences).

Example

// re2c $INPUT -o $OUTPUT -r --input-encoding utf8
#include <assert.h>
#include <stdint.h>
/*!rules:re2c

re2c:yyfill:enable = 0;
"∀x ∃y: p(x, y)" { return 0; }
* { return 1; } */ static int lex_utf8(const uint8_t *YYCURSOR) {
const uint8_t *YYMARKER;
/*!use:re2c
re2c:define:YYCTYPE = uint8_t;
re2c:flags:8 = 1;
*/ } static int lex_utf32(const uint32_t *YYCURSOR) {
const uint32_t *YYMARKER;
/*!use:re2c
re2c:define:YYCTYPE = uint32_t;
re2c:flags:8 = 0;
re2c:flags:u = 1;
*/ } int main() {
static const uint8_t s8[] = // UTF-8
{ 0xe2, 0x88, 0x80, 0x78, 0x20, 0xe2, 0x88, 0x83, 0x79
, 0x3a, 0x20, 0x70, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x29 };
static const uint32_t s32[] = // UTF32
{ 0x00002200, 0x00000078, 0x00000020, 0x00002203
, 0x00000079, 0x0000003a, 0x00000020, 0x00000070
, 0x00000028, 0x00000078, 0x0000002c, 0x00000020
, 0x00000079, 0x00000029 };
assert(lex_utf8(s8) == 0);
assert(lex_utf32(s32) == 0);
return 0; }


ENCODING SUPPORT

Speaking of encodings, it is necessary to understand the difference between code points and code units. Code point is an abstract symbol. Code unit is the smallest atomic unit of storage in the encoded text. A single code point may be represented with one or more code units. In a fixed-length encoding all code points are represented with the same number of code units. In a variable-length encoding code points may be represented with a different number of code units. Note that the "any" rule [^] matches any code point, but not necessarily any code unit. The only way to match any code unit regardless of the encoding it the default rule *. YYCTYPE size should be equal to the size of code unit.

Re2c supports the following encodings: ASCII, EBCDIC, UCS2, UTF8, UTF16 and UTF32.

  • ASCII is enabled by default. It is a fixed-length encoding with code space [0-255] and 1-byte code points and code units.
  • EBCDIC is enabled with -e, --ecb option. It a fixed-length encoding with code space [0-255] and 1-byte code points and code units.
  • UCS2 is enabled with -w, --wide-chars option. It is a fixed-length encoding with code space [0-0xFFFF] and 2-byte code points and code units.
  • UTF8 is enabled with -8, --utf-8 option. It is a variable-length Unicode encoding with code space [0-0x10FFFF]. Code points are represented with one, two, three or four 1-byte code units.
  • UTF16 is enabled with -x, --utf-16 option. It is a variable-length Unicode encoding with code space [0-0x10FFFF]. Code points are represented with one or two 2-byte code units.
  • UTF32 is enabled with -u, --unicode option. It is a fixed-length Unicode encoding with code space [0-0x10FFFF] and 4-byte code points and code units.

Encodings can also be set or unset using re2c:flags configuration, for example re2c:flags:8 = 1; enables UTF8.

Include file include/unicode_categories.re provides re2c definitions for the standard Unicode categories.

Option --input-encoding utf8 enables Unicode literals in regular expressions.

Option --encoding-policy <fail | substitute | ignore> specifies the way re2c handles Unicode surrogates: code points in the range [0xD800-0xDFFF].

Example

// re2c $INPUT -o $OUTPUT -8 --case-ranges -i
//
// Simplified "Unicode Identifier and Pattern Syntax"
// (see https://unicode.org/reports/tr31)
#include <assert.h>
#include <stdint.h>
/*!include:re2c "unicode_categories.re" */
static int lex(const char *YYCURSOR)
{

const char *YYMARKER;
/*!re2c
re2c:define:YYCTYPE = 'unsigned char';
re2c:yyfill:enable = 0;
id_start = L | Nl | [$_];
id_continue = id_start | Mn | Mc | Nd | Pc | [\u200D\u05F3];
identifier = id_start id_continue*;
identifier { return 0; }
* { return 1; }
*/ } int main() {
assert(lex("_Ыдентификатор") == 0);
return 0; }


START CONDITIONS

Conditions are enabled with -c --conditions. This option allows one to encode multiple interrelated lexers within the same re2c block.

Each lexer corresponds to a single condition. It starts with a label of the form yyc_name, where name is condition name and yyc prefix can be adjusted with configuration re2c:condprefix. Different lexers are separated with a comment /* *********************************** */ which can be adjusted with configuration re2c:cond:divider.

Furthermore, each condition has a unique identifier of the form yycname, where name is condition name and yyc prefix can be adjusted with configuration re2c:condenumprefix. Identifiers have the type YYCONDTYPE and should be generated with /*!types:re2c*/ directive or -t --type-header option. Users shouldn't define these identifiers manually, as the order of conditions is not specified.

Before all conditions re2c generates entry code that checks the current condition identifier and transfers control flow to the start label of the active condition. After matching some rule of this condition, lexer may either transfer control flow back to the entry code (after executing the associated action and optionally setting another condition with =>), or use :=> shortcut and transition directly to the start label of another condition (skipping the action and the entry code). Configuration re2c:cond:goto allows one to change the default behavior.

Syntactically each rule must be preceded with a list of comma-separated condition names or a wildcard * enclosed in angle brackets < and >. Wildcard means "any condition" and is semantically equivalent to listing all condition names. Here regexp is a regular expression, default refers to the default rule *, and action is a block of code.

  • <conditions-or-wildcard> regexp-or-default action
  • <conditions-or-wildcard> regexp-or-default => condition action
  • <conditions-or-wildcard> regexp-or-default :=> condition

Rules with an exclamation mark ! in front of condition list have a special meaning: they have no regular expression, and the associated action is merged as an entry code to actions of normal rules. This might be a convenient place to peform a routine task that is common to all rules.

<!conditions-or-wildcard> action

Another special form of rules with an empty condition list <> and no regular expression allows one to specify an "entry condition" that can be used to execute code before entering the lexer. It is semantically equivalent to a condition with number zero, name 0 and an empty regular expression.

  • <> action
  • <> => condition action
  • <> :=> condition

Example

// re2c $INPUT -o $OUTPUT -ci
#include <stdint.h>
#include <limits.h>
#include <assert.h>
static const uint64_t ERROR = ~0lu;
/*!types:re2c*/
template<int BASE> static void adddgt(uint64_t &u, unsigned int d)
{

u = u * BASE + d;
if (u > UINT32_MAX) u = ERROR; } static uint64_t parse_u32(const char *s) {
const char *YYMARKER;
int c = yycinit;
uint64_t u = 0;
/*!re2c
re2c:yyfill:enable = 0;
re2c:api:style = free-form;
re2c:define:YYCTYPE = char;
re2c:define:YYCURSOR = s;
re2c:define:YYGETCONDITION = "c";
re2c:define:YYSETCONDITION = "c = @@;";
<*> * { return ERROR; }
<init> '0b' / [01] :=> bin
<init> "0" :=> oct
<init> "" / [1-9] :=> dec
<init> '0x' / [0-9a-fA-F] :=> hex
<bin, oct, dec, hex> "\x00" { return u; }
<bin> [01] { adddgt<2> (u, s[-1] - '0'); goto yyc_bin; }
<oct> [0-7] { adddgt<8> (u, s[-1] - '0'); goto yyc_oct; }
<dec> [0-9] { adddgt<10>(u, s[-1] - '0'); goto yyc_dec; }
<hex> [0-9] { adddgt<16>(u, s[-1] - '0'); goto yyc_hex; }
<hex> [a-f] { adddgt<16>(u, s[-1] - 'a' + 10); goto yyc_hex; }
<hex> [A-F] { adddgt<16>(u, s[-1] - 'A' + 10); goto yyc_hex; }
*/ } int main() {
assert(parse_u32("1234567890") == 1234567890);
assert(parse_u32("0b1101") == 13);
assert(parse_u32("0x7Fe") == 2046);
assert(parse_u32("0644") == 420);
assert(parse_u32("9999999999") == ERROR);
assert(parse_u32("") == ERROR);
return 0; }


SKELETON PROGRAMS

With the -S, --skeleton option, re2c ignores all non-re2c code and generates a self-contained C program that can be further compiled and executed. The program consists of lexer code and input data. For each constructed DFA (block or condition) re2c generates a standalone lexer and two files: an .input file with strings derived from the DFA and a .keys file with expected match results. The program runs each lexer on the corresponding .input file and compares results with the expectations. Skeleton programs are very useful for a number of reasons:

  • They can check correctness of various re2c optimizations (the data is generated early in the process, before any DFA transformations have taken place).
  • Generating a set of input data with good coverage may be useful for both testing and benchmarking.
  • Generating self-contained executable programs allows one to get minimized test cases (the original code may be large or have a lot of dependencies).

The difficulty with generating input data is that for all but the most trivial cases the number of possible input strings is too large (even if the string length is limited). Re2c solves this difficulty by generating sufficiently many strings to cover almost all DFA transitions. It uses the following algorithm. First, it constructs a skeleton of the DFA. For encodings with 1-byte code unit size (such as ASCII, UTF-8 and EBCDIC) skeleton is just an exact copy of the original DFA. For encodings with multibyte code units skeleton is a copy of DFA with certain transitions omitted: namely, re2c takes at most 256 code units for each disjoint continuous range that corresponds to a DFA transition. The chosen values are evenly distributed and include range bounds. Instead of trying to cover all possible paths in the skeleton (which is infeasible) re2c generates sufficiently many paths to cover all skeleton transitions, and thus trigger the corresponding conditional jumps in the lexer. The algorithm implementation is limited by ~1Gb of transitions and consumes constant amount of memory (re2c writes data to file as soon as it is generated).

VISUALIZATION AND DEBUG

With the -D, --emit-dot option, re2c does not generate code. Instead, it dumps the generated DFA in DOT format. One can convert this dump to an image of the DFA using Graphviz or another library. Note that this option shows the final DFA after it has gone through a number of optimizations and transformations. Earlier stages can be dumped with various debug options, such as --dump-nfa, --dump-dfa-raw etc. (see the full list of options).

SEE ALSO

You can find more information about re2c at the official website: http://re2c.org. Similar programs are flex(1), lex(1), quex(http://quex.sourceforge.net).

AUTHORS

Re2c was originaly written by Peter Bumbulis in 1993. Since then it has been developed and maintained by multiple volunteers; mots notably, Brain Young, Marcus Boerger, Dan Nuffer and Ulya Trofimovich.