Compiler optimization involves adapting a compiler to reduce run-time or object size or both. This can be accomplished using compiler arguments (i.e. CFLAGS, LDFLAGS), compiler plugins (DEHYDRA for instance) or direct modifications to the compiler (such as modifying source code).

learn more… | top users | synonyms

717
votes
10answers
113k views

Why is one loop so much slower than two loops?

Suppose a1, b1, c1, and d1 point to heap memory and my numerical code has the following core loop. const int n=100000 for(int j=0;j<n;j++){ a1[j] += b1[j]; c1[j] += d1[j]; } This loop ...
31
votes
19answers
3k 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 ...
18
votes
2answers
2k views

C++0x memory model and speculative loads/stores

So I was reading about the memory model that is part of the upcoming C++0x standard. However, I'm a bit confused about some of the restrictions for what the compiler is allowed to do, specifically ...
43
votes
1answer
3k views

How does GCC optimize C code?

I wrote this simple C program: int main(){ int i; int count = 0; for(i = 0; i < 2000000000; i++){ count = count + 1; } } I wanted to see how the gcc compiler optimizes this ...
9
votes
9answers
906 views

When do programmers use Empty Base Optimization (EBO)

I was reading about Empty Base Optimization(EBO). While reading, the following questions popped up in my mind: What is the point of using Empty class as base class when it contributes nothing to the ...
16
votes
1answer
3k views

What is the difference between the /Ox and /O2 compiler options?

Microsoft's C++ compiler (cl.exe, as included with Visual Studio) offers several optimization switches. The difference between most of them seems self-explanatory, but it's not clear to me what the ...
5
votes
3answers
372 views

Compiler optimization causing program to run slower

