-
Notifications
You must be signed in to change notification settings - Fork 720
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
Value Types: java.lang.ArrayStoreException with null-restricted array with -Xint #20223
Comments
@hangshao0 @theresa-m If I'm not mistaken, I'm under the impression that null restricted array should work with the latest code with the interpreter. Could you take a look? Thank you! @hzongaro fyi |
Once fixed, the test cases here should be added into https://github.com/eclipse-openj9/openj9/blob/master/test/functional/Valhalla/src_qtypes/org/openj9/test/lworld/ValueTypeSystemArraycopyTests.java. |
In testing OpenJ9 pull request #20291 and OMR pull request eclipse-omr/omr#7477, I removed the
The output that results begins
but the expected output was:
What I was wondering was, is the array that's stored in If so, is the array expected to be flattened? If it's not expected, is that another instance of the problem that @a7ehuo reported above, or is this a distinct problem, in which case I will open a separate issue? |
@hzongaro Does the above issue happen with #20250 and also my change eclipse-omr/omr#7452 and #20112? |
It looks like the same problem #20250 is addressing. |
Issue Number: 20223 |
I'm running the following test with the latest
openj9-openjdk-jdk.valuetypes
with-Xint
java.lang.ArrayStoreException
happens with bothtest1
andtest2
. These two tests copy between a null-restricted array and a regular array with array flattening enabled.The text was updated successfully, but these errors were encountered: