Source file EngineTypes.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
(******************************************************************************)
(*                                                                            *)
(*                                    Menhir                                  *)
(*                                                                            *)
(*   Copyright Inria. All rights reserved. This file is distributed under     *)
(*   the terms of the GNU Library General Public License version 2, with a    *)
(*   special exception on linking, as described in the file LICENSE.          *)
(*                                                                            *)
(******************************************************************************)

(**This module defines several types and module types that are used in the
   specification of the module {!Engine}. *)

(* --------------------------------------------------------------------------- *)

(* It would be nice if we could keep the structure of stacks and environments
   hidden. However, stacks and environments must be accessible to semantic
   actions, so the following data structure definitions must be public. *)

(* --------------------------------------------------------------------------- *)

(**A stack is a linked list of cells. A sentinel cell -- which is its own
   successor -- is used to mark the bottom of the stack. The sentinel cell
   itself is not significant -- it contains dummy values. *)
type ('state, 'semantic_value) stack = {

  state: 'state;
  (**The state that we should go back to if we pop this stack cell.

     This convention means that the state contained in the top stack cell is
     not the current state [env.current]. It also means that the state found
     within the sentinel is a dummy -- it is never consulted. This convention
     is the same as that adopted by the code-based back-end. *)

  semv: 'semantic_value;
  (**The semantic value associated with the chunk of input that this cell
     represents. *)

  startp: Lexing.position;
  (**The start position of the chunk of input that this cell represents. *)

  endp: Lexing.position;
  (**The end position of the chunk of input that this cell represents. *)

  next: ('state, 'semantic_value) stack;
  (**The next cell down in the stack. If this is a self-pointer, then this
     cell is the sentinel, and the stack is conceptually empty. *)

}

(* --------------------------------------------------------------------------- *)

(**A parsing environment contains all of the parser's state (except for the
   current program point). *)
type ('state, 'semantic_value, 'token) env = {

  error: bool;
  (**If this flag is true, then the first component of [env.triple] should
     be ignored, as it has been logically overwritten with the [error]
     pseudo-token. *)

  triple: 'token * Lexing.position * Lexing.position;
  (**The last token that was obtained from the lexer, together with its start
     and end positions. Warning: before the first call to the lexer has taken
     place, a dummy (and possibly invalid) token is stored here. *)

  stack: ('state, 'semantic_value) stack;
  (**The stack. *)

  current: 'state;
  (**The current state. *)

}

(* --------------------------------------------------------------------------- *)

(**A number of logging hooks are used to (optionally) emit logging messages. *)
module type LOG = sig

  type state
  type terminal
  type production

  (* The comments below indicate the conventional messages that correspond to
     these hooks. *)

  (* State %d: *)

  val state: state -> unit

  (* Shifting (<terminal>) to state <state> *)

  val shift: terminal -> state -> unit

  (* Reducing a production should be logged either as a reduction
     event (for regular productions) or as an acceptance event (for
     start productions). *)

  (* Reducing production <production> / Accepting *)

  val reduce_or_accept: production -> unit

  (* Lookahead token is now <terminal> (<pos>-<pos>) *)

  val lookahead_token: terminal -> Lexing.position -> Lexing.position -> unit

  (* Initiating error handling *)

  val initiating_error_handling: unit -> unit

  (* Resuming error handling *)

  val resuming_error_handling: unit -> unit

  (* Handling error in state <state> *)

  val handling_error: state -> unit

end

(* --------------------------------------------------------------------------- *)

(**This signature describes the parameters that must be supplied to the LR
   engine. *)
