Tagged Questions

136
votes
38answers
14k views

Learning to write a compiler

Preferred Languages : C/C++, Java, and Ruby I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with C/C++, Java, and …
37
votes
11answers
3k views

Why does C++ compilation take so long?

Compiling a C++ file takes a very long time when compared to C#, Java. It takes significantly longer to compile a C++ file than it would to run a normal size Python script. I'm current using VC++ but …
31
votes
18answers
2k views

C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?

I've worked on many projects where I've been given code by others to update. More often than not I compile it and get about 1,000+ compiler warnings. When I see compiler warnings they make me feel …
27
votes
4answers
1k views

How does the C# compiler detect COM types?

EDIT: I've written the results up as a blog post. The C# compiler treats COM types somewhat magically. For instance, this statement looks normal... Word.Application app = new Word.Application(); …
27
votes
3answers
946 views

Why C# is always winning over VB.NET?

I wrote a program that allow two classes to "fight". For whatever reason C# always wins. What's wrong with VB.NET ? static void Main(string[] args) { Player a = new A(); Player …
24
votes
26answers
2k views

What is the purpose of null?

I am in a compilers class and we are tasked with creating our own language, from scratch. Currently our dilemma is whether to include a 'null' type or not. What purpose does null provide? Some of our …
19
votes
10answers
1k views

How do C/C++ compilers work?

After over a decade of C/C++ coding, I've noticed the following pattern - very good programmers tend to have detailed knowledge of the innards of the compiler. I'm a reasonably good programmer, and …
19
votes
15answers
1k views

implementing a compiler in “itself”

Hi, Intuitively, it would seems that a compiler for language Foo, cannot itself be written in Foo. More specifically, the first compiler for language Foo cannot be written in Foo, but any subsequent …
19
votes
10answers
1k views

Can a recursive function be inline?

inline int factorial(int n) { if(!n) return 1; else return n*factorial(n-1); } As I was reading this, found that the above code would lead to "infinite compilation" if not handled by …
18
votes
2answers
331 views

C# compiler bug? Why doesn’t this implicit user-defined conversion compile?

Given the following struct: public struct Foo<T> { public Foo(T obj) { } public static implicit operator Foo<T>(T input) { return new Foo<T>(input); } } This …
18
votes
9answers
1k views

What is the difference between cygwin and mingw?

I want to make my C++ project cross platform, and I'm considering using cygwin/mingw. But what is the difference between them? Another question is whether I will be able to run the binary on a system …
18
votes
18answers
2k views

What techniques can be used to speed up C++ compilation times?

What techniques can be used to speed up C++ compilation times? This question came up in some comments on this question: http://stackoverflow.com/questions/372862/c-programming-style And I'm …
18
votes
12answers
1k views

Do modern compilers optimize the x * 2 operation to x << 1?

Does the C++ compiler optimize this operation? I would love to believe that yes.
18
votes
22answers
3k views

Switch vs if-else

What's the best practice for switch vs if for a 30 unsigned enumerations where about 10 have an expected action (that presently is the same action). Performance and space need to be considered but …
17
votes
7answers
2k views

What is the strict aliasing rule?

When asking about common undefined behavior in C, souls more enlightened than I referred to the strict aliasing rule. What are they talking about?

1 2 3 4 5 69 next
15 30 50 per page