--- /dev/null 2016-05-31 09:42:47.975716356 -0700 +++ new/src/jdk.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/Matrix01.java 2016-12-09 00:52:35.753531350 -0800 @@ -0,0 +1,189 @@ +/* + * Copyright (c) 2009, 2012, 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. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ +package org.graalvm.compiler.jtt.micro; + +import org.junit.Test; + +import org.graalvm.compiler.jtt.JTTTest; + +/* + */ +public class Matrix01 extends JTTTest { + + public static class Matrix { + + final int id; + + Matrix(int id) { + this.id = id; + } + } + + public static int test(int arg) { + if (arg == 0) { + return matrix1(3) + matrix1(5); + } + if (arg == 1) { + return matrix2(3) + matrix2(5); + } + if (arg == 2) { + return matrix3(3) + matrix3(5); + } + if (arg == 3) { + return matrix4(3) + matrix4(5); + } + if (arg == 4) { + return matrix5(3) + matrix5(5); + } + return 42; + } + + static int matrix1(int size) { + Matrix[] matrix = new Matrix[size]; + fillMatrix(matrix, size); + int count = 0; + for (Matrix m : matrix) { + if (m != null) { + count++; + } + } + return count; + } + + static int matrix2(int size) { + Matrix[][] matrix = new Matrix[size][size]; + fillMatrix(matrix, size * size); + int count = 0; + for (Matrix[] n : matrix) { + for (Matrix m : n) { + if (m != null) { + count++; + } + } + } + return count; + } + + static int matrix3(int size) { + Matrix[][][] matrix = new Matrix[size][5][size]; + fillMatrix(matrix, size * size * size); + int count = 0; + for (Matrix[][] o : matrix) { + for (Matrix[] n : o) { + for (Matrix m : n) { + if (m != null) { + count++; + } + } + } + } + return count; + } + + static int matrix4(int size) { + Matrix[][][][] matrix = new Matrix[size][2][size][3]; + fillMatrix(matrix, size * size * size * size); + int count = 0; + for (Matrix[][][] p : matrix) { + for (Matrix[][] o : p) { + for (Matrix[] n : o) { + for (Matrix m : n) { + if (m != null) { + count++; + } + } + } + } + } + return count; + } + + static int matrix5(int size) { + Matrix[][][][][] matrix = new Matrix[size][size][3][4][size]; + fillMatrix(matrix, size * size * size * size * size); + int count = 0; + for (Matrix[][][][] q : matrix) { + for (Matrix[][][] p : q) { + for (Matrix[][] o : p) { + for (Matrix[] n : o) { + for (Matrix m : n) { + if (m != null) { + count++; + } + } + } + } + } + } + return count; + } + + static void fillMatrix(Object[] matrix, int total) { + for (int i = 0; i < 10000; i += 7) { + int number = i % total; + set(matrix, number); + } + } + + static void set(Object[] matrix, int number) { + int val = number; + Object[] array = matrix; + while (!(array instanceof Matrix[])) { + int index = val % array.length; + val = val / array.length; + array = (Object[]) array[index]; + } + ((Matrix[]) array)[val % array.length] = new Matrix(number); + } + + @Test + public void run0() throws Throwable { + runTest("test", 0); + } + + @Test + public void run1() throws Throwable { + runTest("test", 1); + } + + @Test + public void run2() throws Throwable { + runTest("test", 2); + } + + @Test + public void run3() throws Throwable { + runTest("test", 3); + } + + @Test + public void run4() throws Throwable { + runTest("test", 4); + } + + @Test + public void run5() throws Throwable { + runTest("test", 5); + } + +}