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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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
10
votes
1answer
253 views

Why doesn't the optimizer eliminate High in a loop?

People said that Delphi produces quite-nice optimized code on integer operations. I try the following example in Delphi 2007, and see its assembly code produced by the compiler. program p1000; ...
3
votes
1answer
123 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
47 views

Benefits/Drawbacks of storing data in data structures, rather than embedding them in if/switch statements

For Example, suppose I wanted to enumerate a list of strings { "ALPHA", "BETA", "GAMMA", "OMEGA" }. Two ways I can think of doing this: --- Method 1 --- string getType(int a) { switch(a) { ...
18
votes
2answers
241 views

C++: Class specialization a valid transformation for a conforming compiler?

Hopefully this isn't too specialized of a question for StackOverflow: if it is and could be migrated elsewhere let me know... Many moons ago, I wrote a undergraduate thesis proposing various ...
0
votes
0answers
32 views

Program Analysis: Chaotic Iteration

Could somebody explain the Chaotic Iteration algorithm? Or maybe point me to a good, accessible guide? I have read Hankin's section in the "Principles of Program Analysis" book as well as various ...
2
votes
4answers
171 views

Code stolen by the compiler, how do I circumvent its criminal ways

I wanted to stress out the processor on a new computer at work. I figured a good way to do it would be to open a thread for each processor with the function: void soStressful() { int j = 0; ...
1
vote
1answer
65 views

How to change compilation flags for a folder with CMake?

I'm generating Makefiles for my project using CMake. I would like to compiler some files with different options. For instance, all the files with -fX, but the files in test folder with -fno-X. Is ...
0
votes
0answers
15 views

How to handle bound registers in a Chaitin-style register allocator?

I have implemented a Chaitin-style register allocator for my toy-compiler. Several pseudo registers are bound to an hard register. I handled these bound registers specially in almost all phases of ...
2
votes
1answer
83 views

What is the difference between short/byte inside a parameter and inside a block [duplicate]

Possible Duplicate: Eclipse bug? When is a short not a short? In Java I can assign a short or a byte inside blocks like this: short s = 20000; byte b = 120; Because 20000 is a short ...
0
votes
4answers
78 views

Is redundant assignment elimination fairly typical optimization?

Given the following: len = strlen(str); /* code that does not read from len */ len = new_len; Can I depend on the compiler to remove the first line? I'm writing a code generating script. The ...
9
votes
2answers
293 views

Improving build time on XCode 4.5 for a huge game project

Scenario: We have an XCode project for an iOS game which has about 7000+ files. Only 1000+ files are code. Rest of them are images, sounds, level data, XIBs, plists, config files etc. Its a ...
2
votes
1answer
195 views

Programming Language Idea: Avoiding vtable lookups [closed]

I have been toying with an idea for a programming language for a while now: It would essentially be C++ and Java-like in syntax, meant for systems programming (or really any programming that requires ...
2
votes
2answers
160 views

Will compiler optimize out unused arguments of static function?

I have a group of functions that are all declared static and fastcall. Most of them make use of a pointer to a struct that serves more or less the role of this in C++. Some of the functions don't need ...
1
vote
1answer
75 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 ...
3
votes
3answers
128 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 ...
0
votes
0answers
75 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 ...
13
votes
2answers
180 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 ...
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
4answers
169 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 ...
22
votes
4answers
509 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 ...
0
votes
2answers
504 views

Value optimized out in GDB: Can gdb handle decoding it automatically?

1) First I want to know, how to decode such variables ? I know the solutions to this problem, remove optimization flag, make it volatile, I dont want to do all that. Is there any solution which can ...
3
votes
3answers
157 views

Compiler Optimization: const on non-pointer function arguments in C

Modern compilers can optimize code when they see a const. However, I've never seen the C standard library use const for its non-pointer arguments. For example memcmp() is an example of this. It has 2 ...
0
votes
1answer
75 views

Turn off Inline Expansion but let Optimization be there

While doing performance analysis, I have encountered a problem where some functions are not being detected since the compiler is inlining them as part of /Ox optimisation. So the problem is : How to ...
0
votes
0answers
180 views

change compiler in visual studio 2010

I am trying to build my first opencv application, I added the include directories and the library directories and then added the linking input which is some opencv.lib files Igot this error: The ...
1
vote
1answer
65 views

Performace of constant references over non constant reference

Is there any difference in performance when using a constant reference and a non constant reference in C++ ? If yes than which is better and why ? There is a statement in systemc manual that passing ...
6
votes
1answer
117 views

How can a compiler apply function elimination to impure functions?

Often times when writing code, I find myself using a value from a particular function call multiple times. I realized that an obvious optimization would be to capture these repeatedly used values in ...
0
votes
2answers
104 views

Expression optimization

I have an expression involving REAL as: xf=w1*x1 + w2*x2 + w3*x3 + w1*y1 + w2*y2 + w3*y3 I want to know if the (Intel Fortran) compiler optimized it to: xf=w1*(x1+y1) + w2*(x2+y2) + w3*(x3+y3) ...
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 ...
1
vote
2answers
215 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 ...
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 ...
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 ...
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
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 ...
1
vote
2answers
181 views

Does the Native VBA Compiler Optimize?

My code is as follows: #Const debuggingEnabled = False Sub debugMessage(str As String) #If debuggingEnabled Then Debug.Print str #End If End Sub Sub doThings() debugMessage ...
8
votes
1answer
277 views

C compiler structure optimisation

The C standard does not allow certain optimisations of structures: for example, rearrangement of fields, merging fields, discarding fields that are never read from, hoisting fields out of the ...
7
votes
3answers
203 views

Optimizations by compiler in a recursive program

I got motivated from tail call optimization question What Is Tail Call Optimization? So, I decided to see how can I do it in plain C. So, I wrote the 2 factorial programs, 1st where tail call ...
1
vote
2answers
218 views

Optimization issue

I'm developing a controller program used to run a humanoid kidsize robot. The OS is debian 6 and whole programs are written in C++11. CPU is a 1GHz VorteX86 SD and its architecture is Intel i486. I ...
-1
votes
2answers
96 views

Is volatile fine with this kind of usage?

Say I check for a variable in a loop like this. while( var ) ; Here, var must be declared volatile if the program is multithreaded and var is accessed by multiple threads. That is a known fact. ...
3
votes
1answer
77 views

Implementation of branch reordering in GCC

Branch reordering is a profile guided optimization. Does GCC support it? If yes, where/how is the probing/instrumentation actually implemented? I see that the Linux kernel has a "branch profiling" ...
4
votes
4answers
168 views

Does a function that only calls another function slow things down?

I saw some code that was something like this int *func2(int *var) { //Do some actual work return var; } int *func1(int *var) { return func2(var); } int main() { int var; var = ...
0
votes
1answer
282 views

Should infinite loop condition variables always be declared as volatile?

Consider, such type of code, while( !cond ) ; If cond is not declared volatile, the compiler can optimize it by caching it in a register. In that case, the while loop will continue even after cond ...

1 2 3