We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49f51f9 commit ab00069Copy full SHA for ab00069
src/hotspot/cpu/ppc/vm_version_ppc.cpp
@@ -111,6 +111,10 @@ void VM_Version::initialize() {
111
}
112
113
MaxVectorSize = SuperwordUseVSX ? 16 : 8;
114
+ if (!SuperwordUseVSX && FLAG_IS_DEFAULT(EnableVectorSupport)) {
115
+ // VectorSupport intrinsics currently have issues with MaxVectorSize < 16 (JDK-8370803).
116
+ FLAG_SET_ERGO(EnableVectorSupport, false);
117
+ }
118
if (FLAG_IS_DEFAULT(AlignVector)) {
119
FLAG_SET_ERGO(AlignVector, false);
120
0 commit comments