Tagged Questions

A compiler is a computer program (or set of programs) that transforms source code written in a programming language (the source language) into another computer language (the target language, often having a binary form known as object code). The most common reason for wanting to transform source code is to create an executable program.

learn more… | top users | synonyms (1)

1000
votes
6answers
45k views

Flash CS4 refuses to let go

I have a Flash project, and it has many source files. I have a fairly heavily-used class, call it Jenine. I recently (and, perhaps, callously) relocated Jenine from one namespace to another. I thought ...
600
votes
58answers
77k 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 ...
93
votes
11answers
8k 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 ...
68
votes
4answers
6k 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(); ...
68
votes
11answers
18k 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 ...
66
votes
9answers
3k views

How to drive C#, C++ or Java compiler to compute 1+2+3+…+1000?

In a recent interview, I was asked a really strange question. The interviewer asked me how can I compute 1+2+3+...+1000 just using compiler features. This means that I am not allowed to write a ...
62
votes
10answers
26k views

How do I speed up the gwt compiler?

We're starting to make heavier use of GWT in our projects, and the performance of the GWT compiler is becoming increasingly annoying. We're going to start altering our working practices to mitigate ...
60
votes
2answers
10k views

Purpose of “let expression” (LetExpr) in the Java compiler?

The Java compiler seems to have support for let expressions in com.sun.tools.javac.tree.* (look for LetExpr). One comment in JCTree even mentions some syntax (let int x = 3; in x+2) which of ...
59
votes
24answers
5k views

What kind of knowledge do you need to invent a new programming language? [closed]

I just finished reading "Coders at works", a brilliant book by Peter Seibel with 15 interviews of some of the most interesting computer programmers alive today. Well, many of the interviewees have ...
55
votes
9answers
2k views

Is C open source?

This is probably a stupid question, but I've been wondering about this for a while. Does C (or any other low-level language, for that matter) even have source, or is the compiler the part that "does ...
55
votes
10answers
13k views

“No newline at end of file” compiler warning

What is the reason for the following warning in some C++ compilers? No newline at end of file Why should I have an empty line at the end of a source/header file?
46
votes
5answers
3k views

How to translate between programming languages

