Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
9answers
5k views

Are there any compiler lectures available via video?

I would like know if there are any compiler construction lectures available along with video?
15
votes
6answers
2k views

Could C++ have not obviated the pimpl idiom?

As I understand, the pimpl idiom is exists only because C++ forces you to place all the private class members in the header. If the header were to contain only the public interface, theoretically, any ...
14
votes
3answers
2k views

What is the reason for the creation of LLVM?

What are the differences between an LLVM and a regular compiler? Is it more dynamic and thus can be used to compile normally very dynamic languages (i.e. Javascript) into static binary code? What are ...
13
votes
4answers
1k views

Efficient way to recursively calculate dominator tree?

I'm using the Lengauer and Tarjan algorithm with path compression to calculate the dominator tree for a graph where there are millions of nodes. The algorithm is quite complex and I have to admit I ...
13
votes
15answers
2k views

Learning Resources on Parsers, Interpreters, and Compilers

I've been wanting to play around with writing my own language for a while now (ostensibly for the learning experience) and as such need to be relatively grounded in the construction of Parsers, ...
11
votes
6answers
965 views

Advantages of compilers for functional languages over compilers for imperative languages

As a follow up to this question What are the advantages of built-in immutability of F# over C#?--am I correct in assuming that the F# compiler can make certain optimizations knowing that it's dealing ...
10
votes
4answers
463 views

Resources for Learning to Write a Compiler Using F#

Are there any comprehensive books or online publications available or planned for writing a compiler using F#? I've looked around, but only found little blog entries here and there. I've also read the ...
10
votes
6answers
347 views

What are the key design choices to make a wicked fast compiler?

I want to know how to design a compiler that compiles very, very quickly. First, let me head off some obvious misunderstandings of my question: I am not talking about the speed of the code produced ...
9
votes
5answers
153 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 ...
9
votes
7answers
294 views

Example compilers

I'm searching for the source code of a compiler capable of creating Win32 programs from an input program in a programming language (It doesn't matter which, maybe the simpler the better) Yet I can't ...
8
votes
8answers
290 views

Assembly Performance Tuning

I am writing a compiler (more for fun than anything else), but I want to try to make it as efficient as possible. For example I was told that on Intel architecture the use of any register other than ...
8
votes
2answers
300 views

Formally constructing Control Flow Graph

Im writing a compiler for university project, and I would like to transform my Abstract Syntax Tree into a Control Flow Graph(CFG). Im thinking that the nodes(V) in the CFG should be nodes from the ...
8
votes
2answers
206 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
4answers
1k views

Programming Language Pragmatics is worth buying?

As per amazon reviews the book, Programming Language Pragmatics,by Michael L. Scott serves as a very good introductory book for Programming language and compiler design. Did any of you guys ...
8
votes
9answers
1k views

Would it be reasonable to self-study the dragon book?

I've been out of school for about 2 years and didn't take a compilers course as an undergrad. At this point, it's something I'm interested in and am wondering if it would be reasonable for me to get ...
7
votes
1answer
113 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 ...
7
votes
8answers
282 views

Why can't the compiler just compile my code as I type it?

