-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParsing.fs
514 lines (458 loc) · 24.5 KB
/
Parsing.fs
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
// (c) Microsoft Corporation 2005-2009.
#if INTERNALIZED_FSLEXYACC_RUNTIME
namespace Internal.Utilities.Text.Parsing
open Internal.Utilities
open Internal.Utilities.Text.Lexing
#else
namespace Microsoft.FSharp.Text.Parsing
open Microsoft.FSharp.Text.Lexing
#endif
open System
open System.Collections.Generic
#if INTERNALIZED_FSLEXYACC_RUNTIME
type internal IParseState =
#else
type IParseState =
#endif
abstract InputRange: int -> Position * Position
abstract InputEndPosition: int -> Position
abstract InputStartPosition: int -> Position
abstract ResultRange: Position * Position
abstract GetInput: int -> obj
abstract ParserLocalStore : IDictionary<string,obj>
abstract RaiseError<'b> : unit -> 'b
//-------------------------------------------------------------------------
// This context is passed to the error reporter when a syntax error occurs
[<Sealed>]
#if INTERNALIZED_FSLEXYACC_RUNTIME
type internal ParseErrorContext<'tok>
#else
type ParseErrorContext<'tok>
#endif
(//lexbuf: LexBuffer<_>,
stateStack:int list,
parseState: IParseState,
reduceTokens: int list,
currentToken: 'tok option,
reducibleProductions: int list list,
shiftableTokens: int list ,
message : string) =
//member x.LexBuffer = lexbuf
member x.StateStack = stateStack
member x.ReduceTokens = reduceTokens
member x.CurrentToken = currentToken
member x.ParseState = parseState
member x.ReducibleProductions = reducibleProductions
member x.ShiftTokens = shiftableTokens
member x.Message = message
//-------------------------------------------------------------------------
// This is the data structure emitted as code by FSYACC.
#if INTERNALIZED_FSLEXYACC_RUNTIME
type internal Tables<'tok> =
#else
type Tables<'tok> =
#endif
{ reductions: (IParseState -> obj) array;
endOfInputTag: int;
tagOfToken: 'tok -> int;
dataOfToken: 'tok -> obj;
actionTableElements: uint16[];
actionTableRowOffsets: uint16[];
reductionSymbolCounts: uint16[];
immediateActions: uint16[];
gotos: uint16[];
sparseGotoTableRowOffsets: uint16[];
stateToProdIdxsTableElements: uint16[];
stateToProdIdxsTableRowOffsets: uint16[];
productionToNonTerminalTable: uint16[];
/// For fsyacc.exe, this entry is filled in by context from the generated parser file. If no 'parse_error' function
/// is defined by the user then ParseHelpers.parse_error is used by default (ParseHelpers is opened
/// at the top of the generated parser file)
parseError: ParseErrorContext<'tok> -> unit;
numTerminals: int;
tagOfErrorTerminal: int }
//-------------------------------------------------------------------------
// An implementation of stacks.
// This type is in System.dll so for the moment we can't use it in FSharp.Core.dll
//type Stack<'a> = System.Collections.Generic.Stack<'a>
#if INTERNALIZED_FSLEXYACC_RUNTIME
type Stack<'a>(n) =
#else
type internal Stack<'a>(n) =
#endif
let mutable contents = Array.zeroCreate<'a>(n)
let mutable count = 0
member buf.Ensure newSize =
let oldSize = Array.length contents
if newSize > oldSize then
let old = contents
contents <- Array.zeroCreate (max newSize (oldSize * 2));
Array.blit old 0 contents 0 count;
member buf.Count = count
member buf.Pop() = count <- count - 1
member buf.Peep() = contents.[count - 1]
member buf.Top(n) = [ for x in contents.[max 0 (count-n)..count - 1] -> x ] |> List.rev
member buf.Push(x) =
buf.Ensure(count + 1);
contents.[count] <- x;
count <- count + 1
member buf.IsEmpty = (count = 0)
#if __DEBUG
member buf.PrintStack() =
for i = 0 to (count - 1) do
#if FX_NO_CONSOLE
()
#else
System.Console.Write("{0}{1}",(contents.[i]),if i=count-1 then ":" else "-")
#endif
#endif
exception RecoverableParseError
exception Accept of obj
#if __DEBUG
module Flags =
let mutable debug = false
#endif
#if INTERNALIZED_FSLEXYACC_RUNTIME
module internal Implementation =
#else
module Implementation =
#endif
// Definitions shared with fsyacc
let anyMarker = 0xffff
let shiftFlag = 0x0000
let reduceFlag = 0x4000
let errorFlag = 0x8000
let acceptFlag = 0xc000
let actionMask = 0xc000
let actionValue action = action &&& (~~~ actionMask)
let actionKind action = action &&& actionMask
//-------------------------------------------------------------------------
// Read the tables written by FSYACC.
type AssocTable(elemTab:uint16[], offsetTab:uint16[]) =
let cache = new Dictionary<_,_>(2000)
member t.readAssoc (minElemNum,maxElemNum,defaultValueOfAssoc,keyToFind) =
// do a binary chop on the table
let elemNumber : int = (minElemNum+maxElemNum)/2
if elemNumber = maxElemNum
then defaultValueOfAssoc
else
let x = int elemTab.[elemNumber*2]
if keyToFind = x then
int elemTab.[elemNumber*2+1]
elif keyToFind < x then t.readAssoc (minElemNum ,elemNumber,defaultValueOfAssoc,keyToFind)
else t.readAssoc (elemNumber+1,maxElemNum,defaultValueOfAssoc,keyToFind)
member t.Read(rowNumber ,keyToFind) =
// First check the sparse lookaside table
// Performance note: without this lookaside table the binary chop in readAssoc
// takes up around 10% of of parsing time
// for parsing intensive samples such as the bootstrapped F# compiler.
//
// Note: using a .NET Dictionary for this int -> int table looks like it could be sub-optimal.
// Some other better sparse lookup table may be better.
let mutable res = 0
let cacheKey = (rowNumber <<< 16) ||| keyToFind
let ok = cache.TryGetValue(cacheKey, &res)
if ok then res
else
let headOfTable = int offsetTab.[rowNumber]
let firstElemNumber = headOfTable + 1
let numberOfElementsInAssoc = int elemTab.[headOfTable*2]
let defaultValueOfAssoc = int elemTab.[headOfTable*2+1]
let res = t.readAssoc (firstElemNumber,(firstElemNumber+numberOfElementsInAssoc),defaultValueOfAssoc,keyToFind)
cache.[cacheKey] <- res
res
// Read all entries in the association table
// Used during error recovery to find all valid entries in the table
member x.ReadAll(n) =
let headOfTable = int offsetTab.[n]
let firstElemNumber = headOfTable + 1
let numberOfElementsInAssoc = int32 elemTab.[headOfTable*2]
let defaultValueOfAssoc = int elemTab.[headOfTable*2+1]
[ for i in firstElemNumber .. (firstElemNumber+numberOfElementsInAssoc-1) ->
(int elemTab.[i*2], int elemTab.[i*2+1]) ], defaultValueOfAssoc
type IdxToIdxListTable(elemTab:uint16[], offsetTab:uint16[]) =
// Read all entries in a row of the table
member x.ReadAll(n) =
let headOfTable = int offsetTab.[n]
let firstElemNumber = headOfTable + 1
let numberOfElements = int32 elemTab.[headOfTable]
[ for i in firstElemNumber .. (firstElemNumber+numberOfElements-1) -> int elemTab.[i] ]
//-------------------------------------------------------------------------
// interpret the tables emitted by FSYACC.
[<NoEquality; NoComparison>]
[<Struct>]
type ValueInfo =
val value: obj
val startPos: Position
val endPos: Position
new(value,startPos,endPos) = { value=value; startPos=startPos;endPos=endPos }
let interpret (tables: Tables<'tok>) lexer (lexbuf : LexBuffer<_>) initialState =
let localStore = new Dictionary<string,obj>() in
localStore.["LexBuffer"] <- lexbuf;
#if __DEBUG
if Flags.debug then System.Console.WriteLine("\nParser: interpret tables");
#endif
let stateStack : Stack<int> = new Stack<_>(100)
stateStack.Push(initialState);
let valueStack = new Stack<ValueInfo>(100)
let mutable haveLookahead = false
let mutable lookaheadToken = Unchecked.defaultof<'tok>
let mutable lookaheadEndPos = Unchecked.defaultof<Position>
let mutable lookaheadStartPos = Unchecked.defaultof<Position>
let mutable finished = false
// After an error occurs, we suppress errors until we've shifted three tokens in a row.
let mutable errorSuppressionCountDown = 0
// When we hit the end-of-file we don't fail straight away but rather keep permitting shift
// and reduce against the last token in the token stream 20 times or until we've accepted
// or exhausted the stack. This allows error recovery rules of the form
// input : realInput EOF | realInput error EOF | error EOF
// where consuming one EOF to trigger an error doesn't result in overall parse failure
// catastrophe and the loss of intermediate results.
//
let mutable inEofCountDown = false
let mutable eofCountDown = 20 // Number of EOFs to supply at the end for error recovery
// The 100 here means a maximum of 100 elements for each rule
let ruleStartPoss = (Array.zeroCreate 100 : Position array)
let ruleEndPoss = (Array.zeroCreate 100 : Position array)
let ruleValues = (Array.zeroCreate 100 : obj array)
let lhsPos = (Array.zeroCreate 2 : Position array)
let reductions = tables.reductions
let actionTable = new AssocTable(tables.actionTableElements, tables.actionTableRowOffsets)
let gotoTable = new AssocTable(tables.gotos, tables.sparseGotoTableRowOffsets)
let stateToProdIdxsTable = new IdxToIdxListTable(tables.stateToProdIdxsTableElements, tables.stateToProdIdxsTableRowOffsets)
let parseState =
{ new IParseState with
member p.InputRange(n) = ruleStartPoss.[n-1], ruleEndPoss.[n-1];
member p.InputStartPosition(n) = ruleStartPoss.[n-1]
member p.InputEndPosition(n) = ruleEndPoss.[n-1];
member p.GetInput(n) = ruleValues.[n-1];
member p.ResultRange = (lhsPos.[0], lhsPos.[1]);
member p.ParserLocalStore = (localStore :> IDictionary<_,_>);
member p.RaiseError() = raise RecoverableParseError (* NOTE: this binding tests the fairly complex logic associated with an object expression implementing a generic abstract method *)
}
#if __DEBUG
let report haveLookahead lookaheadToken =
if haveLookahead then sprintf "%A" lookaheadToken
else "[TBC]"
#endif
// Pop the stack until we can shift the 'error' token. If 'tokenOpt' is given
// then keep popping until we can shift both the 'error' token and the token in 'tokenOpt'.
// This is used at end-of-file to make sure we can shift both the 'error' token and the 'EOF' token.
let rec popStackUntilErrorShifted(tokenOpt) =
// Keep popping the stack until the "error" terminal is shifted
#if __DEBUG
if Flags.debug then System.Console.WriteLine("popStackUntilErrorShifted");
#endif
if stateStack.IsEmpty then
#if __DEBUG
if Flags.debug then
System.Console.WriteLine("state stack empty during error recovery - generating parse error");
#endif
failwith "parse error";
let currState = stateStack.Peep()
#if __DEBUG
if Flags.debug then
System.Console.WriteLine("In state {0} during error recovery", currState);
#endif
let action = actionTable.Read(currState, tables.tagOfErrorTerminal)
if actionKind action = shiftFlag &&
(match tokenOpt with
| None -> true
| Some(token) ->
let nextState = actionValue action
actionKind (actionTable.Read(nextState, tables.tagOfToken(token))) = shiftFlag) then
#if __DEBUG
if Flags.debug then System.Console.WriteLine("shifting error, continuing with error recovery");
#endif
let nextState = actionValue action
// The "error" non terminal needs position information, though it tends to be unreliable.
// Use the StartPos/EndPos from the lex buffer
valueStack.Push(ValueInfo(box (), lexbuf.StartPos, lexbuf.EndPos));
stateStack.Push(nextState)
else
if valueStack.IsEmpty then
failwith "parse error";
#if __DEBUG
if Flags.debug then
System.Console.WriteLine("popping stack during error recovery");
#endif
valueStack.Pop();
stateStack.Pop();
popStackUntilErrorShifted(tokenOpt)
while not finished do
if stateStack.IsEmpty then
finished <- true
else
let state = stateStack.Peep()
#if __DEBUG
if Flags.debug then (Console.Write("{0} value(state), state ",valueStack.Count); stateStack.PrintStack())
#endif
let action =
let immediateAction = int tables.immediateActions.[state]
if not (immediateAction = anyMarker) then
// Action has been pre-determined, no need to lookahead
// Expecting it to be a Reduce action on a non-fakeStartNonTerminal ?
immediateAction
else
// Lookahead required to determine action
if not haveLookahead then
if lexbuf.IsPastEndOfStream then
// When the input runs out, keep supplying the last token for eofCountDown times
if eofCountDown>0 then
haveLookahead <- true
eofCountDown <- eofCountDown - 1
inEofCountDown <- true
else
haveLookahead <- false
else
lookaheadToken <- lexer lexbuf
lookaheadStartPos <- lexbuf.StartPos
lookaheadEndPos <- lexbuf.EndPos
haveLookahead <- true;
let tag =
if haveLookahead then tables.tagOfToken lookaheadToken
else tables.endOfInputTag
// Printf.printf "state %d\n" state
actionTable.Read(state,tag)
let kind = actionKind action
if kind = shiftFlag then (
if errorSuppressionCountDown > 0 then
errorSuppressionCountDown <- errorSuppressionCountDown - 1;
#if __DEBUG
if Flags.debug then Console.WriteLine("shifting, reduced errorRecoverylevel to {0}\n", errorSuppressionCountDown);
#endif
let nextState = actionValue action
if not haveLookahead then failwith "shift on end of input!";
let data = tables.dataOfToken lookaheadToken
valueStack.Push(ValueInfo(data, lookaheadStartPos, lookaheadEndPos));
stateStack.Push(nextState);
#if __DEBUG
if Flags.debug then Console.WriteLine("shift/consume input {0}, shift to state {1}", report haveLookahead lookaheadToken, nextState);
#endif
haveLookahead <- false
) elif kind = reduceFlag then
let prod = actionValue action
let reduction = reductions.[prod]
let n = int tables.reductionSymbolCounts.[prod]
// pop the symbols, populate the values and populate the locations
#if __DEBUG
if Flags.debug then Console.Write("reduce popping {0} values/states, lookahead {1}", n, report haveLookahead lookaheadToken);
#endif
lhsPos.[0] <- Position.Empty;
lhsPos.[1] <- Position.Empty;
for i = 0 to n - 1 do
if valueStack.IsEmpty then failwith "empty symbol stack";
let topVal = valueStack.Peep()
valueStack.Pop();
stateStack.Pop();
ruleValues.[(n-i)-1] <- topVal.value;
ruleStartPoss.[(n-i)-1] <- topVal.startPos;
ruleEndPoss.[(n-i)-1] <- topVal.endPos;
if lhsPos.[1] = Position.Empty then lhsPos.[1] <- topVal.endPos;
if not (topVal.startPos = Position.Empty) then lhsPos.[0] <- topVal.startPos
done;
try
// Printf.printf "reduce %d\n" prod;
let redResult = reduction parseState
valueStack.Push(ValueInfo(redResult, lhsPos.[0], lhsPos.[1]));
let currState = stateStack.Peep()
let newGotoState = gotoTable.Read(int tables.productionToNonTerminalTable.[prod], currState)
stateStack.Push(newGotoState)
#if __DEBUG
if Flags.debug then Console.WriteLine(" goto state {0}", newGotoState)
#endif
with
| Accept res ->
finished <- true;
valueStack.Push(ValueInfo(res, lhsPos.[0], lhsPos.[1]))
| RecoverableParseError ->
#if __DEBUG
if Flags.debug then Console.WriteLine("RecoverableParseErrorException...\n");
#endif
popStackUntilErrorShifted(None);
// User code raised a Parse_error. Don't report errors again until three tokens have been shifted
errorSuppressionCountDown <- 3
elif kind = errorFlag then (
#if __DEBUG
if Flags.debug then Console.Write("ErrorFlag... ");
#endif
// Silently discard inputs and don't report errors
// until three tokens in a row have been shifted
#if __DEBUG
if Flags.debug then printfn "error on token '%A' " (if haveLookahead then Some(lookaheadToken) else None);
#endif
if errorSuppressionCountDown > 0 then
// If we're in the end-of-file count down then we're very keen to 'Accept'.
// We can only do this by repeatedly popping the stack until we can shift both an 'error' token
// and an EOF token.
if inEofCountDown && eofCountDown < 10 then
#if __DEBUG
if Flags.debug then printfn "poppin stack, lokking to shift both 'error' and that token, during end-of-file error recovery" ;
#endif
popStackUntilErrorShifted(if haveLookahead then Some(lookaheadToken) else None);
// If we don't haveLookahead then the end-of-file count down is over and we have no further options.
if not haveLookahead then
failwith "parse error: unexpected end of file"
#if __DEBUG
if Flags.debug then printfn "discarding token '%A' during error suppression" (if haveLookahead then Some(lookaheadToken) else None);
#endif
// Discard the token
haveLookahead <- false
// Try again to shift three tokens
errorSuppressionCountDown <- 3
else (
let currentToken = if haveLookahead then Some(lookaheadToken) else None
let actions,defaultAction = actionTable.ReadAll(state)
let explicit = Set.ofList [ for (tag,_action) in actions -> tag ]
let shiftableTokens =
[ for (tag,action) in actions do
if (actionKind action) = shiftFlag then
yield tag
if actionKind defaultAction = shiftFlag then
for tag in 0 .. tables.numTerminals-1 do
if not (explicit.Contains(tag)) then
yield tag ] in
let stateStack = stateStack.Top(12) in
let reducibleProductions =
[ for state in stateStack do
yield stateToProdIdxsTable.ReadAll(state) ]
let reduceTokens =
[ for (tag,action) in actions do
if actionKind(action) = reduceFlag then
yield tag
if actionKind(defaultAction) = reduceFlag then
for tag in 0 .. tables.numTerminals-1 do
if not (explicit.Contains(tag)) then
yield tag ] in
//let activeRules = stateStack |> List.iter (fun state ->
let errorContext = new ParseErrorContext<'tok>(stateStack,parseState, reduceTokens,currentToken,reducibleProductions, shiftableTokens, "syntax error")
tables.parseError(errorContext);
popStackUntilErrorShifted(None);
errorSuppressionCountDown <- 3;
#if __DEBUG
if Flags.debug then System.Console.WriteLine("generated syntax error and shifted error token, haveLookahead = {0}\n", haveLookahead);
#endif
)
) elif kind = acceptFlag then
finished <- true
#if __DEBUG
else
if Flags.debug then System.Console.WriteLine("ALARM!!! drop through case in parser");
#endif
done;
// OK, we're done - read off the overall generated value
valueStack.Peep().value
#if INTERNALIZED_FSLEXYACC_RUNTIME
type internal Tables<'tok> with
#else
type Tables<'tok> with
#endif
member tables.Interpret (lexer,lexbuf,initialState) =
Implementation.interpret tables lexer lexbuf initialState
#if INTERNALIZED_FSLEXYACC_RUNTIME
module internal ParseHelpers =
#else
module ParseHelpers =
#endif
let parse_error (_s:string) = ()
let parse_error_rich = (None : (ParseErrorContext<_> -> unit) option)