comparison test/compiler/8004051/Test8004051.java @ 12120:1fedf3c7f923

8023580: Add jtreg test for 8004051 and 8005722 Summary: Tests checks an assertion dealing with the number of args passed in registers Reviewed-by: mseledtsov, kvn
author bpittore
date Wed, 28 Aug 2013 14:44:46 -0400
parents
children
comparison
equal deleted inserted replaced
12118:5fd8e2fbafd4 12120:1fedf3c7f923
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 -client 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);
54 return true;
55 }
56 }