Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
5answers
302 views

Goto prior to a variable definition - what happens with its value?

Here is some question I wondered about. Given the following code, can we be certain about its output? void f() { int i = 0; z: if(i == 1) goto x; else goto u; int a; x: if(a == 10) goto y; ...
13
votes
3answers
181 views

GCC: Prohibit use of some registers

This is a strange request but I have a feeling that it could be possible. What I would like is to insert some pragmas or directives into areas of my code (written in C) so that GCC's register ...
8
votes
8answers
3k views

Address of register variable

In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept in-depth. Thanks, ...
7
votes
2answers
811 views

Register allocation and spilling, the easy way?

I'm looking for a way to allocate local variables to registers. I'm aware of a couple of serious methods for doing it (namely, those mentioned on Wikipedia), but I'm stuck on how "spilling" is ...
4
votes
1answer
931 views

How to force gcc to use all SSE (or AVX) registers?

I'm trying to write some computationally intensive code for Windows x64 target, with SSE or the new AVX instructions, compiling in GCC 4.5.2 and 4.6.1, MinGW64 (TDM GCC build, and some custom build). ...
3
votes
1answer
106 views

Optimizing used registers when using inline ARM assembly in GCC

I want to write some inline ARM assembly in my C code. For this code, I need to use a register or two more than just the ones declared as inputs and outputs to the function. I know how to use the ...
2
votes
2answers
813 views

Callee save with the caller passing the used registers?

In compiler design, why instead of having a caller or callee register saving arrangement, couldn't the caller pass its list of used registers (that it would push in case of a caller saving ...
1
vote
2answers
117 views

GCC not saving/restoring reserved registers on function calls

I have a scenario in GCC causing me problems. The behaviour I get is not the behaviour I expect. To summarise the situation, I am proposing several new instructions for x86-64 which are implemented in ...
1
vote
1answer
289 views

GCC asm inline constraints, conflicting register allocation

I'm a novice. Sorry if this is trivial. I've made some ARM-inline assembler code. Looking in Semaphore.s, I see that gcc is using register r3 for both two variables: "success" and "change". I wonder ...
1
vote
2answers
268 views

Strange behavior with gcc inline assembly

When inlining assembly in gcc, I find myself regularly having to add empty asm blocks in order to keep variables alive in earlier blocks, for example: asm("rcr $1,%[borrow];" "movq ...
1
vote
1answer
68 views

Performing compiler allocation of memory on the stack of different sizes

I've been constructing my own compiler and one large part of it is obviously the register allocator, which matches up temporary variables with machine registers as efficiently as possible. On an ...
1
vote
2answers
186 views

Can you recommend some good references on code generation in a compiler (intermediate representations, SSA, instruction selection, register allocation, etc.)?

I have the dragon book and Modern Compiler Implementation in ML. I'm looking for other good resources on code generation in a compiler. Can you recommend any?
0
votes
2answers
57 views

Input setting using Registers

I have a simple c program for printing n Fibonacci numbers and I would like to compile it to ELF object file. Instead of setting the number of fibonacci numbers (n) directly in my c code, I would like ...
0
votes
2answers
126 views

efficacy of register allocation algorithms!

i'm trying to do a research/project on register allocation using graph coloring where i am to test the efficiency of different optimizing register allocation algorithms in different scenarios. how do ...