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).
15
votes
4answers
377 views
Why would a compiler generate this assembly?
While stepping through some Qt code I came across the following. The function QMainWindowLayout::invalidate() has the following implementation:
void QMainWindowLayout::invalidate()
{
...
1
vote
0answers
95 views
Tail recursion vs. more readable code in scala - could we have both? [closed]
I'm just learning Scala, so this may already be addressed by some language feature I'm as yet unaware of. Using the factorial example:
def factorial(n: Int): Int =
{
if (n == 1) 1
else n * ...
0
votes
2answers
71 views
Is java 6 or 7 compiler improves str.startWith(“a”) and converts it into str.charAt(0) == 'a' if it contains string with one character?
Eclipse plugin PMD suggests me to use
str.charAt(0) == 'a'
instead of
str.startWith("a")
But I don't want to make code more complicated and I believe that java compilers are very smart and ...
2
votes
2answers
43 views
Assigning a constant cast to a var in C#
How smart is the C# compiler, given the following:
float a = 1; //A
var b = 1f; //B
var c = (float)1; //C - Is this line equivalent to A and B?
var d = Convert.ToSingle(1); //D - Is this line ...
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 ...
0
votes
0answers
26 views
Bitshifting by negative Value results in the Opposite Shift!! Anywhere Defined in Some Document
I found a way this should be a optimized way. But it should be buggy too.
In a way its not portable for Arm (could be ?).
So in Gcc (3.4.4) I found that Left shifting a number by a negative value is ...
0
votes
0answers
55 views
Is it possible to automatically detect redundant conditional statements?
In JavaScript, is it possible to automatically detect redundant if-statements so that they can be written more concisely? I want to automatically detect redundant if-statements in the code that I've ...
0
votes
0answers
20 views
working out what the gcc optimiser flag is doing
I've been given the task to optimize a piece of code but as far as i can tell the only potential problem is a square root of a term that does not change inside a for loop. However if I understand ...
0
votes
0answers
27 views
gcc optimizations: how to deal with macro expantion in strncmp & other functions
Take this sample code:
#include <string.h>
#define STRcommaLEN(str) (str), (sizeof(str)-1)
int main() {
const char * b = "string2";
const char * c = "string3";
strncmp(b, ...
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 ...
1
vote
2answers
71 views
CUDA compute capability 1.0 faster than 3.5
I have a cuda program that I am running on a 680gtx,
while testing different compiler options I noticed that:
compiling my code for compute capability 1.0 and sm 1.0 gives a
runtime of 47ms
...
0
votes
1answer
43 views
Execution Error : Part of C code compiled but not being executed properly in ECM
I am working on ECM (using gcc compiler we generate the hex file and flash it on controller)
There is a code x=(a+b)/2, what ever the value of a and b, but the value in x is always zero.
I have a ...
0
votes
0answers
36 views
Compiler design, method inlining with multiple return
I am implementing a method inlining in a toy compiler as a part of my project. The language is similar to Java but does not provide goto stmt.
My problem is how can I inline functions that control ...
0
votes
0answers
70 views
Matrix vectorization using SIMD
I'm trying to vectorized the following loop (only the inner) :
for (int i =0; i<n; i++){
const int line = i * width;
for (int j = 0; j < n; j++){
a[line + j] = 3;
}
}
but ...
3
votes
1answer
21 views
Is there a web-page containing a list of LLVM optimizations?
I've seen many optimization acronyms, eg.
dce, inline, constmerge, constprop, dse, licm, gvn, instcombine, mem2reg, scalarrepl
While I can deduce that dce is dead code elimination, I have trouble ...
0
votes
1answer
34 views
Cython: Compile Option -O3
How does one overwrite the default compile flags for Cython when building with distutils?
My question is similar to this , but the response involved manually running the cython steps - given the ...
0
votes
0answers
63 views
Object oriented three address code generation
I'm working on a project related to compiler design. I need to generate three address code for a Java-based language and it implies the use of objects and scopes. I would like if you can help me ...
-1
votes
2answers
85 views
gcc -O3 flag causes warnings that -O2 doesn't
I'm building a fairly complex application, which built without any errors/warnings with -O0. However when I tried -O3, I got a couple of them which are puzzling. For example:
1: static pinfo_t* ...
2
votes
3answers
102 views
Are there compilers capable of suggesting optimizations that would absolutely require programmer approval?
Can compilers do more than strict semantically-equivalent optimizations, if we keep the human in the loop?
There are some potential optimizations that are dismissed outright by compilers, because ...
0
votes
1answer
47 views
Intel and GNU C compilers contradict themselves w.r.t vectorisation
In class, we were given a simple loop we were supposed to vectorize. This went well enough, but we came across a curious thing. Consider this code:
#include<stdio.h>
void func(int N, double ...
10
votes
3answers
525 views
crash report using optimization other than -o0 after xcode 4.5 update
I've updated to Xcode 4.5 today and I can't produce a functional release build of my app any longer. I had no trouble producing a release with the previous version of Xcode.
I noticed that it ...
0
votes
0answers
22 views
How does the Banerjee test work for finding data dependences in loop iterations
can someone explain to me how the Banerjee test works for finding data dependences in loop iterations?
3
votes
1answer
60 views
Any performance difference between sinf(), cosf() and sin(), cos()
I have code that works mainly with single-precision floating point numbers. Calls to transcendental functions occur fairly often. Right now, I'm using sin(), cos(), sqrt(), etc--functions that accept ...
3
votes
3answers
60 views
Compiler define, redirect function to different name
When using the edk2 (UEFI), functions like memcpy and memset are not available, but they have functions CopyMem and SetMem. Normally that is not too much of a problem, but sometimes the compiler does ...
2
votes
0answers
109 views
Why does the compiler not schedule or eliminate instructions optimally?
I wanted to know how good the compiler does on optimizing assignments of structs and I did some testing with surprising results. (I would like to address this question to GCC.)
In particular I was ...
0
votes
0answers
56 views
Compiler optimizations when reading a file
I'm starting to write a c++ program that is supposed to read a large binary file (several gigabytes). As a start, my program just does fread() inside a loop to read into an array of doubles:
double ...
1
vote
2answers
62 views
Will the compiler do different things depending on how I handle unreferenced parameters?
So I've seen a number of threads explaining how to avoid unreferenced parameter warnings, for instance:
Avoid warning 'Unreferenced Formal Parameter'
C++ What is the purpose of casting to ...
2
votes
2answers
64 views
Compile Flags for Eclipse/Android development
So im trying to figure out how i can setup compile flags in Eclipse so when im developing my Android applications i can make a specific build. Example i have a WebView based application and i want to ...
0
votes
2answers
67 views
Java for loop optimization - Storing getters before the loop
Suppose you have the following code..
for(Element elm : elements)
if(elm instanceof Foobar)
Session.getSomething().getListOfSomething().add((Foobar)elm);
Would it not be better to do the ...
3
votes
2answers
84 views
How many times the constructor is invoked?
I'm a beginner of C++ programing and I have a simple question regarding to the C++ class constructor.
How many times the constructor is invoked for the following code snip?
std::string s = ...
3
votes
1answer
125 views
constant propagation after register allocation
I am wondering why it is not advisable to do constant propagation after register allocation (RA) as well. After several optimization passes (post RA) there is scope for peephole optimizations like ...
0
votes
1answer
123 views
Optimizing Three Address Code
I have the following three address code, where n is some external constant:
x = 0
i = 0
L: t1 = i * 4
t2 = a[t1]
t3 = i * 4
t4 = b[t3]
t5 = t2 * t4
x = x + t5
i = i + 1
if ...
1
vote
4answers
205 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 ...
3
votes
3answers
158 views
Optimization of subsequent calls to integer division and modulo (remainder)
Integer division / and modulo % operations are often used together in programming, sometimes even on the same operands and in subsequent lines. For example, the following C function, which is a simple ...
7
votes
5answers
133 views
Is the compiler allowed to optimize the stack memory usage by reordering local variables?
Consider the following program:
#include <stdio.h>
void some_func(char*, int*, char*);
void stack_alignment(void) {
char a = '-';
int i = 1337;
char b = '+';
some_func(&a, ...
0
votes
1answer
44 views
Tail recursion in gcc/g++
I've tried to search, but was unable to find: what are requisites for functions so that gcc would optimize the tail recursion? Is there any reference or list that would contain the most important ...
7
votes
3answers
2k 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 ...
0
votes
3answers
124 views
Does the c++ compiler combine multiple algorithms into one loop?
Suppose we have the following code:
int main () {
int myints[] = {3,7,2,5,6,4,9};
// using default comparison:
std::cout << "The smallest element is " << ...
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;
...
8
votes
4answers
578 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 ...
35
votes
4answers
1k views
Why is there no implicit parallelism in Haskell?
Haskell is functional and pure, so basically it has all the properties needed for a compiler to be able to tackle implicit parallelism.
Consider this trivial example:
f = do
a <- Just 1
b ...
21
votes
3answers
400 views
Is it true that having lots of small methods helps the JIT compiler optimize?
In a recent discussion about how to optimize some code, I was told that breaking code up into lots of small methods can significantly increase performance, because the JIT compiler doesn't like to ...
3
votes
2answers
675 views
Java Code Compiler Optimization in Android
Assuming I have defined a string like this:
private final static String s = "To Be or not to be, that is the question";
And in one of the (static) methods I call a method that receives a String as ...
1
vote
1answer
109 views
Clang optimization levels
On gcc, the manual explains what -O3, -Os, etc. translate to in terms of specific optimization arguments (-funswitch-loops, -fcompare-elim, etc.)
I'm looking for the same info for clang.
I've looked ...
0
votes
1answer
62 views
simple compiler for optimization purposes
I want a source code of a simple compiler to optimize by interchanging the code for delayed branches for my assignment.
I read the is there a simple compiler for a small language question and found ...
-2
votes
1answer
140 views
_itoa_s kills C++ optimizing compiler all time, why?
I have a code on which the optimizing compiler always fails, with each launch.
char* GetWinSockVersion()
{
char *tmpData = (char*)malloc(sizeof(wsaData.wVersion));
...
1
vote
1answer
43 views
Will the optimizer prevent the creation of a string parameter if a constant will prevent it from being used?
My question is best made with an example.
public static boolean DEBUG = false;
public void debugLog(String tag, String message) {
if (DEBUG)
Log.d(tag, message);
}
public void ...
3
votes
1answer
83 views
Get GCC To Use Carry Logic For Arbitrary Precision Arithmetic Without Inline Assembly?
When working with arbitrary precision arithmetic (e.g. 512-bit integers), is there any way to get GCC to use ADC and similar instructions without using inline assembly?
A first glance at GMP's ...
2
votes
1answer
130 views
How can I get GCC to vectorize this simple copy loop with SSE instructions?
This is a follow up to this question about getting GCC to optimize memcpy() in a loop; I've given up and decided to go the direct route of optimizing the loop manually.
I'm trying to stay as portable ...
3
votes
3answers
135 views
std::move vs. compiler optimization
For example:
void f(T&& t); // probably making a copy of t
void g()
{
T t;
// do something with t
f(std::move(t));
// probably something else not using "t"
}
Is void f(T ...




