<div dir="ltr"><div dir="ltr">Hi John,<div><br></div></div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jan 18, 2024 at 2:30 PM John Bossons <<a href="mailto:jbossons@gmail.com">jbossons@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>Maybe I am missing something, but the proposal seems to be trying to do too much. </div><div><br></div><div>Specifically: Why not simply provide that appending ! to a type specification for an object (field, array element, or parameter) means that that the object is not only null-restricted but also never zero and necessarily non-atomic unless small? </div></div></blockquote><div>First, a reminder that some objects cannot be non-atomic, mostly when fields have dependencies/constraints on each other: if you have a range, you cannot allow its lower bound to be larger than its upper bound. Non-atomic representations cannot avoid this pitfall. Also you seem to misunderstand non-atomic: if an object is non-atomic, each of its fields can update independently from each other, so a 3-d position can be non-atomic, but not so for a range. Non-atomicity is dangerous, and it should not be the default. However, if an atomic class is small enough, like OptionalInt (as now many architecture has like atomic handling of 16 bytes etc.) JVM may choose to apply non-atomic optimizations to them for better performance without violating their object constraints.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br></div><div>Why complicate the specification with an implicit constructor that a developer will never explicitly invoke? Why permit a developer to 'opt in' to non-atomic?</div></div></blockquote><div>The implicit constructor can always be called; its existence asks programmers to affirm that the zero-filled inlined instance is a valid instance. And this instance is different from a null, as null is a pointer, yet the zero-instance has a different size defined by the class layout in the stack/heap.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br>Sure, that means trying to read a zero value triggers a NPE. That just means that a type that can legitimately have a zero value cannot be specified as null-restricted, since a zero value (e.g. a {null, null} Name) is the equivalent of a null unrestricted value object. Why go beyond that? If a non-null zero value is possible, the type cannot be null-restricted and so can only be an unrestricted JEP 401 value type. End of story.</div></div></blockquote><div>You see the inlined zero instance and the null pointer have different sizes, and thus they are not exchangeable. Converting the inlined zero instance to null to throw NPE is complex and hurtful to performance as you will scan unrelated bits for almost every field access.</div><div><br></div><div>And for unrestricted value type, yes, they exist and can possibly be inlined as well if the restricted type is small enough (i.e. has space for extra bit indicating nullity) But reminder, the nullity bit itself isn't even non-atomic with (depends on) the rest of the object! You don't want the nullity to indicate null while the rest of the object indicate some sort of non-null value, which can happen in a non-atomic context.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br>With respect to non-atomic, what is new? Yes, unexpected  instances may occur without synchronization if the object is larger than the word size of the implementation. Why do we need to extend a LooselyConsistentValue interface to know/permit that?</div></div></blockquote><div>Unexpected instances don't occur without synchronization if you use finals, such as in Java's String or immutable List.of(). These APIs may capture any "permitted value" from the arrays passed in, but once constructed, the captured value remains constant no matter which thread observes the String/List object reference. (Technically, JVM implements this with a store-store fence between end of field writes in the constructor and object reference is shared anywhere, and a load-load fence between object reference read and field read) Value classes is about the safety of final fields in programming instead of the close encounter of third kinds of synchronization, volatiles, and fences.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br>Can we not keep this 'simple' (if that word has meaning in this context)? What am I missing?</div></div></blockquote><div>I think you are missing a bit about how the layout (inlining is represented in memory) and value classes (the thread safety its final offers) work, and what "non-atomic" means. Feel free to question more.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br></div><div>John</div><div><br></div><div><br></div><div><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature"><div dir="ltr">Phone:  (416) 450-3584 (cell)</div></div></div></div>
</blockquote></div></div>