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

0
votes
2answers
61 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 ...
0
votes
0answers
25 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
17 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
26 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, ...
0
votes
0answers
34 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
1answer
42 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 ...
1
vote
2answers
64 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
0answers
66 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
0answers
60 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
81 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* ...
0
votes
1answer
45 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 ...
0
votes
1answer
31 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
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
55 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
59 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
107 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 ...
0
votes
2answers
66 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 ...
2
votes
2answers
61 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 ...
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 = ...
0
votes
1answer
116 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
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 ...
3
votes
3answers
155 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
130 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 ...
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 " << ...
21
votes
3answers
398 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 ...
-2
votes
1answer
135 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
78 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 ...
0
votes
1answer
60 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
121 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
134 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 ...
7
votes
3answers
295 views

What can I assume about C/C++ compiler optimisations?

I would like to know how to avoid wasting my time and risking typos by re-hashing source code when I'm integrating legacy code, library code or sample code into my own codebase. If I give a simple ...
0
votes
1answer
129 views

What is the proper architecture-specific options (-m) for Sandy Bridge based Pentium?

I'm trying to figure out how to set -march option properly to see how much performance difference between the option enabled and disabled can occur on my PC with gcc 4.7.2. Before trying compiling, ...
-1
votes
1answer
60 views

Different results depending on operating system

I'm using an CFD-code written in Fortran. Some parts of it have been parallelized with OpenMP. Even if I turn of OpenMP and use the same compiler options (-O3) on a Windows an a Linux machine I get ...
0
votes
0answers
28 views

Can all programs be converted to single assignment form?

Single assignment form is widely used in compilers for code optimization. However, I cannot find anywhere specifically written whether all programs be converted to single assignment form or not. If it ...
1
vote
3answers
120 views

optimizing code for various C/C++ compilers

For those that develop software for multiple platforms, how do you handle the potential that compilers might do certain things better than other compilers. Say you develop for OS X, Windows, Linux ...
2
votes
3answers
92 views

Will compilers apply move semantics automatically in a setter method?

I want to know if the compiler is allowed to automatically use the move constructor for wstring in the following setter method (without an explicit call to std::move): void SetString(std::wstring ...
26
votes
3answers
593 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), ...
2
votes
2answers
91 views

What prevents the compiler's optimization to reorder strongly exception-safe code?

Given Jon Kalb's strongly exception-safe code to solve the Cargill Widget example, what prevents the compiler from re-organizing the operations and thus making the code not strongly exception-safe? ...
1
vote
1answer
98 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 ...
3
votes
1answer
109 views

C++ Linker error when using O1 optimization

In an already existing and quite large project, I'm enabling the gcc compiler optimization O1. Without this option, everything builds, links and runs fine. with the option enabled, the main ...
1
vote
0answers
40 views

Creating pointer to the sub arrays of mass allocated one dimensional array and release VC++ build

This is my first post I hope I am not making any mistake. I have the following code. I am trying to allocate and access a two dimensional array in one shot and more importantly in one byte array. I ...
1
vote
2answers
57 views

Compiler -march flag benchmark?

does -march flag in compilers (for example: gcc) really matters? would it be faster if i compile all my programs and kernel using -march=my_architecture instead of -march=i686
3
votes
4answers
142 views

Does GLSL really do unnecessary computations with uniform (not per-vertex) values?

For example, if I use vertex shader like the following: #version 400 core uniform mat4 projM; uniform mat4 viewM; uniform mat4 modelM; in vec4 in_Position; out vec4 pass_position_model; void ...
2
votes
1answer
155 views

noexcept specifier and compiler optimizations

I have read unclear things regarding the noexcept specifier and compiler optimizations. When specifying noexcept the compiler may optimize: Compile time (faster compilation). Execution time (code ...

1 2 3 4 5 12