I would like to the #define directive inside of a quotation. Here's the problem:

There is a built-in function in the embedded platform that I'm using that takes literal assembly code as a string. I would like to wrap this into a macro.

__asm__("goto 0x2400");

The above built-in function the processor jumps to the code at location 0x2400 and starts executing at that address (for those wondering, I'm writing a bootloader which is why this is necessary). Because the address is in the string, I cannot easily replace it. I need a way to make the function generic so that I can start executing code at any address. For example:

#define ASM_GOTO __asm__("goto X")

This will not result in a correct text replacement because the X is in quotes. Is there a way around this?

link|improve this question

60% accept rate
feedback

3 Answers

up vote 7 down vote accepted
#define ASM_GOTO(X) __asm__("goto " #X)

This has a slight problem, though:

#define MAGIC_ADDRESS 0x2400
ASM_GOTO(MAGIC_ADDRESS);

Results in __asm__("goto " "MAGIC_ADDRESS");, which I expect isn't what you want.

So,

#define STRINGIZE(X) #X
#define ASM_GOTO(X) __asm__("goto " STRINGIZE(X))

is probably more like it, since in the expansion of ASM_GOTO, X gets expanded before STRINGIZE acts on it.

If you didn't already know, be aware that although the result from the preprocessor is "goto " "0x2400" (two string literal tokens), they're combined during compilation into a single string literal (5.1.1.2/6 of C99). This occurs after macros are expanded (4), but before semantic analysis (7).

link|improve this answer
This works. Thanks for the idea to use two defines. I was stuck at the first one. – jliu83 Aug 9 '11 at 17:07
feedback

Try this:

#define ASM_GOTO(X) __asm__("goto "#X)
link|improve this answer
This does not work if you define the address in another define. See chosen answer for the error. – jliu83 Aug 9 '11 at 17:26
Indeed. But it does work for the question as originally posted. If you wanted expansion of symbolic addresses then you should really have stated this in the question. – Paul R Aug 9 '11 at 18:28
feedback

You need to use the stringize operator. Something like:

#define ASM_GOTO(x) __asm("goto " #x)

should do what you need it to do.

link|improve this answer
This does not work if you define the address in another define. See chosen answer for the error. – jliu83 Aug 9 '11 at 17:26
feedback

Your Answer

 
or
required, but never shown

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