Tagged Questions
1
vote
1answer
65 views
How to make lex/flex recognize tokens not separated by whitespace?
I'm taking a course in compiler construction, and my current assignment is to write the lexer for the language we're implementing. I can't figure out how to satisfy the requirement that the lexer must ...
0
votes
1answer
46 views
Not able to run JFlex generated lexer Java file
So I used JFlex to generate a file called Yylex.java without any problems. When I try to compile it with the command javac Yylex.java, I get 30 errors, originating with this one:
Yylex.java:13: ...
0
votes
1answer
94 views
Using a hashtable while building a lexical analyser
I'm building a lexical analyser for a compiler, and I'm using hashing to recoginse keywords quickly.
My hashing function is :
int Eval_Hash(char *str)
{
int prime = 5381;
int i;
...
1
vote
4answers
64 views
Should I tokenize line breaks to separate statements or worry about this on the parser?
I built a basic tokenizer in PHP, right now it parses something similar to javascript albeit semicolons are not needed to separate statements.
a = 1
b = a + 1
echo b
T_IDENTIFIER a
T_EQUAL =
...
0
votes
0answers
43 views
Implement indent and dedent using JFlex
I am trying to generate a compiler for Pi language. How do I toggle the issue of indent and dedent in JFlex?
0
votes
0answers
138 views
Using JFlex and CUP
A group partner and I have been trying to build the front-end of a compiler for a language that uses LALR grammar. We've been looking into using JFlex to build a lexer and CUP to use a scanner, but ...
1
vote
1answer
107 views
Non-left-recursive PEG grammar for an “expression”
It's either a simple identifier (like cow) something surrounded by brackets ((...)) something that looks like a method call (...(...)) or something that looks like a member access (thing.member):
def ...
0
votes
1answer
85 views
A space is needed to let line_terminator be recognized
In my lexer.mll I have declared EOS as follows:
let line_feed = '\n' (* %x200A *)
let carriage_return = '\r' (* %x200D *)
let line_terminator = line_feed | carriage_return | carriage_return line_feed ...
5
votes
2answers
155 views
Define <LINE-START> and <LINE-END> in a lexer
I am trying to implement a front end which attempts to conform to a subset of this specification.
It seems that many things are clearly defined in the reference, except <LINE-START> and ...
0
votes
2answers
110 views
Represent a character in lexer
I am writing a lexer in OCaml for a small language, I have a part of its grammar as follows:
tab-character = %x0009
eom-character = %x0019
space-character = %x0020
underscore = %x005F
single-quote = ...
23
votes
5answers
569 views
Communication between lexer and parser
Every time I write a simple lexer and parser, I stumble upon the same question: how should the lexer and the parser communicate? I see four different approaches:
The lexer eagerly converts the ...
2
votes
2answers
428 views
What are the different token types in C++ compilation?
Walter Bright's article on C++ Compilation talks about these two phrases
"Conversion to preprocessing tokens."
What is the initial token? What does a preprocessing token look like?
"Conversion of ...
0
votes
1answer
171 views
How to handle white spaces in lexer implemented as finite automata?
I created lexer for one simple programming language. Now instead of regular expressions (RegEx in Java) I use deterministic finite automata. The automata works great except it would not report error ...
1
vote
1answer
191 views
How does a lexer generator identify the keywords of a grammar?
I'm thinking about how to write a lexer generator. I can't think of an simple way to identify the keywords of a language from its grammar..obviously all keywords are terminals, but not all terminals ...
1
vote
0answers
83 views
Technique used for generating the Google Protocol buffer classes from the .proto file?
What lexer/parser does Google Protocol Buffer use for generating the Protocol buffer classes from the .proto file?
Or if not lexer/parser what is the brief high level algorithm used for doing this.
...
1
vote
1answer
234 views
Two word token using PLY in Python
I am writing a compiler as part of a lab excercise and have chosen to do it in Python using PLY. I have spent some time trying to work this particular problem out and have reached a dead end as have ...
0
votes
1answer
117 views
Define variable name except reservred worsd in a compiler
I am trying to do a lexer for a subset of Java with JavaCC. And a variable name can be any combination of letter, digit and _, beginning with a letter. I have only one problem, reserved words (such as ...
0
votes
2answers
737 views
Scanner (Lexing keywords with ANTLR)
I have been working on writing a scanner for my program and most of the tutorials online include a parser along with the scanner. It doesn't seem possible to write a lexer without writing a parser at ...
5
votes
2answers
408 views
Lexer that recognizes indented blocks
I want to write a compiler for a language that denotes program blocks with white spaces, like in Python. I prefer to do this in Python, but C++ is also an option. Is there an open-source lexer that ...
7
votes
2answers
2k views
Where can I learn the basics of writing a lexer?
I want to learn how to write a lexer. My university course had an assignment where we had to write a parser (and a lexer to go along with it) but this was given to us with no instruction or feedback ...
0
votes
2answers
263 views
Programming a simple compiler - tips
I am trying to program a compiler for a simple language and I am facing some problems.
I made a lexer/tokenizer that it takes a file and prints in stdout the tokens.
The problem is that I want now ...
3
votes
4answers
339 views
Writing part of a compiler (written in c++) in Perl
i am trying to learn more about compilers and programming languages, unfortunately my university doesnt offer a course about compilers and so i have to do myself (thank you internet).
At the moment ...
3
votes
1answer
357 views
Lexical analysis in MRI Ruby 1.9.2
I'm learning some compiler theory and practice at the moment. Ruby is my every day language of choice, and so I went to look at its lexer and parse grammar. Does ruby have a separate lexer? If so, ...
16
votes
5answers
3k views
hand coding a parser
For all you compiler gurus, I wanna write a recursive descent parser and I wanna do it with just code. No generating lexers and parsers from some other grammar and don't tell me to read the dragon ...
1
vote
1answer
764 views
ANTLR lexer mismatches tokens
I have a simple ANTLR grammar, which I have stripped down to its bare essentials to demonstrate this problem I'm having. I am using ANTLRworks 1.3.1.
grammar sample;
assignment : IDENT ':=' NUM ...
1
vote
2answers
2k views
How can I modify the text of tokens in a CommonTokenStream with ANTLR?
I'm trying to learn ANTLR and at the same time use it for a current project.
I've gotten to the point where I can run the lexer on a chunk of code and output it to a CommonTokenStream. This is ...
1
vote
2answers
128 views
What is the best tool for creating a Java extension? [closed]
Our project group is working on a Java language extension and we have been trying to figure out what tool we should use for this purpose. The extension will primarily consist of a modification of the ...
12
votes
10answers
2k views
Have you ever effectively used lexer/parser in real world application?
Recently, I am started learning Antlr. And knew that lexer/parser together could be used in construction of programming languages.
Other than DSL & programming languages, Have you ever directly ...