hotspot/test/compiler/jsr292/methodHandleExceptions/p/Tdirect.java
author stsmirno
Mon, 17 Oct 2016 18:54:12 -0400
changeset 41705 332239c052cc
parent 40059 c2304140ed64
permissions -rw-r--r--
8165687: Fix license and copyright headers in jd9 under hotspot/test Summary: Legal notices and Oracle copyrights were updated (white and blank space, commas) in tests files for uniformity to meet Oracle requirements. Reviewed-by: dholmes, iris Contributed-by: Stanislav Smirnov <stanislav.smirnov@oracle.com>, Vassili Igouchkine <vassili.igouchkine@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21770
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     1
/*
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     4
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     7
 * published by the Free Software Foundation.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     8
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    13
 * accompanied this code).
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    14
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    18
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    21
 * questions.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    22
 */
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    23
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    24
package p;
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    25
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    26
/**
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    27
 * Invokes I.m directly using invokeInterface bytecodes.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    28
 */
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    29
public class Tdirect {
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 21770
diff changeset
    30
     public static int test(I i) {
21770
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    31
         int accum = 0;
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    32
         for (int j = 0; j < 100000; j++) {
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    33
             accum += i.m();
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    34
         }
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    35
        return accum;
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    36
    }
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    37
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 21770
diff changeset
    38
     public static int test(I ii, byte b, char c, short s, int i, long l,
21770
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    39
             Object o1, Object o2, Object o3, Object o4, Object o5, Object o6) {
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    40
         int accum = 0;
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    41
         for (int j = 0; j < 100000; j++) {
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    42
           accum += ii.m(b,c,s,i,l,o1,o2,o3,o4,o5,o6);
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    43
         }
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    44
         return accum;
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    45
     }
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    46
}