hg: valhalla/valhalla: Scanner, parser, semantic analysis and attribution support for value types (original) (raw)

Karen Kinnear karen.kinnear at oracle.com
Tue Jan 30 17:28:11 UTC 2018


Srikanth,

I have not yet had a time to look through the code, but I wanted to get back to you right away.

First - many many thanks for doing this so quickly and for asking for feedback at this early phase.

Some clarifications to the list below. My apologies if I incorrectly specified some to you. Thank you for your understanding A we have been evolving some key issues such as how to deal with signatures and nullability. So this is a good time to touch base.

Also - can you touch base with Mr Simms on the repos - my understanding was that the “exp” branch was for independent performance experiments based on JDK 11 without value types support, and he was going to create a new branch ?name TBD? for our joint prototype.

On Jan 30, 2018, at 4:21 AM, Srikanth <srikanth.adayapalam at oracle.com> wrote:

Hello, The commit below is the record of the change set I pushed to valhalla "exp" branch that contains the javac changes for scanner, parser, semantic analysis and attribution support for value types. Most of this is leveraged from the existing prototype and tweaked for the present work. No code generation support exists at the moment. I will look into it now. See below for the summary of changes and a couple of questions. Summary of changes: _- Tag a type declaration as being a value type with ByValue modifier (>= JDK11) yes - Value types may not declare a super class not even j.l.O current proposal is that a value type must explicitly declare j.l.O as the super class - Value class declarations and their instance fields must be final. yes - Value types may not declare fields of their own types either directly or indirectly. yes - Null cannot be assigned to value types This is a very new proposal - still in discussion

http://mail.openjdk.java.net/pipermail/valhalla-dev/2018-January/003721.html

      Proposal is to add in the classfile the ACC_NON_NULLABLE flag for FieldInfo
      — I do not know what the language support should be for a prototype?
      — keyword? annotation? Needs a langtools team discussion, perhaps
      before that all gets sorted out stick with the keywords like the rest of the prototype,
      e.g. __NonNullable

     If the field is declared with the ACC_NON_NULLABLE, then writing to this field
     at runtime with throw and NPE.
     Given that it is illegal to use this flag for an object class (vs. a value class)
     javac could catch both the use of this class for an object class, and catch
     assigning these fields to null.

     Let us know if you see a problem with this approach for prototyping

- Null cannot be casted to or compared with value types. Changed: null can be cast to a value type or compared with a value type (we left the semantics of checkcast and instanceof unchanged) (see below for comparison discussion)

_- Support for static value factories and value instance creation via MakeDefault() - Values have no instance lock and so may not be synchronized upon. clarify: it is illegal to declare a non-static synchronized method for a value class

- Values have no identity and consequently the method java.lang.System.identityHashCode may not be invoked on them and I had assumed that java.lang.System.identityHashCode() would be revised to throw an exception at runtime for values, not that javac would catch this - The following methods from j.l.O are not allowed on value receivers: - clone() - finalize() - wait() - wait(long), - wait(long, int) - notify - notifyAll Actually they all are - we will be rewriting the j.l.O methods to throw runtime errors if this happens, so we do not need javac to disallow this (we will run into this at runtime due to inheritance when passing an Object or interface and the receiver is a value instance - so we have to do a runtime check anyway) - Value instances may not be compared with == or != The proposal was that value instances MAY be compared with if_acmpeq/if_acmp_ne, and the bytecode will return FALSE if either argument is a value type This presupposes a model in which “most” code uses a check of ==/!=, null check, .equals() check

- Tests for the above restrictions.

Questions: 1. ATM, javac forbids comparison of values using != or ==. This behavior is simply brought forward from the original valhalla implementation. Is this what we want in the present prototype ? (in the context of acmp performance characterization ?)

_2. The support in the parser allows inner class to be declared as ByValue. Do we want to restrict values to top level classes ? I seem to recall this being suggested a while ago - but I am unable to dig up the context. I added this to the list of open design questions - I think that is a language choice, I don’t know why the JVM would care since today it knows nothing really about top level vs inner classes. Also brings up the question of withfield (renamed) and where it is legal to call it - explicit factories, any method in the value class itself, nestmates?

