Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does the C preprocessor handle circular dependencies?

I want to know how the C preprocessor handles circular dependencies (of #defines). This is my program:

#define ONE TWO  #define TWO THREE #define THREE ONE  int main() {     int ONE, TWO, THREE;     ONE = 1;     TWO = 2;     THREE = 3;     printf ("ONE, TWO, THREE = %d,  %d, %d \n",ONE,  TWO, THREE); } 

Here is the preprocessor output. I'm unable to figure out why the output is as such. I would like to know the various steps a preprocessor takes in this case to give the following output.

# 1 "check_macro.c" # 1 "<built-in>" # 1 "<command-line>" # 1 "check_macro.c"  int main() {  int ONE, TWO, THREE;  ONE = 1;  TWO = 2;  THREE = 3;  printf ("ONE, TWO, THREE = %d,  %d, %d \n",ONE, TWO, THREE); } 

I'm running this program on linux 3.2.0-49-generic-pae and compiling in gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5).

like image 610
deepak Avatar asked Jun 12 '14 06:06

deepak


People also ask

How does the C preprocessor work?

The C Preprocessor. The C preprocessor is a macro processor that is used automatically by the C compiler to transform your program before actual compilation. It is called a macro processor because it allows you to define macros, which are brief abbreviations for longer constructs.

What is C preprocessor and write C program to describe different Preprocessors?

The C Preprocessor is not a part of the compiler, but is a separate step in the compilation process. In simple terms, a C Preprocessor is just a text substitution tool and it instructs the compiler to do required pre-processing before the actual compilation. We'll refer to the C Preprocessor as CPP.

What is circular dependency in C++?

Circular Dependencies in C++Its goal is to draw the “include” dependencies between classes in a C++ project. In particular, it allows to detect circular dependencies very easily or to check the architecture of a project.


2 Answers

While a preprocessor macro is being expanded, that macro's name is not expanded. So all three of your symbols are defined as themselves:

ONE -> TWO -> THREE -> ONE (not expanded because expansion of ONE is in progress) TWO -> THREE -> ONE -> TWO (        "                         TWO      "        ) THREE -> ONE -> TWO -> THREE (      "                         THREE    "        ) 

This behaviour is set by §6.10.3.4 of the C standard (section number from the C11 draft, although as far as I know, the wording and numbering of the section is unchanged since C89). When a macro name is encountered, it is replaced with its definition (and # and ## preprocessor operators are dealt with, as well as parameters to function-like macros). Then the result is rescanned for more macros (in the context of the rest of the file):

2/ If the name of the macro being replaced is found during this scan of the replacement list (not including the rest of the source file’s preprocessing tokens), it is not replaced. Furthermore, if any nested replacements encounter the name of the macro being replaced, it is not replaced…

The clause goes on to say that any token which is not replaced because of a recursive call is effectively "frozen": it will never be replaced:

… These nonreplaced macro name preprocessing tokens are no longer available for further replacement even if they are later (re)examined in contexts in which that macro name preprocessing token would otherwise have been replaced.

The situation which the last sentence refers rarely comes up in practice, but here is the simplest case I could think of:

#define two one,two #define a(x) b(x) #define b(x,y) x,y a(two) 

The result is one, two. two is expanded to one,two during the replacement of a, and the expanded two is marked as completely expanded. Subsequently, b(one,two) is expanded. This is no longer in the context of the replacement of two, but the two which is the second argument of b has been frozen, so it is not expanded again.

like image 192
rici Avatar answered Sep 23 '22 22:09

rici


Your question is answered by publication ISO/IEC 9899:TC2 section 6.10.3.4 "Rescanning and further replacement", paragraph 2, which I quote here for your convenience; in the future, please consider reading the specificaftion when you have a question about the specification.

If the name of the macro being replaced is found during this scan of the replacement list (not including the rest of the source file’s preprocessing tokens), it is not replaced. Furthermore, if any nested replacements encounter the name of the macro being replaced, it is not replaced. These nonreplaced macro name preprocessing tokens are no longer available for further replacement even if they are later (re)examined in contexts in which that macro name preprocessing token would otherwise have been replaced.

like image 35
Eric Lippert Avatar answered Sep 23 '22 22:09

Eric Lippert