Tagged Questions
0
votes
1answer
95 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;
...
0
votes
1answer
265 views
Clear buffers before calling YYACCEPT in yacc/lex
Is there any way to clear parser buffers before calling YYACCEPT in yacc.
If i do not clear buffer it causes some problems when i call yyparse for the second time.
Also note that I am using some ...
2
votes
1answer
173 views
Bison picking up C function pointer as a function call?
Is there a way to specify that a Bison rule should NOT match if the lookahead token is a given value?
I currently have the following Bison grammar (simplified):
var_decl:
type ident
...
0
votes
2answers
61 views
How to return '+' directly from lexer(without token)
Currently I am doing something like
"+" return TADD;
in my .l file to return token TADD.I want to know if there is a way I can return '+' directly so that I don't have to add a token for every ...
0
votes
1answer
161 views
find lexer and parser generator for c
I need a tool that can generate lexer and parser written in java for c.I know antlr can do this ,but write a grammar file for me is time consuming as there isn't a well done one in the antlr ...
2
votes
5answers
285 views
how to declare a variable in C without using white space between datatype and variable name?
for example,
int a;
Here there is a space between 'int' and 'a'
but what can be the separators other than whitespace?
3
votes
1answer
1k views
How to write a (shell) lexer by hand
I'm working on a shell, a small bash-like shell, without scripting (if while ...)
I have to make the lexer/parser (LL) by hand.
So the lexer will transform the command (char *cmd) to a linked list ...
2
votes
1answer
391 views
How to write own parser for (f)lex?
I generated with flex a lexer.
[ \t\n\r\v] /* skip whitespace */
[_a-zA-Z]([_a-zA-Z]|[0-9])* printf("IDENT\n");
[0-9]+ printf("INTEGER\n");
[0-9]+\. printf("DOUBLE\n");
Now i ...
6
votes
4answers
2k views
How to efficently build an interpreter (lexer+parser) in C?
I'm trying to make a meta-language for writing markup code (such as xml and html) wich can be directly embedded into C/C++ code.
Here is a simple sample written in this language, I call it WDI (Web ...
4
votes
4answers
271 views
Lexers/tokenizers and character sets
When constructing a lexer/tokenizer is it a mistake to rely on functions(in C) such as isdigit/isalpha/... ? They are dependent on locale as far as I know. Should I pick a character set and ...