A compiler is a program which translates one language into another. The tag [compiler] should be applied to questions concerning the programming of compilers or for questions about the detailed inner workings of compilers. Don't use [compiler] for questions about options and settings for a ...
36
votes
6answers
18k views
Is it possible to dynamically compile and execute C# code fragments?
I was wondering if it is possible to save C# code fragments to a text file (or any input stream), and then execute those dynamically? Assuming what is provided to me would compile fine within any ...
75
votes
6answers
8k 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 ...
53
votes
22answers
24k views
Advantage of switch over if-else statement
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 ...
69
votes
13answers
44k 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 ...
43
votes
12answers
4k 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 ...
44
votes
9answers
53k views
What causes java.lang.IncompatibleClassChangeError?
I'm packaging a Java library as a JAR, and it's throwing many java.lang.IncompatibleClassChangeErrors when I try to invoke methods from it. These errors seem to appear at random. What kinds of ...
43
votes
8answers
11k views
Why can you return from a non-void function without returning a value without producing a compiler error?
Ever since I realized many years ago, that this doesn't produce an error by default, (in gcc at least) I've always wondered why?
I understand that you can issue compiler flags to produce a warning, ...
46
votes
13answers
48k views
Where are static variables stored (in C/C++)?
In what segment (.BSS, .DATA, other) of an executable file are static variables stored so that they don't have name collision?
For example:
foo.c: bar.c:
static int foo = 1; ...
191
votes
12answers
28k 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 ...
21
votes
6answers
8k views
Compilers and argument order of evaluation in C++
Okay, I'm aware that the standard dictates that a C++ implementation may choose in which order arguments of a function are evaluated, but are there any implementations that actually 'take advantage' ...
50
votes
4answers
6k views
What is the difference between javac and the Eclipse compiler?
Is Eclipse's Java compiler just a wrapper around the same core that the javac program is wrapped around, or is it a separate compiler altogether? If the latter, why would they reinvent the wheel?
96
votes
4answers
8k 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();
...
12
votes
1answer
1k views
Compiling an AST back to source code
I'm currently in the process of building a PHP Parser written in PHP, as no existing parser came up in my previous question. The parser itself works fairly well.
Now obviously a parser by itself does ...
55
votes
10answers
25k 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 ...
58
votes
12answers
5k 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 ...
43
votes
9answers
40k views
Can you “compile” PHP code?
I know that PHP is compiled to byte code before it is run on the server, and then that byte code can be cached so that the whole script doesn't have to be re-interpreted with every web access.
But ...
25
votes
15answers
7k views
Constants and compiler optimization in C++
I've read all the advice on const-correctness in C++ and that it is important (in part) because it helps the compiler to optimize your code. What I've never seen is a good explanation on how the ...
18
votes
15answers
3k 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, ...
19
votes
5answers
8k views
How to tell if a .NET application was compiled in DEBUG or RELEASE mode?
I have an application installed on my computer. How do I find out if it was compiled in DEBUG mode or not?
I've tried to use .NET Reflector, but it does not show anything specific. Here is what I ...
16
votes
4answers
15k views
What is the behavior of integer division in C?
i.e. -
int result;
result = 125/100;
or
result = 43/100;
Will result always be the floor of the division? What is the defined bahavior?
If you could point me in the right direction, i would ...
7
votes
3answers
1k views
How a AST for an object oriented programming language would look like?
I'm reading about AST but all the samples I see use expressions such as:
a + b * c
Which could be represented in a lispy like syntax as:
(+ a (* b c) )
Which will be the equivalent to:
+
...
71
votes
20answers
17k 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 ...
111
votes
12answers
47k 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 ...
63
votes
1answer
4k views
Where to learn about VS debugger 'magic names'
If you've ever used Reflector, you probably noticed that the C# compiler generates types, methods, fields, and local variables, that deserve 'special' display by the debugger. For instance, local ...
53
votes
14answers
35k views
Runtime vs Compile time
Can anyone please give me a good understanding of whats the difference between run-time and compile-time?
99
votes
9answers
28k 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 ...
26
votes
3answers
993 views
What does the >?= operator mean?
Looking through this C++ BigInt library and found the BigInt.cpp file. At the top there is a a comment at the top about compatibility:
This class was written for the g++ compiler and uses some of ...
41
votes
4answers
10k 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 ...
38
votes
3answers
10k views
How does the compilation, linking process work?
I've been programming in C++ for a while and I wondered how the compiler and linking process actually works?
Can someone explain please?
(Note: This is meant to be an entry to Stack Overflow's ...
61
votes
4answers
64k 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.
14
votes
4answers
11k views
Convert a PHP script into a stand-alone windows executable
I want to automate a fairly simple task. For this I have written a small PHP script which I run from the command line using PHP-CLI. Now I want to hand over this script to someone but I do not want ...
17
votes
5answers
3k views
Understanding return value optimization and returning temporaries - C++
Please consider the three functions.
std::string get_a_string()
{
return "hello";
}
std::string get_a_string1()
{
return std::string("hello");
}
std::string get_a_string2()
{
...
81
votes
10answers
23k 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?
33
votes
8answers
36k views
Is there a way to install gcc in OSX without installing Xcode?
I've googled the hell out of it, and it seems like there is no way to install gcc on OS X without installing Xcode (which takes at leats 1.5GB of space). All I need is gcc and none of the other junk ...
66
votes
3answers
21k 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 ...
18
votes
3answers
5k views
Is there a way to compile for ARM rather than Thumb in Xcode 4?
Apple is recommending to compiling for ARM rather than thumb if there are many floating point operations going on. My whole app is almost one big floating point operation.
Here's what they say in ...
30
votes
30answers
5k views
Why are compilers so stupid?
I always wonder why compilers can't figure out simple things that are obvious to the human eye. They do lots of simple optimizations, but never something even a little bit complex. For example, this ...
54
votes
4answers
8k 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 ...
58
votes
10answers
11k 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 ...
24
votes
4answers
5k views
40
votes
22answers
77k views
C compiler for Windows? [closed]
I know C is not a very popular language but I need it for school. I'm fine working on Linux using gcc as my C compiler but would like a Windows solution. Any ideas? I've looked at Dev-C++ from ...
14
votes
6answers
6k views
On-the-fly, in-memory java code compilation for Java 5 and Java 6
How can I compile java code from an arbitrary string (in memory) in Java 5 and Java 6, load it and run a specific method on it (predefined)?
Before you flame this, I looked over existing ...
9
votes
3answers
5k views
Java inner class .class file names
If I have an inner class, like this:
public class Test
{
public class Inner
{
// code ...
}
public static void main(String[] args)
{
// code ...
}
}
When I ...
15
votes
9answers
680 views
what is/are the purpose(s) of inline?
I had a discussion with Johannes Schaub regarding the keyword inline.
The code there was this:
namespace ... {
static void someFunction() {
MYCLASS::GetInstance()->someFunction();
...
132
votes
11answers
47k 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 ...
76
votes
4answers
4k 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 ...
39
votes
10answers
47k views
Online C++ compiler and evaluator [closed]
Can someone give me a link to a good online C++ compiler and an evaluator? I once bumped into such a site but I don't remember the name now. Thanks
87
votes
8answers
19k views
How to avoid .pyc files?
Can I run the python interpreter without generating the compiled .pyc files?
48
votes
8answers
17k views
likely/unlikely macros in the Linux kernel
I've been digging through some parts of the Linux kernel, and found calls like this:
if (unlikely(fd < 0))
{
/* Do something */
}
or
if (likely(!err))
{
/* Do something */
}
I've ...
28
votes
2answers
2k views
Template instantiation details of GCC and MS compilers
Could anyone provide a comparison or specific details of how is template instantiation
handled at compile and/or link time in GCC and MS compilers? Is this process different
in the context of ...
