Tagged Questions
1
vote
1answer
481 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 ...
6
votes
3answers
264 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 ...
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 ...
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? ...
4
votes
1answer
204 views
Dynamic Dispatch Implementations
I am currently looking for various ways to implement dynamic dispatch.
As far as I know, there are two "easy" ways to implement this:
Virtual Function Tables, like in C++
Message Dispatcher, like ...
2
votes
2answers
141 views
How to optimize this function with the compiler?
I have been doing the course on Compiler and Tools (this semester). I have read till intermediate code generation and also saw DAG representation for optimality. One thing is clear with the compiler ...
3
votes
2answers
439 views
Inlining Algorithm
Does anyone know of any papers discussion inlining algorithms? And closely related, the relationship of parent-child graph to call graph.
Background: I have a compiler written in Ocaml which ...
4
votes
6answers
2k views
I need to learn basics of compiler design in the next few days
I need to pass a "General Compiler Design" test from a potential employer and believe the best way to do so would be to get to know a little about all of compiler design. If you think another method ...
8
votes
2answers
261 views
Languages and VMs: Features that are hard to optimize and why
I'm doing a survey of features in preparation for a research project.
Name a mainstream language or language feature that is hard to optimize, and why the feature is or isn't worth the price paid, or ...
8
votes
5answers
1k views
How do C compilers implement functions that return large structures?
The return value of a function is usually stored on the stack or in a register. But for a large structure, it has to be on the stack. How much copying has to happen in a real compiler for this code? ...
2
votes
4answers
179 views
Write a compiler for a language that looks ahead and multiple files?
In my language I can use a class variable in my method when the definition appears below the method. It can also call methods below my method and etc. There are no 'headers'. Take this C# example.
...
7
votes
9answers
943 views
Does the compiler decide when to inline my functions (in C++)?
I understand you can use the inline keyword or just put a method in a class declaration ala short ctor or a getter method, but does the compiler make the final decision on when to inline my methods?
...