The compiler-design tag has no wiki summary.
-1
votes
1answer
53 views
Factors that influence the design of programming languages syntax and Semantics? [closed]
over the years primitive programming language developed from completely irreprehensible machine language into modern high level language , along this line of evolution there exist a lot of programming ...
0
votes
1answer
35 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
| ...
0
votes
0answers
61 views
Object oriented three address code generation
I'm working on a project related to compiler design. I need to generate three address code for a Java-based language and it implies the use of objects and scopes. I would like if you can help me ...
1
vote
2answers
447 views
What does Backpatching mean? [closed]
What does backpatching mean ? Please illustrate with a simple example.
1
vote
1answer
157 views
What does syntax directed translation mean?
Can anyone, in simple terms, explain what does "Syntax Directed Translation" mean? I started to read the topic from Dragon Book but couldn't understand. The Wiki article didn't help either.
1
vote
1answer
69 views
compiler design - lexical analysis: how many columns does a \t take?
I must keep the information of a token for my lexical analyzer, for example its row and column. If I come across some source code like this: \t \t int myInt; , how can I know the column of the token ...
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 ...
1
vote
1answer
175 views
LL(1) grammar. How to calculate follow set if one has self-recursion rules?
According to the rules from this paper :
If A is the start nonterminal, put EOF in FOLLOW(A)
Find the productions with A on the right-hand-side:
For each production X → αAβ, put FIRST(β) − ...
1
vote
0answers
169 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
296 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
243 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
2answers
70 views
README before start your Compiler project
Basically, it's a dream first ... I might have my own programming language someday!, but it will turn to a nightmare soon, just right after you looking for How to build a compiler?.
I spend too much ...
0
votes
1answer
46 views
Variables and Pointers in an Isolated Environment like Virtual Machines
I'm wondering how a programming language like Java can handle Variables and/or Pointers in an isolated environment like Java Virtual Machine and its own Byte-Code.
Examples in Assembly or binary ...
2
votes
1answer
1k views
LL1 First and follow sets rules
I'm looking on building a parse table for an LL(1) grammar, and It all makes sense bar one aspect!?
The rules for the follow set seam to conflict.
• For each production X → αAβ, put FIRST (β) − {€} ...
0
votes
2answers
189 views
parser for sql in java
I am planning to create a SQL queries parser.
It can be done just using proper tokenizing and checking for the order.
But I'm planning to do it from something I learned in my Compiler Design courses ...
1
vote
1answer
1k views
How to encode FIRST & FOLLOW sets inside a compiler
I am writing a compiler for a compiler design course that I am taking and I am currently at the Syntax Analysis where I need to write a parser.
I need to have the FIRST and FOLLOW sets to handle any ...
2
votes
2answers
306 views
Data structure for storing variables in an interpreted language
I am designing my own experimental scripting language for the purpose of embedding it in my bigger application.
Almost everything I wanted to do was programmed smoothly, but the "simple" act of ...
2
votes
4answers
141 views
On the implementation of multiple simultaneous tasks of a compiler [closed]
In my struggle to part ways with interpreters, and while attempting to advance my knowledge in c++, I recently puchased a copy of "C++ In a Nutshell: A Desktop Quick Reference (In a Nutshell ...
0
votes
2answers
177 views
Is better error reporting possible in C++?
Currently when I compile this code in Visual C++ 10:
Undeclared var;
the compiler emits the following error messages:
error C2065: 'CUndeclared' : undeclared identifier
error C2146: syntax error : ...
3
votes
2answers
353 views
Generate output along with recursive descent parser
Writing simple parsers are trivial and I have implemented several over the years. In college, we also had to write one. But we never had to generate meaningful output using this method; we never ...
2
votes
3answers
166 views
What's a Good Way to Test that Identifiers aren't Being Truncated and Thereby Mixed Up?
In C++ class today, we discussed the maximum possible length of identifiers, and how the compiler will eventually stop treating variables as different, after a certain length. (My professor seems to ...
-1
votes
1answer
91 views
Type id to the left or right of var id?
What is the reasoning behind the two common variable declaration syntax that many popular languages use, such as:
int foo = 0;
and
foo:int = 0;
One problem I have with the second option, ...
3
votes
4answers
248 views
Good language to implement for senior project? [closed]
Its my last semester of college and I have to do a big presentation in December. I plan on designing a small language that not only works, but also has some nifty features to go with it. Does anyone ...
1
vote
1answer
339 views
What is Object Oriented Scanner (Lexical Analysis)?
Recently I came across the concept of Lexical Analysis called "Object Oriented Scanner", but I wasn't able to distinguish it from the normal scanning technique. What can be the extra things in object ...
5
votes
3answers
586 views
Dynamic vs Static Compiler (JavaScript)
I'm currently writing a JavaScript compiler in ANTLR+Java.
I've read questions here on Stack Overflow on how to proceed with the execution - and the answer is always that it would be way too hard to ...
6
votes
4answers
207 views
Switch statements in C: variable in case?
#include <stdio.h>
int main(int argc, char *argv[]){
char a = 'c';
switch('c'){
case a:
printf("hi\n");
}
return 0;
}
The above won't compile for this ...
5
votes
1answer
318 views
Testing a compiler
I'm currently working on kind of compiler that was built making use of sablecc.
Long story short, the compiler will take as input both specification files(this is what we're parsing) and .class ...
4
votes
2answers
365 views
Translating imperative to functional code
I need to write a program that will translate imperative code to pure functional style. I'm not worried about I/O - I have some solutions in mind for that - but I do need to deal with heap objects as ...
1
vote
2answers
2k views
yylval undefined with flex and bison
I have searched almost every material online. But I am still confused why lexer cannot identify yylval.
Here is the case:
I have defined a bunch of ADT in node.h and realize them in node.c, my ...
2
votes
1answer
237 views
Making left-most-derivations of a input string. How to predict which production to use from?
Let's say I have the following grammar:
Expr -> Expr plus Expr (1)
| Expr minus Expr (2)
| num (3)
When doing a left-most-derivation, after "expanding" Expr, how should ...
3
votes
2answers
370 views
Simple question about a Compiler's Symbol Table
I am developing a small object-based programming language.
I am a bit lost on a simple thing, though. I have implemented a couple of visitors that collect the names, types and parameters of classes, ...
2
votes
2answers
732 views
Control flow graph of a program
I'm taking a compiler class right now and we're at the point where we have to build a CFG in order to implement optimizations. One thing I can't figure out is how many CFGs are there for a program? ...
6
votes
5answers
671 views
Design Pattern For Making An Assembler
I'm making an 8051 assembler.
Before everything is a tokenizer which reads next tokens, sets error flags, recognizes EOF, etc.
Then there is the main loop of the compiler, which reads next tokens and ...
2
votes
3answers
218 views
Programming language design
I created a programming language and wrote it in my computer. It is an experimental non-professional programming language that I created for fun.
A language needs the most important thing, a ...
6
votes
2answers
713 views
Generating intermediate code in a compiler. Is an AST or parse tree always necessary when dealing with conditionals?
I'm taking a compiler-design class where we have to implement our own compiler (using flex and bison). I have had experience in parsing (writing EBNF's and recursive-descent parsers), but this is my ...
9
votes
2answers
1k views
Help understanding LR(1) parsers, table generation? Any other resources?
I am currently taking a compilers class and I am having a hard time understanding LR(1) parsing algorithms using the action/goto table and also how to hand generate these tables. Right now we are ...
-2
votes
4answers
1k views
how to develop lexer and parser in java? [closed]
Hi im a student and new to compiler design concepts.I dont know how to develop a lexer and parser in java? Please help me to do this giv me a guide lines...
3
votes
3answers
302 views
Just in Time compilation always faster?
Greetings to all the compiler designers here on Stack Overflow.
I am currently working on a project, which focuses on developing a new scripting language for use with high-performance computing. The ...
1
vote
2answers
329 views
Cross Compiling vs Virtual Machines
Clarification
When I mention cross compiling I mean from one language to another (think GWT), rather than from a host platform to a targeted platform.
Background
I am developing an Arabic ...
3
votes
6answers
632 views
Easy way to get function prototypes?
Hey guys, a friend and i were discussing imaginary and real languages and a question that came up was if one of us wanted to generate headers for another language (perhaps D which already has a tool) ...
1
vote
1answer
42 views
How should i name expressions that dont have a brace?
I am adding more to my language using bison and in the rules i am getting a little confused.
How do i name expressions that have {} such as class, functions, switch etc VS expressions that need a ...
3
votes
1answer
82 views
How should i deduce when the GC should run?
I am writing a statically compiled language and i would like to support garbage collection. before designing it i would like to know how i should i deduce when the GC should run?
Should it be after ...
9
votes
5answers
821 views
What are some tips for optimizing the assembly code generated by a compiler?
I am currently in the process of writing a compiler and I seem to have run into some problems getting it to output code that executes in a decent timeframe.
A brief overview of the compiler:
...
5
votes
4answers
589 views
Creating programming languages and compiler designing. Are they related?
Alright, I guess this question has been asked a lot of times here.
I want to create a programming language, not necessarily starting today, but over a span of 2-3 yrs. I'm not a very good programmer, ...
20
votes
9answers
587 views
Has the use of C to implement other languages constrained their designs in any way?
It seems that most new programming languages that have appeared in the last 20 years have been written in C. This makes complete sense as C can be seen as a sort of portable assembly language. But ...
0
votes
1answer
227 views
ANTLR, steps order
I am trying to design a compiler for a language like C# in ANTLR. But I don't fully comprehend the proper order of steps that should be undertaken.
This is how I see it:
First I define Lexer tokens
...
2
votes
4answers
705 views
Question on lexical analysis
I am reading the dragon book. Quoting the text from the book (3.1.4 Lexical errors, Pno 114)
It is hard for a lexical analyzer to
tell, without the aid of other
components, that there is a
...
5
votes
2answers
1k views
When can typeid return different type_info instances for same type?
Andrei Alexandrescu writes in Modern C++ Design:
The objects returned by typeid have
static storage, so you don't have to
worry about lifetime issues.
Andrei continues:
The standard does ...
3
votes
2answers
210 views
Currying and compiler design
This is a homework question:
Explain the transformations the type
of a routine undergoes in partial
parameterization.
So far I understand currying. But I cannot find any resources on how a ...
1
vote
1answer
285 views
Difference in compiler design for OOP languages
I'm doing research on how the design of a compiler for an OOP language differs from traditional imperative languages. I'd just like some topics to send me on my way, and if you wish, you can explain ...


