-
Notifications
You must be signed in to change notification settings - Fork 171
JDK-8319405: [s390] [jdk8] Increase javac default stack size for s390x zero #385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
👋 Welcome back stuefe! A progress list of the required criteria for merging this PR into |
6d05f43 to
b1c697b
Compare
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
|
/approve |
|
@jerboaa usage: |
|
/approve yes |
|
@jerboaa |
|
@tstuefe 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 14 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
|
Thanks @jerboaa ! /integrate |
|
Going to push as commit dd43bdd.
Your commit was automatically rebased without conflicts. |
This is a JDK8 - only patch to fix failing TCK tests for javac on s390.
s390x, by default, needs a lot of stack space for C++ frames since the s390x ABI requires a 160-byte register save area per frame. That affects JDK 8 in particular since we run Zero, and the C++ interpreter builds up C-frames for Java frames; furthermore, it affects javac since it recurses a lot.
This causes several javac TCK tests to fail with SOE (stmt33002mxxx).
To pass TCK, the default stack size of javac should be increased for s390 on JDK 8.
Testing:
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk8u-dev.git pull/385/head:pull/385$ git checkout pull/385Update a local copy of the PR:
$ git checkout pull/385$ git pull https://git.openjdk.org/jdk8u-dev.git pull/385/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 385View PR using the GUI difftool:
$ git pr show -t 385Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk8u-dev/pull/385.diff
Webrev
Link to Webrev Comment