< prev index next >

test/compiler/jvmci/jdk.vm.ci.hotspot.test/src/jdk/vm/ci/hotspot/test/HotSpotConstantReflectionProviderTest.java

Print this page




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test jdk.vm.ci.hotspot.test.HotSpotConstantReflectionProviderTest
  26  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  27  * @modules jdk.vm.ci/jdk.vm.ci.runtime
  28  *          jdk.vm.ci/jdk.vm.ci.meta
  29  *          jdk.vm.ci/jdk.vm.ci.hotspot
  30  *          java.base/jdk.internal.vm.annotation
  31  *          java.base/jdk.internal.misc
  32  * @library /testlibrary /test/lib /compiler/jvmci/jdk.vm.ci.hotspot.test/src
  33  * @build jdk.vm.ci.hotspot.test.DummyClass
  34  * @run driver ClassFileInstaller jdk.vm.ci.hotspot.test.DummyClass
  35  * @run testng/othervm/timeout=300 -Xbootclasspath/a:.
  36  *      -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  37  *       jdk.vm.ci.hotspot.test.HotSpotConstantReflectionProviderTest
  38  */
  39 
  40 package jdk.vm.ci.hotspot.test;
  41 
  42 import jdk.vm.ci.meta.Constant;
  43 import jdk.vm.ci.meta.JavaConstant;
  44 import jdk.vm.ci.meta.MemoryAccessProvider;
  45 import jdk.vm.ci.meta.MethodHandleAccessProvider;
  46 import jdk.vm.ci.meta.ResolvedJavaField;
  47 import jdk.vm.ci.meta.ResolvedJavaType;
  48 import org.testng.Assert;
  49 import org.testng.annotations.Test;
  50 
  51 import static jdk.vm.ci.hotspot.test.TestHelper.CONSTANT_REFLECTION_PROVIDER;
  52 




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test jdk.vm.ci.hotspot.test.HotSpotConstantReflectionProviderTest
  26  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  27  * @modules jdk.vm.ci/jdk.vm.ci.runtime
  28  *          jdk.vm.ci/jdk.vm.ci.meta
  29  *          jdk.vm.ci/jdk.vm.ci.hotspot
  30  *          java.base/jdk.internal.vm.annotation
  31  *          java.base/jdk.internal.misc
  32  * @library /test/lib /compiler/jvmci/jdk.vm.ci.hotspot.test/src
  33  * @build jdk.vm.ci.hotspot.test.DummyClass
  34  * @run driver ClassFileInstaller jdk.vm.ci.hotspot.test.DummyClass
  35  * @run testng/othervm/timeout=300 -Xbootclasspath/a:.
  36  *      -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  37  *       jdk.vm.ci.hotspot.test.HotSpotConstantReflectionProviderTest
  38  */
  39 
  40 package jdk.vm.ci.hotspot.test;
  41 
  42 import jdk.vm.ci.meta.Constant;
  43 import jdk.vm.ci.meta.JavaConstant;
  44 import jdk.vm.ci.meta.MemoryAccessProvider;
  45 import jdk.vm.ci.meta.MethodHandleAccessProvider;
  46 import jdk.vm.ci.meta.ResolvedJavaField;
  47 import jdk.vm.ci.meta.ResolvedJavaType;
  48 import org.testng.Assert;
  49 import org.testng.annotations.Test;
  50 
  51 import static jdk.vm.ci.hotspot.test.TestHelper.CONSTANT_REFLECTION_PROVIDER;
  52 


< prev index next >