I am setting out to do a side project that has the goal of translating code from one programming language to another. The languages I am starting with are PHP and Python (Python to PHP should be ...
46
votes
8answers
7k views

How to avoid .pyc files?

Can I run the python interpreter without generating the compiled .pyc files?
45
votes
11answers
16k views

Can Go compiler be installed on Windows?

I've been looking on golang.org for a Windows compiler, but I can't seem to find it. I can only see Linux and OS X compilers. Does anyone know if Go programming can be done on Windows, or is it ...
43
votes
2answers
6k views

error: writable atomic property cannot pair a synthesized setter/getter with a user defined setter/getter

I recently tried to compile an older Xcode project (which used to compile just fine), and now I'm seeing a lot of errors of this form: error: writable atomic property 'someProperty' cannot pair a ...
43
votes
4answers
2k 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 ...
43
votes
7answers
21k views

Will #if RELEASE work like #if DEBUG does in C#?

In all the examples I've seen of the #if compiler directive, they use "DEBUG". Can I use "RELEASE" in the same way to exclude code that I don't want to run when compiled in debug mode? The code I ...
43
votes
15answers
3k views

implementing a compiler in “itself”

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 ...
42
votes
4answers
2k views

Reading GHC Core

Core is GHC's intermediate language. Reading Core can help you better understand the performance of your program. Someone asked me for documentation or tutorials on reading Core, but I couldn't find ...
42
votes
20answers
8k 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 ...
42
votes
4answers
14k views

Warning: Found conflicts between different versions of the same dependent assembly

I am currently developing a .NET application, which consists of 20 projects. Some of those projects are compiled using .NET 3.5, some others are still .NET 2.0 projects (so far no problem). The ...
41
votes
18answers
4k 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 ...
39
votes
4answers
1k views

C# 4.0 Compiler Crash

This code sample is not able to be compiled. Any work arounds out there? using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { ...
38
votes
6answers
959 views

C# 'is' type check on struct - odd .NET 4.0 x86 optimization behavior

Update: I have filed a bug report with Microsoft Connect, please vote for it! Update 2: Microsoft have marked the bug report as fixed Posted by Microsoft on 18/08/2010 at 17:25 This bug will ...
35
votes
4answers
516 views

Can C# 'is' operator suffer under release mode optimization on .NET 4?

Below is a simple test fixture. It succeeds in Debug builds and fails in Release builds (VS2010, .NET4 solution, x64): [TestFixture] public sealed class Test { [Test] public void ...
35
votes
7answers
2k views

Why is writing a compiler in a functional language easier?

I've been thinking of this question very long, but really couldn't find the answer on Google as well a similar question on Stackoverflow. If there is a duplicate, I'm sorry for that. A lot of people ...
35
votes
4answers
5k views

What is the difference between LR, SLR, and LALR parsers?

What is the actual difference between LR, SLR, and LALR parsers? I know that SLR and LALR are types of LR parsers, but what is the actual difference as far as their parsing tables are concerned? And ...
35
votes
10answers
8k views

Why does this() and super() have to be the first statement in a constructor?

Java requires that if you call this() or super() in a constructor, it must be the first statement. Why? For example: public class MyClass { public MyClass(int x) {} } public class MySubClass ...
35
votes
10answers
7k 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 ...
34
votes
18answers
8k views

Good way to learn Scala?

I've recently become interested in learning Scala, my first thought was a simple compiler, but I don't have very good knowledge of Automata theory. So my question is: what's a good project or ...
33
votes
2answers
881 views

Good introductory text about GHC implementation?

When programming in Haskell (and especially when solving Project Euler problems, where suboptimal solutions tend to stress the CPU or memory needs) I'm often puzzled why the program behaves the way it ...
33
votes
5answers
14k views

What does a just-in-time (JIT) compiler do?

What does a JIT compiler specifically do as opposed to a non-JIT compiler? Can someone give a succinct and easy to understand description?
33
votes
10answers
13k views

Why do we need extern “C”{ #include <foo.h> } in C++?

Specifically: When should we use it? What is happening at the compiler/linker level that requires us to use it? How in terms of compilation/linking does this solve the problems which require us ...
32
votes
12answers
12k views

Compile, Build or Archive problems with Xcode 4 (and dependancies)

This question has evolved over the past several weeks to cover more general issues with xcode4 (and upgrading projects form older xcodes). However many of the issues can be solved by following the ...
32
votes
25answers
3k 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 ...
32
votes
17answers
5k views

Why doesn't Sun do a C# to Java byte code compiler?

We Want to Run Our C# Code on the JVM My company has a large C# code base. Well over half of this code is our core engine for creating, reading, modifying, calculating and writing Excel workbooks. We ...
32
votes
6answers
2k views

implementing type inference

well I see some interesting discussions here about static vs. dynamic typing I generally prefer static typing, due to compile type checking, better documented code,etc. However I do agree that they do ...
32
votes
22answers
11k 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 ...
31
votes
8answers
3k views

Create a JVM programming language

I have created a compiler in C (using lex & bison) for a dynamic typed programming language that supports loops, functions declarations inside functions, recursive calls etc. I also created a ...
30
votes
2answers
7k views

How exactly does __attribute__((constructor)) work?

It seems pretty clear that it is supposed to set things up. When exactly does it run? Why are there two brackets? Is __attribute__ a function? A macro? Syntax? Does this work in C? C++? Does the ...
29
votes
4answers
491 views

Duck typing in the C# compiler

Note This is not a question about how to implement or emulate duck typing in C#... For several years I was under the impression that certain C# language features were depdendent on data structures ...
29
votes
4answers
30k views

What causes javac to issue the “uses unchecked or unsafe operations” warning

For example: javac Foo.java Note: Foo.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.
29
votes
14answers
2k views

Bootstrapping a language

I've heard of the idea of bootstrapping a language, that is, writing a compiler/interpreter for the language in itself. I was wondering how this could be accomplished and looked around a bit, and saw ...
28
votes
3answers
4k views

How is release handled for @synthesized retain properties?

I have some questions about synthesized properties in Objective-C. The full list follows, but the basic question is this: How does the compiler ensure that the ivars for synthesized properties are ...
28
votes
12answers
14k views

Runtime vs Compile time

Can anyone please give me a good understanding of whats the difference between run-time and compile-time?
28
votes
4answers
5k views

Python - Parse a .py file, read the AST, modify it, then write back the modified source code

I want to programmatically edit python source code. Basically I want to read a .py file, generate the AST, and then write back the modified python source code (i.e. another .py file). There are ways ...
28
votes
12answers
2k views

How did you learn the GNU make tools?

I've been a professional web developer for about five years now, and have compiled many many things for servers. I've also written many simple C programs (one or two files). The main thing which has ...
27
votes
17answers
2k views

Can compiler optimization introduce bugs?

Today I had a discussion with a friend of mine and we debated for a couple of hours about "compiler optimization". I defended the point that sometimes, a compiler optimization might introduce bugs or ...
26
votes
1answer
483 views

LCC— How to stop debugger from breaking at the start of the application?

I'm not sure of how many users there are out there that use the LCC C compiler and the WEdit GUI for Windows but it has a "feature" that is can get to be quite annoying. When you start an application ...
26
votes
6answers
530 views

How-to ensure that compiler optimizations don't introduce a security risk?

I have to write a Windows service that handles at some point confidential data (such as PIN codes, passwords, and so on). Those informations are needed for a very short amount of time: usually they ...

1 2 3 4 5 87