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
1answer
31 views

Shift/Reduce Conflict in Yacc/Flex

I have this grammar in yacc: %{ #include <stdio.h> %} %token texto SEP ERRO word %start Ini %% Ini: Directivas SEP SEP Conceitos '$' { printf("Terminou bem...\n"); return 0; ...
0
votes
1answer
19 views

Why did the regular expression of greed——How to support multiline mode?

I want to parse multiline comment, but it's always greedy. The regular expression: MUL_COMMENT ("#*"(.|\n)*?"*#") flex file fragment: <DIRECTIVE>{MUL_COMMENT} {BEGIN INITIAL; ...
0
votes
1answer
18 views

how to save two objects of the same type in yacc union which appear at the same rule?

I am facing a problem in yacc union, it is, in short: I have declared a union like this %union{ struct R{ int col_no,line_no; int i; float f; char c; ...
0
votes
1answer
53 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
0answers
17 views

Yacc- How to write action code for assign operation with C structure node

In yacc program,how do we write the action for assign operation using c structure node? Example:- stmt: stmt stmt ';' | exp ';' {printtree();} | bool ';' {...} ...
-2
votes
0answers
8 views

how lex/yacc be used to test the device driver file in linux? [closed]

I am working on the project in which I have to make the universal test file which can test all the device drivers in linux. So for that I have to use lex/yacc to read the configuration file which ...
-1
votes
1answer
37 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
66 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
40 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
103 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
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
32 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
15 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
23 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
77 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
86 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
49 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
56 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
48 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
33 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
60 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
80 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
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
25 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
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
1answer
50 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
23 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
88 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
76 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
66 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
100 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
106 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
57 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
47 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
124 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
62 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
132 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 ...

1 2 3 4 5 13