This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: 3.0-pre vs 3.0 on Haney speed


Paolo Carlini <pcarlini@unitus.it> writes:

> Hi,
> 
> Joe Buck wrote:
> 
> > To make progress, it would help to see the assembly language for a
> > representative inner loop to see what's going wrong.
> 
> I agree with you. I will try in the next days.
> Do you have any tip which may help me in this task? I'm afraid it will take
> me some time to distillate the relevant loop... the source code is gory
> C++...

Assuming you're using GNU binutils.

gcc -g -Wa,-a=listing ...

will give you a listing with mixed source/assembly in "listing"
Another way is to run objdump -S on the object file or resulting
executable. Also requires -g.


-Andi


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]