[PATCH] [SPARC] callfuncs.exp: avoid spurious register differences in sparc64 targets.

Jose E. Marchesi jose.marchesi@oracle.com
Fri Nov 20 10:29:00 GMT 2015


    >     > +	-re  "^pstate\[ \t\]+\[^\r\n\]+\r\n" {
    >     > +	    if [istarget "sparc64-*-linux-gnu"] {
    >     > +		# Filter out the pstate register, since in sparc64
    >     > +		# targets the Linux kernel disables pstate.PEF when
    >     > +		# returning from traps, giving spurious differences.
    >     
    >     Isn't this a kernel bug?  It sounds like it's impossible to debug FPU
    >     code if you e.g. step over FPU instructions?
    > 
    > No, it is not a kernel bug.  It is a consequence of how the sparc
    > kernel port handles the restoring of FP registers clobbered by kernel
    > code.  As far as I understand it:
    > 
    > When an user program uses the FPU in any way (any instruction
    > referencing FP registers for example) a fp_disabled trap is triggered
    > and the kernel enables the FPU so the user program can happily continue
    > executing FPU instructions.
    > 
    > If at some point the user program traps into the kernel (syscall, or
    > whatever) with the FPU activated the kernel saves whatever FP registers
    > it may clobber in the corresponding thread struct.  Then it disables the
    > FPU and returns to the user program.
    > 
    > Then, if the user program uses the FPU again, another fp_disabled trap
    > is triggered, and the kernel will both re-activate the FPU and restore
    > all the "dirty" FP registers that were clobbered in the previous trap.
    
    Thanks for the explanation.
    
    So until the program re-activates the FPU, when the user displays the FP
    registers, gdb actually shows the fpu registers as saved in the thread
    struct, right?  Not the values clobbered by the kernel?  I'd guess so,
    otherwise people would have noticed the breakage sooner, and assuming
    the kernel does use FPU instructions itself, then you'd get other
    spurious register differences with callfuncs.exp too.

Right.  PTRACE_GETREGS[64] always fetches the floating-point registers
saved in the thread struct save area (if a thread is ptracing itself it
saves the registers in the save area first).  At the point GDB ptraces
the target process everything is saved.

    Patch is OK assuming that.

Pushed.
Thanks.    



More information about the Gdb-patches mailing list