1 /*
   2  * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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);
  56         return true;
  57     }
  58 }