3
votes
14answers
207 views
is there a simple compiler for a small language
I am looking for a simple compiler that compiles a simple language, I need it to write a paper about it and to learn how compilers work, I am not looking for a sophisticated thing just a simple …
-1
votes
1answer
21 views
What to name these columns in my symbol table
I'm using yacc to make a symbol table for a made-up language grammar.
Column 1 will have either "variable" or "function."
Column 2 will have either "int" or "void."
I was thinking of naming one …
-1
votes
2answers
33 views
lex/yacc and parser/scanner
lex and yacc are supposed to be used together.
Which ones is the scanner and which one is the parser?
Which one creates a scanner and which one creates a parser?
0
votes
2answers
89 views
What constitutes a ‘word’ in vim ?
Let's say we have the following in vim atm:
int main () {
printf("hello");
return 0;
}
In vim, w moves a word to the right, but what exactly constitutes a 'word'?
For example, if I have …
-1
votes
1answer
61 views
How to put a final summary message in a yacc program?
When I redirect input to my yacc program from an input file, after it finishes parsing the file I want the yacc parser to print a summary of what it did. I want it to do the same thing if I am …
-2
votes
1answer
46 views
What does the default main() created by flex look like?
I want my flex/yacc program to do the same thing as what it already does, but I want to modify it a little. If I were to put a main() in my .l file, and have it do the same thing as if I didn't add a …
0
votes
2answers
49 views
yylval and union
What is the purpose of union in the yacc file? Is it directly related to yylval in the flex file? If you don't use yylval, then you don't need to use union?
0
votes
1answer
27 views
How to use yylval with strings in yacc
I want to pass the actual string of a token. If I have a token called ID, then I want my yacc file to actually know what ID is called. I thing I have to pass a string using yylval to the yacc file …
0
votes
1answer
41 views
Insert text in the input file in Lex (with C)
Hey!
I'm trying to help a friend in a college assignment, but i kind of forgot a lot of C an Lex.
The thing is, we are trying to parse a HTML and a correspondent CSS file and add to a tag it's …
0
votes
3answers
32 views
How does a lexer return a semantic value that the parser uses?
Is it always necessary to do so? What does it look like?
0
votes
3answers
109 views
Why Use Lexical Analyzers?
Hello,
I'm building my own language using Flex, but I want to know some things:
Why use lexical analyzers?
There are going to help me in something?
Are they obligatory?
Thanks.
0
votes
2answers
33 views
My flex/yacc program compiles differently on two different linux machines
One one machine, everything compiles fine. On another machine, it complains about the -ly option when I use gcc to create the output file. If I remove the -ly option, then it makes the program, but …
-1
votes
0answers
39 views
Could you give me a correctly formatted program example for this grammar? [closed]
The lex file:
/* C-Minus BNF Grammar */
%{
#include "parser.h"
#include <string.h>
%}
%union
{
int intval;
struct symtab *symp;
}
%token ELSE
%token IF
%token INT
%token RETURN
%token …
1
vote
1answer
31 views
How to return literals from flex to yacc?
In my yacc file I have things like the following:
var_declaration : type_specifier ID ';'
| type_specifier ID '[' NUM ']' ';' ;
type_specifier : INT | VOID ;
ID, NUM, INT, and VOID …
0
votes
2answers
26 views
The program I made with flex/yacc doesn’t always recognize identifiers
I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I start out with an identifier, I …
