< prev index next >

jdk/test/valhalla/mvt/MVTAccessCheck.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
  26  * @run testng/othervm -XX:+EnableMVT -XX:+ValueArrayFlatten MVTAccessCheck
  27  * @run testng/othervm -XX:+EnableMVT -XX:-ValueArrayFlatten MVTAccessCheck
  28  * @run testng/othervm -XX:+EnableMVT -Dvalhalla.enableValueLambdaForms=true MVTAccessCheck
  29  * @run testng/othervm -XX:+EnableMVT -Dvalhalla.enableValueLambdaForms=true -Dvalhalla.enablePoolPatches=true MVTAccessCheck
  30  */
  31 
  32 import jdk.experimental.value.ValueType;
  33 import org.testng.Assert;
  34 import org.testng.annotations.Test;
  35 
  36 import java.lang.invoke.MethodHandle;
  37 import java.lang.invoke.MethodHandles;
  38 
  39 import static org.testng.Assert.assertEquals;
  40 import static org.testng.Assert.assertTrue;
  41 
  42 @Test
  43 public class MVTAccessCheck {
  44 
  45     static final ValueType<?> VT_Point = ValueType.forClass(Point.class);
  46     static final ValueType<?> VT_PrivatePoint = ValueType.forClass(PrivatePoint.class);
  47 
  48     static final String[] FIELD_NAMES = {"x", "y", "z"};
  49     static final  Class<?>[] FIELD_TYPES = {int.class, short.class, short.class};
  50 
  51     public void testGetter() throws Throwable {
  52         for (int i = 0; i < FIELD_NAMES.length; i++) {




  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
  26  * @run testng/othervm -XX:+EnableMVT -XX:+ValueArrayFlatten MVTAccessCheck
  27  * @run testng/othervm -XX:+EnableMVT -XX:-ValueArrayFlatten MVTAccessCheck
  28  * @run testng/othervm -XX:+EnableMVT -Dvalhalla.enableValueLambdaForms=true MVTAccessCheck
  29  * @run testng/othervm -XX:+EnableMVT -Dvalhalla.enableValueLambdaForms=true -Dvalhalla.enablePoolPatches=true MVTAccessCheck
  30  */
  31 
  32 import jdk.incubator.mvt.ValueType;
  33 import org.testng.Assert;
  34 import org.testng.annotations.Test;
  35 
  36 import java.lang.invoke.MethodHandle;
  37 import java.lang.invoke.MethodHandles;
  38 
  39 import static org.testng.Assert.assertEquals;
  40 import static org.testng.Assert.assertTrue;
  41 
  42 @Test
  43 public class MVTAccessCheck {
  44 
  45     static final ValueType<?> VT_Point = ValueType.forClass(Point.class);
  46     static final ValueType<?> VT_PrivatePoint = ValueType.forClass(PrivatePoint.class);
  47 
  48     static final String[] FIELD_NAMES = {"x", "y", "z"};
  49     static final  Class<?>[] FIELD_TYPES = {int.class, short.class, short.class};
  50 
  51     public void testGetter() throws Throwable {
  52         for (int i = 0; i < FIELD_NAMES.length; i++) {


< prev index next >