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); }
|
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?
| |||
|
show 1 more comment
feedback
|
|
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 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 If you have the source, most compilers allow you to output assembler, sometimes mixed with the source code. For Visual C++ this is /Fa. | |||||
feedback
|
|
If you're on an ELF system and have GNU binutils you can call | |||
|
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, | |||
|
feedback
|
|
You can use | |||
|
feedback
|
inttemporaries in1+Foo()+2+Bar()+3are 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