Bug 416301 - s390x: "compare and signal" not supported
Summary: s390x: "compare and signal" not supported
Status: RESOLVED FIXED
Alias: None
Product: valgrind
Classification: Developer tools
Component: vex (show other bugs)
Version: unspecified
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Andreas Arnez
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-01-15 15:41 UTC by Andreas Arnez
Modified: 2020-02-06 11:33 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Support compare-and-signal instructions (16.31 KB, patch)
2020-01-28 13:54 UTC, Andreas Arnez
Details
updated patch with IROp cmp_op argument for s390_irgen_CxB () (14.33 KB, patch)
2020-01-30 11:17 UTC, Mark Wielaard
Details
Updated patch with fixed CxB and added test case (17.01 KB, patch)
2020-01-30 12:45 UTC, Andreas Arnez
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Andreas Arnez 2020-01-15 15:41:02 UTC
Valgrind does not currently support the "compare and signal" floating-point instructions (KEBR, KDBR, KXBR, KEB, and KDB).  This didn't matter much since they weren't emitted by GCC or LLVM until recently.  But that has changed; newer GCC and LLVM versions *do* emit these instructions.  Thus Valgrind should support them now.
Comment 1 Julian Seward 2020-01-22 08:03:48 UTC
Andreas, given that newer GCC and LLVM do emit these now, it sounds like supporting them is potentially of high priority.  What's your view?
Comment 2 Andreas Arnez 2020-01-27 14:28:40 UTC
(In reply to Julian Seward from comment #1)
> Andreas, given that newer GCC and LLVM do emit these now, it sounds like
> supporting them is potentially of high priority.  What's your view?
Absolutely.  I have a patch ready, although it doesn't handle the "signalling" part correctly yet.  Then again, signalling doesn't seem to be handled correctly for s390x at all yet.  Do you know how important the correct handling of FP signals is considered to be on other platforms?
Comment 3 Andreas Arnez 2020-01-28 13:54:56 UTC
Created attachment 125487 [details]
Support compare-and-signal instructions

This is the patch I was referring to.  It should be sufficient unless accurate FP signal handling is needed.
Comment 4 Mark Wielaard 2020-01-30 09:32:21 UTC
I tried the patch on koji (remote builder) on Fedora rawhide with GCC10. It seems to cause:

 op name: CmpF32
 op type is (F32,F32) -> I32
arg tys are (F64,F64)

IR SANITY CHECK FAILURE

in a couple of tests.

Unfortunately I don't have direct access to the machine to test better. Also note that this is a straight backport to 3.15.0, not a full git master.

https://kojipkgs.fedoraproject.org//work/tasks/1760/41221760/build.log
Comment 5 Mark Wielaard 2020-01-30 11:03:37 UTC
(In reply to Mark Wielaard from comment #4)
> I tried the patch on koji (remote builder) on Fedora rawhide with GCC10. It
> seems to cause:
> 
>  op name: CmpF32
>  op type is (F32,F32) -> I32
> arg tys are (F64,F64)
> 
> IR SANITY CHECK FAILURE
> 
> in a couple of tests.

I think, but haven't verified yet, that this is caused by s390_irgen_CxB () taking an IRType for which two IRTemps are created (op1 and op2) which are then used with binop(Iop_CmpF32, mkexpr(op1), mkexpr(op2)). The Iop_CmpF32 is used unconditionally, but the type given to s390_irgen_CxB () can be Ity_F32 or Ity_F64.
Comment 6 Mark Wielaard 2020-01-30 11:17:32 UTC
Created attachment 125541 [details]
updated patch with IROp cmp_op argument for s390_irgen_CxB ()

Testing this updated patch that adds an IrOp cmp_op argument to s390_irgen_CxB which takes an Iop_CmpF32 or Iop_CmpF64 and uses that for the binop.
Comment 7 Mark Wielaard 2020-01-30 11:46:54 UTC
Test with the revised patch look good. There are a couple of failures, but none seem related to this issue:

== 746 tests, 4 stderr failures, 0 stdout failures, 0 stderrB failures, 0 stdoutB failures, 2 post failures ==
memcheck/tests/leak_cpp_interior         (stderr)
memcheck/tests/memcmptest                (stderr)
memcheck/tests/vbit-test/vbit-test       (stderr)
drd/tests/tc04_free_lock                 (stderr)
massif/tests/new-cpp                     (post)
massif/tests/overloaded-new              (post)

https://kojipkgs.fedoraproject.org//work/tasks/6548/41246548/build.log
Comment 8 Andreas Arnez 2020-01-30 12:45:05 UTC
Created attachment 125542 [details]
Updated patch with fixed CxB and added test case

Functionally equivalent to the updated patch by Mark.  This version also adds testing for the instructions CEB, CDB, KEB, and KDB, which were untested before.  The new test would have caught the problem.
Comment 9 Andreas Arnez 2020-02-06 11:33:45 UTC
Pushed as e83c28e10c99d52b22ee69e25857dac8bf3d5240 after approval via IRC.