vote up 3 vote down star
1

I am analyzing a legacy code which heavily using macro , I am lost in understanding how macro are expanding in code.

Could any one suggest me some tool or technique so that i can study actual code generated from macro expansion.

Platform : Windows XP Language : C++ Compiler : VC6

Thanks in Advance

flag

2  
Be careful what you wish for. It is probably much worse after macro expansion. – mmyers Oct 5 at 16:13
@mmyers , I just want to understand how code is working , I am not going to change it – singh Oct 5 at 16:14

4 Answers

vote up 5 vote down check

With visual studio you can use the Generate Preprocessed File option.

In the properties for your project select

C/C++/Preprocessor/

In that tab there is an option to:

generate a preprocessed file.

Select Yes, with numbers.

link|flag
vote up 6 vote down

To run the GCC as a pre-processor only do:

gcc -E source-file.cc > processed-source-file.cc

It also do all the #includes that you may or may not want.

link|flag
Dear Chen Levy , thank for writing, But my code is windows & VC6 based – singh Oct 5 at 16:28
vote up 4 vote down

Run the pre-processor (cpp) on the source file.

link|flag
2  
Chen has shown how to do this using GCC. With VC, you need to pass /i. – sbi Oct 5 at 16:23
vote up 1 vote down

Since you're using Visual C this doesn't help you, but it might be helpful to others to mention:

Netbeans 6.7 is able to display the macro expanded version of C/C++ code in a separate window during editing.

link|flag
thanks i will try with Netbeans, I wont compile but can edit using it :) – singh Oct 5 at 16:45

Your Answer

Get an OpenID
or

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