src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Object_wait03.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.jtt/src/org/graalvm/compiler/jtt/threads/Object_wait03.java

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Object_wait03.java

Print this page

        

*** 23,33 **** /* */ package org.graalvm.compiler.jtt.threads; import org.graalvm.compiler.core.common.CancellationBailoutException; ! import org.graalvm.compiler.debug.Debug; import org.graalvm.compiler.jtt.JTTTest; import org.graalvm.compiler.nodes.Cancellable; import org.junit.Rule; import org.junit.Test; import org.junit.rules.DisableOnDebug; --- 23,33 ---- /* */ package org.graalvm.compiler.jtt.threads; import org.graalvm.compiler.core.common.CancellationBailoutException; ! import org.graalvm.compiler.debug.DebugContext; import org.graalvm.compiler.jtt.JTTTest; import org.graalvm.compiler.nodes.Cancellable; import org.junit.Rule; import org.junit.Test; import org.junit.rules.DisableOnDebug;
*** 123,133 **** try { runTest("test", i); } catch (CancellationBailoutException e) { String message = String.format("Compilation cancelled after " + COMPILATION_TIMEOUT_MS + " ms"); // For diagnosing expectedly long compilations (GR-3853) ! Debug.forceDump(lastCompiledGraph, message); throw new AssertionError(message, e); } } @Test --- 123,134 ---- try { runTest("test", i); } catch (CancellationBailoutException e) { String message = String.format("Compilation cancelled after " + COMPILATION_TIMEOUT_MS + " ms"); // For diagnosing expectedly long compilations (GR-3853) ! DebugContext debug = getDebugContext(); ! debug.forceDump(lastCompiledGraph, message); throw new AssertionError(message, e); } } @Test
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Object_wait03.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File