The compiler-theory tag has no wiki summary.
1
vote
3answers
53 views
Compilation vs translation, “compiling” Java to bytecode?
My understanding is like this, definitions:
Translation - having code in some language, generating code in some other language.
Compilaton - translation to a machine code.
Machine code - direct ...
0
votes
2answers
54 views
Is there any performance gain from using final modifier on non-primitive static data?
Is there any performance gain from using final modifier on non-primitive static data in Java?
For example:
static final Thread t2 = new Thread(new Thread_2());
versus:
static Thread t2 = new ...
0
votes
1answer
43 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) ...
2
votes
2answers
78 views
C++ strange ambiguous call to overloaded function [duplicate]
First of all, this question is purely of theoretical nature. I am not searching for a solution (I already know it), I am just searching for an explanation.
The following code doesn't compile:
struct ...
3
votes
1answer
72 views
Formal approach for text processing
During a coding interview I was asked the next question:
Write a program which counts the number of words and lines in the input stream.
Assume you have a reader with method nextChar().
At ...
2
votes
2answers
135 views
Unit testing a compiler
What is considered the best approach to unit test a complex unit such as a compiler?
I've written a few compilers and interpreters over the years, and I do find this kind of code quite hard to test ...
0
votes
0answers
101 views
How to convert Concrete Syntax Tree to Abstract Syntax Tree?
I already built one from an LL1 grammar rules using LL1 parsing table.
How I can convert this to an AST ? one that has only operators and operands ?
Is there a well-know algorithm or procedure to ...
3
votes
1answer
91 views
What kind of code is a JavaScript engine likely to elide?
(This is a bit of an X-Y problem, but I decided to ask the question that interests me, rather than the one I strictly need at the moment.) I know the various modern JavaScript engines have dead code ...
1
vote
2answers
107 views
Stuff that the programming languages does not allow in its syntax [closed]
There is some stuff that I never see in any programming language and I would know why. I believe this things may be useful. Wll,maybe the explanation will be obvious when you point. But let's go.
Why ...
0
votes
1answer
146 views
Parsing yytext for floating point number gives zero
I am using the following lex file to convert numbers into tokens. However, the program is not able to parse floating-point numbers correctly. For debugging, I have added the printf statements, and ...
2
votes
2answers
387 views
What is an Abstract Syntax Tree/Is it needed?
I've been interested in compiler/interpreter design/implementation for as long as I've been programming (only 5 years now) and it's always seemed like the "magic" behind the scenes that nobody really ...
1
vote
0answers
113 views
Cost in time for constructing and running an NFA vs DFA for a given regex
I'm going through past exams and keep coming across questions that I can't find an answer for in textbooks or on google, so any help would be much appreciated.
The question I'm having problems with ...
2
votes
1answer
2k views
Steps to creating an NFA from a regular expression
I'm having issues 'describing each step' when creating an NFA from a regular expression. The question is as follows:
Convert the following regular expression to a non-deterministic finite-state ...
3
votes
2answers
188 views
Why do I need double parentheses in constructor calls like: foo x( (bar()) ); [duplicate]
Possible Duplicate:
Why is it an error to use an empty set of brackets to call a constructor with no arguments?
I have seen the C++ FQA entries about nested constructor calls and bracing ...
1
vote
1answer
476 views
Implementing common subexpression elimination
I am looking into implementing common subexpression elimination (CSE) for expression graphs corresponding to large mathematical expressions (millions of nodes).
What algorithms are suitable for ...
2
votes
3answers
249 views
C++ anonymous struct pointer assignment
So no, this is not the best way to do things. However, for the sake of theory, how would one successfully assign a pointer value to a pointer of an anonymous struct?
#pragma pack(push,1)
struct
...
0
votes
1answer
87 views
In GNU GCC 4.5.3 type casting int to short
I would like to know, when two integers are multiplied and result is typecast to short and assigned to short, what will the compiler resolves it to? Below is the code snippet
int a=1,b=2,c;
short ...
2
votes
1answer
185 views
replacing all function calls with their definition in a C/C++ code
I wonder if there is some theory/tool available to replace a piece of code that contains function calls, into code where all function call has been replaced by their respective code.
like
main()
{
...
6
votes
3answers
261 views
Compiler Optimization, Thread Safe?
I have a question regarding optimizations the compiler can potentially do.
The below code will speak for itself (this is an example):
typedef struct test
{
short i;
} s_test;
int ...
0
votes
0answers
25 views
Where to find info on building compilers [duplicate]
Possible Duplicate:
Learning to Write a Compiler
Learning Resources on Parsers, Interpreters, and Compilers
Does anyone have any good resources/books on building compilers. I would really ...
1
vote
1answer
80 views
Importance of dominators in reverse engineering
Came across this question: explain the role of dominators in reverse engineering Java code.
All I can think of is that you need to be able to calculate the Dominators in a Control Graph to see if it ...
1
vote
3answers
234 views
How can a program compiled to machine language run on different machines?
In school we've been taught that compilers compile a computer program to machine language. We've also been taught that the machine language consists of direct instructions to the hardware. Then how ...
1
vote
1answer
530 views
Computing the Follow Set
Ok, I've understood how to compute the Follow_k(N) set (N is a nonterminal): for every production rule of the form A -> aBc you add First_k(First_k(c)Follow_k(A)) to Follow_k(B) (a, c are any group of ...
2
votes
1answer
139 views
Keeping track of original line numbers through macro expansion
I'm working on a assembler for fun, written in C,flex,bison. I'd like to add macros, includes and repeating blocks and was thinking of doing this with a separate preprocessing stage parser.
My ...
3
votes
1answer
122 views
Reversible computing platform
From the Reversible Computing FAQ:
Achieving the maximum possible computational performance for a given
rate of bit dissipation generally requires explicit reversibility not
only at the lowest ...
3
votes
1answer
835 views
Converting a Grammar into LL1 Grammar: some problems
This is not exactly homework but it is related to my studies:
A grammar for example is like:
E -> E+E|E*E|-E|(E)|id
After removing ambiguity it becomes (starting from lowest precedence ...
1
vote
1answer
71 views
Questions from the second chapter of the dragon book
On page 29 it says "The leaves of a parse tree read from left to right form the yield of the tree, which is the string generated or derived from the nonterminal at the root of the parse tree. In Fig. ...
-4
votes
3answers
104 views
Confusion regarding Handling of Different Pointers by Compiler
I have a couple of confusions regarding pointers.
I am putting all of them in the form of question.
1) How does compiler handle various pointers?
2) How does a compiler figure out the data type of ...
0
votes
1answer
80 views
productions for Sable CC parser generator
it looks pretty basic, but for the last half hour I couldnt find out why we say {zero} or {one} in the following productions what does the {} indicate?
bit
= {zero} zero
| {one} one ...
2
votes
1answer
121 views
Grammar symbol attributes implementation in C
I need to implement compiler (lexical, syntax and semantic analyzers).
I have already implemented the lexical from flex++, syntax from hand (recursive descent),
and know I'm working on semantic ...
1
vote
2answers
88 views
Avoiding Spaces in Keywords
I am designing a language. I am being troubled by what to call "else if". My language uses indentation for blocks, so I need a keyword for "else if".
Python uses "elif" (meh...) and Ruby uses "elsif" ...
5
votes
7answers
1k views
C/C++ header and implementation files: How do they work?
This is probably a stupid question, but I've searched for quite a while now here and on the web and couldn't come up with a clear answer (did my due diligence googling).
So I'm new to programming... ...
0
votes
0answers
93 views
Programming with shapes [closed]
I have a Java desktop application with shapes that can be drawn into a workspace, which can be connected by arrows:
[ Node1 ] ---------------> [Node2]
Besides, I have a desktop application which ...
3
votes
1answer
208 views
What are GCC's passes and invoked programs?
It came up in another question: What are the programs and parts called by gcc (particularly when compiling C or C++) so that someone might engineer some scheme of intercepting and altering the flow ...
8
votes
1answer
467 views
How to construct parsing table for LL(k>1)?
On the web, there is a lot of examples showing how to construct parsing tables for a context-free grammar from first/follow sets for LL(1) parser.
But I haven't found anything useful related to k>1 ...
1
vote
1answer
613 views
How to get the context-free grammar and its corresponding PDA ?
I can't understand how can I solve this exercise.
I need to make a context-free grammar that can validate the following input :
L={w € (0,1,2)* | w= 2^n 0^(m+1) 1^(m+n) with n>=0, m>0}
How ...
0
votes
1answer
2k views
Semantic analysis in compilers [closed]
How is the semantic analysis done by a compiler (generally)?
I had to answer to this question during my last exam, it wasn't enough for the professor.
I included BNF (with an example) and syntactic ...
2
votes
2answers
127 views
Requisites for learning about compilers? [closed]
I've signed up for a class on compilers coming spring, but feel extremely unprepared because I have absolutely no idea as to what the class might entail or what it might require. .
What required ...
6
votes
3answers
105 views
Subroutine inference
Is there any paper describing any algorithm/technique to infer subroutines from a compiled program? In other words: is there an algorithm to find blocks of code that appear more than once in the ...
2
votes
3answers
102 views
Are there compilers capable of suggesting optimizations that would absolutely require programmer approval?
Can compilers do more than strict semantically-equivalent optimizations, if we keep the human in the loop?
There are some potential optimizations that are dismissed outright by compilers, because ...
4
votes
3answers
426 views
How to implement a language using a functional language? [closed]
I prefer Haskell.
I already know How to create my own language with Procedural Language (for example: C, Java, Python, etc).
But, I know How to create my own language with Functional Language (for ...
3
votes
1answer
181 views
Compiler evaluation of explicit null-check vs. null-coalescing operator?
Consider the following code, which uses two slightly different methods to check _instance and assign it when not already set.
class InstantiationTest
{
private Object _instance;
public void ...
10
votes
5answers
517 views
How can I create an executable file?
All texts on how to create a compiler stop after explaining lexers and parsers. They don't explain how to create the machine code. I want to understand the end-to-end process.
Currently what I ...
2
votes
3answers
172 views
What knowledge is required/recommended before approaching compiler development?
There is a question on stackoverflow about Learning to write a compiler. I have looked at it and I think it's an undertaking I want to tackle. I think (like many others) the knowledge will be ...
4
votes
1answer
132 views
how to remove Circular Dependency in FOLLOW set
Consider a short gramma bellow
S -> Bc | DB
B -> ab | cS
D -> d | epsilon
The FIRST set is
FIRST(S) ={a,c,d}
FIRST(B) = { a,c }
FIRST(D)= { d, epsilon }
in it the
Follow(S)={ ...
3
votes
2answers
219 views
How to merge Hoopl graph blocks / how to pass through the blocks
I'm trying to introduce Hoopl into some compiler and faced some problem: creating
a graph for Hoopl makes the nodes to appear in order of labels that were introduced.
Eg:
(define (test) (if (eq? ...
7
votes
1answer
136 views
Putting nodes into the parse tree which shouldn't be there
I am writing a parser for a language, and the scanner is designed to
either also return unneeded terminals (e.g. whitespacing) OR
not to do so
based on a boolean flag.
Now, in the parser, I don't ...
4
votes
3answers
196 views
Help with Compiler Design [duplicate]
Possible Duplicate:
Learning to write a compiler
I need to come up with a dummy SQL like language which has very limited features. I have never done any compiler or parsing stuff before. ...
2
votes
2answers
100 views
Pragmatically is there any popular interpretive language that first generates the Syntax tree when parsing?
It seems all scripting languages like PHP ,Perl doesn't build any syntax tree,but interpret it directly(no separate syntax parsing & code generation):
...
2
votes
2answers
519 views
Unambiguous grammar for arithmetic expression with Unary + and -
I have just started self-studying the Dragon book of Compiler Design. I am working on a problem that says to design grammar for an expression containing binary +,-,*,/ and unary +,-
I came up with ...

