Re: [PATCH -v4 9/9] tracing: add function graph tracer support forMIPS

From: Wu Zhangjin
Date: Thu Oct 22 2009 - 09:31:23 EST


On Thu, 2009-10-22 at 09:17 -0400, Steven Rostedt wrote:
> On Thu, 2009-10-22 at 19:38 +0800, Wu Zhangjin wrote:
> > Hi,
> >
> > On Wed, 2009-10-21 at 13:23 -0400, Steven Rostedt wrote:
>
> > Ralf have told me -pg really works with -fomit-frame-pointer, although
> > the gcc tool tell us they are not incompatible when we use both of them
> > together, but when I remove -fno-omit-frame-pointer in
> > KBUILD_FLAGS(enabled by CONFIG_FRAME_POINTER), it definitely remove the
> > s8(fp) relative source code(Seems -fomit-frame-pionter is used by
> > default by gcc), the leaf function becomes this:
> >
> > function:
> >
> > 80101144 <au1k_wait>:
> > 80101144: 03e00821 move at,ra
> > 80101148: 0c04271c jal 80109c70 <_mcount>
> >
> > No more instruction,
> >
> > and the non-leaf function becomes,
> >
> > 80126590 <copy_process>:
> > 80126590: 27bdffa0 addiu sp,sp,-96
> > 80126594: afbf005c sw ra,92(sp)
> > 80126598: afbe0058 sw s8,88(sp)
> > 8012659c: afb70054 sw s7,84(sp)
> > 801265a0: afb60050 sw s6,80(sp)
> > 801265a4: afb5004c sw s5,76(sp)
> > 801265a8: afb40048 sw s4,72(sp)
> > 801265ac: afb30044 sw s3,68(sp)
> > 801265b0: afb20040 sw s2,64(sp)
> > 801265b4: afb1003c sw s1,60(sp)
> > 801265b8: afb00038 sw s0,56(sp)
> > 801265bc: 03e00821 move at,ra
> > 801265c0: 0c04271c jal 80109c70 <_mcount>
> >
> > It may save about two instructions for us.
> >
> > sw s8, offset(sp)
> > move s8, fp
> >
> > and also, I have tried to just search "Save" instruction, if I find one,
>
> So you look for "sw ..."?
>
> > that should be a non-leaf function, otherwise, it's leaf function, but I
> > can not prove no "Save" instruction before the leaf function's "move at,
> > ra", for example:
>
> Yes but it should never be saving the ra. You can search all
> instructions before the move at,ra until you find the save of the ra, or
> you find something that is not a save. If you find the saving of ra, it
> is not a leaf, but if you don't find the saving of ra, then it is a
> leaf.
>
> >
> > 8010113c: 03e00008 jr ra
> > 80101140: 00020021 nop
> >
> > 80101144 <au1k_wait>:
> > 80101144: 03e00821 move at,ra
> > 80101148: 0c04271c jal 80109c70 <_mcount>
> >
> > if there is "save" instruction at address 80101140, it will fail.
> > Although, I met not failure with several tries, but no prove on it! any
> > ABI protection for this? if YES, this should be a better solution, for
> > it may works without -fno-omit-frame-pointer and save several
> > instructions for us.
>
> If we don't stop at just one save, but look for the saving of ra, it
> should not fail.
>

We can not look for the saving of ra continuously(when should we stop?
if with -fno-omit-fram-pointer, we have "move s8,sp" or "addiu sp, sp,
-offset", but without it, we have no "guideboard" to know that is the
beginning of the function!), 'Cause we may find the saving of ra of
another function, which will fail at that time.

BTW: Just replace probe_kernel_read() and tracing_stop/tracing_start by
asm, it works in 32bit, but fails in 64bit, I'm trying to find why!(TLB
miss on load or ifetch, will fix it asap! and resend the patchset out!)

Regards,
Wu Zhangjin

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/