Bison is the GNU parser generator. It generates LALR parsers, but can also generate GLR parsers for grammars that are not LALR. It has a mode of compatibility with its old predecessor Yacc (yet another compiler compiler).
0
votes
0answers
5 views
simple Java grammar using Flex & Bison
I recently started learning basic Flex and Bison because I have to make a parser for simple but not too simple grammar. I decided to make a simplified Java language in my grammar. I made the .l and ...
0
votes
1answer
43 views
syntax error, unexpected token, expecting end of file
I get the following error when i run my Parser file ( binary got after compiling Flex/Bison files).
error: syntax error, unexpected TKN_PRIMARY, expecting end of file
Here is rule defined in flex ...
0
votes
1answer
12 views
bison's reduction didn't work as expected
I'm trying to write a EPL parser,so I'm learning flex and bison.I try using it with following rules(SQL):
SELECT { cout<<"SELECT detected"<<endl;return SELECT; }
FROM { cout<<"FROM ...
0
votes
1answer
35 views
Is there any configure file read/write C code generator?
I know how to generate a C scanner code with flex or bison, but unluckily, I need a C code to read && -write- configure file, but I can not generate such code with flex or bison, May be I can ...
-1
votes
1answer
34 views
lex and yacc — combine two lexers and one yacc
I have two lex files with functions xxlex() and yylex() and I have one yacc grammar file. I wanted on a grammatical rule to always invoke xxlex(). But xxlex() is only called once, and I want it to be ...
0
votes
2answers
21 views
Save and restore parser state manually
I've setup a flex/bison system that can run and parse through yyparse and is able to be used inside a repl-type system. When a user enters a certain state (say: defining a method), and an systax error ...
2
votes
3answers
64 views
Verilog gate level parser
I want to parse Verilog gate level code and store the data in a data structure (ex. graph).
Then I want to do something on the gates in C/C++ and output a corresponding Verilog file.
(I would like ...
0
votes
1answer
29 views
Meaning of $7 and $8 in a bison code
I'm reading some Bison code for parsing a C program. Can anyone tell me the meaning of $7 and $8 in the following code because I only find 6 and 7 descriptions in two cases to describe a enum type.
...
1
vote
1answer
14 views
Bison, action at the beginning of a rule
I'm trying to build a grammar for a subset of the C language. In some of my rules I have the following (pNode being a pointer defined in the union):
rule : { $<pNode>$ = $<pNode>0; } the ...
1
vote
1answer
40 views
An explanation for BNF rule
I'm investigating the mysql's SQL parser at the moment.
And here is the interesting thing I have noticed and cannot explain:
(in sql_yacc.yy)
predicate:
...
| bit_expr BETWEEN_SYM ...
0
votes
1answer
23 views
Bison IF/ELSE grammar rule
I'm having problems developing the grammar rule for a if/else....If someone could explain me what am I doing wrong it'd be great
/* Terminal symbols */
%token <string> TINTEGER
%token ...
0
votes
1answer
20 views
Bison Defining Comments in Flex
I have to create a lexical and syntax analyzer for a c-like language. In this language we define as comment "everything that exists after the symbol // until the end of line". Everytime my compiler ...
0
votes
1answer
42 views
Is it possible to call one yacc parser from another to parse specific token substream?
Suppose I already have a complete YACC grammar. Let that be C grammar for example. Now I want to create a separate parser for domain-specific language, with simple grammar, except that it still needs ...
0
votes
1answer
29 views
Bison, simple calculator program
I want to make parser for simple calculator but I cant uderstand whu I get error for simple input.
Flex file looks like this
%{
#include "exp.tab.h"
#include <string.h>
%}
blanks [ ...
0
votes
1answer
13 views
M4 “No such file or directory”.Bison
This is my code in file skener.y
%{
#include <stdio.h>
%}
%token T_Int
%%
exp: T_Int { $$ = $1; }
| exp exp '+' { $$ = $1 + $2; }
| exp exp '-' { $$ = $1 - ...
0
votes
1answer
22 views
Make bison reduce to start symbol only if EOF is found
I am using Bison with Flex.
I have the following rule in my Yacc input file:
program : PROGRAM m2 declarations m0 block {cout << "Success\n"} ;
The problem is that if I have a program ...
0
votes
1answer
73 views
make file : yacc command not found and [y.tab.c] error 127 after installing bison
There is a given r-tree code by Toni Guttman(it's been modified for my homework), however, if I change an parameter(the dimension of the node), then "make" will cause such errors:
yacc y.spec
make: ...
1
vote
1answer
85 views
Why can't LEX/YACC be used to parse C++ for a compiler?
I'm aware there's a reason but I haven't found a good, concise explanation as to why LEX/YACC cannot be used for C++.
I am also interested to know whether LEX/YACC could be used to parse Objective C, ...
0
votes
0answers
29 views
How to create array in llvm with the library
I'm creating my own language with Bison + llvm and I want to have the possibility to declare some arrays in my code.
After the parsing, I make a specific object which represent that array with a type, ...
2
votes
1answer
28 views
reduce/reduce conflict when parsing expressions without mixed operators
The language in my compiler course assignment doesn't allow mixed operators in an expression without parentheses, presumably to not make us deal with implementing precedence. This means the following ...
0
votes
0answers
12 views
Is there a way to make Bison emit verbose errors other than %error-verbose?
For an compiler class assignment, I have to use the ox tool. Unfortunately it's not very tolerant, and bails on Bison directives that didn't exist in 1994. This includes %error-verbose, which makes ...
0
votes
1answer
50 views
parsing with flex and bison fails for space and brace
I am trying to parse a file like this: (too simple for my actual purpose, but for the beginning, this is ok)
@Book{key2,
Author="Some2VALUE" ,
Title="VALUE2"
}
The lexer is:
[A-Za-z"][^\\\" ...
0
votes
1answer
43 views
Flex: Syntax error when adding a new rule
My current lex file looks like this:
%{
#include "foo.h"
void rem_as(char* string);
%}
DIGIT [0-9]
LITTERAL [a-zA-Z]
SEP [_-]|["."]|["\\"][ ]
FILE_NAME ...
0
votes
2answers
36 views
Get String token value in flex and bison more than it is intended
I tried to get the value of the token in bison, but it seems that I get more than one token at once.
Here is my flex code:
%{
#include <stdio.h>
#include "y.tab.h"
//YYSTYPE ...
0
votes
0answers
23 views
what does $2 mean in bison when i wrote exp ADD factor?
exp ADD factor { $$ = $1 + $3; }
It's a grammar for add.
$$ is the target symbol.
$1 is exp and $3 is factor.
Right?
So what is $2? Why $1==$2(I've tried it)?
0
votes
1answer
13 views
Bison -v flag not doing anything
when I run bison on my .y file, all I get for output if there are any conflicts is something like:
Program.y: conflicts: 3 shift/reduce
Which if Program.y is more than a handful of lines long is ...
-2
votes
0answers
22 views
Bison complained “conflicts: 1 shift/reduce”
%token N_ALUNO TIPO NORMAL TURMA RECURSO SETEMBRO TRABALHO
%%
linha: linha '\n' linha
| /*vazio*/
;
linha: TIPO '(' NORMAL '|' RECURSO '|' SETEMBRO ')' TRABALHO '\n' N_ALUNO TURMA ...
0
votes
2answers
51 views
automake-ing in bison which works fine with handwritten makefile
Friends,
I am trying to create Makefile via gnu-autotools for a flex+bison+C code (toy code, you ma say). The Handwritten Makefile works fine
CC=gcc #-g -Wall
FLEX=flex
BISON=bison
LIBS=lfl
...
1
vote
2answers
38 views
Bison dangling else
I have the following rule in my grammar:
block: TLBRACE statements TRBRACE
| TLBRACE TRBRACE
;
statements: statement
...
0
votes
1answer
35 views
Clean all spaces and newlines C or Lex/Bison
I need to clean all spaces and newlines (\n) of the yytext on my Lex/Bison program.
I have a proprierty like this:
<PROPERTY>[^}]* TAG=yytext;
I need it to parse all my CSS code file into ...
0
votes
1answer
30 views
Bison reset line number for each new file
I have a simple parser implementation using GNU bison and flex. It works fine and I can parse multiple files from command line
./program file1.m file2.m
and I load the files in reverse order (that ...
0
votes
1answer
33 views
Bison reduce/reduce conflict
I'm getting a reduce/reduce conflict on the following grammar (excerp)
declaration : type list_of_id
list_of_id : ID
| list_of_id ',' ID ...
0
votes
1answer
94 views
using flex and bison combo or generating parse tree from java bytecode
I am intending to generate parse trees from java byte codes. A typical byte code is of the following,
public class org.scandroid.testing.InvokeCallArgTest extends org.scandroid.testing.SourceSink{
...
5
votes
2answers
182 views
Translating Shakespeare Programming Language
I am trying to translate my .spl file into a C file (because there is no compiler). I have an example "Hello World" .spl file, and I have downloaded the Shakespeare Programming Language .tar and ...
0
votes
2answers
32 views
passing up multiple attributes in yacc/bison
In order to handle the grammar rule:
type : ARRAY '[' integer_constant RANGE integer_constant ']' OF stype { $$ = $8 }
| stype { $$ = $1 }
;
I need to ...
0
votes
1answer
43 views
handing lists of variable names in bison/yacc
I'm having trouble figuring out how to write a parser with bison.
In order to insert variables into my symbol table so that I can do some type-checking and other nonsense I need the variable name and ...
0
votes
1answer
44 views
Conflict in grammar YACC/Bison
I have a YACC grammar for parsing expressions in C. These are some of it's fragments:
Expr: Expr COMMA Expr
| Assignment
Assignment: IDENTIFIER
| Assignment COMMA Assignment
...
0
votes
1answer
38 views
Why the return value for more than a token?
I want to return DOLLARID($foo) and DOTID(.foo),so I wirte tow rule(A code snippet of my lex file):
ID ([_a-zA-Z]+[a-zA-Z0-9_\-]*)
DOLLAR ("$"|("$!"))
DOT "."
%x DIRECTIVE REFERENCE
%%
[^#$]*?/"$" ...
0
votes
0answers
111 views
Bison parsing, creating syntax tree
I have some problems creating my intermediate representation with bison.
I have some different structs which represent the different nodes in my syntax tree, so I organized them all together in my ...
-3
votes
1answer
42 views
conflicts: 1 shift/reduce, 28 reduce/reduce in bison [closed]
%token TYPEDEF EXTERN STATIC AUTO REGISTER
%token CHAR SHORT INT LONG SIGNED UNSIGNED FLOAT DOUBLE CONST VOLATILE VOID
%token STRUCT UNION ENUM ELLIPSIS
%token CASE DEFAULT IF ELSE SWITCH WHILE DO FOR ...
0
votes
1answer
49 views
Shift Reduce Conflict in Bison Grammar?
I have the following Bison Grammar File, when I do "bison -d filename.y" I get a message
conflicts: 5 Shift/Reduce.
Actually they were 8, I managed to get rid of 3 but no idea where the rest is, I ...
-1
votes
1answer
36 views
Defining token “int matrix” in flex [duplicate]
I am trying to define two tokens in flex. First one returns "tINTTYPE", which returns when it sees the string "int" in the input, and other one is "TINTTYPE", which returns when it sees "int matrix" ...
4
votes
1answer
59 views
String concatenation in C-bison-flex
I am writing a semantic analyzer using flex and bison. There, i have a matrix literal, which is something like [1,2,3;3,4;5]. Assume they are integers. I have the following rules:
In flex file:
int ...
0
votes
2answers
38 views
Where is this shift/reduce conflict coming from in Bison?
I am trying to get the hang of parsing by defining a very simple language in Jison (a javascript parser). It accepts the same / very similar syntax to bison.
Here is my grammar:
%token INT TRUE ...
1
vote
2answers
87 views
How can I locate unbalanced delimiters for error reporting in yacc/bison?
I have a grammar which uses parentheses and square brackets as delimiters. When the parser generated by bison is given input with unbalanced delimiters, the error location in the YYLTYPE* passed to ...
1
vote
1answer
30 views
Returning an attribute from flex to bison
i am trying yo write some kind of a simple compiler that detects undeclared variable, and does some extra stuff. The problem is, i cannot use "$$" in my bison file, it says "$$ of `type' has no ...
0
votes
1answer
43 views
recover yyparse after yyaccept
Friends, I am parsing a bibtex file, having multiple bibtex entry within a file, e.g.
@Book{a1,
Title="ASR",
Publisher="oxf",
Author = {a {\"m}ook, Rudra Banerjee},
Year="2010",
...
0
votes
1answer
31 views
Where are the shift/reduce conflicts in this Bison code?
I have a Shit/reduce conflicts in my bison code :
expression : LBRACKET expression RBRACKET {$$ = $2;}
| fct_call {}
| operand {}
...
0
votes
1answer
43 views
Bison and doesn't name a type error
I have the following files:
CP.h
#ifndef CP_H_
#define CP_H_
class CP {
public:
enum Cardinalite {VIDE = '\0', PTINT = '?', AST = '*', PLUS = '+'};
CP(Cardinalite myCard);
...
1
vote
1answer
65 views
Debugging in Jison
I'm using Jison to write a parser. This is my grammar:
{
"program": [
["statements EOF", "return $1;"]
],
"statements": [
["statement", "$$ = $1;"],
...

