Class: PredictionMode

Inherits:
Object show all
Includes:
JavaSymbols
Defined in:
lib/antlr4/atn/PredictionMode.rb

Overview

This enumeration defines the prediction modes available in ANTLR 4 along with utility methods for analyzing configuration sets for conflicts and/or ambiguities.

Constant Summary collapse

SLL =

The SLL(*) prediction mode. This prediction mode ignores the current parser context when making predictions. This is the fastest prediction mode, and provides correct results for many grammars. This prediction mode is more powerful than the prediction mode provided by ANTLR 3, but may result in syntax errors for grammar and input combinations which are not SLL.

<p> When using this prediction mode, the parser will either return a correct parse tree (i.e. the same parse tree that would be returned with the #LL prediction mode), or it will report a syntax error. If a syntax error is encountered when using the #SLL prediction mode, it may be due to either an actual syntax error in the input or indicate that the particular combination of grammar and input requires the more powerful #LL prediction abilities to complete successfully.</p>

<p> This prediction mode does not provide any guarantees for prediction behavior for syntactically-incorrect inputs.</p>

0
LL =

The LL(*) prediction mode. This prediction mode allows the current parser context to be used for resolving SLL conflicts that occur during prediction. This is the fastest prediction mode that guarantees correct parse results for all combinations of grammars with syntactically correct inputs.

<p> When using this prediction mode, the parser will make correct decisions for all syntactically-correct grammar and input combinations. However, in cases where the grammar is truly ambiguous this prediction mode might not report a precise answer for exactly which alternatives are ambiguous.</p>

<p> This prediction mode does not provide any guarantees for prediction behavior for syntactically-incorrect inputs.</p>

1
LL_EXACT_AMBIG_DETECTION =

The LL(*) prediction mode with exact ambiguity detection. In addition to the correctness guarantees provided by the #LL prediction mode, this prediction mode instructs the prediction algorithm to determine the complete and exact set of ambiguous alternatives for every ambiguous decision encountered while parsing.

<p> This prediction mode may be used for diagnosing ambiguities during grammar development. Due to the performance overhead of calculating sets of ambiguous alternatives, this prediction mode should be avoided when the exact results are not necessary.</p>

<p> This prediction mode does not provide any guarantees for prediction behavior for syntactically-incorrect inputs.</p>

2

Class Method Summary collapse

Methods included from JavaSymbols

included

Class Method Details

.allConfigsInRuleStopStates(configs) ⇒ @code true

Checks if all configurations in configs are in a RuleStopState. Configurations meeting this condition have reached the end of the decision rule (local context) or end of start rule (full context).

RuleStopState, otherwise false

Parameters:

  • configs

    the configuration set to test

Returns:

  • (@code true)

    if all configurations in configs are in a



214
215
216
217
218
219
220
221
# File 'lib/antlr4/atn/PredictionMode.rb', line 214

def self.allConfigsInRuleStopStates(configs)
    configs.each{|c|  
          if not c.state.kind_of? RuleStopState
            return false
          end
    }
    return true
end

.allSubsetsConflict(altsets) ⇒ @code true

Determines if every alternative subset in altsets contains more than one alternative.

BitSet#cardinality cardinality &gt; 1, otherwise false

Parameters:

  • altsets

    a collection of alternative subsets

Returns:

  • (@code true)

    if every BitSet in altsets has



376
377
378
# File 'lib/antlr4/atn/PredictionMode.rb', line 376

def self.allSubsetsConflict(altsets)
    not hasNonConflictingAltSet(altsets)
end

.allSubsetsEqual(altsets) ⇒ @code true

Determines if every alternative subset in altsets is equivalent.

others, otherwise false

Parameters:

  • altsets

    a collection of alternative subsets

Returns:

  • (@code true)

    if every member of altsets is equal to the



421
422
423
424
425
426
427
428
429
430
431
# File 'lib/antlr4/atn/PredictionMode.rb', line 421

def self.allSubsetsEqual(altsets)
    first = nil
    altsets.each {|alts|
        if first.nil? then
            first = alts
        elsif not alts==first
            return false
        end
    }
    return true
end

.getAlts(altsets) ⇒ Object

Gets the complete set of represented alternatives for a collection of alternative subsets. This method returns the union of each BitSet in altsets.

Parameters:

  • altsets

    a collection of alternative subsets

Returns:

  • the set of represented alternatives in altsets



455
456
457
458
459
460
461
# File 'lib/antlr4/atn/PredictionMode.rb', line 455

def self.getAlts(altsets)
    all = Set.new()
    altsets.each {|alts |
        all = all | alts
    }
    return all
end

.getConflictingAltSubsets(configs) ⇒ Object

This function gets the conflicting alt subsets from a configuration set. For each configuration c in configs:

<pre> map U= c.ATNConfig#alt alt # map hash/equals uses s and x, not alt and not pred </pre>



471
472
473
474
475
476
477
478
479
480
481
482
483
# File 'lib/antlr4/atn/PredictionMode.rb', line 471

def self.getConflictingAltSubsets(configs)
    configToAlts = Hash.new
    configs.each {|c|
        s = "#{c.state.stateNumber}/#{c.context}"
        alts = configToAlts[s]
        if alts.nil? then
            alts = Set.new()
            configToAlts[s] = alts
        end
        alts.add(c.alt)
    }
    return configToAlts.values()
end

.getSingleViableAlt(altsets) ⇒ Object



514
515
516
517
518
519
520
521
522
523
524
# File 'lib/antlr4/atn/PredictionMode.rb', line 514

def self.getSingleViableAlt(altsets)
    viableAlts = Set.new()
    altsets.each {|alts|
        minAlt = alts.min
        viableAlts.add(minAlt)
        if viableAlts.length>1  # more than 1 viable alt
            return ATN::INVALID_ALT_NUMBER
        end
    }
    return viableAlts.min
end

.getStateToAltMap(configs) ⇒ Object

Get a map from state to alt subset from a configuration set. For each configuration c in configs:

<pre> map[c.ATNConfig#state state] U= c.ATNConfig#alt alt </pre>



492
493
494
495
496
497
498
499
500
501
502
503
# File 'lib/antlr4/atn/PredictionMode.rb', line 492

def self.getStateToAltMap(configs)
    m = Hash.new
    configs.each {|c|
        alts = m[c.state ]
        if alts.nil? then 
            alts = Set.new()
            m[c.state] = alts
        end
        alts.add(c.alt)
    }
    return m
end

.getUniqueAlt(altsets) ⇒ Object

Returns the unique alternative predicted by all alternative subsets in altsets. If no such alternative exists, this method returns ATN#INVALID_ALT_NUMBER.

Parameters:

  • altsets

    a collection of alternative subsets



440
441
442
443
444
445
446
447
# File 'lib/antlr4/atn/PredictionMode.rb', line 440

def self.getUniqueAlt(altsets)
    all = getAlts(altsets)
    if all.length==1
        return all[0]
    else
        return ATN::INVALID_ALT_NUMBER
    end
end

.hasConfigInRuleStopState(configs) ⇒ @code true

Checks if any configuration in configs is in a RuleStopState. Configurations meeting this condition have reached the end of the decision rule (local context) or end of start rule (full context).

RuleStopState, otherwise false

Parameters:

  • configs

    the configuration set to test

Returns:

  • (@code true)

    if any configuration in configs is in a



197
198
199
200
201
202
203
204
# File 'lib/antlr4/atn/PredictionMode.rb', line 197

def self.hasConfigInRuleStopState(configs)
    configs.each{|c|  
          if c.state.kind_of? RuleStopState
            return true
          end
    }
    return false
end

.hasConflictingAltSet(altsets) ⇒ @code true

Determines if any single alternative subset in altsets contains more than one alternative.

BitSet#cardinality cardinality &gt; 1, otherwise false

Parameters:

  • altsets

    a collection of alternative subsets

Returns:

  • (@code true)

    if altsets contains a BitSet with



405
406
407
408
409
410
411
412
# File 'lib/antlr4/atn/PredictionMode.rb', line 405

def self.hasConflictingAltSet(altsets)
    altsets.each {|alts |
        if alts.length>1
            return true
        end
    }
    return false
end

.hasNonConflictingAltSet(altsets) ⇒ @code true

Determines if any single alternative subset in altsets contains exactly one alternative.

BitSet#cardinality cardinality 1, otherwise false

Parameters:

  • altsets

    a collection of alternative subsets

Returns:

  • (@code true)

    if altsets contains a BitSet with



388
389
390
391
392
393
394
395
# File 'lib/antlr4/atn/PredictionMode.rb', line 388

def self.hasNonConflictingAltSet(altsets)
    altsets.each { |alts| 
        if alts.length==1
            return true
        end
    }
    return false
end

.hasSLLConflictTerminatingPrediction(mode, configs) ⇒ Object

Computes the SLL prediction termination condition.

<p> This method computes the SLL prediction termination condition for both of the following cases.</p>

<ul> <li>The usual SLL+LL fallback upon SLL conflict</li> <li>Pure SLL without LL fallback</li> </ul>

<p><strong>COMBINED SLL+LL PARSING</strong></p>

<p>When LL-fallback is enabled upon SLL conflict, correct predictions are ensured regardless of how the termination condition is computed by this method. Due to the substantially higher cost of LL prediction, the prediction should only fall back to LL when the additional lookahead cannot lead to a unique SLL prediction.</p>

<p>Assuming combined SLL+LL parsing, an SLL configuration set with only conflicting subsets should fall back to full LL, even if the configuration sets don’t resolve to the same alternative (e.g. {1,2} and {3,4}. If there is at least one non-conflicting configuration, SLL could continue with the hopes that more lookahead will resolve via one of those non-conflicting configurations.</p>

<p>Here’s the prediction termination rule them: SLL (for SLL+LL parsing) stops when it sees only conflicting configuration subsets. In contrast, full LL keeps going when there is uncertainty.</p>

<p><strong>HEURISTIC</strong></p>

<p>As a heuristic, we stop prediction when we see any conflicting subset unless we see a state that only has one alternative associated with it. The single-alt-state thing lets prediction continue upon rules like (otherwise, it would admit defeat too soon):</p>

<p>[12|1|[], 6|2|[], 12|2|. s : (ID | ID ID?) ‘;’ ;</p>

<p>When the ATN simulation reaches the state before ‘;’, it has a DFA state that looks like: [12|1|[], 6|2|[], 12|2|. Naturally 12|1|[] and 12|2|[] conflict, but we cannot stop processing this node because alternative to has another way to continue, via [6|2|.</p>

<p>It also let’s us continue for this rule:</p>

<p>[1|1|[], 1|2|[], 8|3| a : A | A | A B ;</p>

<p>After matching input A, we reach the stop state for rule A, state 1. State 8 is the state right before B. Clearly alternatives 1 and 2 conflict and no amount of further lookahead will separate the two. However, alternative 3 will be able to continue and so we do not stop working on this state. In the previous example, we’re concerned with states associated with the conflicting alternatives. Here alt 3 is not associated with the conflicting configs, but since we can continue looking for input reasonably, don’t declare the state done.</p>

<p><strong>PURE SLL PARSING</strong></p>

<p>To handle pure SLL parsing, all we have to do is make sure that we combine stack contexts for configurations that differ only by semantic predicate. From there, we can do the usual SLL termination heuristic.</p>

<p><strong>PREDICATES IN SLL+LL PARSING</strong></p>

<p>SLL decisions don’t evaluate predicates until after they reach DFA stop states because they need to create the DFA cache that works in all semantic situations. In contrast, full LL evaluates predicates collected during start state computation so it can ignore predicates thereafter. This means that SLL termination detection can totally ignore semantic predicates.</p>

<p>Implementation-wise, ATNConfigSet combines stack contexts but not semantic predicate contexts so we might see two configurations like the following.</p>

<p>(s, 1, x, {), (s, 1, x’, p)}</p>

<p>Before testing these configurations against others, we have to merge x and x’ (without modifying the existing configurations). For example, we test (x+x’)==x” when looking for conflicts in the following configurations.</p>

<p>(s, 1, x, {), (s, 1, x’, p), (s, 2, x”, {})}</p>

<p>If the configuration set has predicates (as indicated by ATNConfigSet#hasSemanticContext), this algorithm makes a copy of the configurations to strip out all of the predicates so that a standard ATNConfigSet will merge everything ignoring predicates.</p>



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
# File 'lib/antlr4/atn/PredictionMode.rb', line 159

def self.hasSLLConflictTerminatingPrediction(mode, configs)
    # Configs in rule stop states indicate reaching the end of the decision
    # rule (local context) or end of start rule (full context). If all
    # configs meet this condition, then none of the configurations is able
    # to match additional input so we terminate prediction.
    #
    if allConfigsInRuleStopStates(configs)
        return true
    end

    # pure SLL mode parsing
    if mode == PredictionMode.SLL
        # Don't bother with combining configs from different semantic
        # contexts if we can fail over to full LL; costs more time
        # since we'll often fail over anyway.
        if configs.hasSemanticContext
            # dup configs, tossing out semantic predicates
            dup = ATNConfigSet.new()
            configs.each {|c|
                c = ATNConfig.new(c,SemanticContext.NONE)
                dup.add(c)
            }
            configs = dup
        end
        # now we have combined contexts for configs with dissimilar preds
    end
    # pure SLL or combined SLL+LL mode parsing
    altsets = getConflictingAltSubsets(configs)
    hasConflictingAltSet(altsets) and not hasStateAssociatedWithOneAlt(configs)
end

.hasStateAssociatedWithOneAlt(configs) ⇒ Object



504
505
506
507
508
509
510
511
512
# File 'lib/antlr4/atn/PredictionMode.rb', line 504

def self.hasStateAssociatedWithOneAlt(configs)
    x = getStateToAltMap(configs)
    x.values().each {|alts|
        if alts.length()==1
            return true
        end
    }
    return false
end

.resolvesToJustOneViableAlt(altsets) ⇒ Object

Full LL prediction termination.

<p>Can we stop looking ahead during ATN simulation or is there some uncertainty as to which alternative we will ultimately pick, after consuming more input? Even if there are partial conflicts, we might know that everything is going to resolve to the same minimum alternative. That means we can stop since no more lookahead will change that fact. On the other hand, there might be multiple conflicts that resolve to different minimums. That means we need more look ahead to decide which of those alternatives we should predict.</p>

<p>The basic idea is to split the set of configurations C, into conflicting subsets (s, _, ctx, _) and singleton subsets with non-conflicting configurations. Two configurations conflict if they have identical ATNConfig#state and ATNConfig#context values but different ATNConfig#alt value, e.g. (s, i, ctx, _) and (s, j, ctx, _) for i!=j.</p>

<p>Reduce these configuration subsets to the set of possible alternatives. You can compute the alternative subsets in one pass as follows:</p>

<p>A_s,ctx = {i | (s, i, ctx, _)} for each configuration in C holding s and ctx fixed.</p>

<p>Or in pseudo-code, for each configuration c in C:</p>

<pre> map U= c.ATNConfig#alt alt # map hash/equals uses s and x, not alt and not pred </pre>

<p>The values in map are the set of A_s,ctx sets.</p>

<p>If |A_s,ctx|=1 then there is no conflict associated with s and ctx.</p>

<p>Reduce the subsets to singletons by choosing a minimum of each subset. If the union of these alternative subsets is a singleton, then no amount of more lookahead will help us. We will always pick that alternative. If, however, there is more than one alternative, then we are uncertain which alternative to predict and must continue looking for resolution. We may or may not discover an ambiguity in the future, even if there are no conflicting subsets this round.</p>

<p>The biggest sin is to terminate early because it means we’ve made a decision but were uncertain as to the eventual outcome. We haven’t used enough lookahead. On the other hand, announcing a conflict too late is no big deal; you will still have the conflict. It’s just inefficient. It might even look until the end of file.</p>

<p>No special consideration for semantic predicates is required because predicates are evaluated on-the-fly for full LL prediction, ensuring that no configuration contains a semantic context during the termination check.</p>

<p><strong>CONFLICTING CONFIGS</strong></p>

<p>Two configurations (s, i, x) and (s, j, x’), conflict when i!=j but x=x’. Because we merge all (s, i, _) configurations together, that means that there are at most n configurations associated with state s for n possible alternatives in the decision. The merged stacks complicate the comparison of configuration contexts x and x’. Sam checks to see if one is a subset of the other by calling merge and checking to see if the merged result is either x or x’. If the x associated with lowest alternative i is the superset, then i is the only possible prediction since the others resolve to min(i) as well. However, if x is associated with j>i then at least one stack configuration for j is not in conflict with alternative i. The algorithm should keep going, looking for more lookahead due to the uncertainty.</p>

<p>For simplicity, I’m doing a equality check between x and x’ that lets the algorithm continue to consume lookahead longer than necessary. The reason I like the equality is of course the simplicity but also because that is the test you need to detect the alternatives that are actually in conflict.</p>

<p><strong>CONTINUE/STOP RULE</strong></p>

<p>Continue if union of resolved alternative sets from non-conflicting and conflicting alternative subsets has more than one alternative. We are uncertain about which alternative to predict.</p>

<p>The complete set of alternatives, [i for (_,i,_)], tells us which alternatives are still in the running for the amount of input we’ve consumed at this point. The conflicting sets let us to strip away configurations that won’t lead to more states because we resolve conflicts to the configuration with a minimum alternate for the conflicting set.</p>

<p><strong>CASES</strong></p>

<ul>

<li>no conflicts and more than 1 alternative in set =&gt; continue</li>

<li> (s, 1, x), (s, 2, x), (s, 3, z), (s’, 1, y), (s’, 2, y) yields non-conflicting set {3} U conflicting sets min({1,2)} U min({1,2)} = {1,3} =&gt; continue </li>

<li>(s, 1, x), (s, 2, x), (s’, 1, y), (s’, 2, y), (s”, 1, z) yields non-conflicting set {1} U conflicting sets min({1,2)} U min({1,2)} = {1} =&gt; stop and predict 1</li>

<li>(s, 1, x), (s, 2, x), (s’, 1, y), (s’, 2, y) yields conflicting, reduced sets {1} U {1} = {1} =&gt; stop and predict 1, can announce ambiguity {1,2}</li>

<li>(s, 1, x), (s, 2, x), (s’, 2, y), (s’, 3, y) yields conflicting, reduced sets {1} U {2} = {1,2} =&gt; continue</li>

<li>(s, 1, x), (s, 2, x), (s’, 3, y), (s’, 4, y) yields conflicting, reduced sets {1} U {3} = {1,3} =&gt; continue</li>

</ul>

<p><strong>EXACT AMBIGUITY DETECTION</strong></p>

<p>If all states report the same conflicting set of alternatives, then we know we have the exact ambiguity set.</p>

<p>|A_i|&gt;1 and A_i = A_j for all i, j.</p>

<p>In other words, we continue examining lookahead until all A_i have more than one alternative and all A_i are the same. If A={{1,2, 1,3}}, then regular LL prediction would terminate because the resolved set is {1}. To determine what the real ambiguity is, we have to know whether the ambiguity is between one and two or one and three so we keep going. We can only stop prediction when we need exact ambiguity detection when the sets look like A={{1,2}} or {{1,2,1,2}}, etc…</p>



364
365
366
# File 'lib/antlr4/atn/PredictionMode.rb', line 364

def self.resolvesToJustOneViableAlt( altsets)
    return self.getSingleViableAlt(altsets)
end