< prev index next >

test/compiler/c1/Test8004051.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 /**
  26  * @test
  27  * @bug 8004051
  28  * @bug 8005722
  29  * @summary assert(_oprs_len[mode] < maxNumberOfOperands) failed: array overflow
  30  *
  31  * @run main/othervm -Xcomp Test8004051
  32  */
  33 


  34 public class Test8004051 {
  35     public static void main(String[] argv) {
  36         Object o = new Object();
  37         fillPrimRect(1.1f, 1.2f, 1.3f, 1.4f,
  38                      o, o,
  39                      1.5f, 1.6f, 1.7f, 1.8f,
  40                      2.0f, 2.1f, 2.2f, 2.3f,
  41                      2.4f, 2.5f, 2.6f, 2.7f,
  42                      100, 101);
  43         System.out.println("Test passed, test did not assert");
  44     }
  45 
  46     static boolean fillPrimRect(float x, float y, float w, float h,
  47                                 Object rectTex, Object wrapTex,
  48                                 float bx, float by, float bw, float bh,
  49                                 float f1, float f2, float f3, float f4,
  50                                 float f5, float f6, float f7, float f8,
  51                                 int i1, int i2 ) {
  52         System.out.println(x + " " + y + " " + w + " " + h + " " +
  53                            bx + " " + by + " " + bw + " " + bh);


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 /**
  26  * @test
  27  * @bug 8004051
  28  * @bug 8005722
  29  * @summary assert(_oprs_len[mode] < maxNumberOfOperands) failed: array overflow
  30  *
  31  * @run main/othervm -Xcomp compiler.c1.Test8004051
  32  */
  33 
  34 package compiler.c1;
  35 
  36 public class Test8004051 {
  37     public static void main(String[] argv) {
  38         Object o = new Object();
  39         fillPrimRect(1.1f, 1.2f, 1.3f, 1.4f,
  40                      o, o,
  41                      1.5f, 1.6f, 1.7f, 1.8f,
  42                      2.0f, 2.1f, 2.2f, 2.3f,
  43                      2.4f, 2.5f, 2.6f, 2.7f,
  44                      100, 101);
  45         System.out.println("Test passed, test did not assert");
  46     }
  47 
  48     static boolean fillPrimRect(float x, float y, float w, float h,
  49                                 Object rectTex, Object wrapTex,
  50                                 float bx, float by, float bw, float bh,
  51                                 float f1, float f2, float f3, float f4,
  52                                 float f5, float f6, float f7, float f8,
  53                                 int i1, int i2 ) {
  54         System.out.println(x + " " + y + " " + w + " " + h + " " +
  55                            bx + " " + by + " " + bw + " " + bh);
< prev index next >