My requirement is to set EDI register using a variable with inline assembly. I wrote the following snippet but it fails to compile.
uint32_t value = 0;
__asm__ __volatile__("mov %1,%%edi \n\t"
: "=D"
: "ir" (value)
:
);
Errors I get are
cyg_functions.cpp(544): error: expected a "(" : "ir" (value) ^
cyg_functions.cpp(544): internal error: null pointer : "ir" (value)
Edit
I guess I wasn't clear on the problem specification. Let's say my requirement is as follows.
- There are two int variables val and result.
- I need to
- Set the value of variable val to %%edi clobbering whatever in there already
- Multiply %%edi value by 2
- Set %%edi value back to result variable
How can this be stated with inline assembly? Though this is not exactly my requirement answer to this (specifically the 1st step) would solve my problem. I need the intermediate to be specifically in EDI register.
I have read your comments, and the requirements here still makes no sense to me. However, making sense is not a requirement. Such being the case:
This may be easier to understand if you read it from the bottom up.