Package org.antlr.runtime.debug
Class Profiler
- java.lang.Object
-
- org.antlr.runtime.debug.BlankDebugEventListener
-
- org.antlr.runtime.debug.Profiler
-
- All Implemented Interfaces:
DebugEventListener
public class Profiler extends BlankDebugEventListener
Using the debug event interface, track what is happening in the parser and record statistics about the runtime.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classProfiler.DecisionDescriptorstatic classProfiler.DecisionEventstatic classProfiler.ProfileStats
-
Field Summary
Fields Modifier and Type Field Description protected intbacktrackDepthprotected Stack<String>currentGrammarFileNameprotected Stack<Integer>currentLineprotected Stack<Integer>currentPosprotected Stack<String>currentRuleNamestatic StringDATA_SEPprotected List<Profiler.DecisionEvent>decisionEventsprotected DoubleKeyMap<String,Integer,Profiler.DecisionDescriptor>decisionsprotected Stack<Profiler.DecisionEvent>decisionStackprotected TokenlastRealTokenTouchedInDecisionstatic StringnewlineDebugParserparserAck, should not store parser; can't do remote stuff.protected intruleLevelstatic StringRUNTIME_STATS_FILENAMEprotected Set<String>uniqueRulesstatic StringVersionBecause I may change the stats, I need to track that for later computations to be consistent.-
Fields inherited from interface org.antlr.runtime.debug.DebugEventListener
FALSE, PROTOCOL_VERSION, TRUE
-
-
Constructor Summary
Constructors Constructor Description Profiler()Profiler(DebugParser parser)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbeginBacktrack(int level)Track backtracking decisions.voidconsumeHiddenToken(Token token)An off-channel input token was consumed.voidconsumeToken(Token token)An input token was consumed; matched by any kind of element.protected Profiler.DecisionEventcurrentDecision()voidendBacktrack(int level, boolean successful)Successful or not, track how much lookahead synpreds usevoidenterDecision(int decisionNumber, boolean couldBacktrack)Every decision, fixed k or arbitrary, has an enter/exit event so that a GUI can easily track what LT/consume events are associated with prediction.voidenterRule(String grammarFileName, String ruleName)The parser has just entered a rule.voidexamineRuleMemoization(IntStream input, int ruleIndex, int stopIndex, String ruleName)Track memoization; this is not part of standard debug interface but is triggered by profiling.voidexitDecision(int decisionNumber)voidexitRule(String grammarFileName, String ruleName)This is the last thing executed before leaving a rule.List<Profiler.DecisionEvent>getDecisionEvents()DoubleKeyMap<String,Integer,Profiler.DecisionDescriptor>getDecisionStats()StringgetDecisionStatsDump()intgetNumberOfHiddenTokens(int i, int j)Get num hidden tokens between i..j inclusiveProfiler.ProfileStatsgetReport()booleaninDecision()The parser is in a decision if the decision depth > 0.voidlocation(int line, int pos)To watch a parser move through the grammar, the parser needs to inform the debugger what line/charPos it is passing in the grammar.protected StringlocationDescription()protected StringlocationDescription(String file, String rule, int line, int pos)voidLT(int i, Token t)Track refs to lookahead if in a fixed/nonfixed decision.voidmark(int i)The parser is going to look arbitrarily ahead; mark this location, the token stream's marker is sent in case you need it.voidmemoize(IntStream input, int ruleIndex, int ruleStartIndex, String ruleName)Warning: doesn't track success/failure, just unique recording eventvoidrecognitionException(RecognitionException e)A recognition exception occurred such as NoViableAltException.voidrewind()Rewind to the input position of the last marker.voidrewind(int i)After an arbitrairly long lookahead as with a cyclic DFA (or with any backtrack), this informs the debugger that stream should be rewound to the position associated with marker.voidsemanticPredicate(boolean result, String predicate)A semantic predicate was evaluate with this result and action textvoidsetParser(DebugParser parser)voidterminate()Parsing is over; successfully or not.protected int[]toArray(List<Integer> a)StringtoNotifyString()StringtoString()static StringtoString(Profiler.ProfileStats stats)protected int[]trim(int[] X, int n)-
Methods inherited from class org.antlr.runtime.debug.BlankDebugEventListener
addChild, becomeRoot, beginResync, commence, consumeNode, createNode, createNode, endResync, enterAlt, enterSubRule, errorNode, exitSubRule, LT, nilNode, setTokenBoundaries
-
-
-
-
Field Detail
-
DATA_SEP
public static final String DATA_SEP
- See Also:
- Constant Field Values
-
newline
public static final String newline
-
Version
public static final String Version
Because I may change the stats, I need to track that for later computations to be consistent.- See Also:
- Constant Field Values
-
RUNTIME_STATS_FILENAME
public static final String RUNTIME_STATS_FILENAME
- See Also:
- Constant Field Values
-
parser
public DebugParser parser
Ack, should not store parser; can't do remote stuff. Well, we pass input stream around too so I guess it's ok.
-
ruleLevel
protected int ruleLevel
-
lastRealTokenTouchedInDecision
protected Token lastRealTokenTouchedInDecision
-
decisions
protected DoubleKeyMap<String,Integer,Profiler.DecisionDescriptor> decisions
-
decisionEvents
protected List<Profiler.DecisionEvent> decisionEvents
-
decisionStack
protected Stack<Profiler.DecisionEvent> decisionStack
-
backtrackDepth
protected int backtrackDepth
-
-
Constructor Detail
-
Profiler
public Profiler()
-
Profiler
public Profiler(DebugParser parser)
-
-
Method Detail
-
enterRule
public void enterRule(String grammarFileName, String ruleName)
Description copied from interface:DebugEventListenerThe parser has just entered a rule. No decision has been made about which alt is predicted. This is fired AFTER init actions have been executed. Attributes are defined and available etc... The grammarFileName allows composite grammars to jump around among multiple grammar files.- Specified by:
enterRulein interfaceDebugEventListener- Overrides:
enterRulein classBlankDebugEventListener
-
exitRule
public void exitRule(String grammarFileName, String ruleName)
Description copied from interface:DebugEventListenerThis is the last thing executed before leaving a rule. It is executed even if an exception is thrown. This is triggered after error reporting and recovery have occurred (unless the exception is not caught in this rule). This implies an "exitAlt" event. The grammarFileName allows composite grammars to jump around among multiple grammar files.- Specified by:
exitRulein interfaceDebugEventListener- Overrides:
exitRulein classBlankDebugEventListener
-
examineRuleMemoization
public void examineRuleMemoization(IntStream input, int ruleIndex, int stopIndex, String ruleName)
Track memoization; this is not part of standard debug interface but is triggered by profiling. Code gen inserts an override for this method in the recognizer, which triggers this method. Called from alreadyParsedRule().
-
memoize
public void memoize(IntStream input, int ruleIndex, int ruleStartIndex, String ruleName)
Warning: doesn't track success/failure, just unique recording event
-
location
public void location(int line, int pos)Description copied from interface:DebugEventListenerTo watch a parser move through the grammar, the parser needs to inform the debugger what line/charPos it is passing in the grammar. For now, this does not know how to switch from one grammar to the other and back for island grammars etc... This should also allow breakpoints because the debugger can stop the parser whenever it hits this line/pos.- Specified by:
locationin interfaceDebugEventListener- Overrides:
locationin classBlankDebugEventListener
-
enterDecision
public void enterDecision(int decisionNumber, boolean couldBacktrack)Description copied from interface:DebugEventListenerEvery decision, fixed k or arbitrary, has an enter/exit event so that a GUI can easily track what LT/consume events are associated with prediction. You will see a single enter/exit subrule but multiple enter/exit decision events, one for each loop iteration.- Specified by:
enterDecisionin interfaceDebugEventListener- Overrides:
enterDecisionin classBlankDebugEventListener
-
exitDecision
public void exitDecision(int decisionNumber)
- Specified by:
exitDecisionin interfaceDebugEventListener- Overrides:
exitDecisionin classBlankDebugEventListener
-
consumeToken
public void consumeToken(Token token)
Description copied from interface:DebugEventListenerAn input token was consumed; matched by any kind of element. Trigger after the token was matched by things like match(), matchAny().- Specified by:
consumeTokenin interfaceDebugEventListener- Overrides:
consumeTokenin classBlankDebugEventListener
-
inDecision
public boolean inDecision()
The parser is in a decision if the decision depth > 0. This works for backtracking also, which can have nested decisions.
-
consumeHiddenToken
public void consumeHiddenToken(Token token)
Description copied from interface:DebugEventListenerAn off-channel input token was consumed. Trigger after the token was matched by things like match(), matchAny(). (unless of course the hidden token is first stuff in the input stream).- Specified by:
consumeHiddenTokenin interfaceDebugEventListener- Overrides:
consumeHiddenTokenin classBlankDebugEventListener
-
LT
public void LT(int i, Token t)Track refs to lookahead if in a fixed/nonfixed decision.- Specified by:
LTin interfaceDebugEventListener- Overrides:
LTin classBlankDebugEventListener
-
beginBacktrack
public void beginBacktrack(int level)
Track backtracking decisions. You'll see a fixed or cyclic decision and then a backtrack. enter rule ... enter decision LA and possibly consumes (for cyclic DFAs) begin backtrack level mark m rewind m end backtrack level, success exit decision ... exit rule- Specified by:
beginBacktrackin interfaceDebugEventListener- Overrides:
beginBacktrackin classBlankDebugEventListener
-
endBacktrack
public void endBacktrack(int level, boolean successful)Successful or not, track how much lookahead synpreds use- Specified by:
endBacktrackin interfaceDebugEventListener- Overrides:
endBacktrackin classBlankDebugEventListener
-
mark
public void mark(int i)
Description copied from interface:DebugEventListenerThe parser is going to look arbitrarily ahead; mark this location, the token stream's marker is sent in case you need it.- Specified by:
markin interfaceDebugEventListener- Overrides:
markin classBlankDebugEventListener
-
rewind
public void rewind(int i)
Description copied from interface:DebugEventListenerAfter an arbitrairly long lookahead as with a cyclic DFA (or with any backtrack), this informs the debugger that stream should be rewound to the position associated with marker.- Specified by:
rewindin interfaceDebugEventListener- Overrides:
rewindin classBlankDebugEventListener
-
rewind
public void rewind()
Description copied from interface:DebugEventListenerRewind to the input position of the last marker. Used currently only after a cyclic DFA and just before starting a sem/syn predicate to get the input position back to the start of the decision. Do not "pop" the marker off the state. mark(i) and rewind(i) should balance still.- Specified by:
rewindin interfaceDebugEventListener- Overrides:
rewindin classBlankDebugEventListener
-
currentDecision
protected Profiler.DecisionEvent currentDecision()
-
recognitionException
public void recognitionException(RecognitionException e)
Description copied from interface:DebugEventListenerA recognition exception occurred such as NoViableAltException. I made this a generic event so that I can alter the exception hierachy later without having to alter all the debug objects. Upon error, the stack of enter rule/subrule must be properly unwound. If no viable alt occurs it is within an enter/exit decision, which also must be rewound. Even the rewind for each mark must be unwount. In the Java target this is pretty easy using try/finally, if a bit ugly in the generated code. The rewind is generated in DFA.predict() actually so no code needs to be generated for that. For languages w/o this "finally" feature (C++?), the target implementor will have to build an event stack or something. Across a socket for remote debugging, only the RecognitionException data fields are transmitted. The token object or whatever that caused the problem was the last object referenced by LT. The immediately preceding LT event should hold the unexpected Token or char. Here is a sample event trace for grammar: b : C ({;}A|B) // {;} is there to prevent A|B becoming a set | D ; The sequence for this rule (with no viable alt in the subrule) for input 'c c' (there are 3 tokens) is: commence LT(1) enterRule b location 7 1 enter decision 3 LT(1) exit decision 3 enterAlt1 location 7 5 LT(1) consumeToken [c/<4>,1:0] location 7 7 enterSubRule 2 enter decision 2 LT(1) LT(1) recognitionException NoViableAltException 2 1 2 exit decision 2 exitSubRule 2 beginResync LT(1) consumeToken [c/<4>,1:1] LT(1) endResync LT(-1) exitRule b terminate- Specified by:
recognitionExceptionin interfaceDebugEventListener- Overrides:
recognitionExceptionin classBlankDebugEventListener
-
semanticPredicate
public void semanticPredicate(boolean result, String predicate)Description copied from interface:DebugEventListenerA semantic predicate was evaluate with this result and action text- Specified by:
semanticPredicatein interfaceDebugEventListener- Overrides:
semanticPredicatein classBlankDebugEventListener
-
terminate
public void terminate()
Description copied from interface:DebugEventListenerParsing is over; successfully or not. Mostly useful for telling remote debugging listeners that it's time to quit. When the rule invocation level goes to zero at the end of a rule, we are done parsing.- Specified by:
terminatein interfaceDebugEventListener- Overrides:
terminatein classBlankDebugEventListener
-
setParser
public void setParser(DebugParser parser)
-
toNotifyString
public String toNotifyString()
-
getReport
public Profiler.ProfileStats getReport()
-
getDecisionStats
public DoubleKeyMap<String,Integer,Profiler.DecisionDescriptor> getDecisionStats()
-
getDecisionEvents
public List<Profiler.DecisionEvent> getDecisionEvents()
-
toString
public static String toString(Profiler.ProfileStats stats)
-
getDecisionStatsDump
public String getDecisionStatsDump()
-
trim
protected int[] trim(int[] X, int n)
-
getNumberOfHiddenTokens
public int getNumberOfHiddenTokens(int i, int j)Get num hidden tokens between i..j inclusive
-
locationDescription
protected String locationDescription()
-
-