0
votes
2answers
45 views

What features of C++ or other OOPL's are difficult to implement using YACC, or alternatively a recursive descent parser? [closed]

It has been said that C++ can be done with a recursive descent parser, or with an LL parser, or even with some difficulty and LALR parser, but that these tasks require hacking and kludging. OK, so ...
3
votes
0answers
34 views

Parsing a string with LR parsing table. [migrated]

me and my friends are studying for an upcoming test and this exercise is one of the harder ones for us. We have been trying to solve it and we have been looking at similar exercises, the problem is ...
0
votes
1answer
34 views

Can a left associative operator be expressed in a way such that top-down LL(1) parsers can understand?

I was trying to implement a LL(1) top-down parser for a calculator language. It only allows us to sum, subtract, divide and multiply numbers. No parentheses. S -> A A -> B + A | B - A | ...
1
vote
1answer
27 views

Is this grammar for matched brackets LL(1)?

The grammar is this: S -> e (epsilon) S -> TS T -> (S) I think it is indeed LL(1), my justification is that for a grammar to be LL(1), for each nonterminal that has more than 1 production rule, ...
0
votes
1answer
17 views

init_declarator is a non-unique reference Antlr?

I am starting my symbol table, still new to it but facing some errors given by antlr in reference to my init_declarator rule. Any tips please declaration : declaration_specifiers ...
0
votes
2answers
42 views

Parsing arithmetic expressions

I'm studying the dragon book and can't wait to write an expression parser. In order to deal with negative number input, my lexer reads digits when meet the symbol '-' to return a number token. ...
0
votes
1answer
42 views

How to show grammar is not LL(1) and convert grammar to LL(1)

I'm trying to find the ambiguity in this grammar so I can remove it and convert it to LL(1), however for the life of me I can't find the ambiguity. Any help will be much appreciated. D -> if (C) ...
0
votes
1answer
23 views

The following sets of rules are mutually left-recursive TREE GRAMMAR

I have a complete parser grammer than generates an AST which i could say is correct using the rewrite rules and tree operators. At the moment i am stuck at the phase of creating a tree grammar.I have ...
1
vote
1answer
37 views

Multiple entries in an LL(1) parsing table?

Given this grammar: S → S1 S2 S1 → a | ε S2 → ab | ε Therefore, we have FIRST(S1) = { a, ε } FOLLOW(S1) = { a } Does that mean that in ...
1
vote
1answer
58 views

Antlr Tree Grammar to Generate Pmachine code?

I am presently working on a project to build a small c compiler to run on a pmachine. Presently, i started off using a stripped version of a full c grammar. Parsing looks okay at the moment and i used ...
0
votes
0answers
57 views

While loop expressions in compiler parser construction

I am kinda new to design and constructing compilers. The thing I would like to implement is adding the while loop expressions to my so-far existed c/c++ code based on lets say these general BNF ...
1
vote
2answers
50 views

How do I return a string from a javacc method?

I have this method in javacc to parse a url (e.g. /books/id/1). How do I make this method return the whole url string? void path() : {} { (< SLASH > ( < IDENTIFIER >))+ } I have tried ...
1
vote
1answer
75 views

parsing and evaluating simple language using javacc

I have simple language like: funa X ( X+3*funb(1) ) ; funb Y ( 2*Y ) ; main ( 2+func(func(1)) ) ; func A ( funa(A) ) ; I used CFG to parse above as: program => (statement)+ statement => ...
0
votes
1answer
56 views

printing parse Tree as a dynamic list in c language

I have written a code in C to implement LR(1) parse table, however now I am facing a problem in printing the parse tree. How do we do that in C? The tree can have variable children and since the ...
2
votes
1answer
55 views

Why do we put 'A' as the look ahead symbol when all have `$`?

I am using canonical LR Method to construct the Parsing table. Consider the grammar : s -> D C A s -> D a B a -> C s -> a A The book I am reading mentions the first closure state as : ...
2
votes
0answers
139 views

What is the simplest way of parsing C++ source code (extracting meta-info) in Java?

