Tagged Questions
4
votes
3answers
1k views
self-taught compiler courses / good introductory compiler books?
Does anyone know of online course / university lectures that comprise a typical compiler course? I've had theory of computing but unfortunately my school didn't offer a course in compiler ...
3
votes
1answer
1k views
DFA based regular expression matching - how to get all matches!
I have a given DFA that represent a regular expression.
I want to match the DFA against an input stream and get all possible matches back, not only the lestmost-longest match.
For example:
regex: ...
2
votes
1answer
78 views
Producing a picture of DFA that recognizes given regexps
Is there a tool that will accept a list of regexps and produce a picture of the minimal DFA that will recognize these regexps, each into its corresponding final state?
It should look something like ...
1
vote
0answers
452 views
time complexity trade offs of nfa vs dfa
(i found the answer, its below in comments for anyone else)
i am looking for a discussion on which is better used and in what circumstanes in a compiler an nfa or dfa. what are the time complexity ...
0
votes
1answer
26 views
How to convert a non-embedding context free grammer to regular grammer?
Please note that I am aware the undecidability of the conversion of context-free grammer to regular grammer. But given the non-embedding property of the input context-free grammer, is there any ...
0
votes
1answer
81 views
in ANTLR What do the auto generated DFA strings, such as eotS, eofS, acceptS mean and how are they generated
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 ...