-
Notifications
You must be signed in to change notification settings - Fork 108
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
8311675: [lworld+vector] Max Species support. #931
Changes from 1 commit
822b024
d721d71
993674e
945eb0f
ffa108c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,6 +153,9 @@ bool InlineKlass::flat_array() { | |
if (!UseFlatArray) { | ||
return false; | ||
} | ||
if (VectorSupport::is_vector_payload_mf(this) || VectorSupport::is_vector(this)) { | ||
return false; | ||
} | ||
Comment on lines
+156
to
+158
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @XiaohongGong, thanks for making a comment in an OpenJDK project! All comments and discussions in the OpenJDK Community must be made available under the OpenJDK Terms of Use. If you already are an OpenJDK Author, Committer or Reviewer, please click here to open a new issue so that we can record that fact. Please Use "Add GitHub user XiaohongGong" for the summary. If you are not an OpenJDK Author, Committer or Reviewer, simply check the box below to accept the OpenJDK Terms of Use for your comments.
Your comment will be automatically restored once you have accepted the OpenJDK Terms of Use. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Array of vector may be heterogeneous in nature where each element points to a vector of different shape, thus array flatten do not make much sense to vectors. In additional during type resolution flat_array flag is set for imbalanced Phi (having different type of inputs e.g. VectorPayload64 and VectorPayload128) even though Phi's type is lower common ancestor type of participating inputs i.e., VectorPayload which itself is not an inlinetype, this leads to assertion failures in downstream flow. https://github.com/openjdk/valhalla/blob/lworld/src/hotspot/share/opto/type.cpp#L4636 Instead of making a wider change in type resolution, where we flat_array setting also take into account exact type of PhiNode, I prefer to restrict array flatten for vectors. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @XiaohongGong, thanks for making a comment in an OpenJDK project! All comments and discussions in the OpenJDK Community must be made available under the OpenJDK Terms of Use. If you already are an OpenJDK Author, Committer or Reviewer, please click here to open a new issue so that we can record that fact. Please Use "Add GitHub user XiaohongGong" for the summary. If you are not an OpenJDK Author, Committer or Reviewer, simply check the box below to accept the OpenJDK Terms of Use for your comments.
Your comment will be automatically restored once you have accepted the OpenJDK Terms of Use. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we never expose concrete vector types to users hence its only possible to create an array of abstract vector references which can be heterogeneous. This is different from an array of value types which are implicitly final classes and may be flattened into a compact layout since such an array will be homogeneous in nature. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @XiaohongGong, thanks for making a comment in an OpenJDK project! All comments and discussions in the OpenJDK Community must be made available under the OpenJDK Terms of Use. If you already are an OpenJDK Author, Committer or Reviewer, please click here to open a new issue so that we can record that fact. Please Use "Add GitHub user XiaohongGong" for the summary. If you are not an OpenJDK Author, Committer or Reviewer, simply check the box below to accept the OpenJDK Terms of Use for your comments.
Your comment will be automatically restored once you have accepted the OpenJDK Terms of Use. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
In this case PhiNode generated by PredictedCallGenerator based on the type profile was imbalanced i.e. its inputs had different concrete payload types, thus type of PhiNode got resolved to lowest common ancestor type i.e. an abstract vector payload type, in the downstream flow following assertion failed because flat_array flag for the type was set even though the type was a non-inline type. https://github.com/openjdk/valhalla/blob/lworld/src/hotspot/share/opto/type.cpp#L4177 |
||
// Too big | ||
int elem_bytes = get_exact_size_in_bytes(); | ||
if ((FlatArrayElementMaxSize >= 0) && (elem_bytes > FlatArrayElementMaxSize)) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,23 +41,25 @@ abstract class AbstractMask<E> extends VectorMask<E> { | |
/*package-private*/ | ||
abstract VectorPayloadMF getBits(); | ||
|
||
static VectorPayloadMF prepare(VectorPayloadMF payload, int offset, Class<?> elementType, int length, boolean is_max_species) { | ||
VectorPayloadMF res = VectorPayloadMF.newMaskInstanceFactory(elementType, length, is_max_species); | ||
static <F> VectorPayloadMF prepare(VectorPayloadMF payload, int offset, VectorSpecies<F> species) { | ||
boolean isMaxShape = species.vectorShape() == VectorShape.S_Max_BIT; | ||
VectorPayloadMF res = VectorPayloadMF.newMaskInstanceFactory(species.elementType(), species.length(), isMaxShape); | ||
res = Unsafe.getUnsafe().makePrivateBuffer(res); | ||
long mOffset = res.multiFieldOffset(); | ||
for (int i = 0; i < length; i++) { | ||
for (int i = 0; i < species.length(); i++) { | ||
boolean b = Unsafe.getUnsafe().getBoolean(payload, mOffset + i + offset); | ||
Unsafe.getUnsafe().putBoolean(res, mOffset + i, b); | ||
} | ||
res = Unsafe.getUnsafe().finishPrivateBuffer(res); | ||
return res; | ||
} | ||
|
||
static VectorPayloadMF prepare(boolean val, Class<?> elementType, int length, boolean is_max_species) { | ||
VectorPayloadMF res = VectorPayloadMF.newMaskInstanceFactory(elementType, length, is_max_species); | ||
static <F> VectorPayloadMF prepare(boolean val, VectorSpecies<F> species) { | ||
boolean isMaxShape = species.vectorShape() == VectorShape.S_Max_BIT; | ||
VectorPayloadMF res = VectorPayloadMF.newMaskInstanceFactory(species.elementType(), species.length(), isMaxShape); | ||
res = Unsafe.getUnsafe().makePrivateBuffer(res); | ||
long mOffset = res.multiFieldOffset(); | ||
for (int i = 0; i < length; i++) { | ||
for (int i = 0; i < species.length(); i++) { | ||
Unsafe.getUnsafe().putBoolean(res, mOffset + i, val); | ||
} | ||
res = Unsafe.getUnsafe().finishPrivateBuffer(res); | ||
|
@@ -138,7 +140,7 @@ public <F> VectorMask<F> cast(VectorSpecies<F> dsp) { | |
this.getClass(), vspecies().elementType(), vspecies().laneCount, | ||
species.maskType(), species.elementType(), vspecies().laneCount, | ||
this, species, | ||
(m, s) -> s.maskFactory(m.getBits()).check(s)); | ||
(m, s) -> VectorMask.fromLong(s, m.toLong()).check(s)); | ||
Comment on lines
-139
to
+143
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @XiaohongGong, thanks for making a comment in an OpenJDK project! All comments and discussions in the OpenJDK Community must be made available under the OpenJDK Terms of Use. If you already are an OpenJDK Author, Committer or Reviewer, please click here to open a new issue so that we can record that fact. Please Use "Add GitHub user XiaohongGong" for the summary. If you are not an OpenJDK Author, Committer or Reviewer, simply check the box below to accept the OpenJDK Terms of Use for your comments.
Your comment will be automatically restored once you have accepted the OpenJDK Terms of Use. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We cannot typecast value object with another value type, thus directly passing payload (m.getBits()) to maskFactory will cause runtime exceptions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @XiaohongGong, thanks for making a comment in an OpenJDK project! All comments and discussions in the OpenJDK Community must be made available under the OpenJDK Terms of Use. If you already are an OpenJDK Author, Committer or Reviewer, please click here to open a new issue so that we can record that fact. Please Use "Add GitHub user XiaohongGong" for the summary. If you are not an OpenJDK Author, Committer or Reviewer, simply check the box below to accept the OpenJDK Terms of Use for your comments.
Your comment will be automatically restored once you have accepted the OpenJDK Terms of Use. |
||
} | ||
|
||
@Override | ||
|
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.
Hi @XiaohongGong, thanks for making a comment in an OpenJDK project!
All comments and discussions in the OpenJDK Community must be made available under the OpenJDK Terms of Use. If you already are an OpenJDK Author, Committer or Reviewer, please click here to open a new issue so that we can record that fact. Please Use "Add GitHub user XiaohongGong" for the summary.
If you are not an OpenJDK Author, Committer or Reviewer, simply check the box below to accept the OpenJDK Terms of Use for your comments.
Your comment will be automatically restored once you have accepted the OpenJDK Terms of Use.