src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest.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/HotSpotCryptoSubstitutionTest.java

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

Print this page

        

*** 35,44 **** --- 35,45 ---- import org.junit.Assert; import org.junit.Test; import org.graalvm.compiler.code.CompilationResult; + import org.graalvm.compiler.debug.DebugContext; import org.graalvm.compiler.hotspot.meta.HotSpotGraphBuilderPlugins; import jdk.vm.ci.code.InstalledCode; import jdk.vm.ci.meta.ResolvedJavaMethod;
*** 46,57 **** * Tests the intrinsification of certain crypto methods. */ public class HotSpotCryptoSubstitutionTest extends HotSpotGraalCompilerTest { @Override ! protected InstalledCode addMethod(ResolvedJavaMethod method, CompilationResult compResult) { ! return getBackend().createDefaultInstalledCode(method, compResult); } SecretKey aesKey; SecretKey desKey; byte[] input; --- 47,58 ---- * Tests the intrinsification of certain crypto methods. */ public class HotSpotCryptoSubstitutionTest extends HotSpotGraalCompilerTest { @Override ! protected InstalledCode addMethod(DebugContext debug, ResolvedJavaMethod method, CompilationResult compResult) { ! return getBackend().createDefaultInstalledCode(debug, method, compResult); } SecretKey aesKey; SecretKey desKey; byte[] input;
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File