Why can't the compiler just compile my code as I type it? From the user's point of view, it could work as smoothly as syntax colouring does today. If you stop typing for long enough (maybe a couple ...
7
votes
5answers
739 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? ...
7
votes
2answers
811 views

Register allocation and spilling, the easy way?

I'm looking for a way to allocate local variables to registers. I'm aware of a couple of serious methods for doing it (namely, those mentioned on Wikipedia), but I'm stuck on how "spilling" is ...
7
votes
5answers
258 views

What language features are required in a programming language to make a compiler?

Programming languages seem to go through several stages. Firstly, someone dreams up a new language, Foo Language. The compiler/interpreter is written in another language, usually C or some other low ...
7
votes
3answers
625 views

How to make a Side-by-Side Compiler for .NET

Nikhil Kothari's Script# is quite possibly one of the most amazing concepts I've seen in the JavaScript arena for quite some time. This question isn't about JavaScript, but rather about language ...
6
votes
2answers
150 views

Algorithm's name - matching subtrees in ASTs

I have a set S of "small" trees S[i] which I need to find their positions for inside a bigger which are used as patterns to find matching subtrees in a bigger tree T. I know S before I start ...
6
votes
2answers
272 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 ...
6
votes
5answers
431 views

Why are C and C++ different even after compilation?

I guessed it but was still surprised to see that the output of these two programs, written in C and C++, when compiled were very different. That makes me think that the concept of objects still exist ...
6
votes
4answers
204 views

Is it a solvable problem to generate a regular expression that matches some input set?

I provide some input set which contains known separated number of text blocks. I want to make a program that automatically generate 1 or more regular expressions each of which matches every text ...
6
votes
6answers
392 views

will reading compiler construction increase my programming skills?

will reading compiler construction increase my programming skills?
6
votes
5answers
2k views

What programming languages are context-free?

Or, to be a little more precise: which programming languages are defined by a context-free grammar? From what I gather C++ is not context-free due to things like macros and templates. My gut tells me ...
6
votes
7answers
987 views

(When) Should I learn compilers?

According to this http://steve-yegge.blogspot.com/2007/06/rich-programmer-food.html article, I defnitely should. Quote Gentle, yet insistent executive summary: If you don't know how ...
5
votes
3answers
70 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 ...
5
votes
2answers
138 views

Are there any “fun” ways to learn about Languages, Grammars, Parsing and Compilers?

I'm preparing for an exam concerning languages, grammars, parsing and compilers. It's not really my cup of tea and most resources I find use the language of mathematics to define the different terms ...
5
votes
5answers
214 views

why is dynamic typing worth it?

In asking this question I want to make it clear that I am not talking about type inference. Type inference I can definitely see a purpose too, and to my knowledge doesn't cause a performance hit. What ...
5
votes
3answers
602 views

C++ parsing time

Out of curiosity, I was wondering what were some "theoretical" results about parsing C++. Let n be the size of my project (in LOC, for example, but since we'll deal with big-O it's not very ...
5
votes
3answers
2k views

Scala “<-” for comprehension

I have found that Scala always has a "natural explanation" to anything. Always something like "ohh, but that's just a function being called on this and that object with this and that parameter". In a ...
5
votes
4answers
1k views

Removing Left Recursion in ANTLR

As is explained in http://stackoverflow.com/questions/2652060/removing-left-recursion , there are two ways to remove the left recursion. Modify the original grammar to remove the left recursion ...
5
votes
5answers
577 views

The Dragon Book [closed]

Is the Dragon book a good introductory textbook for a compiler class? It seems to be famous, and our professor likes it, but it's not one of the textbooks that we use.
5
votes
9answers
533 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? ...
4
votes
3answers
262 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 ...
4
votes
1answer
47 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)={ ...
4
votes
3answers
115 views

Help with Compiler Design [closed]

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. ...
4
votes
1answer
98 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 ...
4
votes
3answers
120 views

Conversion system for variants

I have written a variant class, which will be used as the main type in a dynamic language, that will ultimately allow 256 different types of value (header is an unsigned byte, only 20 are actually ...
4
votes
4answers
110 views

What programming languages and frameworks are designed specifically for implementing other programming languages?

Key words are "designed" and "specifically", i.e. not general purpose languages that happen to be popular for implementing other programming languages (C, assembly, LISP). A framework in a general ...
4
votes
1answer
159 views

Dragon book colors? [closed]

What is the difference between the different colors of the dragon books on compiler design by Aho, Sethi and Ullman ?
4
votes
2answers
4k views

What is an example of a lexical error and is it possible that a language has no lexical errors?

for our compiler theory class, we are tasked with creating a simple interpreter for our own designed programming language. I am using jflex and cup as my generators but i'm a bit stuck with what a ...
4
votes
1answer
173 views

Will this 'algorithm' for nullable and first work (in a parser)?

Working through this for fun: http://www.diku.dk/hjemmesider/ansatte/torbenm/Basics/ Example calculation of nullable and first uses a fixed-point calculation. (see section 3.8) I'm doing things in ...
4
votes
1answer
231 views

LALR(2) dangling else

Is LALR(2) able to handle the dangling else case naturally (without any special rules, as with LALR(1))? Thanks
3
votes
1answer
84 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 ...
3
votes
1answer
86 views

live values in LLVM

Suppose I have in my CFG (among others) two basic blocks A and B, with an edge from A to B. I need to do the following: get the set S of live values across that edge (it can be an overapproximation, ...
3
votes
3answers
103 views

Special case of reaching definitions data flow problem

The problem of reaching definitions is one of the most fundamental problem in data flow analysis. Given a control flow graph which contains variable definitions and uses, the problem results into ...
3
votes
1answer
75 views

Deciding if an incorrect program can have a correct continuation

(The following question concerns the OCaml language and has examples in OCaml, but the question is very general and probably a correct answer for any other computer language will solve my problem too. ...

1 2 3