I remember seeing a way to use extended gcc inline assembly to read a register value and store it into a C variable. I cannot though for the life of me remember how to form the asm statement. Any help is much appreciated.
|
|
Here is a way to get ebx:
The result:
Edit: The "=r"(i) is an output constraint, telling the compiler that the first output (%0) is a register that should be placed in the variable "i". At this optimization level (-O5) the variable i never gets stored to memory, but is held in the eax register, which also happens to be the return value register. |
||||
|
|
|
Going in a different direction than other answers so far, since I'm not sure what you want. GCC Manual § 5.40 Variables in Specified Registers
GCC Manual § 3.18 Options for Code Generation Conventions
This can replicate Richard's answer in a simpler way,
although this is rather meaningless, as you have no idea what's in the If you combined these two, compiling this with
you can ensure that a C variable always uses resides in a register for speedy access and also will not get clobbered by other generated code. (Handily, On the other hand, this definitely isn't portable, and usually isn't a performance benefit either, as you're restricting the compiler's freedom. |
|||
|
|
|
I don't know about gcc, but in VS this is how:
Essentially, I moved the data in |
|||||
|
|
|
|||||
|
|
This will move the stack pointer register into the sp variable.
Just replace 'esp' with the actual register you are interested in (but make sure not to lose the %%) and 'sp' with your variable. |
||||
|
|
|
From the GCC docs itself: http://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html |
|||
|
|