8269179: Crash in TestMacroLogicVector::testSubWordBoolean: assert(_base >= VectorMask && _base <= VectorZ) failed: Not a Vector #123
Conversation
…ase >= VectorMask && _base <= VectorZ) failed: Not a Vector
|
@DamonFool The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Check introduced by 8267652, fix looks good to me. |
@DamonFool This change now passes all automated pre-integration checks. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been no new commits pushed to the
|
Thanks @jatin-bhateja , @vnkozlov and @neliasso . |
Going to push as commit a30141d.
Your commit was automatically rebased without conflicts. |
@DamonFool Pushed as commit a30141d. |
Hi all,
compiler/vectorization/TestMacroLogicVector.java crashed on AVX512 machines.
Here is the symptom and stack trace:
The reason is that for vpternlog_mem,
n->in(1)
points to BinaryNode.This is incorrect since
BinaryNode->bottom_type()
returnsType::BOTTOM
.So it should be something like
n->in(1)->in(1)
.Thanks.
Best regards,
Jie
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk17 pull/123/head:pull/123
$ git checkout pull/123
Update a local copy of the PR:
$ git checkout pull/123
$ git pull https://git.openjdk.java.net/jdk17 pull/123/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 123
View PR using the GUI difftool:
$ git pr show -t 123
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk17/pull/123.diff