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

8
votes
4answers
571 views

How to deal with branch prediction when using a switch case in CPU emulation

I recently read the question here Why is processing a sorted array faster than an unsorted array? and found the answer to be absolutely fascinating and it has completely changed my outlook on ...
5
votes
3answers
135 views

Why is part of my code not executed?

I'm using Visual C++ to compile my plug-in for Cinema 4D. GeDebugOut("-->"); subroot = NULL; head = NULL; tail = NULL; success = PolygonizeHierarchy(source, hh, head, tail, ...
5
votes
3answers
74 views

Class reference member points to other member in same class

I am making a library that involves 3-D coordinates, and discovered that there are two names for the components of a 3-D angle: yaw-pitch-roll and heading-elevation-bank So I made the following (done ...
1
vote
4answers
254 views

Code runs faster using placement new

I got this class, Approach 1: typedef float v4sf __attribute__ (vector_size(16)) class Unit { public: Unit(int num) { u = new float[num]; v = new float[num]; } ...
0
votes
0answers
72 views

How to link static libraries with a compiler in compilation time?

I have started to create a lightweight and brand-new programming language in order to enhance my programming abilities. I'm using Linux and some functions are from GLIBC. I'm creating a few static ...
5
votes
2answers
85 views

Is there any guarantee about whether code with UB should be reachable?

I have a code snippet from here: volatile int volatileInt; int usualInt; void function (unsigned x, unsigned y, unsigned z) { volatileInt = 0; usualInt = (x % y) / z; } int main() { ...
1
vote
3answers
308 views

What is the specific GCC flag that turns on immediate value propagation for inline assembly parameters?

Consider the following x86 code example: #include <stdlib.h> static int i; static inline __attribute__((always_inline)) test(int x) { asm volatile("mov %1, %0" : "=r"(i): "i"(x)); } int ...
5
votes
4answers
208 views

Will java compiler optimize a method call on a final static variable ? And what happens when it becomes dalvik code?

I have the following code float square(float val) { return val*val;} boolean isInCircle(final float x,final float y) { float squareDistance = square(cx - x) + square(cy - y); ...
1
vote
2answers
216 views

Code can stop working with compiler optimization [closed]

I'm using the PellesC C compiler. Sometimes my code randomly stops working. A particular statement can trigger it. For example, I multiplied a variable by sin(c) (c is a double) and my code seemed to ...
1
vote
3answers
322 views

Compiler optimization makes program crash

I'm writing a program in C++/Qt which contains a graph file parser. I use g++ to compile the project. While developing, I am constantly comparing the performance of my low level parser layer between ...
3
votes
3answers
427 views

Double question marks ('??') vs if when assigning same var

Referring to the following SE answer. When writing A = A ?? B; it is the same as if( null != A ) A = A; else A = B; Does that mean that if( null == A ) A = B; would be preferred, ...
1
vote
3answers
282 views

Is it possible to strip type names from executable while keeping RTTI enabled?

I recently disabled RTTI on my compiler (MSVC10) and the executable size decreased significantly. By comparing the produced executables using a text editor, I found that the RTTI-less version contains ...
0
votes
1answer
65 views

Side Effect Tracking in SSA

I am working on an optimizer for Java bytecode and decided to use SSA. However, most optimizations require all operations to be purely functional, so in order to handle side effects, I decided to add ...
1
vote
1answer
471 views

Implementing common subexpression elimination

I am looking into implementing common subexpression elimination (CSE) for expression graphs corresponding to large mathematical expressions (millions of nodes). What algorithms are suitable for ...
0
votes
0answers
65 views

Meaning of partial redundancy elimination pass dump from GCC?

I just compiled the following program: int foo(int x, int z) { int sum = 0; do { sum = sum + 1/x; } while(sum < z); return sum; } and I got the following dump from the ...
20
votes
5answers
937 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 ...
0
votes
1answer
145 views

Compiler optimization causing EXC_BAD_ACCESS on class property

This is strange. Whenever I enable LLVM compiler optimization (-O/-O1 or higher) I get an EXC_BAD_ACCESS error when a property on my class is accessed. The property is accessed earlier in the code ...
1
vote
1answer
100 views

Does the compiler optimize trivial getter methods into simple field accesses?

While I would assume that in VC++ this would be a no brainer, it's still worth asking. When creating a getter method for a class that only returns the value of a protected/private member, does the ...
0
votes
1answer
176 views

How to change cache write policy for Intel icc compiler

Is there a way to alter the cache write policy while working with the Intel compiler. I discovered that the Intel Core i7 processor 1st-level cache is a write back cache. My question is: Is there any ...
1
vote
0answers
162 views

Suppressing instruction reordering in the WindRiver (Diab) Compiler

I am searching for the proper and accepted way to inhibit instruction reordering in the WindRiver C compiler (AKA Diab C (?)). The problem is that I have to write hardware registers several times ...
13
votes
6answers
543 views

gcc removes inline assembler code

It seems like gcc 4.6.2 removes code it considers unused from functions. test.c int main(void) { goto exit; handler: __asm__ __volatile__("jmp 0x0"); exit: return 0; } Disassembly of ...
6
votes
1answer
158 views

performance impact of “hot” and “inline” combination for a function definition

I have a function which does just few operations such as increments. I have declared that as inline and with the __attribute__((hot)). Gcc Doc suggests following for hot attribute: The hot ...
0
votes
0answers
82 views

CA2225, IConvertible, and release build performance

I'm creating an object that exposes explicit and implicit casting operators. Code Analysis suggested that I also create named methods to match (CA2225: Operator overloads have named alternates). Also, ...
1
vote
1answer
169 views

CPU intensive application with Compiler optimization flag turned on/off

I wrote a small program to compare the performance of my laptops. To make the program CPU intensive, I implemented Rabin-Karp pattern matching algorithm with some multi-threading code (implemented via ...
0
votes
3answers
159 views

example of a infinityloop by optimization(done by the compiler) in C++ in Visual Studio2010

I have to do a demonstration of how the compiler produces a infinity-loop while optimizing a program. I have to show it in C++ in Visual Studio 2010 and I think he best way to show it is with and ...
8
votes
3answers
176 views

Should I wrap calls to Debugger.Log() in #if (DEBUG)?

Is it necessary to wrap calls to Debugger.Log() in the #if (DEBUG) preprocessor directive for the purpose of code optimization, or will the C# compiler still produce optimized code when building the ...
4
votes
3answers
178 views

Compiler behavior?

I am reviewing some source code and I was wondering if the following was thread safe? I have heard of compiler or CPU instruction/read reordering (would it have something to do with branch ...
1
vote
0answers
200 views

Is there a reason why NOT to force 8-byte alignment for complex float type?

This is a follow-up for this question. We have an implementation of GCC for our embedded architecture. As such we have control over some aspects of the compiler and optimizer. Such aspect may be ...
1
vote
1answer
160 views

Is it guaranteed that Complex Float variables will be 8-byte aligned in memory?

In C99 the new complex types were defined. I am trying to understand whether a compiler can take advantage of this knowledge in optimizing memory accesses. Are these objects (A-F) of type complex ...
5
votes
2answers
340 views

How much should I optimize?

In regards to optimizations done by the compiler (GCC), what is the standard practice? What does each option (-O, -O1, -O2, -O3, -Os, -s, -fexpensive-optimizations) do differently, and how do I decide ...
6
votes
3answers
261 views

Compiler Optimization, Thread Safe?

I have a question regarding optimizations the compiler can potentially do. The below code will speak for itself (this is an example): typedef struct test { short i; } s_test; int ...
7
votes
2answers
286 views

Why is the recursive version of this function faster?

Here is a simple class for iterating over a multidimensional numeric range: #include <array> #include <limits> template <int N> class NumericRange { public: // typedef ...
3
votes
3answers
176 views

Will the compiler optimize for boolean assignment?

This is what I want to do: if(ABoolean || (BBoolean && CBoolean)) { SomeButton.Enabled = true; AnotherButton.Enabled = true; } else { SomeButton.Enabled = false; ...
1
vote
1answer
171 views

gcc/clang optimization of little-endian load of uint16_t from uint8_t* array

Given the below: #include <stdint.h> #include <stdio.h> uint16_t foo(uint8_t* x) { uint16_t r = (x[1] << 8) | x[0]; return r; } uint16_t bar(uint8_t* x) { uint16_t r = ...
0
votes
1answer
131 views

Visual C Optimization differences between 2008 and 2010

I have a fairly complex algorithm I'm building using both visual c 2008 and visual c 2010. The algorithm is producing bad output when I compile with optimization enabled in VC 2010 (specifically, ...
68
votes
3answers
2k views

Why would code actively try to prevent tail-call optimization?

The title of the question might be a bit strange, but the thing is that, as far as I know, there is nothing that speaks against tail call optimization at all. However, while browsing open source ...
9
votes
2answers
400 views

Should I use const for local variables for better code optimization?

I often use const for local variables that are not being modified, like this: const float height = person.getHeight(); I think it can make the compiled code potentially faster, allowing the ...
0
votes
0answers
25 views

Where to find info on building compilers [duplicate]

Possible Duplicate: Learning to Write a Compiler Learning Resources on Parsers, Interpreters, and Compilers Does anyone have any good resources/books on building compilers. I would really ...
18
votes
4answers
540 views

How should I detect bottleneck of compile time in a large C++ project?

I want to reduce compile time of a large C++ project. I tried to use precompiled headers, interface and etc. But before I move on, I want to know whether any tool which helps detect why compile time ...
18
votes
1answer
450 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 ...
15
votes
3answers
410 views

Crash in C++ code due to undefined behaviour or compiler bug?

I am experiencing strange crashes. And I wonder whether it is a bug in my code, or the compiler. When I compile the following C++ code with Microsoft Visual Studio 2010 as an optimized release build, ...
3
votes
1answer
182 views

Compiler optimization of public static final and OSGi

I have an OSGi bundle b1 exporting a class with public static final String MYVAL = "a"; //version 1 and a second bundle b2 is compiled and deployed using version 1 of b1. Later on I change the ...
5
votes
1answer
149 views

Will an optimiser deduce mathematical expressions based on compile-time constants?

If I have some mathematical equations which rely on inputs which can be zero or non-zero (template argument, known at compile time), will the optimiser evaluate the equations and optimise out ...
11
votes
4answers
698 views

effect of goto on C++ compiler optimization

What are the performance benefits or penalties of using goto with a modern C++ compiler? I am writing a C++ code generator and use of goto will make it easier to write. No one will touch the ...
2
votes
3answers
294 views

triangular matrix conversion and auto parallelization

I'm playing a bit with auto parallelization in ICC (11.1; old, but can't do anything about it) and I'm wondering why the compiler can't parallelize the inner loop for a simple gaussian elimination: ...
2
votes
2answers
133 views

Allocating or passing a buffer?

Assuming buffer is a struct composed of several members, including an array. Compiling with usual optimization flags, what kind of performance difference should one expect from running these two code ...
2
votes
3answers
156 views

.Max() vs OrderByDescending().First()

This is purely for my own knowledge, if I were going to write the code I would just use .Max(). At first thought .Max() only has to do a single pass through numbers to find the max, while the second ...
2
votes
6answers
199 views

How can C++ compiler optimize incorrect hierarchical downcast to cause real undefined behavior

Consider the following example: class Base { public: int data_; }; class Derived : public Base { public: void fun() { ::std::cout << "Hi, I'm " << this << ::std::endl; } }; ...
1
vote
2answers
385 views

How to tell GCC to set structuture size boundary to 4 bytes through complier settings (not pragma's)?

I want my c++ program compiled under GCC to have maximum alignment of 4 bytes (of members of structures). I really can do this through #pragma pack directive. However, it's uncomfortable in my case ...
0
votes
2answers
142 views

problems with Static Chaining in a compiler

One criticism of using the static chain to access nonlocal variables is that references to variables in scopes beyond the static parent cost more than references to locals. The static chain must be ...

1 3 4 5 6 7 12