-
Notifications
You must be signed in to change notification settings - Fork 109
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
8267948: [lword] Core reflection and method handles support for L/Q model #436
Conversation
👋 Welcome back mchung! A progress list of the required criteria for merging this PR into |
@mlchung This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. 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 ➡️ To integrate this PR with the above commit message to the |
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.
The runtime part looks good to me.
Fred
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.
Generally looks ok.
I think there will be confusion between Class.isPrimitive() and Class.isPrimitiveClass()
but that's the way it is.
/integrate |
Thanks Roger.
It probably becomes not so much of an issue when JEP 402 is in. |
This PR implements the primary (
ref
) mirror and secondary (val
) mirror for primitive classes [1]. The following APIs returningClass
return the primary mirror:Object::getClass
Class::getClass
Class::forName
java.lang.reflect.Member::getDeclaringClass
(i.e.Field
,Method
andConstructor
)Class::getName
andClass::getSimpleName
return the same name for theref
andval
mirror of a primitive class. Therefore, Class.forName(type.getName()) will work if the type is eitherref
orval
mirror.Class::getTypeName
returnsFoo.ref
if thisClass
is a primitive reference type. (we will revisit this for reference-favoring primitive class.)New proposed APIs:
Class::isPrimitiveClass
returns true for theref
andval
mirror of a primitive class.Class::isPrimaryType
returns true if thisClass
object represents the primary mirrorClass::asPrimaryType
returns the primary type of this class or interface.Class::isReferenceType
andClass::asReferenceType
but they will have to specify the special case for primitive types which are not (yet) primitive classes. I want to go with this initial patch to make progress for the prototype. We will follow up the API discussion next.Class::isValueType
returns true if thisClass
object represents the primary mirrorClass::asValueType
returns the primary type of this class or interface.Several tests fail when running with -Xcomp which may depend on the second phase JIT support work (JDK-8267932) which depends on this work to make progress.
[1] https://github.com/openjdk/valhalla-docs/blob/main/site/design-notes/state-of-valhalla/03-vm-model.md
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/valhalla pull/436/head:pull/436
$ git checkout pull/436
Update a local copy of the PR:
$ git checkout pull/436
$ git pull https://git.openjdk.java.net/valhalla pull/436/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 436
View PR using the GUI difftool:
$ git pr show -t 436
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/valhalla/pull/436.diff