Is there a way to inspect object file generated from code below ( file1.o ) for presence of compiler introduced temporary? What tools can we use to obtain such info from object files?

//file1.cpp
void func(const int& num){}
int main(){   func(2);  }
link|improve this question
1  
Is there a particular reason to do this? – Etienne de Martel Nov 24 '10 at 14:53
I'm with @Etienne on this. Rather than asking us "How do I <neigh_impossible_task>?" ask us "How can I achieve <X>?", where X refers to the actual goal you currently (and erroneously) want to achieve by doing <neigh_impossible_task>. – sbi Nov 24 '10 at 15:07
Temporaries such as the int temporaries in 1+Foo()+2+Bar()+3 are going to be bloody hard to detect. The compiler will just use one register for the accumulation, but C++ formally had three temporaries during the evaluation. – MSalters Nov 24 '10 at 15:20
I don't see any temporaries in the above code. Is this homework? – Loki Astari Nov 24 '10 at 15:36
@Martin York, the compiler is allowed to create a temporary before binding an r-value to a reference. – avakar Nov 24 '10 at 20:04
show 1 more comment
feedback

4 Answers

The easiest way I can think of to do this is to load up a program that uses the object file and disassemble the function in the debugger. The program code you posted would work fine for this. Just break on the call to func and then display the assembler when you single-step into the function.

In a more complex program you can usually display the assembler code for a given function by name. Check your debugger documentation for how to do this. On Windows (Visual Studio) you can open the Disassembly window and enter the name of the function to display the assembler code.

If you have the source, most compilers allow you to output assembler, sometimes mixed with the source code. For Visual C++ this is /Fa.

link|improve this answer
1  
Note: If using gdb, it can open an object file directly and disassemble its functions. gdb file1.o, (gdb) disas main, (gdb) disas func. But references to other symbols will look weird. – aschepler Nov 24 '10 at 15:34
feedback

If you're on an ELF system and have GNU binutils you can call readelf, probably with the -s switch.

link|improve this answer
feedback

If you have the source available, it is probably easier to look at the assembler file generated by the compiler (-save-temps for gcc). Otherwise, objdump is your friend.

link|improve this answer
feedback

You can use clang -cc1 --ast-print-xml to get a XML representation of a translation unit. The presence of temporaries can be easily detected from the AST.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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