Tagged Questions
1
vote
3answers
23 views
Is optimization necessary when code generation is targeting a runtime with JIT?
I'm planning on writing a programming language targeting the .NET platform which led me to start thinking about the code generation aspect of targeting such a platform. I'm new at writing compilers ...
0
votes
2answers
99 views
trying to optimize if/else condition slows down program
I am currently trying to optimize a .net application with the help of the VS-Profiling tools.
One function, which gets called quite often, contains the following code:
if ...
0
votes
0answers
60 views
Intel Compiler vs GCC code generation differences
I'm learning about x64 programming and the differences between Intel C++ compiler and GCC and how they optimise the instructions
Questions:
What's the best way to tell Intel Compiler to dump the ...
7
votes
4answers
190 views
What can a compiler do with branching information?
On a modern Pentium it is no longer possible to give branching hints to the processor it seems. Assuming that a profiling compiler such as gcc with profile-guided optimization gains information about ...
2
votes
2answers
84 views
Does compilers move skip checks to outside the function call?
Functions or methods like:
void DoSomething(...){
if( ... ) return;
...
}
Checks that skip the entire function if a condition is met. Does the compiler move the check code outside the ...
0
votes
1answer
37 views
HLSL compiler optimizes strange?
I am not an expert in HLSL compilers and how they work with branches but I have read different opinions about this issue. So to be concrete: In C/C++ it would make perfect sense to implement something ...
13
votes
1answer
399 views
Why isn't the Prelude's words function written more simply?
Consider the words Prelude function; it is really easy and one could write it in the following manner:
words' :: String -> [String]
words' [] = []
words' str = before : words' (dropWhile isSpace ...
-1
votes
4answers
89 views
c++ force compiler to opt out some piece of code
I have a piece of code:
// some code, which only do sanity check
expensive checks
// sanity check end
Now how do I tell the compiler to force it to opt out
this piece? Basically it means when I ...
3
votes
2answers
149 views
Is worth using SSE or should I just rely on the compiler?
I am looking into SSE instructions which are great and started to work some simple code to measure the difference between a function using them and the same function using "standard" code (i.e non ...
2
votes
1answer
88 views
Will the C# compiler remove unused local if it is assigned a property?
This might be a silly question. I know that compiler will remove unused locals. But if I write my code like this:
class MyClass
{
public int SomeProperty
{
get
{
...
...
2
votes
4answers
164 views
'|' vs '||' compiler optimization in C#
I was recently asked this question in an interview which I totally got wrong but got me curious about the compiler optimizations in C# and .net
Consider the following snippet:
void Main()
{
...
0
votes
1answer
139 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 ...
21
votes
8answers
869 views
Are the Optimization Keywords in C and C++ Reasonable?
So we've all heard the don't-use-register line, the reasoning being that trying to out-optimize a compiler is a fool's errand.
register, from what I know, doesn't actually state anything about CPU ...
3
votes
3answers
182 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 ...
1
vote
2answers
78 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
1
vote
0answers
39 views
Data Dependency Profiling
I need to do a data dependency graph for some applications. However I need to highlight those dependences that in fact happened during a profiling execution of the application.
My question is: which ...
4
votes
6answers
195 views
Get Assembly code after every optimization GCC makes?
From Optimization Compiler on Wikipedia,
Compiler optimization is generally implemented using a sequence of optimizing transformations, algorithms which take a program and transform it to produce ...
1
vote
9answers
237 views
Comparison of if(…) and ?:, which is better? [duplicate]
I have a simple doubt about the flow of the below code snippet. I compare this code block both on the high level and assembly instruction level. And I found that ?: is far better than branching.
...
1
vote
5answers
153 views
Efficient use of boolean true and false in C++?
Would any compiler experts be able to comment on the efficient use of boolean values? Specifically, is the compiler able to optimize a std::vector<boolean> to use minimal memory? Is there an ...
12
votes
3answers
345 views
Does Haskell optimizer utilize memoization for repeated function calls in a scope?
Consider this function:
f as = if length as > 100 then length as else 100
Since the function is pure it's obvious that the length will be the same in both calls. My question is does Haskell ...
2
votes
1answer
90 views
C Array Allocation in a Loop For Threading
The Motivation
I'm attempting to save various environments via setjmp for the purpose of jumping back to them later and calling functions and making sure that the stack frames run into each other. ...
0
votes
1answer
127 views
C++ Compiler or Linker optimization
I'm trying to create an autoload class system using class mapping as specified in best answere of this post:
Is there a way to instantiate objects from a string holding their class name?
so i've ...
0
votes
0answers
27 views
size optimization xcode LLVM [duplicate]
I am compiling a custom C library with xcode 4.5.1 on os x 10.7.5 and I have a binary size issue.
The size of the binaries produced by xcode are each around 300K (for each architecture arm7s arm 7 ...
1
vote
1answer
33 views
Optimization with and without exceptions after compilation - would the results be the same?
Given a program , that uses exceptions for its functionality : if we'd run the program with optimization at one time , and after that we'd run it without optimization - would the outputs of the both ...
1
vote
1answer
116 views
ARMCC remove unused variables
I'm trying to remove unused code with Keil ARM tools that use ARMCC compiler.
I've previously used GCC based compilers for ARM and I could easily remove the unused code with:
-fdata-sections ...
3
votes
3answers
108 views
Are aliased functions optimized in Erlang
Say i have a function that is exported from a module, but the modules uses the function many times.
So i wrote an alias, because i'm lazy when i code.
-export([get_toolkit/0]).
get_toolkit() -> ...
0
votes
1answer
241 views
Speed up & Optimize C++ program using Clang/LLVM on Mac
OK, here's my issue :
I'm working on a super-complex project and speed & performance is crucial - with lots of bit twiddling and low-level stuff (you may ask me if there's anything specific you ...
0
votes
2answers
154 views
How can a GCC instrumented executable be faster than the non-instrumented?
I'm benchmarking the overhead of GCC Profile-Guided Optimization on the SPEC benchmarks. I have some weird results with some benchmarks. Indeed, two of my benchmarks are running faster when ...
2
votes
2answers
131 views
Why doesn't MSVC optimize cout for char or const char* but it does for int?
Compare the codes:
const char x = 'a';
std::cout<< x;
00C31000 mov eax,dword ptr [__imp_std::cout (0C32054h)]
00C31005 push eax
00C31006 call ...
13
votes
4answers
180 views
Can a compliant Java compiler optimize this code?
I was teaching an introductory programming course today and was walking through some simple code involving variable assignments in Java. The point of the code wasn't to show off anything particular ...
1
vote
1answer
80 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 ...
5
votes
5answers
149 views
Loop compiler optimization
I have a need to optimize a large apps that use linq extensively. Many of the linq statements create anonymous objects within the linq extension methods. An example :-
// custom sort order
var ...
2
votes
3answers
105 views
Are for loop conditions optimised?
A few years ago I heard that the condition part of a for loop is evaluated every time the loop runs. Also, that property access is relatively expensive.
Since then I've had the habit of writing for ...
13
votes
2answers
182 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 ...
0
votes
2answers
115 views
Optimization Expectations in the STL
I'm curious as to how much optimization the compiler will do, so...
// assume we have this declared somewhere
std::vector<int> vec;
// my question is, when fully optimized will this...
for ...
0
votes
0answers
72 views
Does it really matter to use preincrement instead of postincrement in C++? [duplicate]
Possible Duplicate:
Is there a performance difference between i++ and ++i in C++?
Google's C++ Style Guide[1] states that using preincrement(++i) is often more efficient than using ...
3
votes
2answers
151 views
Do intel C++ compiler optimize out functions that have never been called in the codes?
Just some opitmization considerations:
Does anyone know it for sure whether intel C++ compiler (such as ICC 13.0, and of cause, compiled with some optimzation options like /O3 etc) will ...
1
vote
1answer
132 views
Secure gcc optimization options for numerics
Which gcc compiler options may be safely used for numerical programming?
The easy way to turn on optimizations for gcc is to add -0# to the compiler options. It is tempting to say -O3. However I know ...
0
votes
1answer
138 views
Synchronized object vs. unsynchronized object
The statement "unsynchronized Objects typically perform better than
synchronized ones" isn't always true anymore with modern compilers.
This is an assertion I've heard several times today. I've ...
3
votes
1answer
148 views
chrome javascript optimization deep magic
I'm optimizing an sha-256 > hmac > pbkdf2 crypto algorithm in javascript for chrome
http://jsfiddle.net/dtudury/uy3hc/
if I change one line (after the comment // BREADCRUMB ) ei = (di + t1) ...
1
vote
1answer
145 views
Direct the compiler how to optimize my code
How I can say to the compiler how to optimize something or what some call to function.
I mean like create allocate method and let the compiler optimize it as it optimize it with malloc or new.
Or ...
22
votes
4answers
518 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 ...
3
votes
4answers
397 views
Initializer list for objects with default constructor
Is there any benefit to putting a class member variable in an initializer list that doesn't need to be in an initializer list? Example:
class Foo
{
public:
Foo() {}
};
class Bar
{
public:
Bar() ...
1
vote
1answer
107 views
Are there modern compilers for high level languages on simple processors which produce self-modifying code?
Back in the days before caches and branch prediction, it was relatively common if not encouraged to make self-modifying code for certain kinds of optimizations. It was probably most common in games ...
0
votes
2answers
112 views
Example to write optimised code by seeing compiler code of built-in classes [closed]
This may not be a actual question, but I just asked it for the sake of gaining some valuable added knowledge. I have come across this many times(as in reading many articles and blogs) that once a ...
4
votes
1answer
115 views
JIT compiler and anonymous inner classes [closed]
The callback functions by anonymous class is a common approach when we use a framework or a library, so it is very useful to know if the JIT performs such kind optimizations.
I am wondering if the ...
1
vote
0answers
156 views
Any areas where the GCC compiler is better than Intel's? [closed]
Are there any "areas" where the GCC C++ compiler is better than the Intel C++ compiler?
I presumed optimization-wise Intel would win hands down, but wanted to double-check before assuming?
It would ...
0
votes
1answer
67 views
Reduce number of temporary variables
I'm writing something like a compiler. The problem is following: I have a code, consisting of a sequence of assignments:
t1=a+b+c
t2=t1*d
t3=sqrt(t1+t2)
t4=t2+5
...
most of ...
1
vote
1answer
131 views
How to perform whole program optimization for LLVM bitcode files
I have several LLVM bitcode files which I link with llvm-link to create one bitcode file. However, llvm-link does not perform Whole Program Optimization (WPO). How can I link bitcode such that the ...
3
votes
7answers
181 views
Function calls with constants optimization in C/C++
If you have function call with constants, it has no side effects and it is not dependent on anything, like the following:
int foo(int a,int b)
{
return a+b;
}
Does the function get ...

