Tagged Questions
Compiler optimization involves the editing, adding or removing parts of the output of a compiler to render it more efficient. Efficiency here is defined to be either to reduce the run-time or to the memory space needed for the program execution or both.
415
votes
7answers
92k 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 ...
67
votes
11answers
3k views
Efficiency of premature return in a function
This is a situation I encounter frequently as an inexperienced programmer and am wondering about particularly for an ambitious, speed-intensive project of mine I'm trying to optimize. For the major ...
56
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 ...
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 ...
37
votes
4answers
706 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 != ...
33
votes
1answer
503 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 ...
27
votes
12answers
1k 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? ...
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
2answers
337 views
Why does compiler inlining produce slower code than manual inlining?
Background
The following critical loop of a piece of numerical software, written in C++, basically compares two objects by one of their members:
for(int j=n;--j>0;)
asd[j%16]=a.e<b.e;
a ...
22
votes
2answers
280 views
Getting an optimization report from GCC
I would like to know if there is an option I can use with GCC to get a detailed report on the optimization actually chosen and performed by the compiler. This is possible with the Intel C compiler ...
22
votes
2answers
354 views
Is there a technical reason that C# does not issue the “tail.” CIL instruction? [closed]
Possible Duplicate:
Why doesn't .net/C# eliminate tail recursion?
Take the following C# code:
using System;
namespace TailTest
{
class MainClass
{
public static void ...
19
votes
2answers
301 views
Are explicitly Infinite Loops handled in .NET as a special case?
Earlier today, as I was coding a method and it struck me that I wasn't sure exactly why the idiom I was implementing compiles. If everything else is abstracted away, it would look something like ...
15
votes
3answers
759 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()
{
...
15
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 ...
13
votes
5answers
330 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
1answer
124 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 ...
12
votes
6answers
699 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 ...
12
votes
4answers
1k views
Is it possible to implement bitwise operators using integer arithmetic?
I am facing a rather peculiar problem. I am working on a compiler for an architecture that doesn't support bitwise operations. However, it handles signed 16 bit integer arithmetics and I was wondering ...
11
votes
6answers
2k 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 ...
10
votes
4answers
159 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 ...
10
votes
4answers
245 views
Empty Data Member Optimization: would it be possible?
In C++, most of the optimizations are derived from the as-if rule. That is, as long as the program behaves as-if no optimization had taken place, then they are valid.
The Empty Base Optimization is ...
9
votes
3answers
384 views
Can a conforming C# compiler optimize away a local (but unused) variable if it is the only strong reference to an object?
See also these related resources:
Does the .NET garbage collector perform predictive analysis of code? (on Stack Overflow)
WP7: When does GC Consider a Local Variable as Garbage (blog ...
9
votes
4answers
1k 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 ...
8
votes
1answer
189 views
Can compiler optimizations, like ghc -O2, change the order (time or storage) of a program?
I've got the feeling that the answer is yes, and that's not restricted to Haskell. For example, tail-call optimization changes memory requirements from O(n) to O(l), right?
My precise concern is: in ...
8
votes
2answers
178 views
When does the compiler optimize my code
I'm trying to build a code sample to show the optimization of code by the compiler when multiplying with a power of 2 number. Yet when I turn Optimize code on the IL remains mainly the same. Any ...
8
votes
3answers
240 views
Different behavior of shift operator with -O2 and without
Without -O2 this code prints 84 84, with O2 flag the output is 84 42. The code was compiled using gcc 4.4.3. on 64-bit Linux platform. Why the output for the following code is different?
Note that ...
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
8answers
526 views
What is the performance cost of assigning a single string value using +'s
I have often wondered this, is there a performance cost of splitting a string over multiple lines to increase readability when initially assigning a value to a string. I know that strings are ...
7
votes
2answers
165 views
Constants and compile time evaluation - Why change this behaviour
If you forward to approximately 13 minutes into this video by Eric Lippert he describes a change that was made to the C# compiler that renders the following code invalid (Apparently prior to and ...
7
votes
9answers
373 views
Why not always use compiler optimization?
I tried to find an answer to this question but I couldn't find any.
One of the questions that I asked some time ago (my question) had undefined behavior so compiler optimization was actually causing ...
7
votes
5answers
206 views
Short-circuiting on boolean operands without side effects
For the bounty: How can this behavior can be disabled on a case-by-case basis without disabling or lowering the optimization level?
The following conditional expression was compiled on MinGW GCC ...
7
votes
1answer
239 views
What does the 'optimise' scala compiler flag do?
I've tried using scalac -optimise with version 2.7.7. At that time I never got any performance improvements, but the compilation took longer.
Is the situation better in Scala 2.9.0 ? What ...
7
votes
7answers
409 views
LLVM and the future of optimization
I realize that LLVM has a long way to go, but theoretically, can the optimizations that are in GCC/ICC/etc. for individual languages be applied to LLVM byte code? If so, does this mean that any ...
7
votes
3answers
340 views
Is there any way a C/C++ compiler can inline a C-Callback Function?
Given a typical function that takes a C-Functionpointer as a callback like C-Stdlib qsort(), can any compiler optimize the code using inlining? I think it can not, is this correct?
int cmp(void* pa, ...
7
votes
8answers
435 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 ...
7
votes
2answers
1k views
What is my compiler doing? (optimizing memcpy)
I'm compiling a bit of code using the following settings in VC++2010: /O2 /Ob2 /Oi /Ot
However I'm having some trouble understanding some parts of the assembly generated, I have put some questions ...
7
votes
3answers
208 views
C#: Compiler optimizations of anonymous types
OK OK, I know this is a hack, but this was for a tiny data-manipulation project and I wanted to play around. ;-)
I was always under the impression that the compiler would examine all anonymous types ...
7
votes
4answers
416 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 ...
7
votes
4answers
4k views
How to turn off gcc compiler optimization to enable buffer overflow
I'm working on a hw 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. I ...
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? ...
6
votes
1answer
97 views
What makes a heap-based Scheme slower than a stack-based Scheme?
I am developing a compiler for a language similar to Scheme, and am reading through Dybvig's thesis. In it, he says that achieved most of his performance gain by allocating call frames on the stack ...
6
votes
2answers
80 views
Recompilation of dependencies with Maven - possible? Any performance boost?
I was thinking about dependencies in Maven. Maven downloads them but it is unknown for what target version of JVM are they compiled for and with what compiler. This raises two questions:
Would ...
6
votes
4answers
159 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 ...
6
votes
7answers
248 views
Why would a C++ compiler not eliminate null check of pointer returned by new?
Recently I ran the following code on ideone.com (gcc-4.3.4)
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <new>
using namespace std;
void* operator ...
6
votes
4answers
145 views
How can I elide a call if an edge condition is known at compile time?
I have the following situation: there's a huge set of templates like std::vector that will call memmove() to move parts of array. Sometimes they will want to "move" parts of length zero - for example, ...
6
votes
2answers
127 views
Why would a C++ compiler only eliminate useless writes if there's no code after those writes?
I'm inspecting Visual C++ 10 optimization capabilities and found a rather curious thing. All code herein is compiled with /O2.
In the following code:
int _tmain(int argc, _TCHAR* argv[])
{
char ...
6
votes
3answers
146 views
Would the ability to declare Lisp functions 'pure' be beneficial?
I have been reading a lot about Haskell lately, and the benefits that it derives from being a purely functional language. (I'm not interested in discussing monads for Lisp) It makes sense to me to ...
6
votes
4answers
134 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
4answers
331 views
Extent of GHC's optimization
I am not very familiar with the degree that Haskell/GHC can optimize code. Below I have a pretty "brute-force" (in the declarative sense) implementation of the n queens problem. I know it can be ...
6
votes
1answer
110 views
Building sqlite for windows in a proper way
My problem is no matter how I build sqlite - my binary is much slower than
the precompiled one on sqlite download page (about 3 - 6 times depending on
the query).
I am using sqlite3.h and sqlite3.c ...