Re: Re[2]: object code execution statistics

2005-04-26 Thread James E Wilson
On Tue, 2005-04-26 at 01:57, Sergei Tovpeko wrote: > Does it mean that GCOV have much more data (in its binary format) > but don't treat them and out to user in human format? We have branch taken/not-taken counts, and from that, we can compute basic block execution counts and branch probabilities.

Re: object code execution statistics

2005-04-26 Thread Joe Buck
On Tue, Apr 26, 2005 at 12:57:54PM +0400, Sergei Tovpeko wrote: > Hello James, > > Tuesday, April 26, 2005, 6:36:56 AM, you wrote: > > JEW> Sergei Tovpeko wrote: > >> Is there any util that would produce result containing the asm code > >> execution staticstics ??? > > JEW> I assume you want ass

Re[2]: object code execution statistics

2005-04-26 Thread Sergei Tovpeko
Hello James, Tuesday, April 26, 2005, 6:36:56 AM, you wrote: JEW> Sergei Tovpeko wrote: >> Is there any util that would produce result containing the asm code >> execution staticstics ??? JEW> I assume you want assembly instruction execution counts. You could JEW> produce this info from gcov wi

Re: object code execution statistics

2005-04-25 Thread James E Wilson
Sergei Tovpeko wrote: Is there any util that would produce result containing the asm code execution staticstics ??? I assume you want assembly instruction execution counts. You could produce this info from gcov with a bit of work, as gcov already gives you execution counts for basic blocks. You

object code execution statistics

2005-04-24 Thread Sergei Tovpeko
Hello everybody! Is there any util that would produce result containing the asm code execution staticstics ??? The object code was produced by GCC. The main thing I need is to know how much the specific assembler command of the compiled program was executed. I've seen the GCOV tool. It would be su