LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 39295 - Merge r339260 into the 7.0 branch
Summary: Merge r339260 into the 7.0 branch
Status: RESOLVED FIXED
Alias: None
Product: libraries
Classification: Unclassified
Component: Backend: PowerPC (show other bugs)
Version: trunk
Hardware: PC All
: P enhancement
Assignee: Hal Finkel
URL:
Keywords:
Depends on:
Blocks: release-7.0.1
  Show dependency tree
 
Reported: 2018-10-15 06:25 PDT by Nemanja Ivanovic
Modified: 2018-11-29 20:51 PST (History)
3 users (show)

See Also:
Fixed By Commit(s): r339260 r347957


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nemanja Ivanovic 2018-10-15 06:25:33 PDT
An issue was reported to us internally by a customer. We had an upcoming fix for it so didn't open a bug since the fix had already been planned to go upstream. It turned out that we committed this after the release split.
This was an oversight on my end. We need this merged into 7.0.1.
Comment 1 Tom Stellard 2018-10-19 13:24:10 PDT
Does this fix a bug or is it purely an optimization?
Comment 2 Nemanja Ivanovic 2018-10-22 03:57:44 PDT
It does fix a bug in the client's proprietary code. The client has confirmed the fix when it was committed but we just forgot to ask for this to be merged in the release branch in time for the 7.0.0 release.
Comment 3 Tom Stellard 2018-10-22 09:41:51 PDT
Hi Hal,

Is this OK to merge?

https://reviews.llvm.org/rL339260
Comment 4 Hal Finkel 2018-11-28 14:29:16 PST
(In reply to Tom Stellard from comment #3)
> Hi Hal,
> 
> Is this OK to merge?
> 
> https://reviews.llvm.org/rL339260

Nemanja, what was the bug?

This commit looks like it is intended to be a code-quality enhancement, and is, but it's non-trivial. It adds several new patterns, some Endian-dependent, and changes other logic, and pulling this into a release branch makes me somewhat nervous.
Comment 5 Nemanja Ivanovic 2018-11-29 04:28:13 PST
Ah, yes I remember this one.
It was with the code that prevents us from emitting a splat when it is fed by a 32-bit load (with the assumption that LXVWSX will be emitted for that in every case). However, there is a case where we won't emit LXVWSX and it is when the 32-bit load is a pre-inc load (since we don't have an update form of this instruction).

Normally, we would have pulled that out of the patch and committed separately as a bug fix, but the timing of the report was kind of unfortunate.

If I recall correctly, they had contacted me, I did a bit of investigating and realized that this patch will likely fix it. By the time they had a chance to verify that this fixes it, the patch had already been upstreamed (and they also reported that ToT at the time did not exhibit the problem).

I realize that this is kind of a weird patch to push into the release branch and I apologize for this mixup.
Comment 6 Hal Finkel 2018-11-29 11:50:20 PST
(In reply to Nemanja Ivanovic from comment #5)
> Ah, yes I remember this one.
> It was with the code that prevents us from emitting a splat when it is fed
> by a 32-bit load (with the assumption that LXVWSX will be emitted for that
> in every case). However, there is a case where we won't emit LXVWSX and it
> is when the 32-bit load is a pre-inc load (since we don't have an update
> form of this instruction).
> 
> Normally, we would have pulled that out of the patch and committed
> separately as a bug fix, but the timing of the report was kind of
> unfortunate.
> 
> If I recall correctly, they had contacted me, I did a bit of investigating
> and realized that this patch will likely fix it. By the time they had a
> chance to verify that this fixes it, the patch had already been upstreamed
> (and they also reported that ToT at the time did not exhibit the problem).
> 
> I realize that this is kind of a weird patch to push into the release branch
> and I apologize for this mixup.

We can pull this in; I definitely understand how timing of these things can be unfortunate. Under the circumstances, pulling this in is probably the best option. It's been okay in trunk for some time now.
Comment 7 Tom Stellard 2018-11-29 20:51:51 PST
Merged: r347957