48

If I define a function macro with no actual body, is it like an empty string with the compiler (i.e. It doesn't generate any extra instructions at compile time)?

Example:

#define SomeMacro(a) SomeMacro("hello"); // This line doesn't add any instructions, does it? 

4 Answers 4

64

You're absolutely correct, the empty macro doesn't generate any code.

I've seen two places where this is useful. The first is to eliminate warnings when a function parameter isn't used:

#define UNUSED(x) int foo(int UNUSED(value)) { return 42; } 

The second is when you use conditionals to determine if there should be code or not.

#ifdef LOGGING_ENABLED #define LOG(x) log_message(x) #else #define LOG(x) #endif 
Sign up to request clarification or add additional context in comments.

9 Comments

Hi I do n't understand your first code Here I tried .. I think its just an error to write int foo(int UNUSED(value)) if macro definition is balank ?
@GrijeshChauhan, you've just discovered one of the differences between C and C++. See here: codepad.org/flX8m3sk
Thanks Got it :) nice working.. actually I asked a question a day back.
In addition to I got answer and your answer I got one more usefulness of macro without body here THROW_ ..
@DarioOO I've seen that done as a macro too, just to document why you're doing such a strange thing.
|
34

Your code is not totally correct, I suggest you to put empty braces in your macro

#define somemacro(a) {} 

the reason is simple, you code will be much more safe!

take this example:

if(Value) somemacro(a) else somemacro(b) 

If the macro is empty, your code will not compile! (Expected primary-expressione before "else"). Anyway certain style rules force you to write

if(Value) { somemacro(a) } else { somemacro(a) } 

so that will not be a problem.

Another option is to use ";" instead of "{}" but that option in the same case will give you compile time warnings, while empty braces will not give warnings nor errors! (semicolon is still better even if give warnings) ;)

take following case

if(value) somemacro(a); else somemacro(b); 

will expand to

if(value) {}; else {}; 

that can't compile!

That's why macros are evil

(since macros are simple text-replacement, the rule of dumbs should be to always try to manually replace the code and see what happens, there are also tools that will replace macros for you showing the expanded code.)

Still guessin if there is a macro that is totally safe? Yes it is called "NOP"

#define somemacro(a) ((void)0) 

that will work in any case (even source files of compilers use that as NOP, for example just look at "assert.h"

4 Comments

The exact intend was to show a most correct usage of macros. a empty function macro can't still be used in certain cases. So any random user reading you post must be aware that using a "((void)0)" is better choice. And anyway that's a "NOP" but not a NOP. infact no extra assembly is generated for ((void)0) while a NOP instruction is still assembly code. Safety of code should always be considered. Still no reason for thumbs down anyway.
Upvoted because this is the only answer caring about misuse – though probably the emphasis should go directly to the ((void) 0). For the ones saying that this is unnecessary (@Qix), check the very GCC manual.
Um... That's exactly what do { } while (0) idiom is for. Using plain {} for that purpose is not a good idea since it requires the user to remeber NOT to put a ; after that macro invocation.
I just showed 3 possible solutions showing why one was slightly better and the other one much more better. do {} while(0) is another valid alternative, even though some buggy compilers throw a warning for that.
7

The preprocessor performs literal substitution with all macros.

Therefore, if you define an "empty" macro, then each place that identifier appears in your code will be replaced with an empty statement by the preprocessor before the compiler ever runs.

So yes. No code will be generated for the example given in your question.

Comments

7

That's correct. Your code expands to

; 

after preprocessing.

Note that you can ask your compiler to show you the code after preprocessing (in gcc, this is the -E option; your compiler may vary).

3 Comments

The code doesn't generate anything, not even a semi-colon. (verified with gcc 4.5.2)
@shinkou, the semi-colon is outside the macro so it should be part of the final code.
@shinkou Doesn't generate any Assembly/bytecode? Or doesn't generate any code? Because the preprocessor is a separate step to the compilation and linking. The semicolon in the code in the question doesn't magically disappear after preprocessing alone; however, you're correct that in the final compiled executable it's not there.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.