src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotMonitorValueTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotMonitorValueTest.java

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotMonitorValueTest.java

Print this page

        

*** 32,41 **** --- 32,42 ---- import org.junit.Test; import org.graalvm.compiler.code.CompilationResult; import org.graalvm.compiler.core.test.GraalCompilerTest; + import org.graalvm.compiler.debug.DebugContext; import org.graalvm.compiler.debug.GraalError; import jdk.vm.ci.code.BytecodeFrame; import jdk.vm.ci.code.InstalledCode; import jdk.vm.ci.code.StackLockValue;
*** 44,54 **** import jdk.vm.ci.meta.ResolvedJavaMethod; public class HotSpotMonitorValueTest extends GraalCompilerTest { @Override ! protected InstalledCode addMethod(ResolvedJavaMethod method, CompilationResult compResult) { for (Infopoint i : compResult.getInfopoints()) { if (i instanceof Call) { Call call = (Call) i; if (call.target instanceof ResolvedJavaMethod) { ResolvedJavaMethod target = (ResolvedJavaMethod) call.target; --- 45,55 ---- import jdk.vm.ci.meta.ResolvedJavaMethod; public class HotSpotMonitorValueTest extends GraalCompilerTest { @Override ! protected InstalledCode addMethod(DebugContext debug, ResolvedJavaMethod method, CompilationResult compResult) { for (Infopoint i : compResult.getInfopoints()) { if (i instanceof Call) { Call call = (Call) i; if (call.target instanceof ResolvedJavaMethod) { ResolvedJavaMethod target = (ResolvedJavaMethod) call.target;
*** 73,83 **** } } } assertDeepEquals(lock3.getOwner(), lock4.getOwner()); assertThat(lock1.getOwner(), not(lock2.getOwner())); ! return super.addMethod(method, compResult); } } } } throw new AssertionError("Could not find debug info for call to Object.wait(long)"); --- 74,84 ---- } } } assertDeepEquals(lock3.getOwner(), lock4.getOwner()); assertThat(lock1.getOwner(), not(lock2.getOwner())); ! return super.addMethod(debug, method, compResult); } } } } throw new AssertionError("Could not find debug info for call to Object.wait(long)");
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotMonitorValueTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File