When I generate a lexer with antlr from a grammer file I notice it generates a series of strings in hex format.

These strings are utilised by the DFA to predict what tokens my be next.

What do these strings mean and how are they generated.

the strings I am referreing to appear in the generated lexer like this (aand are passed to the DFA in the constructor):

static final String DFA1_eotS = ....

static final String DFA1_eofS = ....

static final String DFA1_minS = ....

static final String DFA1_maxS = ....

static final String DFA1_acceptS = ....

static final String DFA1_specialS = ....                                                

static final String[] DFA1_transitionS = ....

Edit:

I will begin answering by own question to get us started

acceptS[i] = an array containing an identifier for possible tokens (I don't know why it contains many -1 values)

link|improve this question

Not sure what strings you mean exactly, but do you ask just out of curiosity, or are you trying to solve an actual problem? – Bart Kiers Apr 6 '11 at 8:06
I did submit the strings in an edit yesterday but they didn't show up, I am trying again but it is still failing (page requested not found). – whatsthebeef Apr 6 '11 at 15:18
But, do you ask just out of curiosity, or are you trying to solve an actual problem? – Bart Kiers Apr 6 '11 at 15:21
@Bart Kiers - sorry I had more to that response but for some reason sof keeps locking me out of this question – whatsthebeef Apr 6 '11 at 15:46
@Bart Kiers - I am looking at creating a DFA for antlr which uses the levenshtein distribution to predict tokens because I can't guarantee all my tokens will be spelt correctly. Have you any suggestions for this? I had this question stackoverflow.com/questions/5465374/… from last week (Prob doesn't help) but I was making some nice progress with a solution involving antlr – whatsthebeef Apr 6 '11 at 15:49
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

DFA_minS, DFA_maxS I think refers to range of chars it can fall between as it moves through the state table

DFA_transitionS. I think is the state table

DFA_specialsS I think is something to do with adding the semanticet predicates to the rules and

DFA_acceptS seems to be the set of case values in a switch specifying which token is being accepted by the DFA

Note: I still would like to know if these are correct and how they are generated

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.