lightning
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] ppc: Fix 'calli' when floating-point arguments are passed


From: Paulo César Pereira de Andrade
Subject: Re: [PATCH] ppc: Fix 'calli' when floating-point arguments are passed
Date: Fri, 9 Sep 2022 12:08:30 -0300

Em sex., 9 de set. de 2022 às 11:42, Paul Cercueil
<paul@crapouillou.net> escreveu:
>
> Hi Paulo,
>
> [snip]
>
> >>  The very last break happened as it was calling jit_new_state()
> >> again,
> >>  so I suppose the memory address that was being watched was being
> >> reused
> >>  and I stopped the debugging session there.
> >
> >   Please just do call jit_print() after finishing split_branches, for
> > example:
> >
> > Breakpoint 1, _split_branches (_jit=0x10111270) at lightning.c:2713
> > 2713        for (node = _jitc->head; node; node = next) {
> > (gdb) call _jit_print(_jit)
> > L0: /* prolog */
> >     #name
> >     #note 395
> > ...
> >
> > and let me know the output. The likely explanation for it not being
> > set,
> > assuming lightning code is not modified, is that there is some extra
> > code changing the value of r26 after it is used as a temporary.
> > Something
> > like in the range from "L2:" to the "stxi_i 0x3e7c r29 r26" below,
> > there is
> > some instruction that changes r26, and causes it to assume it is dead
> > in
> > that range, and usable as a temporary.
>
> I'll do better, I'll give you an example that reproduces the issue :)
> See the attached example.
>
> Your idea that something must be changing r26 in that slice of code
> pointed me in the right direction.
> I only changed one line in the example: there is now a jit_movi(r26, 0)
> line 58.
>
> I assume Lightning detects that r26 is already 0 anyway (because of the
> beqi just before) so it removes this instruction, causing havoc at the
> same time.

  Exactly, the instruction is being removed, and the optimizer getting
confused.
  This should not happen as the optimizations done are supposed to
be the fool proof ones, but somehow this pattern triggered a bug.
  I will try to understand it and have a patch later today.

> Cheers,
> -Paul

Thanks,
Paulo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]