< prev index next >

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

Print this page
rev 56282 : [mq]: graal

*** 1,7 **** /* ! * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 23,44 **** package org.graalvm.compiler.hotspot.test; import org.graalvm.compiler.core.test.GraalCompilerTest; ! import org.graalvm.compiler.hotspot.meta.HotSpotClassInitializationPlugin; import org.graalvm.compiler.nodes.StructuredGraph.AllowAssumptions; import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.Plugins; import org.junit.Assert; import org.junit.Assume; import org.junit.Test; import jdk.vm.ci.meta.ResolvedJavaMethod; public class HotSpotLazyInitializationTest extends GraalCompilerTest { ! HotSpotClassInitializationPlugin classInitPlugin = new HotSpotClassInitializationPlugin(); @Override protected Plugins getDefaultGraphBuilderPlugins() { Plugins plugins = super.getDefaultGraphBuilderPlugins(); plugins.setClassInitializationPlugin(classInitPlugin); --- 23,44 ---- package org.graalvm.compiler.hotspot.test; import org.graalvm.compiler.core.test.GraalCompilerTest; ! import org.graalvm.compiler.hotspot.meta.HotSpotAOTClassInitializationPlugin; import org.graalvm.compiler.nodes.StructuredGraph.AllowAssumptions; import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.Plugins; import org.junit.Assert; import org.junit.Assume; import org.junit.Test; import jdk.vm.ci.meta.ResolvedJavaMethod; public class HotSpotLazyInitializationTest extends GraalCompilerTest { ! HotSpotAOTClassInitializationPlugin classInitPlugin = new HotSpotAOTClassInitializationPlugin(); @Override protected Plugins getDefaultGraphBuilderPlugins() { Plugins plugins = super.getDefaultGraphBuilderPlugins(); plugins.setClassInitializationPlugin(classInitPlugin);
< prev index next >