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).
0
votes
1answer
100 views
How to optimize and increase efficiency in this particular code involving floating point operation?
We know that floating point operations have high latency and take many clock cycles to execute which may cause pipeline to stall! what are the different methods to optimize the following code.
int ...
11
votes
3answers
231 views
Is there any functional language compiler/runtime which optimizes chained iterations?
Will any functional language compiler/runtime reduce all chained iterations into one when applyable? From the programmer perspective we could optimize the functional code with such constructs as ...
2
votes
5answers
195 views
Does the C# compiler automatically dispose of IDisposable objects?
Assuming I have a method public static Rectangle DrawRectangle(Vector origin, Vector size) which returns an object of type Rectangle : IDisposable
If I call only the method DrawRectangle(origin, ...
1
vote
0answers
101 views
I got 'duplicate section' errors when compiling boost_regex with size optimization (-Os)
compiler: http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/32-bit/threads-posix/sjlj/x32-4.7.2-release-posix-sjlj-rev6.7z
boost: ...
3
votes
2answers
102 views
Volatile and compiler optimization
Is it OK to say that 'volatile' keyword makes no difference if the compiler optimization is turned off i.e (gcc -o0 ....)?
I had made some sample 'C' program and seeing the difference between ...
4
votes
2answers
133 views
How can I prevent MSVC++ from over-allocating stack space for a switch statement?
As part of updating the toolchain for a legacy codebase, we would like to move from the Borland C++ 5.02 compiler to the Microsoft compiler (VS2008 or later). This is an embedded environment where the ...
2
votes
1answer
117 views
Do compilers have certain optimization heuristics to support branch prediction? If not, why not?
This question is mostly a follow up after reading this article by Aater Suleman on improving branch prediction from the software side. The author provides a way to "unroll" conditional statements such ...
0
votes
1answer
213 views
g++ autovectorization fail for the most basic example
I am currently trying to use autovectorization with g++.
To do so, I use the following minimal example:
#include <array>
int main()
{
std::array<double, 16> x;
for (unsigned int i ...
4
votes
1answer
439 views
GCC -Wuninitialized / -Wmaybe-uninitialized issues
I am experiencing a very strange issue using gcc-4.7 (Ubuntu/Linaro 4.7.2-11precise2) 4.7.2. I am unable to compile the following valid code without a warning:
extern void dostuff(void);
int ...
1
vote
1answer
76 views
performance of multiplying 2 identical/nonidentical matrix
I am carrying out some performance test on scientific application and trying to take into account all elements that can affect performance of application(like cache size hierarchy cpu speed ... cache ...
0
votes
1answer
132 views
Bogus “array subscript is above array bounds” warning when accessing array with templated length
I'm programming with C++ on Ubuntu 12.04 and g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3.
I have a templated Vector class
template <typename type, int length>
class Vector {
// Implementation
...
1
vote
2answers
79 views
Looking for a macro that can manipulate the compiler's optimization feature
Is there a way to mark a block of code or a function as an excluded part of the compiler's optimization feature?
I have a bug that occur only when the optimization feature is on. I have some guesses ...
10
votes
3answers
217 views
Where is the loop-carried dependency here?
Does anyone see anything obvious about the loop code below that I'm not seeing as to why this cannot be auto-vectorized by VS2012's C++ compiler?
All the compiler gives me is info C5002: loop not ...
3
votes
3answers
129 views
Can modern compilers optimize constant expressions where the expression is derived from a function?
It is my understanding that modern c++ compilers take shortcuts on things like:
if(true)
{do stuff}
But how about something like:
bool foo(){return true}
...
if(foo())
{do stuff}
Or:
class ...
2
votes
3answers
106 views
Empty base class construction overhead?
Consider the following code :
#include <iostream>
#include <type_traits>
class Base
{
public: static int f() {return 42;}
};
class Derived : public Base
{
protected: int x;
};
...
0
votes
1answer
69 views
How to prevent optimization of busy-wait
I need to have a function busy-wait.
for(long int j=0; j<50000000; ++j)
;
When I compile in release mode, this gets optimized out. Other than compiling in debug mode, is there some way to ...
1
vote
0answers
105 views
G++ makes smaller binary than GCC after C++ compatibility changes, but slightly larger than the prior binary?
I made some changes to a C codebase so that it could compile under G++. Seems to be working, with some annoyances and the hack of -fpermissive -fshort-wchar.
Out of curiosity I compared the stripped ...
6
votes
2answers
199 views
Are floating point operations in c associative?
Take for example, addition, which mathematically holds the associative property:
(a + b) + c = a + (b + c)
Now, in the general case, this property does not hold for floating-point numbers because ...
0
votes
0answers
78 views
Is there any code generation & optimisation tool for compiler (I had AST tree generated)?
I have go to the last step to making my own compiler ..
Is there any tool (eclipse integration will be better) for generating assembly code and optimise it auto-matically if I had an AST..
If there ...
0
votes
2answers
138 views
calling functions in C [closed]
My question is particulary to function calls in C. So, either we can call functions normally or through function pointers. When your interface remainas the same but with different implementations, ...
3
votes
4answers
95 views
Would the following code be optimized to one function call?
I have very little (read no) compiler expertise, and was wondering if the following code snippet would automatically be optimized by a relatively recent (VS2008+/GCC 4.3+) compiler:
Object objectPtr ...
13
votes
2answers
181 views
Does C++ Standard description of indirection operator guarantee memory writes are not optimized away?
This is basically a continuation of this question. So far it looks like that if I have a function like this:
void SecureZeroMemory( void* ptr, size_t cnt )
{
volatile char *vptr = (volatile char ...
10
votes
4answers
203 views
In C/C++ is x[i] * y[i++] always equal to x[i] * y[i] [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
increment values in printf
I have a two double arrays x and y and integer i. My question ...
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 ...
1
vote
1answer
165 views
When to use certain optimizations such as -fwhole-program and -fprofile-generate with several shared libraries
Probably a simple answer; I get quite confused with the language used in the GCC documentation for some of these flags!
Anyway, I have three libraries and a programme which uses all these three. I ...
6
votes
4answers
155 views
Does the existence rseq/seq break referential transparency? Are there some alternative approaches that don't?
I always thought that replacing an expression x :: () with () :: () would be one of the most basic optimizations during compiling Haskell programs. Since () has a single inhabitant, no matter what x ...
1
vote
4answers
206 views
Small C Code Optimizations (Hacks): Useless in today? [closed]
20 years ago, there was (almost) no any compilers optimizations. So, we started to use some hacks, such as:
Use pointers, not array indexes.
Don't use small functions (such as swap()), use macros or ...
4
votes
2answers
61 views
C++ object lifetime optimizations
I'm trying to use RAII to create objects which act on a stream until they're destroyed. For example, I have a stream that flushes itself whenever endl is added. Most of the time I want this, but not ...
0
votes
0answers
89 views
C++ 11 - using extern templates to reduce compile times [duplicate]
Possible Duplicate:
Is there a bug with extern template in Visual C++?
I use something like that in VS12 in a *.cpp file
extern template class std::vector<int>;
... at some point ...
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 ...
6
votes
3answers
115 views
When consolidating duplicate literals, will a C compiler look in the middle of a string?
I have a lot of literal strings in my source code that are otherwise identical except for leading white-spaces (due to a desire to maintain correct indentation). Are compilers smart enough to see that ...
19
votes
7answers
1k views
Optimization of C code
For an assignment of a course called High Performance Computing, I required to optimize the following code fragment:
int foobar(int a, int b, int N)
{
int i, j, k, x, y;
x = 0;
y = 0;
...
3
votes
2answers
246 views
Does the compiler optimize string concatenation?
I have some cases in my code where I am building a large string of text, such as a complex SQL statement. I intend to put this text together many times in a row, each with some slightly different ...
1
vote
1answer
54 views
Compiler optimization merge identical functions implementation meant to be stubs to be detoured during runtime
I have a C++ test project with a bunch of stub functions that have the same implementation. Those stubs are meant to be 'replaced' during runtime using Windows Detours. The issue is that, in release ...
3
votes
1answer
297 views
What do gcc's auto-vectorization messages mean?
I have some code that I would like to run fast, so I was hoping I could persuade gcc (g++) to vectorise some of my inner loops. My compiler flags include
-O3 -msse2 -ffast-math -ftree-vectorize ...
0
votes
2answers
52 views
VS2010 Express recommends optimizations in debug mode, and fails running the app without them
we have encountered a very weird behaviour of VS2010 Express C++ recently.
Our app which worked flawlessy, suddenly showed unexpected behaviour in debugmode, like somehow rendering to the full ...
1
vote
0answers
214 views
GCC optimization options for AMD Opteron 4280: benchmark
We're moving from one local computational server with 2*Xeon X5650 to another one with 2*Opteron 4280... Today I was trying to launch my wonderful C programs on the new machine (AMD one), and ...
3
votes
1answer
70 views
Graph coloring register allocator
For my compiler course I'm building a register allocator based on graph coloring for MIPS architecture. I'm following Muchnick's treatment on the same for my implementation.
Muchnick has been a ...
2
votes
2answers
86 views
gcc builds with -o but not -o3?
My Makefile looks like this:
CC=gcc
CFLAGS=-Wall -Wextra -std=c99 -pedantic
OBJECTS=main.o Scene.o Matrix.o Vector.o Triangle.o Color.o Raster.o
render: $(OBJECTS)
$(CC) $(CFLAGS) -lm -o render ...
2
votes
4answers
172 views
When I use Conditional Compilation Arguments to Exclude Code, why doesn't VB6 EXE file size change?
Basically, when declaring Windows API functions in my VB6 code, there comes with these many constants that need to be declared or used with this function, in fact, usually most of these constants are ...
1
vote
1answer
86 views
compile with no optimization? as safe as possible?
I have some code acting very weird. Weird enough people accused my output isn't really happening (i wish, that would make my life easier). The code works fine in windows (ms vc++, gcc) but fails on ...
14
votes
4answers
243 views
Why is this behavior allowed in the Java Memory Model?
Causality in JMM seems to be the most confusing part of it. I have a few questions regarding JMM causality, and allowed behaviors in concurrent programs.
As I understand, the current JMM always ...
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 ...
1
vote
1answer
160 views
Persuading the compiler to set registers outside a loop
Firstly, I will prefix this by saying I don't think it is necessary to understand the functioning of the code below to make a sensible attempt to solve my problem. This is primarily an optimisation ...
2
votes
1answer
158 views
Inner if statement kills vectorization
I have the following for loop. When I switch on the type array the code doesn't vectorize. When I fix type to '1' gcc performs a primitize vectorization vectorizes. Does anybody have any ...
1
vote
1answer
163 views
is mov rax,0x12345678; jmp rax still kills branch prediction?
I'm having trouble finding information specific to the two cases described above,
And though of hearing your expert opinion.
The first thing is: I know indirect jmps hurts branch prediction, and that ...
3
votes
1answer
60 views
Windows Store App fails certification with optimizations turned off?
I have a rather particular thing I'm doing. (testing IL transforms within Windows Store apps)... so pardon if this sounds weird and please avoid just telling me "turn optimizations on"
Anyway, I ...
6
votes
4answers
209 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 ...
1
vote
1answer
146 views
What, in short words, does the GCC option -fipa-pta do?
According to the GCC manual, the -fipa-pta optimization does:
-fipa-pta: Perform interprocedural pointer analysis and interprocedural modification and reference analysis. This option can cause ...
0
votes
1answer
96 views
Does Java compiler eliminate function calls from getters?
Can I be sure that
private int value;
public int getValue() { return value; }
is compiled by compiler in the same way as
public int Value;
in the terms of number of instructions and execution ...