hotspot/test/compiler/7141637/SpreadNullArg.java
author twisti
Thu, 02 Feb 2012 09:14:38 -0800
changeset 11638 68657fd5d7b4
child 22226 1d8f2283eb16
permissions -rw-r--r--
7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32 Reviewed-by: twisti Contributed-by: Volker Simonis <volker.simonis@gmail.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11638
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     1
/*
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     2
 * Copyright 2011 SAP AG.  All Rights Reserved.
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     4
 *
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     7
 * published by the Free Software Foundation.
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     8
 *
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    13
 * accompanied this code).
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    14
 *
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    18
 *
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    21
 * questions.
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    22
 */
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    23
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    24
/*
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    25
 * @test SpreadNullArg
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    26
 * @bug 7141637
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    27
 * @summary  verifies that the MethodHandle spread adapter can gracefully handle null arguments.
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    28
 * @run main SpreadNullArg
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    29
 * @author volker.simonis@gmail.com
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    30
 */
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    31
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    32
import java.lang.invoke.MethodHandle;
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    33
import java.lang.invoke.MethodHandles;
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    34
import java.lang.invoke.MethodType;
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    35
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    36
public class SpreadNullArg {
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    37
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    38
  public static void main(String args[]) {
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    39
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    40
    MethodType mt_ref_arg = MethodType.methodType(int.class, Integer.class);
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    41
    MethodHandle mh_spreadInvoker = MethodHandles.spreadInvoker(mt_ref_arg, 0);
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    42
    MethodHandle mh_spread_target;
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    43
    int result = 42;
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    44
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    45
    try {
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    46
      mh_spread_target =
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    47
        MethodHandles.lookup().findStatic(SpreadNullArg.class, "target_spread_arg", mt_ref_arg);
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    48
      result = (int) mh_spreadInvoker.invokeExact(mh_spread_target, (Object[]) null);
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    49
    } catch(NullPointerException e) {
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    50
      // Expected exception - do nothing!
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    51
    } catch(Throwable e) {
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    52
      throw new Error(e);
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    53
    }
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    54
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    55
    if (result != 42) throw new Error("Expected NullPointerException was not thrown");
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    56
  }
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    57
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    58
  public static int target_spread_arg(Integer i1) {
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    59
    return i1.intValue();
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    60
  }
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    61
68657fd5d7b4 7141637: JSR 292: MH spread invoker crashes with NULL argument on x86_32
twisti
parents:
diff changeset
    62
}