I need to extract classes, methods and parameters from .c/.cpp files in Java code. I've reviewed: Antlr (can't find any ready c++ grammar for Java target), gccxml (probably works but i can't test ...
1
vote
4answers
80 views

Parsing, which method choose?

I'm working on a compiler (language close to C) and I've to implement it in C. My main question is how to choose the right parsing method in order to be efficient while coding my compiler. Here's my ...
1
vote
1answer
62 views

How to make lex/flex recognize tokens not separated by whitespace?

I'm taking a course in compiler construction, and my current assignment is to write the lexer for the language we're implementing. I can't figure out how to satisfy the requirement that the lexer must ...
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
0answers
73 views

LR(0) or SLR grammar (parsing table)

I'm studying compilers at the moment and am a bit stuck on the following question. We have two grammars as follows: Grammar 1 S -> A A -> A11 A -> 1 Grammar 2 S -> A A -> 1A1 A -> 1 And we're ...
0
votes
0answers
17 views

Parser :: “ Condition” Statement production rule

I am building/simulating LR(1) parser in C for C. i am having trouble in the production expansion for Conditional Statement( Its giving me a reduce - reduce conflict) IF_Statement -> if ( ...
0
votes
5answers
141 views

Why some compilers prefer hand-crafted parser over parser generators?

According to Vala documentation: "Before 0.3.1, Vala's parser was the classic flex scanner and Bison LALR parser combination. But as of commit eba85a, the parser is a hand-crafted recursive descent ...
0
votes
0answers
23 views

Error Correction for LL(1) Parser :Skip and Synch sets

Can anyone please explain me what do we put in the synch and skip sets for LL(1) parser? I know the actions that a parser would take on encountering the skip and synch states but I am still confused ...
0
votes
3answers
105 views

LL(1) Parsing — First(A) with Recursive First Alternatives

How would I apply the FIRST() rule on a production such as : A -> AAb | Ab | s where A is a non-terminal, and b,s are terminals. FIRST(A) of alternatives 1 & 2 would be A again, but such would ...
-1
votes
1answer
102 views

Parsing quoted strings in C

Is there native support for a data type for storing Unicode strings in C. I'm writing a toy compiler and would like to parse Unicode strings.
1
vote
0answers
166 views

what is meant by non recursive predictive parsing? [closed]

What is meant by non recursive predictive parsing ? Is it the same as Table driven predictive parsing ? (which is a type of predictive parsing ?)
1
vote
2answers
290 views

Difference between Left Factoring and Left Recursion

What is the difference between Left Factoring and Left Recursion ? I understand that Left factoring is a predictive top down parsing technique. But I get confused when I hear these two terms.
1
vote
1answer
236 views

what is meant by left most derivation?

Please help me understand what is meant by Left Most Derivation the second L in LL Parser. Explain it with a simplest example. I saw the following picture explaining Left most derivation but I do ...
0
votes
1answer
69 views

Creating Bison File for Simple Grammar

I have the following simple grammar: E -> T | ^ v . E T -> F T1 T1 -> F T1 | epsilon F -> ( E ) | v I'm pretty new to Bison, so I was hoping someone could help show me how to write it ...
1
vote
0answers
64 views

parsing and look -ahead tokens misunderstanding

I have some question that make me go crazy, please help me to understand them: 1.in LR(1) does the parser looks for the input in a given time and looks for the next input and then decides to make a ...
0
votes
0answers
34 views

In CUP: How to make something optional to parse?

PROC_DECL -> "proc" [ "ret" TYPE ] NAME "(" [ PARAM_DECL { "," PARAM_DECL } ] ")" "{" { DECL } { STMT } "}" This is the grammar for a Procedure ...
1
vote
4answers
64 views

Should I tokenize line breaks to separate statements or worry about this on the parser?

I built a basic tokenizer in PHP, right now it parses something similar to javascript albeit semicolons are not needed to separate statements. a = 1 b = a + 1 echo b T_IDENTIFIER a T_EQUAL = ...
0
votes
1answer
136 views

A gcc-xml equivalent / source parsing tool for MS VC++

Is there a gcc-xml equivalent or some similar tool for Visual C++ compiler, which can reflect the internal structure of a C++ source code? My goal is to generate output by using a C++ (native C++) ...
-1
votes
1answer
71 views

How is source code parsed? [closed]

What's the standard method for parsing source code? I'm not particularly concerned about compiling the code into another language, just how the code itself is transformed from a text file into an ...
1
vote
2answers
578 views

How to write a recursive descent parser? [closed]

C++ I can't figure out how to write a recursive descent parser for the following grammar: <Datalog Program> -> Schemes : <Scheme List> Facts : ...
4
votes
1answer
244 views

LLVM JIT Parser writing with Bison / Antlr / Packrat / Elkhound /

In the LLVM tutorials there is instruction how to write simple JIT compiler. Unfortunatelly, lexer and parser in this tutorial is written manually. I was thinking, such solution is good for learning ...
0
votes
2answers
60 views

Why does call to exit function create a new basic block

I have a function defined as: int f_2() { rand(); return 10; } clang breaks it up into 3 basic blocks. This is understandable. however when I replace the call to rand() by exit(0), then it ...
1
vote
1answer
62 views

LALR Grammar Parsing

suppose i have a grammar(LALR parsing) S->Ba|bBc Can a parsing table be constructed(with action and goto)practically using some parser
4
votes
3answers
117 views

Parsing a C family language out of order

C is parsed strictly in order, i.e. everything has to be declared before it is used; in particular, types must be declared before variables of those types. This makes sense because the grammar would ...
1
vote
1answer
128 views

Why are there LR(0) parsers but not LL(0) parsers?

I've been reading on both in Wikipedia, and noticed that although LR(0) parsers exist, there's no such thing as LL(0) parser. From what I read, I understand that the k in LL(k)/LR(k) means how many ...
0
votes
1answer
47 views

Javascript library to parse other languages [closed]

Does anyone know where I can find a javascript library which could parse the syntax of other programming languages like php, c# e.t.c. What I'm looking or in detail is some sort of browser text ...
1
vote
1answer
77 views

Grammar for arithmetic expressions without alternatives?

How to write Unambiguous Grammar for arithmetic expressions e.g. a+(b+c)*d E.g. E -> E + T | T T -> T * F | F F -> ( E ) | i WITHOUT alternatives - in my case without |T and |F and |i ...
0
votes
2answers
231 views

Java error when running JFlex generated lexer

I have this basic JFlex lexer : import java.util.*; %% %public %class TuringLexer %type Void %init{ yybegin(YYINITIAL); %init} %state COMM, GETALPH, MT, PARSELOOP, PARSELEMS, PARSESYMB, PARSEMT %{ ...
1
vote
3answers
138 views

Better way for parser combinators in C?

I'm trying to bootstrap (a subset of) C from scratch, without using extra dependencies (parser generators, libraries, etc.). Also I want to make use of the idea of parser combinators, which is a ...
0
votes
1answer
227 views

Ambiguous Grammar:

Simple question. The following is the extract of a piece of grammar that I am trying to see whether it is ambiguous or not. Y->b Y->Z Z->bW W->d W->ϵ When I compute the first set ...
3
votes
1answer
56 views

Analysing a tree without fixed/static semantics?

I'm trying to analyze a dynamic language that can have multiple translations, depending upon probabilities. I have a few defined types in my language such as number, vector, etc... For example, if we ...
0
votes
2answers
310 views

Left recursion elimination

I have this grammar S->S+S|SS|(S)|S*|a I want to know how to eliminate the left recursion from this grammar because the S+S is really confusing...
3
votes
1answer
522 views

How to implement JJTree on grammar

I have an assignment to use JavaCC to make a Top-Down Parser with Semantic Analysis for a language supplied by the lecturer. I have the production rules written out and no errors. I'm completely stuck ...
0
votes
3answers
182 views

What are the advantages/disadvantages of using ANTLR, JavaCC or JFlex over StringTokenizer and equivalents? [closed]

I am currently looking at implementing the language shown here in Java. The presentation is a little long, but it is essentially a DSL for creating dynamic speech. Example: rule ExampleRule { ...
2
votes
1answer
252 views

Why can't a compiler have a “shift/shift” conflict?

I currently am studying about compilers and as I understand in LR(0) there are cases where we have "shift/reduce" or "reduce/reduce" conflicts, but it's impossible to have "shift/shift" conflicts! Why ...

1 2 3 4 5