Skip to content

Commit c45d613

Browse files
author
Doug Simon
committedJul 5, 2022
8289687: [JVMCI] bug in HotSpotResolvedJavaMethodImpl.equals
Reviewed-by: kvn
1 parent 77c3bbf commit c45d613

File tree

5 files changed

+66
-27
lines changed

5 files changed

+66
-27
lines changed
 

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/CompilerToVM.java

+21-21
Original file line numberDiff line numberDiff line change
@@ -500,29 +500,29 @@ HotSpotObjectConstantImpl lookupAppendixInPool(HotSpotConstantPool constantPool,
500500
* @throws JVMCIError if there is something wrong with the compiled code or the associated
501501
* metadata.
502502
*/
503-
int installCode(HotSpotCompiledCode compiledCode, InstalledCode code, long failedSpeculationsAddress, byte[] speculations) {
504-
int codeInstallFlags = getInstallCodeFlags();
505-
boolean withComments = (codeInstallFlags & 0x0001) != 0;
506-
boolean withMethods = (codeInstallFlags & 0x0002) != 0;
507-
boolean withTypeInfo;
508-
if ((codeInstallFlags & 0x0004) != 0 && HotSpotJVMCIRuntime.Option.CodeSerializationTypeInfo.isDefault) {
509-
withTypeInfo = true;
510-
} else {
511-
withTypeInfo = HotSpotJVMCIRuntime.Option.CodeSerializationTypeInfo.getBoolean();
512-
}
513-
try (HotSpotCompiledCodeStream stream = new HotSpotCompiledCodeStream(compiledCode, withTypeInfo, withComments, withMethods)) {
514-
return installCode0(stream.headChunk, stream.timeNS, withTypeInfo, compiledCode, stream.objectPool, code, failedSpeculationsAddress, speculations);
515-
}
503+
int installCode(HotSpotCompiledCode compiledCode, InstalledCode code, long failedSpeculationsAddress, byte[] speculations) {
504+
int codeInstallFlags = getInstallCodeFlags();
505+
boolean withComments = (codeInstallFlags & 0x0001) != 0;
506+
boolean withMethods = (codeInstallFlags & 0x0002) != 0;
507+
boolean withTypeInfo;
508+
if ((codeInstallFlags & 0x0004) != 0 && HotSpotJVMCIRuntime.Option.CodeSerializationTypeInfo.isDefault) {
509+
withTypeInfo = true;
510+
} else {
511+
withTypeInfo = HotSpotJVMCIRuntime.Option.CodeSerializationTypeInfo.getBoolean();
512+
}
513+
try (HotSpotCompiledCodeStream stream = new HotSpotCompiledCodeStream(compiledCode, withTypeInfo, withComments, withMethods)) {
514+
return installCode0(stream.headChunk, stream.timeNS, withTypeInfo, compiledCode, stream.objectPool, code, failedSpeculationsAddress, speculations);
515+
}
516516
}
517517

518-
native int installCode0(long compiledCodeBuffer,
519-
long serializationNS,
520-
boolean withTypeInfo,
521-
HotSpotCompiledCode compiledCode,
522-
Object[] objectPool,
523-
InstalledCode code,
524-
long failedSpeculationsAddress,
525-
byte[] speculations);
518+
native int installCode0(long compiledCodeBuffer,
519+
long serializationNS,
520+
boolean withTypeInfo,
521+
HotSpotCompiledCode compiledCode,
522+
Object[] objectPool,
523+
InstalledCode code,
524+
long failedSpeculationsAddress,
525+
byte[] speculations);
526526

527527
/**
528528
* Gets flags specifying optional parts of code info. Only if a flag is set, will the

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedJavaMethodImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public boolean equals(Object obj) {
166166
}
167167
if (obj instanceof HotSpotResolvedJavaMethodImpl) {
168168
HotSpotResolvedJavaMethodImpl that = (HotSpotResolvedJavaMethodImpl) obj;
169-
return getMethodPointer() == getMethodPointer();
169+
return that.getMethodPointer() == getMethodPointer();
170170
}
171171
return false;
172172
}

‎test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaField.java

+11
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,17 @@ public class TestResolvedJavaField extends FieldUniverse {
6767
public TestResolvedJavaField() {
6868
}
6969

70+
@Test
71+
public void equalsTest() {
72+
for (ResolvedJavaField f : fields.values()) {
73+
for (ResolvedJavaField that : fields.values()) {
74+
boolean expect = f == that;
75+
boolean actual = f.equals(that);
76+
assertEquals(expect, actual);
77+
}
78+
}
79+
}
80+
7081
@Test
7182
public void getModifiersTest() {
7283
for (Map.Entry<Field, ResolvedJavaField> e : fields.entrySet()) {

‎test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaMethod.java

+22-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* @test
2626
* @requires vm.jvmci
2727
* @library ../../../../../
28-
* @ignore 8249621
2928
* @modules jdk.internal.vm.ci/jdk.vm.ci.meta
3029
* jdk.internal.vm.ci/jdk.vm.ci.runtime
3130
* java.base/jdk.internal.misc
@@ -109,6 +108,17 @@ public void getCodeSizeTest() {
109108
}
110109
}
111110

111+
@Test
112+
public void equalsTest() {
113+
for (ResolvedJavaMethod m : methods.values()) {
114+
for (ResolvedJavaMethod that : methods.values()) {
115+
boolean expect = m == that;
116+
boolean actual = m.equals(that);
117+
assertEquals(expect, actual);
118+
}
119+
}
120+
}
121+
112122
@Test
113123
public void getModifiersTest() {
114124
for (Map.Entry<Method, ResolvedJavaMethod> e : methods.entrySet()) {
@@ -209,14 +219,20 @@ public void canBeStaticallyBoundTest() {
209219
}
210220
for (Map.Entry<Constructor<?>, ResolvedJavaMethod> e : constructors.entrySet()) {
211221
ResolvedJavaMethod m = e.getValue();
212-
assertEquals(m.canBeStaticallyBound(), canBeStaticallyBound(e.getKey()));
222+
boolean expect = m.canBeStaticallyBound();
223+
boolean actual = canBeStaticallyBound(e.getKey());
224+
assertEquals(m.toString(), expect, actual);
213225
}
214226
}
215227

216228
private static boolean canBeStaticallyBound(Member method) {
217229
int modifiers = method.getModifiers();
218-
return (Modifier.isFinal(modifiers) || Modifier.isPrivate(modifiers) || Modifier.isStatic(modifiers) || Modifier.isFinal(method.getDeclaringClass().getModifiers())) &&
219-
!Modifier.isAbstract(modifiers);
230+
return (Modifier.isFinal(modifiers) ||
231+
Modifier.isPrivate(modifiers) ||
232+
Modifier.isStatic(modifiers) ||
233+
method instanceof Constructor ||
234+
Modifier.isFinal(method.getDeclaringClass().getModifiers())) &&
235+
!Modifier.isAbstract(modifiers);
220236
}
221237

222238
private static String methodWithExceptionHandlers(String p1, Object o2) {
@@ -256,7 +272,8 @@ public void asStackTraceElementTest() throws NoSuchMethodException {
256272
StackTraceElement expected = e.getStackTrace()[0];
257273
ResolvedJavaMethod method = metaAccess.lookupJavaMethod(getClass().getDeclaredMethod("nullPointerExceptionOnFirstLine", Object.class, String.class));
258274
StackTraceElement actual = method.asStackTraceElement(0);
259-
assertEquals(expected, actual);
275+
// JVMCI StackTraceElements omit the class loader and module info
276+
assertEquals(expected.toString(), actual.toString());
260277
}
261278
}
262279

‎test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java

+11
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,17 @@ public class TestResolvedJavaType extends TypeUniverse {
9191
public TestResolvedJavaType() {
9292
}
9393

94+
@Test
95+
public void equalsTest() {
96+
for (ResolvedJavaType t : javaTypes) {
97+
for (ResolvedJavaType that : javaTypes) {
98+
boolean expect = t == that;
99+
boolean actual = t.equals(that);
100+
assertEquals(expect, actual);
101+
}
102+
}
103+
}
104+
94105
@SuppressWarnings("unchecked")
95106
private static Class<? extends Annotation> findPolymorphicSignatureClass() {
96107
Class<? extends Annotation> signaturePolyAnnotation = null;

0 commit comments

Comments
 (0)
Please sign in to comment.