Tagged Questions
Flex (The Fast Lexical Analyzer)
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
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
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
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?
10
votes
1answer
8k views
Undefined Reference To yywrap
I have a simple "language" that I'm using Flex(Lexical Analyzer), it's like this:
/* Just like UNIX wc */
%{
int chars = 0;
int words = 0;
int lines = 0;
%}
%%
[a-zA-Z]+ { words++; chars += ...
9
votes
4answers
5k views
What is the difference between Flex/Lex and Yacc/Bison?
What is the difference between Flex & Lex and Yacc & Bison. I searched the Internet wildly and I didn't find any solid answer.
Can I install pure Lex and Yacc on Ubuntu, or I can install only ...
7
votes
3answers
872 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
883 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
2answers
318 views
needed: open source C/C++ regular expression library that does unicode
I'm looking for a good open source C/C++ regular expression library that has full Unicode support.
I'm using this in an environment where the library might get ASCII, UTF-8, or UTF-16. If it gets ...
5
votes
2answers
239 views
When is it practical to use a parser generator?
I'm writing a simple text-template language for a web application I'm writing (think google's ctemplate). When finished, it'll feature only a small number of possible actions, simple stuff like ...
5
votes
3answers
4k views
Regular expression for a string literal in flex/lex
I'm experimenting to learn flex and would like to match string literals. My code currently looks like:
"\""([^\n\"\\]*(\\[.\n])*)*"\"" {/*matches string-literal*/;}
I've been struggling with ...
5
votes
4answers
750 views
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
1k views
Is it possible to get gcc to read from a pipe?
I'm looking for an option to gcc that will make it read a source file from the standard input, mainly so I could do something like this to generate an object file from a tool like flex that generates ...
5
votes
5answers
396 views
Most effective way to parse C-like definition strings?
I've got a set of function definitions written in a C-like language with some additional keywords that can be put before some arguments(the same way as "unsigned" or "register", for example) and I ...
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
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
108 views
Is it possible to set priorities for rules to avoid the “longest-earliest” matching pattern?
Another simple question : is there any way to tell flex to prefer a rule that matches a short thing over a rule that matches a longer thing ? I can't find any good documentation about that.
Here is ...
3
votes
1answer
93 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
112 views
Why does gcc hate my simple makefile?
I have the following makefile that gcc doesn't like:
blah.exe:lex.yy.o
gcc –o blah.exe lex.yy.o
lex.yy.o:lex.yy.c
gcc –c lex.yy.c
lex.yy.c:blah.lex
flex blah.lex
If I delete everything ...
3
votes
1answer
115 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
1answer
695 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
541 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
3answers
327 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 ...
3
votes
3answers
697 views
How do I generate different yyparse functions from lex/yacc for use in the same program?
I want to generate two separate parsing functions from lex/yacc. Normally yacc gives you a function yyparse() that you can call when you need to do some parsing, but I need to have several different ...
3
votes
2answers
251 views
Sharing memory among YACC, Lex, and C files
I have a YACC (Bison) grammar, a Lex (Flex) tokenizer, and a C program among which I need to share a struct (or really any variable). Currently, I declare the actual object in the grammar file and ...
3
votes
5answers
678 views
Appropriate uses for yacc/byacc/bison and lex/flex
Most of the posts that I read pertaining to these utilities usually suggest using some other method to obtain the same effect. For example, questions mentioning these tools usual have at least one ...
3
votes
3answers
611 views
How to use indentation as block delimiters with bison and flex
I wounder how to implement indentation as block delimiters in bison + flex. Just like in python. I'm writing my own programming language ( mostly for fun, but I intend to use it together with a game ...
3
votes
1answer
2k views
can Flex return a string match to bison
I'm writing a Bison/Flex program to convert LaTeX into MathML. At the moment, dealing with functions (i.e. \sqrt, \frac, etc) works like this, with a token for every function
\\frac {return ...
3
votes
4answers
358 views
Is it possible to have two or more Lex/Yacc parsers in the same application
I have an application where I already have a parser for one sort of grammar and I need to add a second different grammar for another purpose.
Is it possible to have more than one?
And if so how do ...
3
votes
1answer
862 views
Using yyparse() to make a two pass assembler?
I'm writing an assembler for a custom micro controller I'm working on. I've got the assembler to a point where it will assemble instructions down to binary.
However, I'm now having problems with ...
3
votes
2answers
321 views
FLEX: Is there a way to return mutiple tokens at once
In flex, I want to return multiple tokens for one match of a regular expression. Is there a way to do this?
2
votes
1answer
35 views
Is it acceptable to store the previous state as a global variable?
One of the biggest problems with designing a lexical analyzer/parser combination is overzealousness in designing the analyzer. (f)lex isn't designed to have parser logic, which can sometimes interfere ...
2
votes
0answers
30 views
Why flex scanner is slow when matching NUL characters?
I have a lexer written by someone else, who generated it using flex. It works, but in a sample which contains a string literal, and a lot of NUL characters in it, the scanning is very slow.
After ...
2
votes
2answers
84 views
How to make Flex try the second longest matching regular expression?
This question might sound a little confusing. I'm using Flex to pass tokens to Bison.
The behavior I want is that Flex matches the longest regular expression and passes that token (it DOES work ...
2
votes
1answer
73 views
Order of precedence for token matching in Flex
My apologies if the title of this thread is a little confusing. What I'm asking about is how does Flex (the lexical analyzer) handle issues of precedence?
For example, let's say I have two tokens ...
2
votes
1answer
178 views
Common problem with Flex++
Note: Someone with over 1500 rep.. please add flex++ and bison++ as tags :).
Seems like people all over the Internet have been getting the following errors with Flex++:
scanner.l:1: bad character: %
...
2
votes
1answer
113 views
How to tell flex and bison to stop processing input?
What is the best way to flex and bison to stop processing when an error is encountered. If I call yyerror, it does not stop scanning and parsing my file. While the input is syntactically correct, ...
2
votes
2answers
354 views
Problem during the compilation (g++, bison, flex) with yyparse();
I have a problem with compilation of my code:
Flex:
%{
#include "lista4.tab.hpp"
#include <stdlib.h>
extern int yylex();
%}
%%
"=" {return EQ;}
"!=" {return NE;}
"<" {return LT;}
">" ...
2
votes
3answers
145 views
How can I use lookbehind assertions in lex?
I require positive lookbehind assertions in lex (flex 2.5.35). After investigating the documentation, I don't see a direct way to do this. It has something similar to a lookahead assertion (the r/s ...
2
votes
2answers
107 views
More concise way of regex matching optional portions of a string
I'm writing Flex lexer patterns to match a series of commands. Not unlike subversion's command line client, the commands can be shortened to a small but still unambiguous length.
So a command such ...
2
votes
4answers
378 views
How can I use the flex lexical scanner generator as part of my program?
How can I use a scanner I've written using Flex as part of a program I'm designing? Specifically, within a c++ class as a method of the class, and from a separate file with just a main method to ...
2
votes
1answer
169 views
Regex to catch that there's no white space at the start of a line (flex)
I'm working on a lexer for the Python grammar (written in Flex) for a compiler construction class and I'm having trouble getting a properly working regular expression to catch when there is no white ...