thanks so much, Karen

Thanks! Srikanth

On Tuesday 30 January 2018 02:49 PM, srikanth.adayapalam at oracle.com wrote: Changeset: 8d76e47a91e7 Author: sadayapalam Date: 2018-01-30 14:45 +0530 URL: http://hg.openjdk.java.net/valhalla/valhalla/rev/8d76e47a91e7

Scanner, parser, semantic analysis and attribution support for value types ! src/java.compiler/share/classes/javax/lang/model/element/Modifier.java ! src/jdk.compiler/share/classes/com/sun/source/tree/NewClassTree.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Flags.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Source.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/MemberEnter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TypeEnter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/parser/Tokens.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/Names.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/Utils.java ! src/jdk.jshell/share/classes/jdk/jshell/CompletenessAnalyzer.java ! test/langtools/tools/javac/diags/examples.not-yet.txt + test/langtools/tools/javac/diags/examples/ValuesNotSupported.java + test/langtools/tools/javac/valhalla/lworld-values/CheckClone.java + test/langtools/tools/javac/valhalla/lworld-values/CheckClone.out + test/langtools/tools/javac/valhalla/lworld-values/CheckCyclicMembership.java + test/langtools/tools/javac/valhalla/lworld-values/CheckCyclicMembership.out + test/langtools/tools/javac/valhalla/lworld-values/CheckEquals.java + test/langtools/tools/javac/valhalla/lworld-values/CheckEquals.out + test/langtools/tools/javac/valhalla/lworld-values/CheckExtends.java + test/langtools/tools/javac/valhalla/lworld-values/CheckExtends.out + test/langtools/tools/javac/valhalla/lworld-values/CheckFinal.java + test/langtools/tools/javac/valhalla/lworld-values/CheckFinal.out + test/langtools/tools/javac/valhalla/lworld-values/CheckFinalize.java + test/langtools/tools/javac/valhalla/lworld-values/CheckFinalize.out + test/langtools/tools/javac/valhalla/lworld-values/CheckIdentityHash.java + test/langtools/tools/javac/valhalla/lworld-values/CheckIdentityHash.out + test/langtools/tools/javac/valhalla/lworld-values/CheckIdentityHash01.java + test/langtools/tools/javac/valhalla/lworld-values/CheckIdentityHash01.out + test/langtools/tools/javac/valhalla/lworld-values/CheckMakeDefault.java + test/langtools/tools/javac/valhalla/lworld-values/CheckMakeDefault.out + test/langtools/tools/javac/valhalla/lworld-values/CheckNullAssign.java + test/langtools/tools/javac/valhalla/lworld-values/CheckNullAssign.out + test/langtools/tools/javac/valhalla/lworld-values/CheckNullCastable.java + test/langtools/tools/javac/valhalla/lworld-values/CheckNullCastable.out + test/langtools/tools/javac/valhalla/lworld-values/CheckStaticValueFactory.java + test/langtools/tools/javac/valhalla/lworld-values/CheckStaticValueFactory.out + test/langtools/tools/javac/valhalla/lworld-values/CheckSuperCompileOnly.java + test/langtools/tools/javac/valhalla/lworld-values/CheckSync.java + test/langtools/tools/javac/valhalla/lworld-values/CheckSync.out + test/langtools/tools/javac/valhalla/lworld-values/CheckSynchronized.java + test/langtools/tools/javac/valhalla/lworld-values/CheckSynchronized.out + test/langtools/tools/javac/valhalla/lworld-values/CheckValueFactoryWithReference.java + test/langtools/tools/javac/valhalla/lworld-values/CheckValueFactoryWithReference.out + test/langtools/tools/javac/valhalla/lworld-values/CheckValueModifier.java + test/langtools/tools/javac/valhalla/lworld-values/CheckValueModifier.out + test/langtools/tools/javac/valhalla/lworld-values/Point.java



More information about the valhalla-dev mailing list