Tagged Questions
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).
46
votes
4answers
8k views
Advantages of Antlr (versus say, lex/yacc/bison)
I've used lex and yacc (more usually bison) in the past for various projects, usually translators (such as a subset of EDIF streamed into an EDA app). Additionally, I've had to support code based on ...
19
votes
8answers
1k 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 somewhere.
I use ...
12
votes
1answer
591 views
Integrating Bison/Flex/Yacc into XCode
Is there a simple way for integrating Bison/Flex/Yacc into XCode?
I want to write my own language to be parsed, which interacts with my ObjC objects.
But the tools will only take STDIN as input, and ...
12
votes
4answers
1k views
Is there an alternative for flex/bison that is usable on 8-bit embedded systems?
I'm writing a small interpreter for a simple BASIC like language as an exercise on an AVR microcontroller in C using the avr-gcc toolchain. However, I'm wondering if there are any open source tools ...
11
votes
2answers
402 views
Lemon power or not?
For grammar parser, I used to "play" with Bison which have its pros/cons.
Last week, I noticed on SqLite site that the engine is done with another grammar parser: Lemon
Sounds great after reading ...
11
votes
2answers
3k views
String input to flex lexer
I want to create a read-eval-print loop using flex/bison parser. Trouble is, the flex generated lexer wants input of type FILE* and i would like it to be char*. Is there anyway to do this?
One ...
10
votes
2answers
2k views
Trouble building gcc 4.6
I'm trying to build gcc 4.6, but I'm getting some linker errors that look like it means bison or flex isn't getting linked to. When the makefile issues this command:
gcc -g -fkeep-inline-functions ...
10
votes
2answers
810 views
Problem calling std::max
I compiled my bison-generated files in Visual Studio and got these errors:
...\position.hh(83): error C2589: '(' : illegal token on right side of '::'
...\position.hh(83): error C2059: syntax ...
10
votes
13answers
2k views
How much time would it take to write a C++ compiler using flex/yacc?
How much time would it take to write a C++ compiler using lex/yacc?
Where can I get started with it?
9
votes
6answers
383 views
Strange problem with context free grammar
I begin with an otherwise well formed (and well working) grammar for a language. Variables,
binary operators, function calls, lists, loops, conditionals, etc. To this grammar I'd like to add what ...
8
votes
1answer
472 views
Trying to build a C# grammar for bison/wisent
I've never done Bison or Wisent before.
how can I get started?
My real goal is to produce a working Wisent/Semantic grammar for C#, to allow C# to be edited in emacs with code-completion, and all ...
8
votes
1answer
4k views
Simple Flex/Bison C++
I already looked for my answer but I didn't get any quick response for a simple example.
I want to compile a flex/bison scanner+parser using g++ just because I want to use C++ classes to create AST ...
8
votes
2answers
4k views
How to solve Bison warning “… has no declared type”
Running Bison on this file:
%{
#include <iostream>
int yylex();
void yyerror(const char*);
%}
%union
{
char name[100];
int val;
}
%token NUM ID
%right '='
%left '+' '-'
...
7
votes
3answers
878 views
Why are multi-line comments in flex/bison so evasive?
I'm trying to parse C-style multi-line comments in my flex (.l) file:
%s ML_COMMENT
%%
...
<INITIAL>"/*" BEGIN(ML_COMMENT);
<ML_COMMENT>"*/" ...
7
votes
2answers
2k views
Flex/Bison-like functionality within PHP
I'm looking for a way to get Flex/Bison (or Lex/Yacc, et. al.) support in PHP. Specifically, I'm implementing a boolean query parser in a web UI and would rather keep all operations inside of PHP (as ...
6
votes
2answers
220 views
REPL for interpreter using Flex/Bison
I've written an interpreter for a C-like language, using Flex and Bison for the scanner/parser. It's working fine when executing full program files.
Now I'm trying implement a REPL in the ...
6
votes
1answer
133 views
Bison - additional parameter to a push and pure parser
How can I pass one aditional parameter (not the token minor of type YYSTYPE) to the yypush_parse() function?
The parser is indeed reentrant, but this one aditional variable is crucial for the ...
6
votes
1answer
110 views
heap handling in a bison push pure parser
Is there any way to specify my own allocator/deallocator functions for heap management instead of malloc()/free() for a pure push parser in bison?
6
votes
1answer
886 views
Building Lisp/Scheme-like parse tree with flex/bison
I was trying to parse simple Lisp/scheme-like code
E.g. (func a (b c d) )
and build a tree from it,
I could do the parsing in C without using bison (i.e, using only
flex to return tokens and ...
6
votes
5answers
3k views
unistd.h related problem when compiling bison & flex program under vc++
I'm using bison & flex (downloaded via cygwin) with vc++. When I compile the program I got an error:
...: fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory
The ...
5
votes
4answers
77 views
Weird C code in Bison (yyerror)
I'm using Bison to create a simple parser and have some trouble understanding the C code below. To me it doesn't look like a valid statement, but gcc comepiles it neatly and the code in the block ...
5
votes
2answers
227 views
Learning bison: What are context-free grammars and LALR(1)?
I am reading this bison introduction.
I have two questions and it will be great if someone can help me understand:
What does term context free grammar mean?
From the link above: Not all ...
5
votes
6answers
3k views
C grammar in GCC source code
I'm looking for the C grammar in GCC source code, more specifically for the grammar in the yacc/bison form.
5
votes
4answers
230 views
How do I get Bison/YACC to not recognize a command until it parses the whole string?
I have some bison grammar:
input: /* empty */
| input command
;
command:
builtin
| external
;
builtin:
CD { printf("Changing to home directory...\n"); }
| CD ...
5
votes
2answers
701 views
LALR(1) or GLR on Windows - Alternatives to Bison++ / Flex++ that are current?
I have been using the same version of bison++ (1.21-8) and flex++ (2.3.8-7) since 2002.
I'm not looking for an alternative to LALR(1) or GLR at this time, just looking for the most current options. ...
5
votes
4answers
2k views
using qt : How To Build a Gui OnTop Of a Console Application?
i have a console application that generated from bison (a parser) and i want to build a simple gui for it
so i can send input from this gui to the console and get output from the console into the gui ...
5
votes
4answers
169 views
Good Bison Books Recommendation [closed]
I'm now going to do the things right, now I'm going to learn how to develop a compiled language using Bison by books, then I want some books recommendations(better if I can have they for Kindle).
5
votes
3answers
2k views
Flex/Bison IDE?
I'm looking for a good development environment in which to work on flex or bison or both.
Are there any IDE's that have these capabilities and/or are suitable for this?
(If not the next most general ...
5
votes
2answers
350 views
How do I implement forward references in a compiler?
I'm creating a compiler with Lex and YACC (actually GNU Flex and Bison). The language allows unlimited forward references to any symbol (like C#). The problem is that it's impossible to parse the ...
4
votes
1answer
124 views
C/Bison grammar error
I've got a short question regarding my grammar in bison. The files compile, but it does not give the result I actually wanted. ;-)
My example file that I want to parse:
L1: ldh [23]
The lexer file ...
4
votes
2answers
146 views
Parsing SPARQL queries
I need to test for a certain structural property of a couple million SPARQL queries, and for that I need the structure of the WHERE statement. I'm currently trying to use fyzz to do this, but ...
4
votes
3answers
115 views
Help with Compiler Design [closed]
Possible Duplicate:
Learning to write a compiler
I need to come up with a dummy SQL like language which has very limited features. I have never done any compiler or parsing stuff before. ...
4
votes
3answers
109 views
Can't figure out what is causing a shift/reduce errors in yacc
I'm working on a project in yacc and am getting a shift/reduce error but I can't figure out why I'm getting it. I've been looking through the y.output file but am not quite sure how to read it. My ...
4
votes
3answers
531 views
Flex and Bison Associativity Problem
Using Flex and Bison, I have a grammar specification for a boolean query language, which supports logical "and", "or", and "not" operations, as well as nested subexpressions using "()".
All was well ...
4
votes
2answers
993 views
Can Bison parse UTF-8 characters?
I'm trying to make a Bison parser to handle UTF-8 characters. I don't want the parser to actually interpret the Unicode character values, but I want it to parse the UTF-8 string as a sequence of ...
4
votes
6answers
1k views
Lexer/parser tools
Which lexer/parser generator is the best (easiest to use, fastest) for C or C++? I'm using flex and bison right now, but bison only handles LALR(1) grammars. The language I'm parsing doesn't really ...
4
votes
3answers
1k views
How does flex support bison-location exactly?
I'm trying to use flex and bison to create a filter, because I want get certain grammar elements from a complex language. My plan is to use flex + bison to recognize the grammar, and dump out the ...
4
votes
2answers
1k views
How do I implement a two-pass scanner using GNU Flex?
As a pet-project, I'd like to attempt to implement a basic language of my own design that can be used as a web-scripting language. It's trivial to run a C++ program as an Apache CGI, so the real work ...
3
votes
2answers
69 views
YACC|BISON :How do I manipulate parse tree?
The goal of my application is to validate an sql code and generate,in the mean time, from that code a formatted one with some modification.For example this where clause :
where e.student_name= ...
3
votes
2answers
42 views
Avoid warning: unreferenced find_rule label
In order To get more compatibility between flex and other version of lex , we should add -l option in flex command.
One of these incompatibilities is yylineno (global variable to store line number). ...
3
votes
1answer
94 views
Common tokens for flex and bison
I have one file with declarations of my tokens declarations.h:
#define ID 257
#define NUM 258
...
In my flex code i return one of this values or symbol(for example '+', '-', '*'). And everything ...
3
votes
1answer
92 views
A rather unusual bison error
I was teaching myself Bison and headed over to wikipedia for the same and copy-pasted the entire code from the example that was put there [ http://en.wikipedia.org/wiki/GNU_Bison ]. It compiled and ...
3
votes
1answer
98 views
assigning ASCII values to variables in bison
I want my parser to handle case like:
a='A'; // a should be set with ASCII(A) i.e 65
My token declaration looks like :
%union {
double dval;
char *symbol;
}
%token <symbol> SYMBOL_NAME
...
3
votes
1answer
117 views
Bison: How to ignore a token if it doesn't fit into a rule
I'm writing a program that handles comments as well as a few other things. If a comment is in a specific place, then my program does something.
Flex passes a token upon finding a comment, and ...
3
votes
3answers
170 views
Interfacing a Yacc/Bison Parser with a C++ program
This is not a duplicate of this question because the solution was not to use a parser!
I have a Bison parser I can run by doing ./parser < file_to_parse. I want to call the Bison parser from ...
3
votes
1answer
699 views
How can I use gnu-flex & bison in Visual Studio 2010?
I've read http://msdn.microsoft.com/en-us/library/aa730877%28vs.80%29.aspx but this document was for VS 2005. I stuck on the part 'Importing a .rules File in Visual C++' in the document. It seems that ...
3
votes
2answers
543 views
Emacs modes for flex and bison, or removing auto indent for these modes?
Emacs has poor handling of auto-indentation in Flex and Bison. In fact, it seems to have no support for flex mode. So, how does an emacs user cope with these? I like VIm but I would prefer not to ...
3
votes
4answers
314 views
c++ what is the advantage of lex and bison to a selfmade tokenizer / parser
I would like to do some parsing and tokenizing in c++ for learning purposes. Now I often times came across bison/yacc and lex when reading about this subject online.
Would there be any mayor benefit ...
3
votes
2answers
169 views
Utility to format a Bison/Yacc grammar file nicely?
Hello there: Do you folks know of any GNU/Linux utility to format a Bison grammar file, containing C code, nicely? I'm thinking of something along the lines of GNU Indent, but designed to beautify ...
3
votes
3answers
328 views
Recognizing Tail-recursive functions with Flex+Bison and convert code to an Iterative form
I'm writing a calculator with an ability to accept new function definitions. Being aware of the need of newbies to try recursive functions such as Fibonacci, I would like my calculator to be able to ...