The computer program yacc is a parser generator developed by Stephen C. Johnson at AT&T for the Unix operating system.

learn more… | top users | synonyms

0
votes
0answers
37 views

How to get data without corruption when void* is used?

Well, I am using a Map to store any kind of pointer (void*), and it is being used in a scope object. here is the scope class. class Scope { protected: Scope * parent; MyMap* map; public: ...
0
votes
1answer
18 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
3answers
51 views

To tokenize terminals or write them into parser grammar?

Take a look at this: http://www.verilog.com/VerilogBNF.html UNARY_OPERATOR and BINARY_OPERATOR overlap as tokens. so does OUTPUT_SYMBOL and LEVEL_SYMBOL. I'm sure there are others. My tokenizer ...
1
vote
1answer
36 views

Yacc and Lex error in parsing expressions which use binary operators

I am new to Lex and Yacc and I am trying to create a parser for a simple language which allows for basic arithmetic and equality expressions. Though I have some of it working, I am encountering errors ...
0
votes
1answer
25 views

Solving YACC shift/reduce. Driving me crazy

Hey Guys this is driving me crazy I'll list the error and the relevant code below. Thanks in advance for any help. ERROR: 51: shift/reduce conflict (shift 69, reduce 28) on '{' state 51 funcao : ...
1
vote
3answers
90 views

Reasons for using lex/yacc alternatives?

About once a year I have to develop or at least design a grammar and a parser - that appears a constant of my working life. Every time I'm facing this task, thus about once year, I, quite a lex/yacc ...
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
41 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
27 views

yylineno has always the same value in yacc file

for one project in compilers i have one problem in the syntax analyzer, when i go to add a symbol in a symbol table, i take always the same value in yylineno... i did this in the begining: %{ ...
0
votes
1answer
12 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
20 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
60 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
83 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, ...
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 ...
1
vote
3answers
48 views

Search and replace a string as shown below

I am reading a file say x.c and I have to find for the string "shared". Once the string like that has been found, the following has to be done. Example: shared(x,n) Output has to be *var = ...
-1
votes
1answer
27 views

Check Yacc-Grammar using C# [closed]

I am working on developing Parser where I get Yacc Grammar . I would like to know if there is a tool or library to check Yacc Grammar .
0
votes
1answer
30 views

How I make yacc tell me the expected lexem/toke

For example for the rule: %token TOKEN %% foo: TOKEN; %% Considering TOKEN is the the lexem token, then when I parse: tokken it will show Syntax error expected TOKEN recive tokken there is a way ...
0
votes
2answers
51 views

Grammar for Linux command line with yacc and lex

I'd like to write down a formal grammar for describing the command line usage of some GNU/Linux tools. First, I would like to define a grammar : Start -> COMMAND AXIS AXIS -> EMPTY | INTER ...
1
vote
2answers
43 views

Is there a way to make this grammar LALR(1)?

I have a grammar with rules like this A -> pq B -> pr Block -> { Astar Bstar } Astar -> Astar A | epsilon Bstar -> Bstar B | epsilon Is there any way to turn this ...
-4
votes
0answers
30 views

Context free grammar and Yacc [closed]

Create a context-free grammar that produces Roman numbers that are less than 90. The numbers are L=50, X=10, V=5, I=1. XII=12, for example, and XIV=14, XL=40, XLIX=49. For the sake of simplicity, you ...
0
votes
0answers
58 views

Need Help to construct a simple business rule engine in Lex and Yacc

I need to develop a business rule engine prototype using LEX and YACC in C and compare its performance for a set of simple business rules with drools or ANTLR implementation. Now I started to ...
0
votes
1answer
52 views

C string truncated bug

i'm working on a school subject about syntax analysis. The goal is to create a small language in order to create vector graphics with the cairo library. We choosed to use an intermediaire state in C. ...
1
vote
1answer
76 views

automake 1.12 changes bison/yacc output names, backwards incompatible change?

I have posted a repository at https://github.com/Habbie/autoyacc-problem to demonstrate my issue. With automake 1.11 and below, using AC_PROG_YACC in configure.ac and AM_YFLAGS=-d in Makefile.am, ...
0
votes
2answers
30 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
24 views

What does return 0 do in the code and why is the yywrap function written without a body?

I AM USING BISON AND FLEX. What does return 0 do in case of the kcalc.l file that I have posted? And I am not getting the use of yywrap without a body (i mean not literally but an empty body).The ...
0
votes
1answer
40 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
43 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
1answer
47 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 ...
0
votes
0answers
22 views

Python PLY - Skip Production Rule

When using PLY, is it possible to skip a give production rule? ( In the same way that lex allows skipping certain tokens using obj.lexer.skip(1) ) For example: def p_variable(p): 'variable : ...
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
29 views

How do I format a grammar rule that requies two tokens to be equal?

How can I write a Yacc grammar that matches two tokens? For example: START some_random_id stuff stuff stuff END some_random_id I would like to make the requirement that the some_random_id matches ...
0
votes
1answer
25 views

How to parse continuous stream of text

I have the task to write an application that controls OpenVPN using the management interface, which is just a text stream. I thought about using a lexer and parser generator like lex and yacc to do ...
0
votes
1answer
38 views

Retreive range of matched token with Lex/Yacc

I'm using Lex to parse a given input string in a C program. everything works so far, but I would like to know the range of the matched token in the original input string. Is this possible? yytext ...
0
votes
1answer
73 views

Doubts regarding Compiler Construction (Flex/Bison)

Am trying to construct a simple compiler in my class, its second week and am totally stuck at these points: Am providing my simple.l as (flex and bison files are snipped to save space): ..snip.. end ...
3
votes
1answer
63 views

Is there a file include mechanism for YACC files?

I have three programs that are currently using YACC files to do configuration file parsing. For simplicity, they all read the same configuration file, however, they each respond to keys/values ...
0
votes
0answers
97 views

How to make semantic check using flex/bison?

I have created a context free grammar in bison and a scanner in flex. Now i also want to make a semantic check, for example, suppose the input is something like this: int m=5; c=c+5; This input is ...
0
votes
1answer
94 views

Useless rules and nonterminals in Bison grammar

I have the following Bison file describing my scripting language grammar: %error-verbose %{ #include "node.h" NBlock *programBlock; #define YYDEBUG 1 extern int yylex(); void yyerror(const char *) ...
0
votes
0answers
28 views

installing byaccj on mac os x

I'm trying to install byaccj on Mac OS X Lion 10.7.4. I downloaded the binary and source files from here http://byaccj.sourceforge.net/#download but I am not sure how to proceed. The binary is a file ...
0
votes
1answer
55 views

Suggestions for a Small error in lex and yacc

again some problem in the NLP implementation of my code .. In pro.l file i have a few patterns and their actions ... Pro.l %{ #include <stdio.h> #include <stdlib.h> #include ...
0
votes
0answers
22 views

How to discard the rest of line after syntax error

I'm implementing a small shell, and using lex&yacc to parse command. Lex reads command from stdin and yacc execute the command after yyparse. The problem is, when there is a syntax error, yacc ...
0
votes
2answers
45 views

How to fix this “conflicts: 1 shift/reduce”

I write a grammar to parse velocity, It has a conflict at "if elseif else" the flex file: %{ #include<stdio.h> #include<string.h> #include "context.h" #include "bool.h" #include ...
0
votes
2answers
122 views

LEX and YACC : grammar implementation in NLP

am trying to build an NLP . But the thing is that i am not able to get few things in it . For ex : if in action i say printf("print the third argument %s", $3) ; then its not giving me the ...
0
votes
1answer
60 views

How to fix “line:1: error: syntax error!”

I'm trying to write a parser using flex and bison.However, no matter how I modify the files, the error "syntax error in line 1" always appears. This is the test.vm file of yyinput: $asfdfsdf sdfsdfs ...
0
votes
1answer
126 views

For loop semantics in Bison/Yacc

I'm trying to write my own scripting language using flex and bison. I have a basic parser and I would like to add a for statement very similar to the C language for statement. It is not clear to me ...
0
votes
1answer
41 views

LALR grammar ambiguous

I have made a grammar for boolean and arithmetic expressions. I want to handle arithmetic expressions like: (1+5)+(-3) I'm done with that work: I can handle all the expressions I want. My ...
0
votes
0answers
46 views

Meaning of “<*>” in lex

I know,we can define some conditions in lex, matching: 1.<DIRECTIVE>{STRING} {printf("Matching the DIRECTIVE state!");} 2.<REFERENCE>{INTEGER} {printf("Matching the REFERNCE state!");} ...
0
votes
1answer
24 views

Conflict between rule 18 and token ADD resolved as reduce (ADD < UMINUS)

I write a grammatical analysis with bison. I definded some priority rules like: %right EQUAL %left OR AND %left ADD SUB %left MUL DIV MOD %nonassoc UMINUS then I use them like: math : math ADD ...
0
votes
3answers
72 views

How create a FILE* from char * without create a temporary file

I'm creating a program using lex and yacc to parse text, but i need create a parser of various content. I don't wish use the stdin, if i using FILE *yyin to specify the input, i can change the ...
0
votes
1answer
97 views

Runtime “syntax error” from lex and yacc

I cannot figure out why I am getting these results. ++ +add +syntax error 2 ++ +add +syntax error 4 The ++ is my input and lex echoes each character and yacc prints add whenever it gets a +. It's ...

1 2 3 4 5 13