0
votes
3answers
60 views
bison shift instead of reduce. With reduce/reduce errors
In my language i can write
a = 1
b = 2
if true { } else { }
if true { } **Here is the problem**
else {}
My grammer doesnt support newlines between statements. An else can only …
0
votes
2answers
27 views
Is it possible to stack Yacc grammar rule code?
Lets say I need to run some initialization code everytime I match a rule how can I reduce the redundancy?
rule : TOKEN1 { init(); token1Code(); }
| TOKEN2 { init(); token2Cod …
1
vote
2answers
74 views
How to resolve this Shift/Reduce conflict in YACC
I have a grammar like this:
"Match one or more rule1 where rule1 is one or more rule2, where rule2 is one or more rule3, etc. etc. each seperated by newlines". Look at the followi …
0
votes
3answers
112 views
Search string parser in C/C++
I work on an open source project focused around Biblical texts. I would like to create a standard string format to build up a search string. I would then need to parse the search s …
1
vote
1answer
19 views
Bison/Yacc, make literal token return its own value?
Below is my rule, when i replace $2 with '=' my code works. I know by default all literal tokens uses their ascii value (hence why multi character token require a definition)
The …
0
votes
1answer
22 views
Why does my flex/yacc compiler not compile correctly on another linux machine
On my machine (Windows running cygwin) it compiles correctly. Flex is version 2.5.35 and bison is version 2.3
On linux machine 1 it compiles correctly. Flex is version 2.5.4 and …
0
votes
1answer
15 views
bison end of file
If i forget to put an empty line at the end of any of my files my program gets a syntax error. The problem is my grammar expects a newline to end the current line. Since a newline …
8
votes
7answers
273 views
Writing compilers … what’s right and what’s wrong?
Okay, in my quest to figure out the necessary stuff to write a compiler, I've reached a bit of a roadblock. It seems that every technology or tool that I find has some opposition …
3
votes
2answers
103 views
Left Recursion in Grammar Results in Conflicts
Throughout a Bison grammar I am using right recursion, and I have read that left recursion is better because it doesn't have to build the whole stack first.
However, when I try to …
0
votes
1answer
35 views
flex, defining char
Hello
I want to define char (ie 'a AND 'a') but I am having issues in checking errors.
Here how I write the rule and check:
char " ' " {letter}
code
{char} {
…
0
votes
1answer
50 views
Selective merge of two or more data files
Dear Overflowns:
I have an executable whose input is contained in an ASCII file with format:
$ GENERAL INPUTS
$ PARAM1 = 123.456
PARAM2=456,789,101112
PARAM3(1)=123,456,789
PARAM …
1
vote
3answers
46 views
Using make to generate bison grammar
In a project that uses make and bison, I'm having difficulty specifying that the compiled grammar grammar.tab.c depends on the grammar input grammar.y, that each object file depend …
0
votes
2answers
40 views
Inspect Bison’s $$ variable with GDB
If I set a breakpoint in a Bison .y file, is there a way I can inspect the contents of $$ pseudo variable at that breakpoint?
0
votes
3answers
44 views
Using bison to parse list of elements
Hello, I'm writing a compiler for a shading engine and every worked fine until I reached the statements parsing part.
I used an abstract syntax tree defined with classes to do all …
0
votes
3answers
82 views
Statement with no effect warning with GCC and Flex/Bison
When compiling my project with gcc and the -Wall option, I get a warning about a statement with no effect in the non-existant last line of my flex file:
Warning:
gcc -Wall -O0 -g …