module type TABLE = sig

  (**The type of automaton states. *)
  type state

  (**States are numbered. *)
  val number: state -> int

  (**The type of tokens. These can be thought of as real tokens, that is,
     tokens returned by the lexer. They carry a semantic value. This type
     does not include the [error] pseudo-token. *)
  type token

  (**The type of terminal symbols. These can be thought of as integer codes.
     They do not carry a semantic value. This type does include the [error]
     pseudo-token. *)
  type terminal

  (**The type of nonterminal symbols. *)
  type nonterminal

  (**The type of semantic values. *)
  type semantic_value

  (**A token is conceptually a pair of a (non-[error]) terminal symbol and a
     semantic value. The function [token2terminal] is the first the pair
     projection. *)
  val token2terminal: token -> terminal

  (**A token is conceptually a pair of a (non-[error]) terminal symbol and a
     semantic value. The function [token2value] is the second the pair
     projection. *)
  val token2value: token -> semantic_value

  (* Even though the [error] pseudo-token is not a real token, it is a
     terminal symbol. Furthermore, for regularity, it must have a semantic
     value. *)
  (**The terminal symbol associated with the [error] token. *)
  val error_terminal: terminal

  (**The semantic value associated with the [error] token. *)
  val error_value: semantic_value

  (**[foreach_terminal] iterates over all terminal symbols. *)
  val foreach_terminal: (terminal -> 'a -> 'a) -> 'a -> 'a

  (**The type of productions. *)
  type production

  (**[production_index] maps a production to its integer index. *)
  val production_index: production -> int

  (**[find_production] maps a production index to a production.
     Its argument must be a valid index; use with care. *)
  val find_production: int -> production

  (**If a state [s] has a default reduction on production [prod], then, upon
     entering [s], the automaton should reduce [prod] without consulting the
     lookahead token.

     [default_reduction s] determines whether the state [s] has a default
     reduction. Instead of returning a value of a sum type -- say, either
     [DefRed prod] or [NoDefRed] -- it accepts two continuations, and invokes
     just one of them. *)
  val default_reduction:
    state ->
    ('env -> production -> 'answer) ->
    ('env -> 'answer) ->
    'env -> 'answer

  (**An LR automaton can normally take three kinds of actions: shift, reduce,
     or fail. (Acceptance is a particular case of reduction: it consists in
     reducing a start production.)

     There are two variants of the shift action. [shift/discard s] instructs
     the automaton to discard the current token, request a new one from the
     lexer, and move to state [s]. [shift/nodiscard s] instructs it to move to
     state [s] without requesting a new token. This instruction should be used
     when [s] has a default reduction on [#].

     The function [action] provides access to the automaton's action table. It
     maps a pair of a state and a terminal symbol to an action.

     Instead of returning a value of a sum type -- one of shift/discard,
     shift/nodiscard, reduce, or fail -- this function accepts three
     continuations, and invokes just one them.

     The parameters of the function [action] are as follows:

     - the first two parameters, a state and a terminal symbol, are used to
       look up the action table;

     - the next parameter is the semantic value associated with the above
       terminal symbol; it is not used, only passed along to the shift
       continuation, as explained below;

     - the shift continuation expects an environment; a flag that tells
       whether to discard the current token; the terminal symbol that
       is being shifted; its semantic value; and the target state of
       the transition;

     - the reduce continuation expects an environment and a production;

     - the fail continuation expects an environment;

     - the last parameter is the environment; it is not used, only passed
       along to the selected continuation. *)
  val action:
    state ->
    terminal ->
    semantic_value ->
    ('env -> bool -> terminal -> semantic_value -> state -> 'answer) ->
    ('env -> production -> 'answer) ->
    ('env -> 'answer) ->
    'env -> 'answer

  (**[maybe_shift_t s t] determines whether there exists a transition out of
     the state [s], labeled with the terminal symbol [t], to some state
     [s']. If so, it returns [Some s']. Otherwise, it returns [None]. *)
  val maybe_shift_t : state -> terminal -> state option

  (**[may_reduce_prod s t prod] determines whether in the state [s], with
     lookahead symbol [t], the automaton reduces production [prod]. This test
     accounts for the possible existence of a default reduction. *)
  val may_reduce_prod : state -> terminal -> production -> bool

  (**The function [goto_nt] provides access to the automaton's goto table. It
     maps a pair of a state [s] and a nonterminal symbol [nt] to a state. The
     function call [goto_nt s nt] is permitted ONLY if the state [s] has an
     outgoing transition labeled [nt]. Otherwise, its result is undefined. *)
  val goto_nt : state -> nonterminal -> state

  (**The function [goto_prod] also provides access to the goto table. It maps
     a pair of a production [prod] and a state [s] to a state. The call
     [goto_prod prod s] is permitted ONLY if the state [s] has an outgoing
     transition labeled with the nonterminal symbol [lhs prod]. *)
  val       goto_prod: state -> production  -> state

  (**The function [maybe_goto_nt] serves the same purpose as [goto_nt].
     Compared to [goto_nt], it involves an additional dynamic check, so it CAN
     be called even the state [s] has no outgoing transition labeled [nt]. *)
  val maybe_goto_nt:   state -> nonterminal -> state option

  (**[lhs prod] returns the left-hand side of production [prod],
     a nonterminal symbol. *)
  val lhs: production -> nonterminal

  (**[is_start prod] tells whether the production [prod] is a start
     production. *)
  val is_start: production -> bool

  (**A semantic action can raise the exception [Error]. *)
  exception Error

  (**By convention, a semantic action is responsible for:

     1. fetching whatever semantic values and positions it needs off the stack;

     2. popping an appropriate number of cells off the stack, as dictated
        by the length of the right-hand side of the production;

     3. computing a new semantic value, as well as new start and end positions;

     4. pushing a new stack cell, which contains the three values
        computed in step 3;

     5. returning the new stack computed in steps 2 and 4.  *)
  type semantic_action =
      (state, semantic_value, token) env -> (state, semantic_value) stack

  (* Point 1 above is essentially forced upon us: if semantic values were
     fetched off the stack by this interpreter, then the calling convention
     for semantic actions would be variadic: not all semantic actions would
     have the same number of arguments. The rest follows rather naturally. *)

  (**The function [semantic_action] maps a production to its semantic action. *)
  val semantic_action: production -> semantic_action

  (**[may_reduce state prod] tests whether the state [state] is capable of
     reducing the production [prod]. This function is currently costly and
     is not used by the core LR engine. It is used in the implementation
     of certain functions, such as [force_reduction], which allow the engine
     to be driven programmatically. *)
  val may_reduce: state -> production -> bool

  (**If the flag [log] is false, then the logging functions are not called.
     If it is [true], then they are called. *)
  val log : bool

  (**The logging hooks required by the LR engine. *)
  module Log : LOG
    with type state := state
     and type terminal := terminal
     and type production := production

end

(* --------------------------------------------------------------------------- *)

(**This signature describes the monolithic (traditional) LR engine. When the
   engine is used in this mode, the parser controls the lexer. *)
module type MONOLITHIC_ENGINE = sig

  type state

  type token

  type semantic_value

  exception Error

  (**An entry point to the engine requires a start state, a lexer, and a
     lexing buffer. It either succeeds and produces a semantic value, or fails
     and raises {!Error}. *)
  val entry:
    (* strategy: *) [ `Legacy | `Simplified ] -> (* see [IncrementalEngine] *)
    state ->
    (Lexing.lexbuf -> token) ->
    Lexing.lexbuf ->
    semantic_value

end

(* --------------------------------------------------------------------------- *)

(**This signature describes just the entry point of the incremental LR engine.
   It is a supplement to {!IncrementalEngine.INCREMENTAL_ENGINE}.

   The [start] function is set apart because we do not wish to publish it as
   part of the generated file  [parser.mli]. Instead, the table back-end will
   publish specialized versions of it, with a suitable type cast. *)
module type INCREMENTAL_ENGINE_START = sig

  type state
  type semantic_value
  type 'a checkpoint

  (**[start] is an entry point. It requires a start state and a start position
     and begins the parsing process. If the lexer is based on an OCaml lexing
     buffer, the start position should be [lexbuf.lex_curr_p]. [start] produces
     a checkpoint, which usually will be an [InputNeeded] checkpoint. (It could
     be [Accepted] if this starting state accepts only the empty word. It could
     be [Rejected] if this starting state accepts no word at all.) It does not
     raise any exception.

     [start s pos] should really produce a checkpoint of type ['a checkpoint],
     for a fixed ['a] that depends on the state [s]. We cannot express this, so
     we use [semantic_value checkpoint], which is safe. The table back-end uses
     [Obj.magic] to produce safe specialized versions of [start]. *)
  val start:
    state ->
    Lexing.position ->
    semantic_value checkpoint

end

(* --------------------------------------------------------------------------- *)

(**This signature describes the LR engine, which combines the monolithic
   and incremental interfaces. *)
module type ENGINE = sig

  include MONOLITHIC_ENGINE

  include IncrementalEngine.INCREMENTAL_ENGINE
    with type token := token
     and type 'a lr1state = state (* useful for us; hidden from the end user *)

  include INCREMENTAL_ENGINE_START
    with type state := state
     and type semantic_value := semantic_value
     and type 'a checkpoint := 'a checkpoint

end