(**************************************************************************) (* *) (* Menhir *) (* *) (* François Pottier and Yann Régis-Gianas, INRIA Rocquencourt *) (* *) (* Copyright 2005 Institut National de Recherche en Informatique et *) (* en Automatique. All rights reserved. This file is distributed *) (* under the terms of the Q Public License version 1.0, with the *) (* change described in file LICENSE. *) (* *) (**************************************************************************) (* The code generator. *) (* TEMPORARY No GADTs for now. I represent the stack using nested anonymous tuples -- and some magic. *) (* TEMPORARY lorsqu'on a plusieurs points d'entrée, le type de retour de toutes les fonctions dépend du point d'entrée choisi... Avec GADTs, on doit pouvoir s'en tirer en paramétrant le type des états par un nouveau paramètre, qui indique le type du résultat final attendu. Chaque état initial fixera ce paramètre à la valeur souhaitée; et les autres états seront neutres vis-à-vis de ce paramètre, mais indiqueront qu'il reste constant tout au long de la pile. Le type de run doit alors être de la forme ('stack, 'result) state -> 'stack -> 'result *) (* TEMPORARY À terme, supprimer les assert dans le code engendré. *) open Grammar open IL open CodeBits open TokenType open Interface (* ------------------------------------------------------------------------ *) (* Here is a description of our code generation mechanism. Every internal function that we produce is parameterized by the parser environment [env], which contains (pointers to) the lexer, the lexing buffer, the last token read, etc. No global variables are exploited, so our parsers are reentrant. The functions that we export do not expect an environment as a parameter; they create a fresh one when invoked. Every state [s] is translated to a [run] function and an [action] function. To a first approximation, the only parameter of the [run] function, besides [env], is the stack. However, in some cases (consult the predicate [runpushes]), the top stack cell is not yet allocated when [run s] is called. The cell's contents are passed as extra parameters, and it is [run]'s responsibility to allocate that cell. (When [run] is the target of a shift transition, the position parameters [startp] and [endp] are redundant with the [env] parameter, because they are always equal to [env.startp] and [env.endp]. However, this does not appear to make a great difference in terms of code size, and makes our life easier, so we do not attempt to eliminate this redundancy.) The first thing in [run] is to discard a token, if the state was entered through a shift transition, and to peek at the lookahead token. When the current token is to be discarded, the [discard] function is invoked. It discards the current token, invokes the lexer to obtain a new token, and returns the latter. When we only wish to peek at the current token, without discarding it, we simply read [env.token]. (We have to be careful in cases where the current lookahead token might be [error], since, in those cases, [env.token] is meaningless; see below.) Once the lookahead token is obtained, [run] calls [action]. The parameters of [action] are the stack and the lookahead token. [action] performs a case analysis of the lookahead token. Each branch performs one of the following. In shift branches, control is dispatched to another [run] function, with appropriate parameters, typically the current stack plus the information that should go into the new top stack cell (a state, a semantic value, locations). In reduce branches, a [reduce] function is invoked. In the default branch, error handling is initiated (see below). The [reduce] function associated with production [prod] pops as many stack cells as necessary, retrieving semantic values and the state [s] that initiated the reduction. It then evaluates the semantic action, which yields a new semantic value. (This is the only place where semantic actions are evaluated, so that semantic actions are never duplicated.) It then passes control on to the [goto] function associated with the nonterminal [nt], where [nt] is the left-hand side of the production [prod]. The [goto] function associated with nonterminal [nt] expects just one parameter besides the environment -- namely, the stack. However, in some cases (consult the predicate [gotopushes]), the top stack cell is not allocated yet, so its contents are passed as extra parameters. In that case, [goto] first allocates that cell. Then, it examines the state found in that cell and performs a goto transition, that is, a shift transition on the nonterminal symbol [nt]. This simply consists in passing control to the [run] function associated with the transition's target state. If this case analysis only has one branch, because all transitions for [nt] lead to the same target state, then no case analysis is required. In principle, a stack cell contains a state, a semantic value, and start and end positions. However, the state can be omitted if it is never consulted by a [goto] function. The semantic value can be omitted if it is associated with a token that was declared not to carry a semantic value. (One could also omit semantic values for nonterminals whose type was declared to be [unit], but that does not seem very useful.) The start or end position can be omitted if they are associated with a symbol that does not require keeping track of positions. When all components of a stack cell are omitted, the entire cell disappears, so that no memory allocation is required. For each start symbol [nt], an entry point function, named after [nt], is generated. Its parameters are a lexer and a lexing buffer. The function allocates and initializes a parser environment and transfers control to the appropriate [run] function. Our functions are grouped into one huge [let rec] definition. The inliner, implemented as a separate module, will inline functions that are called at most once, remove dead code (although there should be none or next to none), and possibly perform other transformations. I note that, if a state can be entered only through (nondefault) reductions, then, in that state, the lookahead token must be a member of the set of tokens that allow these reductions, and by construction, there must exist an action on that token in that state. Thus, the default branch (which signals an error when the lookahead token is not a member of the expected set) is in fact dead. It would be nice (but difficult) to exploit types to prove that. However, one could at least replace the code of that branch with a simple [assert false]. TEMPORARY do it *) (* ------------------------------------------------------------------------ *) (* Here is a description of our error recovery mechanism. With every state [s], we associate an [error] function. If [s] is willing to act when the lookahead token is [error], then this function tells how. This includes *both* shift *and* reduce actions. (For some reason, yacc/ocamlyacc/mule/bison can only shift on [error].) If [s] is unable to act when the lookahead token is [error], then this function pops a stack cell, extracts a state [s'] out of it, and transfers control, via a global [errorcase] dispatch function, to the [error] function associated with [s']. (Because some stack cells do not physically hold a state, this description is somewhat simpler than the truth, but that's the idea.) When an error is detected in state [s], one of two things happens (see [initiate]). a. If [s] can do error recovery and if no token was successfully shifted since the last [error] token was shifted, then the current token is discarded and the current state remains unchanged, that is, the [action] function associated with [s] is re-entered. b. Otherwise, the [error] function associated with [s] is invoked. In case (b), immediately before invoking the [error] function, the counter [env.shifted] is reset to -1. By convention, this means that the current token is discarded and replaced with an [error] token. The [error] token transparently inherits the positions associated with the underlying concrete token. Whenever we attempt to consult the current token, we check whether [env.shifted] is -1 and, if that is the case, resume error handling by calling the [error] function associated with the current state. This allows a series of reductions to correctly take place when the lookahead token is [error]. In many states, though, it is possible to statically prove that [env.shifted] cannot be -1. In that case, we produce a lookup of [env.token] without checking [env.shifted]. The counter [env.shifted] is incremented when a token is shifted. In particular, immediately after the [error] token is shifted, [env.shifted] is zero. The increment is conditional, so as to avoid overflow. It is performed inside [discard]. States with default reductions perform a reduction regardless of the current lookahead token, which can be either [error] or a regular token. A question that bothered me for a while was, when unwinding the stack, do we stop at a state that has a default reduction? Should it be considered able to handle the error token? I now believe that the answer is, this cannot happen. Indeed, if a state has a default reduction, then, whenever it is entered, reduction is performed and that state is exited, which means that it is never pushed onto the stack. So, it is fine to consider that a state with a default reduction is unable to handle errors. I note that a state that can handle [error] and has a default reduction must in fact have a reduction action on [error]. A state that can perform error recovery (that is, a state whose incoming symbol is [error]) never performs a default reduction. The reason why this is so is given in [Invariant]. A consequence of this decision is that reduction is not performed until error recovery is successful. This behavior could be surprising if it were the default behavior; however, recall that error recovery is disabled unless [--error-recovery] was specified. When an error is detected and an error production is reduced, the user might like to know how recent the previous error was, so as (for instance) to suppress diagnostic messages if it was too recent. (yacc and ocamlyacc have their own, hard-wired, idiosyncratic mechanism for that.) We provide access to this information as follows. When a new error is detected and [env.shifted] is set to -1, the previous value of [env.shifted] is saved to [env.previouserror]. Thus, the number of tokens that were shifted between the two errors is recorded. This information is then made available to the user via the $previouserror keyword. I note that error recovery, case (a) above, can cause the parser to enter an infinite loop. Indeed, the token stream is in principle infinite -- for instance, many lexers will return an EOF token forever after some finite supply of tokens has been exhausted. If we hit EOF while in error recovery mode, and if EOF is not accepted at the current state, we will keep discarding EOF and asking for a new token. The way out of this situation is to design the grammar in such a way that it cannot happen. We provide a warning to help with this task. *) (* The variable that holds the environment. This is a parameter to all functions. We do not make it a global variable because we wish to preserve re-entrancy. *) let env = prefix "env" (* The type of environments. *) let tcenv = env let tenv = TypApp (tcenv, []) (* The variable that holds the stack. *) let stack = prefix "stack" (* A variable used to hold a state. *) let state = prefix "s" (* A variable used to hold the lookahead token. *) let token = "_tok" (* A variable used to hold a semantic value. *) let semv = "_v" (* Variables used to hold start and end positions. Do not change these names! They are chosen to coincide with the $startpos and $endpos keywords, which the lexer rewrites to _startpos and _endpos, so that binding these variables before executing a semantic action is meaningful. *) let startp = "_startpos" let endp = "_endpos" (* The [assertfalse] function. We have just one of these, in order to save code size. It should become unnecessary when we add GADTs. *) let assertfalse = prefix "fail" (* The [discard] function. *) let discard = prefix "discard" (* The [initenv] function. *) let initenv = prefix "init" (* The [run] function associated with a state [s]. *) let run s = prefix (Printf.sprintf "run%d" (Lr1.number s)) (* The [action] function associated with a state [s]. *) let action s = prefix (Printf.sprintf "action%d" (Lr1.number s)) (* The [goto] function associated with a nonterminal [nt]. *) let goto nt = prefix (Printf.sprintf "goto_%s" (Nonterminal.print true nt)) (* The [reduce] function associated with a production [prod]. *) let reduce prod = prefix (Printf.sprintf "reduce%d" (Production.p2i prod)) (* The [errorcase] function. *) let errorcase = prefix "errorcase" (* The [error] function associated with a state [s]. *) let error s = prefix (Printf.sprintf "error%d" (Lr1.number s)) (* The constant associated with a state [s]. *) let statecon s = dataprefix (Printf.sprintf "State%d" (Lr1.number s)) let estatecon s = EData (statecon s, []) let pstatecon s = PData (statecon s, []) let pstatescon ss = POr (List.map pstatecon ss) (* The type variable associated with a nonterminal [nt]. *) let ntvar nt = Infer.ntvar (Nonterminal.print true nt) (* The type of states. *) let tcstate = prefix "state" let tstate = TypApp (tcstate, []) (* We preallocate the [Error] exception and store it into a global variable. This allows saving code at the sites where the exception is raised. Don't change the conventional name [_eRR], it is shared with the lexer, which replaces occurrences of the [$syntaxerror] keyword with [(raise _eRR)]. *) let parse_error = "_eRR" let errorval = EVar parse_error (* The [print_token] function. This automatically generated function is used in [--trace] mode. *) let print_token = prefix "print_token" (* Fields in the environment record. *) let flexer = prefix "lexer" let flexbuf = prefix "lexbuf" let ftoken = prefix "token" let fshifted = prefix "shifted" let fstartp = prefix "startp" let fendp = prefix "endp" let fpreviouserror = prefix "previouserror" (* The type variable that represents the stack tail. *) let tvtail = tvprefix "tail" let ttail = TypVar tvtail (* The result type for every function. TEMPORARY *) let tvresult = tvprefix "return" let tresult = TypVar tvresult (* ------------------------------------------------------------------------ *) (* Helpers for code production. *) let concatif condition xs = if condition then xs else [] let insertif condition x = if condition then [ x ] else [] let var x : expr = EVar x let pvar x : pattern = PVar x let magic e : expr = EMagic e let nomagic e = e let efalse : expr = EData ("false", []) let etrue : expr = EData ("true", []) let assertshifted operator constant : pattern * expr = PUnit, EApp (EVar "assert", [ EApp (EVar operator, [ ERecordAccess (EVar env, fshifted); EIntConst constant ]) ]) let etuple = function | [] -> assert false | [ e ] -> e | es -> ETuple es let ptuple = function | [] -> assert false | [ p ] -> p | ps -> PTuple ps let trace (format : string) (args : expr list) : (pattern * expr) list = if Settings.trace then [ PUnit, EApp (EVar "Printf.fprintf", (EVar "stderr") :: (EStringConst (format ^"\n%!")) :: args) ] else [] let tracecomment (comment : string) (body : expr) : expr = if Settings.trace then blet (trace comment [], body) else EComment (comment, body) let auto2scheme t = scheme [ tvtail; tvresult ] t (* ------------------------------------------------------------------------ *) (* Determine whether at least one semantic action mentions $previouserror. *) let previouserror_required : bool = Production.foldx (fun prod accu -> accu || Action.has_previouserror (Production.action prod) ) false (* ------------------------------------------------------------------------ *) (* This inverts a mapping of tokens to productions into a mapping of productions to sets of tokens. This is needed to avoid producing two (or more) separate branches that call the same [reduce] function. Instead, we generate just one branch, guarded by a [POr] pattern. *) let invert reductions : TerminalSet.t ProductionMap.t = TerminalMap.fold (fun tok prods inverse -> let prod = Misc.single prods in let toks = try ProductionMap.lookup prod inverse with Not_found -> TerminalSet.empty in ProductionMap.add prod (TerminalSet.add tok toks) inverse ) reductions ProductionMap.empty (* ------------------------------------------------------------------------ *) (* Here is how we check whether state [s] should have a default reduction. We check whether [s] has no outgoing shift transitions and only has one possible reduction action. In that case, we produce a default reduction action, that is, we perform reduction without consulting the lookahead token. This saves code, but can alter the parser's behavior in the presence of errors. A state that can perform error recovery (that is, a state whose incoming symbol is [error]) never performs a default reduction. This is explained in [Invariant]. Actually, we allow one exception: if the state has a single (reduction) action on "#", as explained in the next paragraph, then we perform this default reduction and do not allow error recovery to take place. Error recovery would not make much sense, since we believe we are at the end of file. The check for default actions subsumes the check for the case where [s] admits a reduce action with lookahead symbol "#". In that case, it must be the only possible action -- see [Lr1.default_conflict_resolution]. That is, we have reached a point where we have recognized a well-formed input and are now expecting an end-of-stream. In that case, performing reduction without looking at the next token is the right thing to do, since there should in fact be none. The state that we reduce to will also have the same property, and so on, so we will in fact end up rewinding the entire stack and accepting the input when the stack becomes empty. *) let (has_default_reduction : Lr1.node -> (Production.index * TerminalSet.t) option), hdrcount = Misc.tabulateo Lr1.number Lr1.fold Lr1.n (fun s -> match ProductionMap.is_singleton (invert (Lr1.reductions s)) with | Some (_, toks) as reduction when SymbolMap.purelynonterminal (Lr1.transitions s) -> if TerminalSet.mem Terminal.sharp toks then (* Perform default reduction on "#". *) reduction else if Invariant.recoverer s then (* Do not perform default reduction. Allow error recovery. *) None else (* Perform default reduction. *) reduction | Some _ | None -> None ) let () = Error.logC 1 (fun f -> Printf.fprintf f "%d out of %d states have a default reduction.\n" hdrcount Lr1.n) (* ------------------------------------------------------------------------ *) (* Determine whether the [goto] function for nonterminal [nt] will push a new cell onto the stack. If it doesn't, then that job is delegated to the [run] functions called by [goto]. One could decide that [gotopushes] always returns true, and produce decent code. As a refinement, we decide to drive the [push] operation inside the [run] functions if all of them are able to eliminate this operation via shiftreduce optimization. This will be the case if all of these [run] functions implement a default reduction of a non-epsilon production. If that is not the case, then [gotopushes] returns true. In general, it is good to place the [push] operation inside [goto], because multiple [reduce] functions transfer control to [goto], and [goto] in turn transfer control to multiple [run] functions. Hence, this is where code sharing is maximal. All of the [run] functions that [goto] can transfer control to expect a stack cell of the same shape (indeed, the symbol [nt] is the same in every case, and the state is always represented), which makes this decision possible. *) let gotopushes : Nonterminal.t -> bool = Nonterminal.tabulate (fun nt -> not ( Lr1.targets (fun accu _ target -> accu && match has_default_reduction target with | Some (prod, _) -> Production.length prod > 0 | None -> false ) true (Symbol.N nt) ) ) (* ------------------------------------------------------------------------ *) (* Determine whether the [run] function for state [s] will push a new cell onto the stack. Our convention is this. If this [run] function is entered via a shift transition, then it is in charge of pushing a new stack cell. If it is entered via a goto transition, then it is in charge of pushing a new cell if and only if the [goto] function that invoked it did not do so. Last, if this [run] function is invoked directly by an entry point, then it does not push a stack cell. *) let runpushes s = match Lr1.incoming_symbol s with | Some (Symbol.T _) -> true | Some (Symbol.N nt) -> not (gotopushes nt) | None -> false (* ------------------------------------------------------------------------ *) (* [semvtypent nt] is the type of the semantic value associated with nonterminal [nt]. *) let semvtypent nt = match Nonterminal.ocamltype nt with | None -> (* [nt] has unknown type. If we we have run [Infer], then this can't happen. However, running type inference is only an option, so we still have to deal with that case. *) TypVar (ntvar nt) | Some ocamltype -> (* [nt] has known type. *) TypTextual ocamltype (* [semvtypetok tok] is the type of the semantic value associated with token [tok]. There is no such type if the token does not have a semantic value. *) let semvtypetok tok = match Terminal.ocamltype tok with | None -> (* Token has unit type and is omitted in stack cell. *) [] | Some ocamltype -> (* Token has known type. *) [ TypTextual ocamltype ] (* [semvtype symbol] is the type of the semantic value associated with [symbol]. *) let semvtype = function | Symbol.T tok -> semvtypetok tok | Symbol.N nt -> [ semvtypent nt ] (* [symvalt] returns the empty list if the symbol at hand carries no semantic value and the singleton list [[f t]] if it carries a semantic value of type [t]. *) let symvalt symbol f = match semvtype symbol with | [] -> [] | [ t ] -> [ f t ] | _ -> assert false (* These return either the empty list or the singleton list [[x]], depending on whether the symbol at hand carries a semantic value. *) let symval symbol x = match semvtype symbol with | [] -> [] | [ _ ] -> [ x ] | _ -> assert false let tokval tok x = symval (Symbol.T tok) x (* ------------------------------------------------------------------------ *) (* In some situations, we are able to fuse a shift (or goto) transition with a reduce transition, which means that we save the cost (in speed and in code size) of pushing and popping the top stack cell. This involves creating a modified version of the [reduce] function associated with a production [prod], where the contents of the top stack cell are passed as extra parameters. Because we wish to avoid code duplication, we perform this change only if all call sites for [reduce] agree on this modified calling convention. At the call site, the optimization is possible only if a stack cell allocation exists and is immediately followed by a call to [reduce]. This is the case inside the [run] function for state [s] when [run] pushes a stack cell and performs a default reduction. This optimization amounts to coalescing the push operation inside [run] with the pop operation that follows inside [reduce]. Unit production elimination, on the other hand, would coalesce the pop operation inside [reduce] with the push operation that follows inside [goto]. For this reason, the two are contradictory. As a result, we do not attempt to perform unit production elimination. In fact, we did implement it at one point and found that it was seldom applicable, because preference was given to the shiftreduce optimization. There are cases where shiftreduce optimization does not make any difference, for instance, if production [prod] is never reduced, or if the top stack cell is in fact nonexistent. *) let (shiftreduce : Production.index -> bool), shiftreducecount = Production.tabulate (fun prod -> (* Check that this production pops at least one stack cell. *) Production.length prod > 0 && (* Check that all call sites push a stack cell and have a default reduction. *) Invariant.fold_reduced (fun s accu -> accu && (match has_default_reduction s with None -> false | Some _ -> true) && (runpushes s) ) prod true ) let () = Error.logC 1 (fun f -> Printf.fprintf f "%d out of %d productions exploit shiftreduce optimization.\n" shiftreducecount Production.n) (* Check that, as predicted above, [gotopushes nt] returns [false] only when all of the [run] functions that follow it perform shiftreduce optimization. This can be proved as follows. If [gotopushes nt] returns [false], then every successor state [s] has a default reduction for some non-epsilon production [prod]. Furthermore, all states that can reduce [prod] must be successors of that same [goto] function: indeed, because the right-hand side of the production ends with symbol [nt], every state that can reduce [prod] must be entered through [nt]. So, at all such states, [runpushes] is true, which guarantees that [shiftreduce prod] is true as well. *) let () = assert ( Nonterminal.fold (fun nt accu -> accu && if gotopushes nt then true else Lr1.targets (fun accu _ target -> accu && match has_default_reduction target with | Some (prod, _) -> shiftreduce prod | None -> false ) true (Symbol.N nt) ) true ) (* ------------------------------------------------------------------------ *) (* Type production. *) (* This is the type of states. Only states that are represented are declared. *) let statetypedef = { typename = tcstate; typeparams = []; typerhs = TDefSum ( Lr1.fold (fun defs s -> if Invariant.represented s then { dataname = statecon s; datavalparams = []; datatypeparams = None } :: defs else defs ) [] ); typeconstraint = None } (* This is the type of parser environments. *) let field modifiable name t = { modifiable = modifiable; fieldname = name; fieldtype = type2scheme t } let envtypedef = { typename = tcenv; typeparams = []; typerhs = TDefRecord ([ (* The lexer itself. *) field false flexer tlexer; (* The lexing buffer. *) field false flexbuf tlexbuf; (* The last token that was read from the lexer. This is the head of the token streamm unless the flag [token_is_error] is set. *) field true ftoken ttoken; (* The start position of the above token. *) field true fstartp tposition; (* The end position of the above token. *) field true fendp tposition; (* How many tokens were successfully shifted since the last [error] token was shifted. When this counter is -1, the head of the token stream is the [error] token, and the contents of the [token] field is irrelevant. The token following [error] is obtained by invoking the lexer again. *) field true fshifted tint; ] @ (* If at least one semantic action mentions $previouserror, then we keep track of this information. *) insertif previouserror_required (field true fpreviouserror tint) ); typeconstraint = None } (* [curry] curries the top stack cell in a type [t] of the form [(stack type) arrow (result type)]. [t] remains unchanged if the stack type does not make at least one cell explicit. *) let curry = function | TypArrow (TypTuple (tstack :: tcell), tresult) -> TypArrow (tstack, marrow tcell tresult) | TypArrow _ as t -> t | _ -> assert false (* [curryif true] is [curry], [curryif false] is the identity. *) let curryif flag t = if flag then curry t else t (* Types for stack cells. [celltype tailtype holds_state symbol] returns the type of a stack cell. The parameter [tailtype] is the type of the tail of the stack. The flag [holds_state] tells whether the cell holds a state. The parameter [symbol] is used to determine whether the cell holds a semantic value and what its type is. A subtlety here and in [curry] above is that singleton stack cells give rise to singleton tuple types, which the type printer eliminates, but which do exist internally. As a result, [curry] always correctly removes the top stack cell, even if it is a singleton tuple cell. *) let celltype tailtype holds_state symbol = TypTuple ( tailtype :: insertif holds_state tstate @ semvtype symbol @ insertif (Invariant.startp symbol) tposition @ insertif (Invariant.endp symbol) tposition ) (* Types for stacks. [stacktype s] is the type of the stack at state [s]. [reducestacktype prod] is the type of the stack when about to reduce production [prod]. [gotostacktype nt] is the type of the stack when the [goto] function associated with [nt] is called. In all cases, the tail (that is, the unknown part) of the stack is represented by [ttail], currently a type variable. These stack types are obtained by folding [celltype] over a description of the stack provided by module [Invariant]. *) let stacktype s = Invariant.fold celltype ttail (Invariant.stack s) let reducestacktype prod = Invariant.fold celltype ttail (Invariant.prodstack prod) let gotostacktype nt = Invariant.fold celltype ttail (Invariant.gotostack nt) (* The type of the [run] function. As announced earlier, if [s] is the target of shift transitions, the type of the stack is curried, that is, the top stack cell is not yet allocated, so its contents are passed as extra parameters. If [s] is the target of goto transitions, the top stack cell is allocated. If [s] is a start state, this issue makes no difference. *) let runtypescheme s = auto2scheme ( arrow tenv ( curryif (runpushes s) ( arrow (stacktype s) tresult ) ) ) (* The type of the [action] function. The top stack cell is not curried. There is an additional parameter of type [token]. *) let actiontypescheme s = auto2scheme (marrow [ tenv; stacktype s; ttoken ] tresult) (* The type of the [goto] function. The top stack cell is curried. *) let gototypescheme nt = auto2scheme (arrow tenv (curry (arrow (gotostacktype nt) tresult))) (* If [prod] is an epsilon production and if the [goto] function associated with it expects a state parameter, then the [reduce] function associated with [prod] also requires a state parameter. *) let reduce_expects_state_param prod = let nt = Production.nt prod in Production.length prod = 0 && Invariant.fold (fun _ holds_state _ -> holds_state) false (Invariant.gotostack nt) (* The type of the [reduce] function. If shiftreduce optimization is performed for this production, then the top stack cell is not explicitly allocated. *) let reducetypescheme prod = auto2scheme ( arrow tenv ( curryif (shiftreduce prod) ( arrow (reducestacktype prod) ( arrowif (reduce_expects_state_param prod) tstate tresult ) ) ) ) (* The type of the [errorcase] function. The shape of the stack is unknown, and is determined by examining the state parameter. *) let errorcasetypescheme = auto2scheme (marrow [ tenv; ttail; tstate ] tresult) (* The type of the [error] function. The shape of the stack is the one associated with state [s]. *) let errortypescheme s = auto2scheme ( marrow [ tenv; stacktype s ] tresult) (* ------------------------------------------------------------------------ *) (* Code production preliminaries. *) (* A pattern that matches a token or a set set of tokens. *) let tokpat tok = PData (tokenprefix (Terminal.print tok), tokval tok PWildcard) let tokspat toks = POr ( TerminalSet.fold (fun tok pats -> tokpat tok :: pats ) toks [] ) (* This flag will be set to [true] if we ever raise the [Error] exception. This happens when we unwind the entire stack without finding a state that can handle errors. *) let can_die = ref false (* A code pattern for an exception handling construct where both alternatives are in tail position. Concrete syntax for this would be [let x = e in e1 unless Error -> e2]. Since Objective Caml does not support this construct, we emulate it using a combination of [try/with], [match/with], and an [option] value. *) let letunless e x e1 e2 = EMatch ( ETry ( EData ("Some", [ e ]), [ { branchpat = PData (excname, []); branchbody = EData ("None", []) } ] ), [ { branchpat = PData ("Some", [ PVar x ]); branchbody = e1 }; { branchpat = PData ("None", []); branchbody = e2 } ] ) (* ------------------------------------------------------------------------ *) (* Calling conventions. *) (* The contents of a stack cell, exposed as individual parameters. The choice of identifiers is suitable for use in the definition of [run]. *) let runcellparams var holds_state symbol = insertif holds_state (var state) @ symval symbol (var semv) @ insertif (Invariant.startp symbol) (var startp) @ insertif (Invariant.endp symbol) (var endp) (* The contents of a stack cell, exposed as individual parameters, again. The choice of identifiers is suitable for use in the definition of a [reduce] function. [prod] is the production's index. The integer [i] tells which symbol on the right-hand side we are focusing on, that is, which symbol this stack cell is associated with. *) let reducecellparams prod i holds_state symbol = let ids = Production.identifiers prod and used = Production.used prod in (* If the semantic value is used in the semantic action, then it is bound to the variable [ids.(i)]. If the semantic value is not used in the semantic action, then it is dropped using a wildcard pattern. *) let semvpat t = if used.(i) then PVar ids.(i) else PWildcard in insertif holds_state (if i = 0 then PVar state else PWildcard) @ symvalt symbol semvpat @ insertif (Invariant.startp symbol) (PVar (Printf.sprintf "_startpos_%s_" ids.(i))) @ insertif (Invariant.endp symbol) (PVar (Printf.sprintf "_endpos_%s_" ids.(i))) (* The contents of a stack cell, exposed as individual parameters, again. The choice of identifiers is suitable for use in the definition of [error]. *) let errorcellparams (i, pat) holds_state symbol = i + 1, ptuple ( pat :: insertif holds_state (if i = 0 then PVar state else PWildcard) @ symval symbol PWildcard @ insertif (Invariant.startp symbol) PWildcard @ insertif (Invariant.endp symbol) PWildcard ) (* Calls to [run]. *) let runparams magic var s = var env :: magic (var stack) :: concatif (runpushes s) (Invariant.fold_top (runcellparams var) [] (Invariant.stack s)) let call_run s actuals = EApp (EVar (run s), actuals) (* Calls to [action]. *) let actionparams var = [ var env; var stack; var token ] let call_action s = EApp (EVar (action s), actionparams var) (* The parameters to [reduce]. When shiftreduce optimization is in effect, the top stack cell is not allocated, so extra parameters are required. Note that [shiftreduce prod] and [reduce_expects_state_param prod] are mutually exclusive conditions, so the [state] parameter is never bound twice. *) let reduceparams prod = PVar env :: PVar stack :: concatif (shiftreduce prod) ( Invariant.fold_top (reducecellparams prod (Production.length prod - 1)) [] (Invariant.prodstack prod) ) @ insertif (reduce_expects_state_param prod) (PVar state) (* Calls to [reduce]. One must specify the production [prod] as well as the current state [s]. *) let call_reduce prod s = let actuals = (EVar env) :: (EMagic (EVar stack)) :: concatif (shiftreduce prod) (Invariant.fold_top (runcellparams var) [] (Invariant.stack s)) (* compare with [runpushcell s] *) @ insertif (reduce_expects_state_param prod) (estatecon s) in EApp (EVar (reduce prod), actuals) (* Calls to [goto]. *) let gotoparams var nt = var env :: var stack :: Invariant.fold_top (runcellparams var) [] (Invariant.gotostack nt) let call_goto nt = EApp (EVar (goto nt), gotoparams var nt) (* Calls to [errorcase]. *) let errorcaseparams magic var = [ var env; magic (var stack); var state ] let call_errorcase = EApp (EVar errorcase, errorcaseparams magic var) (* Calls to [error]. *) let errorparams magic var = [ var env; magic (var stack) ] let call_error magic s = EApp (EVar (error s), errorparams magic var) (* Calls to [assertfalse]. *) let call_assertfalse = EApp (EVar assertfalse, [ EVar "()" ]) (* ------------------------------------------------------------------------ *) (* Emit a warning when a state can do error recovery but does not accept EOF. This can lead to non-termination if the end of file is reached why attempting to recover from an error. *) let check_recoverer covered s = match Terminal.eof with | None -> (* We do not know which token represents the end of file, so we say nothing. *) () | Some eof -> if not (TerminalSet.mem eof covered) then (* This state has no (shift or reduce) action at EOF. *) Error.warning (Printf.sprintf "state %d can perform error recovery, but does not accept EOF.\n\ ** Hitting the end of file during error recovery will cause non-termination." (Lr1.number s)) (* ------------------------------------------------------------------------ *) (* Code production for the automaton functions. *) (* Count how many states actually perform error recovery. This figure is, in general, inferior or equal to the number of states at which [Invariant.recoverer] is true. Indeed, some of these states have a default reduction, while some will accept every token; in either case, error recovery is not performed. *) let recoverers = ref 0 (* Count how many states actually can peek at an error recovery. This figure is, in general, inferior or equal to the number of states at which [Invariant.errorpeeker] is true, because some of these states have a default reduction and will not consult the lookahead token. *) let errorpeekers = ref 0 (* Code for calling the reduction function for token [prod] upon finding a token within [toks]. This produces a branch, to be inserted in an [action] function for state [s]. *) let reducebranch toks prod s = { branchpat = tokspat toks; branchbody = call_reduce prod s } (* Code for shifting from state [s] to state [s'] via the token [tok]. This produces a branch, to be inserted in an [action] function for state [s]. The callee, [run s'], is responsible for taking the current token off the input stream. It is also responsible for pushing a new stack cell. The rationale behind this decision is that there may be multiple shift transitions into [s'], so we actually share that code by placing it inside [run s'] rather than inside every transition. *) let shiftbranchbody s tok s' = (* Construct the actual parameters for [run s']. *) let actuals = (EVar env) :: (EMagic (EVar stack)) :: Invariant.fold_top (fun holds_state symbol -> assert (Symbol.equal (Symbol.T tok) symbol); insertif holds_state (estatecon s) @ tokval tok (EVar semv) @ insertif (Invariant.startp symbol) (ERecordAccess (EVar env, fstartp)) @ insertif (Invariant.endp symbol) (ERecordAccess (EVar env, fendp)) ) [] (Invariant.stack s') in (* Call [run s']. *) tracecomment (Printf.sprintf "Shifting (%s) to state %d" (Terminal.print tok) (Lr1.number s')) (call_run s' actuals) let shiftbranch s tok s' = assert (not (Terminal.pseudo tok)); { branchpat = PData (tokenprefix (Terminal.print tok), tokval tok (PVar semv)); branchbody = shiftbranchbody s tok s' } (* This generates code for pushing a new stack cell upon entering the [run] function for state [s]. *) let runpushcell s e = if runpushes s then let contents = var stack :: Invariant.fold_top (runcellparams var) [] (Invariant.stack s) in mlet [ pvar stack ] [ etuple contents ] e else e let runpushcellunless shiftreduce s e = if shiftreduce then EComment ("Not allocating top stack cell", e) else runpushcell s e (* This generates code for dealing with the lookahead token upon entering the [run] function for state [s]. If [s] is the target of a shift transition, then we must take the current token (which was consumed in the shift transition) off the input stream. Whether [s] was entered through a shift or a goto transition, we want to peek at the next token, unless we are performing a default reduction. The parameter [defred] tells which default reduction, if any, we are about to perform. *) let gettoken s defred e = match Lr1.incoming_symbol s, defred with | Some (Symbol.T _), Some (_, toks) when TerminalSet.mem Terminal.sharp toks -> assert (TerminalSet.cardinal toks = 1); (* There is a default reduction on token [#]. We cannot request the next token, since that might drive the lexer off the end of the input stream, so we cannot call [discard]. Do nothing. *) e | Some (Symbol.T _), Some _ -> (* There is some other default reduction. Discard the first input token. *) blet ([ PWildcard, EApp (EVar discard, [ EVar env ]) ], e) | Some (Symbol.T _), None -> (* There is no default reduction. Discard the first input token and peek at the next one. *) blet ([ PVar token, EApp (EVar discard, [ EVar env ]) ], e) | (Some (Symbol.N _) | None), Some _ -> (* There is some default reduction. Do not peek at the input token. *) e | (Some (Symbol.N _) | None), None -> (* There is no default reduction. Peek at the first input token, without taking it off the input stream. This is normally done by reading [env.token], unless the token might be [error]: then, we check [env.shifted] first. *) if Invariant.errorpeeker s then begin incr errorpeekers; EIfThenElse ( EApp (EVar "(=)", [ ERecordAccess (EVar env, fshifted); EIntConst (-1) ]), tracecomment "Resuming error handling" (call_error nomagic s), blet ([ PVar token, ERecordAccess (EVar env, ftoken) ], e) ) end else blet ([ assertshifted "(<>)" (-1); PVar token, ERecordAccess (EVar env, ftoken) ], e) (* This produces the definition of a [run] function. *) let rundef s body = let body = tracecomment (Printf.sprintf "State %d:" (Lr1.number s)) body in { valpublic = false; valpat = PVar (run s); valval = EAnnot (EFun (runparams nomagic pvar s, body), runtypescheme s) } (* This produces the definition of an [action] function. *) let actiondef s body = { valpublic = false; valpat = PVar (action s); valval = EAnnot (EFun (actionparams pvar, body), actiontypescheme s) } (* This produces the comment attached with a default reduction. *) let defaultreductioncomment toks e = EPatComment ( "Reducing without looking ahead at ", tokspat toks, e ) (* This produces some bookkeeping code that is used when initiating error handling. First, we copy [env.shifted] to [env.previouserror]. Of course, this is done only if at least one semantic action uses the [$previouserror] keyword. Then, we reset the count of tokens shifted since the last error to -1, so that it becomes zero *after* the error token itself is shifted. By convention, when [shifted] is -1, the field [env.token] becomes meaningless and one considers that the first token on the input stream is [error]. As a result, the next peek at the lookahead token will cause error handling to be resumed. The next call to [discard] will take the [error] token off the input stream and increment [env.shifted] to zero. *) let errorbookkeeping e = tracecomment "Initiating error handling" (blet ( concatif previouserror_required [ PUnit, ERecordWrite (EVar env, fpreviouserror, ERecordAccess (EVar env, fshifted)) ] @ [ PUnit, ERecordWrite (EVar env, fshifted, EIntConst (-1)) ], e )) (* This code is used to indicate that a new error has been detected in state [s]. [covered] is the set of tokens that [s] knows how to handle. If I am correct, the count of shifted tokens is never -1 here. Indeed, that would mean that we first found an error, and then signaled another error before being able to shift the first error token. My understanding is that this cannot happen: when the first error is signaled, we end up at a state that is willing to handle the error token, by a series of reductions followed by a shift. In the simplest case, the state [s] cannot do error recovery. In that case, we initiate error handling, which is done by first performing the standard bookkeeping described above, then transferring control to the [error] function associated with [s]. If, on the other hand, [s] can do error recovery, then we check whether any tokens at all were shifted since the last error occurred. If none were, then we discard the current token and transfer control back to the [action] function associated with [s]. The token is discarded via a call to [discard], followed by resetting [env.shifted] to zero, to counter-act the effect of [discard], which increments that counter. *) let initiate covered s = blet ( [ assertshifted "(>=)" 0 ], if Invariant.recoverer s then begin incr recoverers; check_recoverer covered s; EIfThenElse ( EApp (EVar "(=)", [ ERecordAccess (EVar env, fshifted); EIntConst 0 ]), blet ( trace "Discarding last token read (%s)" [ EApp (EVar print_token, [ ERecordAccess (EVar env, ftoken) ]) ] @ [ PVar token, EApp (EVar discard, [ EVar env ]); PUnit, ERecordWrite (EVar env, fshifted, EIntConst 0) ], call_action s ), errorbookkeeping (call_error nomagic s) ) end else errorbookkeeping (call_error nomagic s) ) (* This produces the definitions of the [run] and [action] functions associated with state [s]. The [action] function implements the internal case analysis. It receives the lookahead token as a parameter. It does not affect the input stream. It does not set up exception handlers for dealing with errors. The existence of this internal function is made necessary by the error recovery mechanism (which discards tokens when attempting to resynchronize after an error). In many states, recovery can in fact not be performed, so no self-call to [action] will be generated and [action] will be inlined into [run]. *) let rec runactiondef s : valdef list = match has_default_reduction s with | Some (prod, toks) as defred -> (* Perform reduction without looking ahead. In this case, no separate [action] function is required. If shiftreduce optimization is being performed, then no stack cell is allocated. The contents of the top stack cell are passed do [reduce] as extra parameters. *) [ rundef s ( runpushcellunless (shiftreduce prod) s ( gettoken s defred ( defaultreductioncomment toks ( call_reduce prod s ) ) ) ) ] | None -> (* If this state is willing to act on the error token, ignore that -- this is taken care of elsewhere. *) let transitions = SymbolMap.remove (Symbol.T Terminal.error) (Lr1.transitions s) and reductions = TerminalMap.remove Terminal.error (Lr1.reductions s) in (* Construct the main case analysis that determines what action should be taken next. A default branch, where an error is detected, is added if the analysis is not exhaustive. In the default branch, we initiate error handling. *) let covered, branches = ProductionMap.fold (fun prod toks (covered, branches) -> (* There is a reduction for these tokens. *) TerminalSet.union toks covered, reducebranch toks prod s :: branches ) (invert reductions) (TerminalSet.empty, []) in let covered, branches = SymbolMap.fold (fun symbol s' (covered, branches) -> match symbol with | Symbol.T tok -> (* There is a shift transition for this token. *) TerminalSet.add tok covered, shiftbranch s tok s' :: branches | Symbol.N _ -> covered, branches ) transitions (covered, branches) in let branches = if TerminalSet.subset TerminalSet.universe covered then branches else branches @ [ { branchpat = PWildcard; branchbody = initiate covered s } ] in (* Finally, construct the code for [run] and [action]. The former pushes things onto the stack, obtains the lookahead token, and calls the [action] function. The latter performs the main case analysis on the lookahead token. *) [ rundef s ( runpushcell s ( gettoken s None ( call_action s ) ) ); actiondef s ( EMatch ( EVar token, branches ) ) ] (* This provides definitions for the [$startofs], [$endofs], and [$previouserror] keywords, if required by a semantic action. The [ofs] keyword family is defined in terms of the [pos] family by accessing the [pos_cnum] field. The [$previouserror] keyword simply provides access to the current value of [env.previouserror]. *) let extrabindings action = Keyword.KeywordSet.fold (fun keyword bindings -> match keyword with | Keyword.Dollar _ | Keyword.Position (_, _, Keyword.FlavorPosition) | Keyword.SyntaxError -> bindings | Keyword.Position (s, w, (Keyword.FlavorOffset as f)) -> (PVar (Keyword.posvar s w f), ERecordAccess (EVar (Keyword.posvar s w Keyword.FlavorPosition), "Lexing.pos_cnum")) :: bindings | Keyword.PreviousError -> (PVar "_previouserror", ERecordAccess (EVar env, fpreviouserror)) :: bindings ) (Action.keywords action) [] (* This is the body of the [reduce] function associated with production [prod]. *) let reducebody prod = (* Find out about the left-hand side of this production and about the identifiers that have been bound to the symbols in the right-hand side. These represent variables that we should bind to semantic values before invoking the semantic action. *) let nt, rhs = Production.def prod and ids = Production.identifiers prod and used = Production.used prod and length = Production.length prod in (* Build a pattern that represents the shape of the stack. Out of the stack, we extract a state (except when the production is an epsilon production) and a number of semantic values. If shiftreduce optimization is being performed, then the top stack cell is not explicitly allocated, so we do not include it in the pattern that is built. *) let (_ : int), pat = Invariant.fold (fun (i, pat) holds_state symbol -> i + 1, if i = length - 1 && shiftreduce prod then pat else ptuple (pat :: reducecellparams prod i holds_state symbol) ) (0, PVar stack) (Invariant.prodstack prod) in (* If any identifiers refer to terminal symbols without a semantic value, then bind these identifiers to the unit value. This provides the illusion that every symbol, terminal or nonterminal, has a semantic value. This is more regular and allows applying operators such as ? to terminal symbols without a semantic value. *) let unitbindings = Misc.foldi length (fun i unitbindings -> if used.(i) then match semvtype rhs.(i) with | [] -> (PVar ids.(i), EUnit) :: unitbindings | _ -> unitbindings else unitbindings ) [] in (* If necessary, determine start and end positions for the left-hand side of the production. If the right-hand side is nonempty, this is done by extracting position information out of the first and last symbols of the right-hand side. If it is empty, then both positions are taken to be the current lookahead token's start position. Note that [Keyword.has_leftstart keywords] does not imply [Invariant.startp symbol], and similarly for end positions. *) let symbol = Symbol.N nt in let posbindings action = let bind_startp = Action.has_leftstart action || Invariant.startp symbol and bind_endp = Action.has_leftend action || Invariant.endp symbol in insertif bind_startp ( PVar startp, if length > 0 then EVar (Printf.sprintf "_startpos_%s_" ids.(0)) else ERecordAccess (EVar env, fstartp) ) @ insertif bind_endp ( PVar endp, if length > 0 then EVar (Printf.sprintf "_endpos_%s_" ids.(length - 1)) else if bind_startp then EVar startp else ERecordAccess (EVar env, fstartp) ) in (* If this production is one of the start productions, then reducing it means accepting the input. In that case, we return a final semantic value and stop. Otherwise, we transfer control to the [goto] function, unless the semantic action raises [Error], in which case we transfer control to [errorcase]. *) match Production.classify prod with | Some nt -> tracecomment (Printf.sprintf "Accepting %s" (Nonterminal.print false nt)) (blet ( [ pat, EVar stack ], EMagic (EVar ids.(0)) )) | None -> let action = Production.action prod in let act = EAnnot (Action.to_il_expr action, type2scheme (semvtypent nt)) in tracecomment (Printf.sprintf "Reducing production %s" (Production.print prod)) (blet ( (pat, EVar stack) :: unitbindings @ posbindings action @ extrabindings action, (* If the semantic action is susceptible of raising [Error], use a [let/unless] construct, otherwise use [let]. *) if Action.has_syntaxerror action then letunless act semv (call_goto nt) (errorbookkeeping call_errorcase) else blet ([ PVar semv, act ], call_goto nt) )) (* This is the definition of the [reduce] function associated with production [prod]. *) let reducedef prod = { valpublic = false; valpat = PVar (reduce prod); valval = EAnnot ( EFun ( reduceparams prod, reducebody prod ), reducetypescheme prod ) } (* This generates code for pushing a new stack cell inside [goto]. *) let gotopushcell nt e = if gotopushes nt then let contents = var stack :: Invariant.fold_top (runcellparams var) [] (Invariant.gotostack nt) in mlet [ pvar stack ] [ etuple contents ] e else e (* This is the heart of the [goto] function associated with nonterminal [nt]. *) let gotobody nt = (* Examine the current state to determine where to go next. *) let branches = Lr1.targets (fun branches sources target -> { branchpat = pstatescon sources; branchbody = call_run target (runparams magic var target) } :: branches ) [] (Symbol.N nt) in match branches with | [] -> (* If there are no branches, then this [goto] function is never invoked. The inliner will drop it, so whatever we generate here is unimportant. *) call_assertfalse | [ branch ] -> (* If there is only one branch, no case analysis is required. This optimization is not strictly necessary if GADTs are used by the compiler to prove that the case analysis is exhaustive. It does improve readability, though, and is also useful if the compiler does not have GADTs. *) EPatComment ( "State should be ", branch.branchpat, branch.branchbody ) | _ -> (* In the general case, we keep the branches computed above and, unless [nt] is universal, add a default branch, which is theoretically useless but helps avoid warnings if the compiler does not have GADTs. *) let default = { branchpat = PWildcard; branchbody = call_assertfalse } in EMatch ( EVar state, branches @ (if Invariant.universal (Symbol.N nt) then [] else [ default ]) ) (* This the [goto] function associated with nonterminal [nt]. *) let gotodef nt = { valpublic = false; valpat = PVar (goto nt); valval = EAnnot (EFun (gotoparams pvar nt, gotopushcell nt (gotobody nt)), gototypescheme nt) } (* ------------------------------------------------------------------------ *) (* Code production for the error handling functions. *) (* This is the body of the [error] function associated with state [s]. *) let handle s e = tracecomment (Printf.sprintf "Handling error in state %d" (Lr1.number s)) e let errorbody s = try let s' = SymbolMap.find (Symbol.T Terminal.error) (Lr1.transitions s) in (* There is a shift transition on error. *) handle s ( shiftbranchbody s Terminal.error s' ) with Not_found -> try let prods = TerminalMap.lookup Terminal.error (Lr1.reductions s) in let prod = Misc.single prods in (* There is a reduce transition on error. If shiftreduce optimization is enabled for this production, then we must pop an extra cell for [reduce]'s calling convention to be met. *) let extrapop e = if shiftreduce prod then let pat = ptuple (PVar stack :: Invariant.fold_top (runcellparams pvar) [] (Invariant.stack s)) in blet ([ pat, EVar stack ], e) else e in handle s ( extrapop ( call_reduce prod s ) ) with Not_found -> (* This state is unable to handle errors. Pop the stack to find a state that does handle errors, a state that can further pop the stack, or die. *) match Invariant.rewind s with | Invariant.Die -> can_die := true; ERaise errorval | Invariant.DownTo (w, st) -> let _, pat = Invariant.fold errorcellparams (0, PVar stack) w in blet ( [ pat, EVar stack ], match st with | Invariant.Represented -> call_errorcase | Invariant.UnRepresented s -> call_error magic s ) (* This is the [error] function associated with state [s]. *) let errordef s = { valpublic = false; valpat = PVar (error s); valval = EAnnot ( EFun ( errorparams nomagic pvar, errorbody s ), errortypescheme s ) } (* This is the [errorcase] function. It examines its state parameter and dispatches control to an appropriate [error] function. *) let errorcasedef = let branches = Lr1.fold (fun branches s -> if Invariant.represented s then { branchpat = pstatecon s; branchbody = EApp (EVar (error s), [ EVar env; EMagic (EVar stack) ]) } :: branches else branches ) [] in { valpublic = false; valpat = PVar errorcase; valval = EAnnot ( EFun ( errorcaseparams nomagic pvar, EMatch ( EVar state, branches ) ), errorcasetypescheme ) } (* ------------------------------------------------------------------------ *) (* Code production for the entry points. *) (* This is the entry point associated with a start state [s]. By convention, it is named after the nonterminal [nt] that corresponds to this state. This is a public definition. The code initializes a parser environment, an empty stack, and invokes [run]. *) let entrydef s = let nt = Item.startnt (Lr1.start2item s) in let lexer = "lexer" and lexbuf = "lexbuf" in { valpublic = true; valpat = PVar (Nonterminal.print true nt); valval = EAnnot ( EFun ( [ PVar lexer; PVar lexbuf ], blet ( [ PVar env, EApp (EVar initenv, [ EVar lexer; EVar lexbuf ]) ], EMagic (EApp (EVar (run s), [ EVar env; EUnit ])) ) ), entrytypescheme (Nonterminal.print true nt) ) } (* ------------------------------------------------------------------------ *) (* Code production for auxiliary functions. *) (* This is [assertfalse], used when internal failure is detected. This should never happen if our tool is correct. *) let assertfalsedef = { valpublic = false; valpat = PVar assertfalse; valval = EAnnot ( EFun ([ PUnit ], blet ([ PUnit, EApp (EVar "Printf.fprintf", [ EVar "Pervasives.stderr"; EStringConst "Internal failure -- please contact the parser generator's developers.\n%!" ]); ], EApp (EVar "assert", [ efalse ]) ) ), scheme [ "a" ] (arrow tunit (tvar "a")) ) } (* This is [print_token], used to print tokens in [--trace] mode. *) let printtokendef = { valpublic = false; valpat = PVar print_token; valval = EAnnot ( EFun ([ PVar token ], EMatch (EVar token, Terminal.fold (fun tok branches -> if Terminal.pseudo tok then branches else { branchpat = tokpat tok; branchbody = EStringConst (Terminal.print tok) } :: branches ) [] ) ), type2scheme (arrow ttoken tstring) ) } (* This is [discard], used to take a token off the input stream and query the lexer for a new one. The code queries the lexer for a new token and stores it into [env.token], overwriting the previous token. It also stores the start and positions of the new token. Last, if [env.shifted] has not yet reached its limit, then it is incremented. We use the lexer's [lex_start_p] and [lex_curr_p] fields to extract the start and end positions of the token that we just read. In practice, it seems that [lex_start_p] can be inaccurate (that is the case when the lexer calls itself recursively, instead of simply recognizing an atomic pattern and returning immediately). However, we are 100% compatible with ocamlyacc here, and there is no better solution anyway. *) let discarddef = { valpublic = false; valpat = PVar discard; valval = let lexbuf = "lexbuf" and shifted = "shifted" in EAnnot ( EFun ( [ PVar env ], blet ([ PVar lexbuf, ERecordAccess (EVar env, flexbuf); PVar token, EApp (ERecordAccess (EVar env, flexer), [ EVar lexbuf ]); PUnit, ERecordWrite (EVar env, ftoken, EVar token); PUnit, ERecordWrite (EVar env, fstartp, ERecordAccess (EVar lexbuf, "Lexing.lex_start_p")); PUnit, ERecordWrite (EVar env, fendp, ERecordAccess (EVar lexbuf, "Lexing.lex_curr_p")) ] @ trace "Lookahead token is now %s (%d-%d)" [ EApp (EVar print_token, [ EVar token ]); ERecordAccess (ERecordAccess (EVar env, fstartp), "Lexing.pos_cnum"); ERecordAccess (ERecordAccess (EVar env, fendp), "Lexing.pos_cnum") ] @ [ PVar shifted, EApp (EVar "(+)", [ ERecordAccess (EVar env, fshifted); EIntConst 1 ]); PUnit, EIfThen ( EApp (EVar "(>=)", [ EVar shifted; EIntConst 0 ]), ERecordWrite (EVar env, fshifted, EVar shifted) ) ], EVar token ) ), type2scheme (arrow tenv ttoken) ) } (* This is [initenv], used to allocate a fresh parser environment. It performs the very first call to the lexer, and fills in all fields in a straightforward way. *) let initenvdef = let lexer = "lexer" and lexbuf = "lexbuf" in { valpublic = false; valpat = PVar initenv; valval = EAnnot ( EFun ( [ PVar lexer; PVar lexbuf ], blet ( [ PVar token, EApp (EVar lexer, [ EVar lexbuf ]) ] @ trace "Lookahead token is now %s (%d-%d)" [ EApp (EVar print_token, [ EVar token ]); ERecordAccess (ERecordAccess (EVar lexbuf, "Lexing.lex_start_p"), "Lexing.pos_cnum"); ERecordAccess (ERecordAccess (EVar lexbuf, "Lexing.lex_curr_p"), "Lexing.pos_cnum") ], ERecord ([ (flexer, EVar lexer); (flexbuf, EVar lexbuf); (ftoken, EVar token); (fstartp, ERecordAccess (EVar lexbuf, "Lexing.lex_start_p")); (fendp, ERecordAccess (EVar lexbuf, "Lexing.lex_curr_p")); (fshifted, EIntConst max_int) ] @ insertif previouserror_required (fpreviouserror, EIntConst max_int) ) ) ), type2scheme (marrow [ tlexer; tlexbuf ] tenv) ) } (* This global variable holds an instance of the [Error] exception. It is preallocated in order to save code. *) let excvaldef = { valpublic = false; valpat = PVar parse_error; valval = EData (excname, []) } (* ------------------------------------------------------------------------ *) (* Here is complete code for the parser. *) let program = { paramdefs = Front.grammar.UnparameterizedSyntax.parameters; prologue = Front.grammar.UnparameterizedSyntax.preludes; excdefs = [ excdef ]; typedefs = tokentypedef @ [ envtypedef; statetypedef ]; nonrecvaldefs = [ excvaldef ]; valdefs = Array.fold_right (fun s defs -> entrydef s :: defs ) Lr1.entry ( Lr1.fold (fun defs s -> runactiondef s @ errordef s :: defs ) ( Nonterminal.foldx (fun nt defs -> gotodef nt :: defs ) (Production.fold (fun prod defs -> if Invariant.ever_reduced prod then reducedef prod :: defs else defs ) [ discarddef; initenvdef; printtokendef; assertfalsedef; errorcasedef ]))); postlogue = Front.grammar.UnparameterizedSyntax.postludes } (* ------------------------------------------------------------------------ *) (* We are done! *) let () = Error.logC 1 (fun f -> Printf.fprintf f "%d out of %d states can peek at an error.\n\ %d out of %d states can do error recovery.\n" !errorpeekers Lr1.n !recoverers Lr1.n) let () = if not !can_die then Error.logC 1 (fun f -> Printf.fprintf f "The generated parser cannot raise Error.\n") let () = Time.tick "Producing abstract syntax"