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 allocator will not use them.

I understand that I can do something like this, which might set aside this register for this variable

register int var1 asm ("EBX") = 1984;
register int var2 asm ("r9") = 101;

The problem is that I'm inserting new instructions (for a hardware simulator) directly and GCC and GAS don't recognise these yet. My new instructions can use the existing general purpose registers and I want to make sure that I have some of them (i.e. r12->r15) reserved.

Right now, I'm working in a mockup environment and I want to do my experiments quickly. In the future I will append GAS and add intrinsics into GCC, but right now I'm looking for a quick fix.

Thanks!

link|improve this question

1  
Do you need them to be reserved at all times, or merely over the course of some specific inline asm blocks? – bdonlan Jul 13 '11 at 17:16
Yes, I should have specified this. I only need them reserved in the context of small functions. I fear that by reserving them globally, it might have a decremental impact on performance. – Bob Jul 13 '11 at 17:25
feedback

3 Answers

up vote 8 down vote accepted

When writing GCC inline assembler, you can specify a "clobber list" - a list of registers that may be overwritten by your inline assembler code. GCC will then do whatever is needed to save and restore data in those registers (or avoid their use in the first place) over the course of the inline asm segment. You can also bind input or output registers to C variables.

For example:

inline unsigned long addone(unsigned long v)
{
    unsigned long rv;
    asm("mov $1, %%eax;"
        "mov %0, %%ebx;"
        "add %%eax, %%ebx"
        : /* outputs */  "b" (rv)
        : /* inputs */   "g" (v) /* select unused general purpose reg into %0 */
        : /* clobbers */ "eax"
       );
}

For more information, see the GCC-Inline-Asm-HOWTO.

link|improve this answer
Would give you +1, except the syntax in your example is wrong -- you need the actual register names in the clobber list rather than a constraint code, so "eax" rather than "a" – Chris Dodd Jul 13 '11 at 17:47
@Chris, oops - fixed :) – bdonlan Jul 13 '11 at 17:51
Thank you, this is very helpful as well. :-) – Bob Jul 13 '11 at 17:57
Also your asm operand order is backwards and syntax for constants is wrong... Your first line tries to store the contents of eax at address 1 rather than loading a 1 into eax... – R.. Jul 13 '11 at 19:43
@R: Oops. I'm used to the RCM2100 (softools winide) embedded assembler, don't do much asm on GNU/x86 :) – bdonlan Jul 13 '11 at 20:27
feedback

If you write an inline asm block for your new instructions, there are commands that inform GCC what registers are used by that block and how they are used. GCC will then avoid using those registers or will at least save and reload their contents.

link|improve this answer
Thank you for the answer. If you have a link to the documentation of this feature, it would be fantastic. – Bob Jul 13 '11 at 17:26
1  
great, thank you! – Bob Jul 13 '11 at 17:57
feedback

If you use global explicit register variables, these will be reserved throughout the compilation unit, and will not be used by the compiler for anything else (it may still be used by the system's libraries, so choose something that will be restored by those). local register variables do not guarantee that your value will be in the register at all times, but only when referenced by code or as an asm operand.

link|improve this answer
Thank you, I did not realise that the global register variables guaranteed this. – Bob Jul 13 '11 at 17:26
@Bob: You should probably see this page as well, it includes some caveats (eg. signals), it also mentions the -ffixed-reg, which you can use if recompiling the library not to mess with your register, instead of adding a global register variable. gcc.gnu.org/onlinedocs/gcc-4.6.1/gcc/… – Hasturkun Jul 13 '11 at 17:32
I think this -ffixed-reg seems perfect! I assume because it's a code generation flag that if I inline assembly that explicitly uses these forbidden registers it will be okay? – Bob Jul 13 '11 at 17:58
Yes, but this also means that inline asm in library headers can also use these forbidden registers. They'll declare clobbers, but GCC won't try to restore them for you. On x86, also, reserving registers can have a major performance impact. – bdonlan Jul 13 '11 at 18:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.