I have the following piece of code that I wrote in C. Its fairly simple as it just right bit-shifts x for every loop of for. int main() { int x = 1; for (int i = 0; i > -2; i++) { x ...
1
vote
5answers
3k views

java compiler optimization

Is the Java compiler smart enough to optimize loop below, by extracting the Double average = new Double( totalTime / callCount ); out of the for loop? public double computeSD( Set values, int ...
7
votes
4answers
7k views

Why do we use volatile keyword in C++? [duplicate]

Possible Duplicate: C++: When Has The volatile Keyword Ever Helped You? I have never used it but I wonder why people use it? What does it exactly do? I searched the forum, I found it only ...
10
votes
4answers
10k views

How to turn off gcc compiler optimization to enable buffer overflow

I'm working on a homework problem that requires disabling compiler optimization protection for it to work. I'm using gcc 4.4.1 on ubuntu linux, but can't figure out which flags are are the right ones. ...
7
votes
9answers
942 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? ...
6
votes
3answers
1k views

“volatile” qualifier and compiler reorderings

A compiler cannot eliminate or reorder reads/writes to a volatile-qualified variables. But what about the cases where other variables are present, which may or may not be volatile-qualified? ...
1
vote
1answer
4k views

GCC SSE code optimization

This post is closely related to another one I posted some days ago. This time, I wrote a simple code that just adds a pair of arrays of elements, multiplies the result by the values in another array ...
78
votes
2answers
2k views

Why can lambdas be better optimized by the compiler than plain functions?

In his book The C++ Standard Library (Second Edition) Nicolai Josuttis states that lambdas can be better optimized by the compiler than plain functions. In addition, C++ compilers optimize lambdas ...
41
votes
5answers
2k views

Bug only occurring when compile optimization enabled

I came across a bug in code that is only reproduced when the code is built with optimizations enabled. I've made a console app that replicates the logic for testing (code below). You'll see that ...
31
votes
12answers
2k views

Using Assembly Language in C/C++

I remember reading somewhere that to really optimize & speed up certain section of the code, programmers write that section in Assembly language. My questions are - Is this practice still done? ...
9
votes
3answers
1k views

LTO, Devirtualization, and Virtual Tables

Comparing virtual functions in C++ and virtual tables in C, do compilers in general (and for sufficiently large projects) do as good a job at devirtualization? Naively, it seems like virtual ...
18
votes
2answers
241 views

C++: Class specialization a valid transformation for a conforming compiler?

Hopefully this isn't too specialized of a question for StackOverflow: if it is and could be migrated elsewhere let me know... Many moons ago, I wrote a undergraduate thesis proposing various ...
22
votes
4answers
510 views

Is it possible to guarantee code doing memory writes is not optimized away in C++?

C++ compilers are allowed to optimize away writes into memory: { //all this code can be eliminated char buffer[size]; std::fill_n( buffer, size, 0); } When dealing with sensitive ...
15
votes
3answers
1k views

C++ Copy constructor, temporaries and copy semantics

For this program #include <iostream> using std::cout; struct C { C() { cout << "Default C called!\n"; } C(const C &rhs) { cout << "CC called!\n"; } }; const C f() { ...
7
votes
5answers
619 views

How do JVM's implicit memory barriers behave when chaining constructors?

Referring to my earlier question on incompletely constructed objects, I have a second question. As Jon Skeet pointed out, there's an implicit memory barrier in the end of a constructor that makes ...
6
votes
4answers
2k views

C#/XNA - Multiplication faster than Division?

I saw a tweet recently that confused me (this was posted by an XNA coder, in the context of writing an XNA game): Microoptimization tip of the day: when possible, use multiplication instead of ...
2
votes
3answers
375 views

C++ : How can I know the size of Base class SubObject?

. Here I was discussing Empty Base Optimization, and MSalters made this interesting comment: No class can ever have sizeof(Class)==0, empty or not. But we're talking specifically over the ...
10
votes
4answers
364 views

When to use volatile to counteract compiler optimizations in C#

I have spent an extensive number of weeks doing multithreaded coding in C# 4.0. However, there is one question that remains unanswered for me. I understand that the volatile keyword prevents the ...
4
votes
3answers
237 views

Does Java Compiler include String Constant Folding?

I found out that Java supports constant folding of primitive types, but what about Strings? Example If I create the following source code out.write("" + "<markup>" + ...
1
vote
1answer
212 views

Float compile-time calculation not happening?

A little test program: #include <iostream> const float TEST_FLOAT = 1/60; const float TEST_A = 1; const float TEST_B = 60; const float TEST_C = TEST_A / TEST_B; int main() { std::cout ...
60
votes
5answers
2k views

Is this a JVM bug or “expected behavior”?

I noticed some unexpected behavior (unexpected relative to my personal expectations), and I'm wondering if something if there is a bug in the JVM or if perhaps this is a fringe case where I don't ...
12
votes
1answer
308 views

How does a compiler optimise this factorial function so well?

So I have been having a look at some of the magic that is O3 in GCC (well actually I'm compiling using Clang but it's the same with GCC and I'm guessing a large part of the optimiser was pulled over ...
15
votes
5answers
845 views

Does Python optimize function calls from loops?

Say, I have a code which calls some function millions time from loop and I want the code to be fast: def outer_function(file): for line in file: inner_function(line) def ...
12
votes
6answers
891 views

How to make a CAF not a CAF in Haskell?

How do I make a Constant Applicative Form into, well, not a Constant Applicative Form, to stop it being retained for the lifetime of the program? I've tried this approach: -- | Dummy parameter to ...
40
votes
4answers
954 views

Do redundant casts get optimized?

I am updating some old code, and have found several instances where the same object is being cast repeatedly each time one of its properties or methods needs to be called. Example: if (recDate != ...
20
votes
5answers
948 views

Why can't (or doesn't) the compiler optimize a predictable addition loop into a multiplication?

This is a question that came to mind while reading the brilliant answer by Mysticial to this question. Context for the types involved: const unsigned arraySize = 32768; int data[arraySize]; long ...
18
votes
1answer
453 views

Compiler written in Java: Peephole optimizer implementation

I'm writing a compiler for a subset of Pascal. The compiler produces machine instructions for a made-up machine. I want to write a peephole optimizer for this machine language, but I'm having trouble ...
12
votes
6answers
3k views

C Programming: difference between ++i and i=i+1 from an assembler point of view?

This was an interview question. I said they were the same, but this was adjudged an incorrect response. From the assembler point of view, is there any imaginable difference? I have compiled two short ...
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? ...
7
votes
5answers
1k views

Hotspot JIT optimizations

In a lecture about JIT in Hotspot I want to give as many examples as possible of the specific optimizations that JIT performs. I know just about "method inlining", but there should be much more. ...
1
vote
7answers
926 views

Will 30 GOTO 10 always go to 10?

In the spirit of the latest podcast where Joel mentioned he'd like some simple questions with possibly interesting answers ... In the environments we have to programme in today we can't rely on the ...
11
votes
4answers
4k views

Benefits of 'Optimize code' option in Visual Studio build

Much of our C# release code is built with the 'Optimize code' option turned off. I believe this is to allow code built in Release mode to be debugged more easily. Given that we are creating fairly ...
9
votes
4answers
920 views

(How) does the Java JIT compiler optimize my code?

I'm writing fairly low level code that must be highly optimized for speed. Every CPU cycle counts. Since the code is in Java I can't write as low level as in C for example, but I want to get ...
7
votes
1answer
96 views

Default variables' values vs initialization with default

We all know, that according to JLS7 p.4.12.5 every instance variable is initialized with default value. E.g. (1): public class Test { private Integer a; // == null private int b; // == ...
7
votes
2answers
435 views

Allowed C# Compiler optimization on local variables and refetching value from memory

EDIT: I am asking what happens when two threads concurrently access the same data without proper synchronization (before this edit, that point was not expressed clearly). I have a question about the ...
6
votes
4answers
210 views

Is there any advantage to definining a val over a def in a trait?

In Scala, a val can override a def, but a def cannot override a val. So, is there an advantage to declaring a trait e.g. like this: trait Resource { val id: String } rather than this? trait ...
6
votes
4answers
534 views

How long does it take to invoke an empty function?

I have a list of items implementing an interface. For the question, let's use this example interface: interface Person { void AgeAYear(); } There are two classes class NormalPerson : Person { ...
6
votes
5answers
2k views

Are empty constructors always called in C++?

I have a general question, that may be a little compiler-specific. I'm interested in the conditions under which a constructor will be called. Specifically, in release mode/builds optimised for speed, ...
5
votes
8answers
291 views

benchmarking, code reordering, volatile

I decide I want to benchmark a particular function, so I naïvely write code like this: #include <ctime> #include <iostream> int SlowCalculation(int input) { ... } int main() { ...
5
votes
1answer
152 views

Regarding optimization for 'not a statment' in c?

While Learning compiler Optimisation, I write codes in C under Linux with GCC version gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5.1) To understant not a statement (nop) in C. I written two codes ...
4
votes
1answer
1k views

What's optimal march & mtune options for gcc for “Pentium4 and above” processors

My C++ application (compiled using g++) needs to work on Pentium-4 (32-bit) and above. However, it's typically used with Core2Duo or better processors. I'm currently using: -march=pentium4 ...
4
votes
2answers
365 views

Examples of CLR compiler optimizations

I'm doing a presentation in few months about .Net performance and optimization, I wanted to provide some samples of unnecessary optimization, things that will be done by the compiler anyways. where ...
4
votes
4answers
445 views

Compiler optimization causing the performance to slow down

I have one strange problem. I have following piece of code: template<clss index, class policy> inline int CBase<index,policy>::func(const A& test_in, int* srcPtr ,int* dstPtr) { ...
26
votes
3answers
600 views

Forcing GCC to perform loop unswitching of memcpy runtime size checks?

Is there any reliable way to force GCC (or any compiler) to factor out runtime size checks in memcpy() outside of a loop (where that size is not compile-time constant, but constant within that loop), ...

1 2