methodHandles.cpp 130.6 KB
Newer Older
1
/*
2
 * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
22 23 24
 *
 */

25 26
#include "precompiled.hpp"
#include "classfile/symbolTable.hpp"
27
#include "compiler/compileBroker.hpp"
28
#include "interpreter/interpreter.hpp"
29
#include "interpreter/oopMapCache.hpp"
30 31 32
#include "memory/allocation.inline.hpp"
#include "memory/oopFactory.hpp"
#include "prims/methodHandles.hpp"
33
#include "prims/methodHandleWalk.hpp"
34
#include "runtime/compilationPolicy.hpp"
35 36 37 38 39
#include "runtime/javaCalls.hpp"
#include "runtime/reflection.hpp"
#include "runtime/signature.hpp"
#include "runtime/stubRoutines.hpp"

40 41 42 43 44 45 46 47
/*
 * JSR 292 reference implementation: method handles
 */

bool MethodHandles::_enabled = false; // set true after successful native linkage

MethodHandleEntry* MethodHandles::_entries[MethodHandles::_EK_LIMIT] = {NULL};
const char*        MethodHandles::_entry_names[_EK_LIMIT+1] = {
48
  "raise_exception",
49 50 51 52 53 54 55 56 57 58 59 60 61
  "invokestatic",               // how a MH emulates invokestatic
  "invokespecial",              // ditto for the other invokes...
  "invokevirtual",
  "invokeinterface",
  "bound_ref",                  // these are for BMH...
  "bound_int",
  "bound_long",
  "bound_ref_direct",           // (direct versions have a direct methodOop)
  "bound_int_direct",
  "bound_long_direct",

  // starting at _adapter_mh_first:
  "adapter_retype_only",       // these are for AMH...
62
  "adapter_retype_raw",
63 64 65 66 67 68 69 70 71 72
  "adapter_check_cast",
  "adapter_prim_to_prim",
  "adapter_ref_to_prim",
  "adapter_prim_to_ref",
  "adapter_swap_args",
  "adapter_rot_args",
  "adapter_dup_args",
  "adapter_drop_args",
  "adapter_collect_args",
  "adapter_spread_args",
73 74
  "adapter_fold_args",
  "adapter_unused_13",
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89

  // optimized adapter types:
  "adapter_swap_args/1",
  "adapter_swap_args/2",
  "adapter_rot_args/1,up",
  "adapter_rot_args/1,down",
  "adapter_rot_args/2,up",
  "adapter_rot_args/2,down",
  "adapter_prim_to_prim/i2i",
  "adapter_prim_to_prim/l2i",
  "adapter_prim_to_prim/d2f",
  "adapter_prim_to_prim/i2l",
  "adapter_prim_to_prim/f2d",
  "adapter_ref_to_prim/unboxi",
  "adapter_ref_to_prim/unboxl",
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159

  // return value handlers for collect/filter/fold adapters:
  "return/ref",
  "return/int",
  "return/long",
  "return/float",
  "return/double",
  "return/void",
  "return/S0/ref",
  "return/S1/ref",
  "return/S2/ref",
  "return/S3/ref",
  "return/S4/ref",
  "return/S5/ref",
  "return/any",

  // spreading (array length cases 0, 1, ...)
  "adapter_spread/0",
  "adapter_spread/1/ref",
  "adapter_spread/2/ref",
  "adapter_spread/3/ref",
  "adapter_spread/4/ref",
  "adapter_spread/5/ref",
  "adapter_spread/ref",
  "adapter_spread/byte",
  "adapter_spread/char",
  "adapter_spread/short",
  "adapter_spread/int",
  "adapter_spread/long",
  "adapter_spread/float",
  "adapter_spread/double",

  // blocking filter/collect conversions:
  "adapter_collect/ref",
  "adapter_collect/int",
  "adapter_collect/long",
  "adapter_collect/float",
  "adapter_collect/double",
  "adapter_collect/void",
  "adapter_collect/0/ref",
  "adapter_collect/1/ref",
  "adapter_collect/2/ref",
  "adapter_collect/3/ref",
  "adapter_collect/4/ref",
  "adapter_collect/5/ref",
  "adapter_filter/S0/ref",
  "adapter_filter/S1/ref",
  "adapter_filter/S2/ref",
  "adapter_filter/S3/ref",
  "adapter_filter/S4/ref",
  "adapter_filter/S5/ref",
  "adapter_collect/2/S0/ref",
  "adapter_collect/2/S1/ref",
  "adapter_collect/2/S2/ref",
  "adapter_collect/2/S3/ref",
  "adapter_collect/2/S4/ref",
  "adapter_collect/2/S5/ref",

  // blocking fold conversions:
  "adapter_fold/ref",
  "adapter_fold/int",
  "adapter_fold/long",
  "adapter_fold/float",
  "adapter_fold/double",
  "adapter_fold/void",
  "adapter_fold/1/ref",
  "adapter_fold/2/ref",
  "adapter_fold/3/ref",
  "adapter_fold/4/ref",
  "adapter_fold/5/ref",
160 161 162 163

  NULL
};

164
// Adapters.
165
MethodHandlesAdapterBlob* MethodHandles::_adapter_code = NULL;
166

167 168
jobject MethodHandles::_raise_exception_method;

169 170
address MethodHandles::_adapter_return_handlers[CONV_TYPE_MASK+1];

171 172 173 174 175
#ifdef ASSERT
bool MethodHandles::spot_check_entry_names() {
  assert(!strcmp(entry_name(_invokestatic_mh), "invokestatic"), "");
  assert(!strcmp(entry_name(_bound_ref_mh), "bound_ref"), "");
  assert(!strcmp(entry_name(_adapter_retype_only), "adapter_retype_only"), "");
176
  assert(!strcmp(entry_name(_adapter_fold_args), "adapter_fold_args"), "");
177
  assert(!strcmp(entry_name(_adapter_opt_unboxi), "adapter_ref_to_prim/unboxi"), "");
178 179 180 181 182 183 184 185
  assert(!strcmp(entry_name(_adapter_opt_spread_char), "adapter_spread/char"), "");
  assert(!strcmp(entry_name(_adapter_opt_spread_double), "adapter_spread/double"), "");
  assert(!strcmp(entry_name(_adapter_opt_collect_int), "adapter_collect/int"), "");
  assert(!strcmp(entry_name(_adapter_opt_collect_0_ref), "adapter_collect/0/ref"), "");
  assert(!strcmp(entry_name(_adapter_opt_collect_2_S3_ref), "adapter_collect/2/S3/ref"), "");
  assert(!strcmp(entry_name(_adapter_opt_filter_S5_ref), "adapter_filter/S5/ref"), "");
  assert(!strcmp(entry_name(_adapter_opt_fold_3_ref), "adapter_fold/3/ref"), "");
  assert(!strcmp(entry_name(_adapter_opt_fold_void), "adapter_fold/void"), "");
186 187 188 189
  return true;
}
#endif

190 191 192 193

//------------------------------------------------------------------------------
// MethodHandles::generate_adapters
//
194
void MethodHandles::generate_adapters() {
195 196 197
#ifdef TARGET_ARCH_NYI_6939861
  if (FLAG_IS_DEFAULT(UseRicochetFrames))  UseRicochetFrames = false;
#endif
198
  if (!EnableInvokeDynamic || SystemDictionary::MethodHandle_klass() == NULL)  return;
199 200 201 202 203

  assert(_adapter_code == NULL, "generate only once");

  ResourceMark rm;
  TraceTime timer("MethodHandles adapters generation", TraceStartupTime);
204
  _adapter_code = MethodHandlesAdapterBlob::create(adapter_code_size);
205
  if (_adapter_code == NULL)
206
    vm_exit_out_of_memory(adapter_code_size, "CodeCache: no room for MethodHandles adapters");
T
twisti 已提交
207
  CodeBuffer code(_adapter_code);
208
  MethodHandlesAdapterGenerator g(&code);
209
  g.generate();
210 211 212 213 214
}

//------------------------------------------------------------------------------
// MethodHandlesAdapterGenerator::generate
//
215
void MethodHandlesAdapterGenerator::generate() {
216 217 218 219
  // Generate generic method handle adapters.
  for (MethodHandles::EntryKind ek = MethodHandles::_EK_FIRST;
       ek < MethodHandles::_EK_LIMIT;
       ek = MethodHandles::EntryKind(1 + (int)ek)) {
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
    if (MethodHandles::ek_supported(ek)) {
      StubCodeMark mark(this, "MethodHandle", MethodHandles::entry_name(ek));
      MethodHandles::generate_method_handle_stub(_masm, ek);
    }
  }
}


#ifdef TARGET_ARCH_NYI_6939861
// these defs belong in methodHandles_<arch>.cpp
frame MethodHandles::ricochet_frame_sender(const frame& fr, RegisterMap *map) {
  ShouldNotCallThis();
  return fr;
}
void MethodHandles::ricochet_frame_oops_do(const frame& fr, OopClosure* f, const RegisterMap* reg_map) {
  ShouldNotCallThis();
}
#endif //TARGET_ARCH_NYI_6939861


//------------------------------------------------------------------------------
// MethodHandles::ek_supported
//
bool MethodHandles::ek_supported(MethodHandles::EntryKind ek) {
  MethodHandles::EntryKind ek_orig = MethodHandles::ek_original_kind(ek);
  switch (ek_orig) {
  case _adapter_unused_13:
    return false;  // not defined yet
  case _adapter_prim_to_ref:
    return UseRicochetFrames && conv_op_supported(java_lang_invoke_AdapterMethodHandle::OP_PRIM_TO_REF);
  case _adapter_collect_args:
    return UseRicochetFrames && conv_op_supported(java_lang_invoke_AdapterMethodHandle::OP_COLLECT_ARGS);
  case _adapter_fold_args:
    return UseRicochetFrames && conv_op_supported(java_lang_invoke_AdapterMethodHandle::OP_FOLD_ARGS);
  case _adapter_opt_return_any:
    return UseRicochetFrames;
#ifdef TARGET_ARCH_NYI_6939861
  // ports before 6939861 supported only three kinds of spread ops
  case _adapter_spread_args:
    // restrict spreads to three kinds:
    switch (ek) {
    case _adapter_opt_spread_0:
    case _adapter_opt_spread_1:
    case _adapter_opt_spread_more:
      break;
    default:
      return false;
      break;
    }
    break;
#endif //TARGET_ARCH_NYI_6939861
271
  }
272
  return true;
273 274 275
}


276 277
void MethodHandles::set_enabled(bool z) {
  if (_enabled != z) {
278
    guarantee(z && EnableInvokeDynamic, "can only enable once, and only if -XX:+EnableInvokeDynamic");
279 280 281 282 283 284 285 286 287
    _enabled = z;
  }
}

// Note: A method which does not have a TRAPS argument cannot block in the GC
// or throw exceptions.  Such methods are used in this file to do something quick
// and local, like parse a data structure.  For speed, such methods work on plain
// oops, not handles.  Trapping methods uniformly operate on handles.

288 289 290
methodHandle MethodHandles::decode_vmtarget(oop vmtarget, int vmindex, oop mtype,
                                            KlassHandle& receiver_limit_result, int& decode_flags_result) {
  if (vmtarget == NULL)  return methodHandle();
291 292 293 294 295 296 297
  assert(methodOopDesc::nonvirtual_vtable_index < 0, "encoding");
  if (vmindex < 0) {
    // this DMH performs no dispatch; it is directly bound to a methodOop
    // A MemberName may either be directly bound to a methodOop,
    // or it may use the klass/index form; both forms mean the same thing.
    methodOop m = decode_methodOop(methodOop(vmtarget), decode_flags_result);
    if ((decode_flags_result & _dmf_has_receiver) != 0
298
        && java_lang_invoke_MethodType::is_instance(mtype)) {
299
      // Extract receiver type restriction from mtype.ptypes[0].
300
      objArrayOop ptypes = java_lang_invoke_MethodType::ptypes(mtype);
301 302 303 304 305 306 307 308 309 310 311 312 313
      oop ptype0 = (ptypes == NULL || ptypes->length() < 1) ? oop(NULL) : ptypes->obj_at(0);
      if (java_lang_Class::is_instance(ptype0))
        receiver_limit_result = java_lang_Class::as_klassOop(ptype0);
    }
    if (vmindex == methodOopDesc::nonvirtual_vtable_index) {
      // this DMH can be an "invokespecial" version
      decode_flags_result &= ~_dmf_does_dispatch;
    } else {
      assert(vmindex == methodOopDesc::invalid_vtable_index, "random vmindex?");
    }
    return m;
  } else {
    assert(vmtarget->is_klass(), "must be class or interface");
314 315
    decode_flags_result |= MethodHandles::_dmf_does_dispatch;
    decode_flags_result |= MethodHandles::_dmf_has_receiver;
316 317 318 319 320 321 322 323
    receiver_limit_result = (klassOop)vmtarget;
    Klass* tk = Klass::cast((klassOop)vmtarget);
    if (tk->is_interface()) {
      // an itable linkage is <interface, itable index>
      decode_flags_result |= MethodHandles::_dmf_from_interface;
      return klassItable::method_for_itable_index((klassOop)vmtarget, vmindex);
    } else {
      if (!tk->oop_is_instance())
324
        tk = instanceKlass::cast(SystemDictionary::Object_klass());
325 326 327 328 329 330 331 332
      return ((instanceKlass*)tk)->method_at_vtable(vmindex);
    }
  }
}

// MemberName and DirectMethodHandle have the same linkage to the JVM internals.
// (MemberName is the non-operational name used for queries and setup.)

333
methodHandle MethodHandles::decode_DirectMethodHandle(oop mh, KlassHandle& receiver_limit_result, int& decode_flags_result) {
334 335 336
  oop vmtarget = java_lang_invoke_DirectMethodHandle::vmtarget(mh);
  int vmindex  = java_lang_invoke_DirectMethodHandle::vmindex(mh);
  oop mtype    = java_lang_invoke_DirectMethodHandle::type(mh);
337 338 339
  return decode_vmtarget(vmtarget, vmindex, mtype, receiver_limit_result, decode_flags_result);
}

340
methodHandle MethodHandles::decode_BoundMethodHandle(oop mh, KlassHandle& receiver_limit_result, int& decode_flags_result) {
341
  assert(java_lang_invoke_BoundMethodHandle::is_instance(mh), "");
342
  assert(mh->klass() != SystemDictionary::AdapterMethodHandle_klass(), "");
343 344
  for (oop bmh = mh;;) {
    // Bound MHs can be stacked to bind several arguments.
345
    oop target = java_lang_invoke_MethodHandle::vmtarget(bmh);
346
    if (target == NULL)  return methodHandle();
347 348 349 350 351 352
    decode_flags_result |= MethodHandles::_dmf_binds_argument;
    klassOop tk = target->klass();
    if (tk == SystemDictionary::BoundMethodHandle_klass()) {
      bmh = target;
      continue;
    } else {
353
      if (java_lang_invoke_MethodHandle::is_subclass(tk)) {
354 355 356 357 358
        //assert(tk == SystemDictionary::DirectMethodHandle_klass(), "end of BMH chain must be DMH");
        return decode_MethodHandle(target, receiver_limit_result, decode_flags_result);
      } else {
        // Optimized case:  binding a receiver to a non-dispatched DMH
        // short-circuits directly to the methodOop.
359
        // (It might be another argument besides a receiver also.)
360 361
        assert(target->is_method(), "must be a simple method");
        decode_flags_result |= MethodHandles::_dmf_binds_method;
362 363 364
        methodOop m = (methodOop) target;
        if (!m->is_static())
          decode_flags_result |= MethodHandles::_dmf_has_receiver;
365 366 367 368 369 370
        return m;
      }
    }
  }
}

371
methodHandle MethodHandles::decode_AdapterMethodHandle(oop mh, KlassHandle& receiver_limit_result, int& decode_flags_result) {
372 373 374
  assert(mh->klass() == SystemDictionary::AdapterMethodHandle_klass(), "");
  for (oop amh = mh;;) {
    // Adapter MHs can be stacked to convert several arguments.
375
    int conv_op = adapter_conversion_op(java_lang_invoke_AdapterMethodHandle::conversion(amh));
376
    decode_flags_result |= (_dmf_adapter_lsb << conv_op) & _DMF_ADAPTER_MASK;
377
    oop target = java_lang_invoke_MethodHandle::vmtarget(amh);
378
    if (target == NULL)  return methodHandle();
379 380 381 382 383 384 385 386 387 388 389
    klassOop tk = target->klass();
    if (tk == SystemDictionary::AdapterMethodHandle_klass()) {
      amh = target;
      continue;
    } else {
      // must be a BMH (which will bind some more arguments) or a DMH (for the final call)
      return MethodHandles::decode_MethodHandle(target, receiver_limit_result, decode_flags_result);
    }
  }
}

390 391
methodHandle MethodHandles::decode_MethodHandle(oop mh, KlassHandle& receiver_limit_result, int& decode_flags_result) {
  if (mh == NULL)  return methodHandle();
392
  klassOop mhk = mh->klass();
393
  assert(java_lang_invoke_MethodHandle::is_subclass(mhk), "must be a MethodHandle");
394 395 396 397 398 399
  if (mhk == SystemDictionary::DirectMethodHandle_klass()) {
    return decode_DirectMethodHandle(mh, receiver_limit_result, decode_flags_result);
  } else if (mhk == SystemDictionary::BoundMethodHandle_klass()) {
    return decode_BoundMethodHandle(mh, receiver_limit_result, decode_flags_result);
  } else if (mhk == SystemDictionary::AdapterMethodHandle_klass()) {
    return decode_AdapterMethodHandle(mh, receiver_limit_result, decode_flags_result);
400
  } else if (java_lang_invoke_BoundMethodHandle::is_subclass(mhk)) {
401 402
    // could be a JavaMethodHandle (but not an adapter MH)
    return decode_BoundMethodHandle(mh, receiver_limit_result, decode_flags_result);
403 404
  } else {
    assert(false, "cannot parse this MH");
405
    return methodHandle();  // random MH?
406 407 408 409 410 411 412
  }
}

methodOop MethodHandles::decode_methodOop(methodOop m, int& decode_flags_result) {
  assert(m->is_method(), "");
  if (m->is_static()) {
    // check that signature begins '(L' or '([' (not '(I', '()', etc.)
413
    Symbol* sig = m->signature();
414 415 416
    BasicType recv_bt = char2type(sig->byte_at(1));
    // Note: recv_bt might be T_ILLEGAL if byte_at(2) is ')'
    assert(sig->byte_at(0) == '(', "must be method sig");
417 418
//     if (recv_bt == T_OBJECT || recv_bt == T_ARRAY)
//       decode_flags_result |= _dmf_has_receiver;
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
  } else {
    // non-static method
    decode_flags_result |= _dmf_has_receiver;
    if (!m->can_be_statically_bound() && !m->is_initializer()) {
      decode_flags_result |= _dmf_does_dispatch;
      if (Klass::cast(m->method_holder())->is_interface())
        decode_flags_result |= _dmf_from_interface;
    }
  }
  return m;
}


// A trusted party is handing us a cookie to determine a method.
// Let's boil it down to the method oop they really want.
434
methodHandle MethodHandles::decode_method(oop x, KlassHandle& receiver_limit_result, int& decode_flags_result) {
435
  decode_flags_result = 0;
436
  receiver_limit_result = KlassHandle();
437 438 439 440 441 442
  klassOop xk = x->klass();
  if (xk == Universe::methodKlassObj()) {
    return decode_methodOop((methodOop) x, decode_flags_result);
  } else if (xk == SystemDictionary::MemberName_klass()) {
    // Note: This only works if the MemberName has already been resolved.
    return decode_MemberName(x, receiver_limit_result, decode_flags_result);
443
  } else if (java_lang_invoke_MethodHandle::is_subclass(xk)) {
444
    return decode_MethodHandle(x, receiver_limit_result, decode_flags_result);
445
  } else if (xk == SystemDictionary::reflect_Method_klass()) {
446 447 448 449 450 451
    oop clazz  = java_lang_reflect_Method::clazz(x);
    int slot   = java_lang_reflect_Method::slot(x);
    klassOop k = java_lang_Class::as_klassOop(clazz);
    if (k != NULL && Klass::cast(k)->oop_is_instance())
      return decode_methodOop(instanceKlass::cast(k)->method_with_idnum(slot),
                              decode_flags_result);
452
  } else if (xk == SystemDictionary::reflect_Constructor_klass()) {
453 454 455 456 457 458 459 460 461
    oop clazz  = java_lang_reflect_Constructor::clazz(x);
    int slot   = java_lang_reflect_Constructor::slot(x);
    klassOop k = java_lang_Class::as_klassOop(clazz);
    if (k != NULL && Klass::cast(k)->oop_is_instance())
      return decode_methodOop(instanceKlass::cast(k)->method_with_idnum(slot),
                              decode_flags_result);
  } else {
    // unrecognized object
    assert(!x->is_method(), "already checked");
462
    assert(!java_lang_invoke_MemberName::is_instance(x), "already checked");
463
  }
464
  return methodHandle();
465 466 467 468 469 470
}


int MethodHandles::decode_MethodHandle_stack_pushes(oop mh) {
  if (mh->klass() == SystemDictionary::DirectMethodHandle_klass())
    return 0;                   // no push/pop
471
  int this_vmslots = java_lang_invoke_MethodHandle::vmslots(mh);
472 473 474
  int last_vmslots = 0;
  oop last_mh = mh;
  for (;;) {
475
    oop target = java_lang_invoke_MethodHandle::vmtarget(last_mh);
476
    if (target->klass() == SystemDictionary::DirectMethodHandle_klass()) {
477
      last_vmslots = java_lang_invoke_MethodHandle::vmslots(target);
478
      break;
479
    } else if (!java_lang_invoke_MethodHandle::is_instance(target)) {
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
      // might be klass or method
      assert(target->is_method(), "must get here with a direct ref to method");
      last_vmslots = methodOop(target)->size_of_parameters();
      break;
    }
    last_mh = target;
  }
  // If I am called with fewer VM slots than my ultimate callee,
  // it must be that I push the additionally needed slots.
  // Likewise if am called with more VM slots, I will pop them.
  return (last_vmslots - this_vmslots);
}


// MemberName support

496
// import java_lang_invoke_MemberName.*
497
enum {
498 499 500 501 502 503
  IS_METHOD      = java_lang_invoke_MemberName::MN_IS_METHOD,
  IS_CONSTRUCTOR = java_lang_invoke_MemberName::MN_IS_CONSTRUCTOR,
  IS_FIELD       = java_lang_invoke_MemberName::MN_IS_FIELD,
  IS_TYPE        = java_lang_invoke_MemberName::MN_IS_TYPE,
  SEARCH_SUPERCLASSES = java_lang_invoke_MemberName::MN_SEARCH_SUPERCLASSES,
  SEARCH_INTERFACES   = java_lang_invoke_MemberName::MN_SEARCH_INTERFACES,
504
  ALL_KINDS      = IS_METHOD | IS_CONSTRUCTOR | IS_FIELD | IS_TYPE,
505
  VM_INDEX_UNINITIALIZED = java_lang_invoke_MemberName::VM_INDEX_UNINITIALIZED
506 507
};

508 509 510 511 512 513 514
Handle MethodHandles::new_MemberName(TRAPS) {
  Handle empty;
  instanceKlassHandle k(THREAD, SystemDictionary::MemberName_klass());
  if (!k->is_initialized())  k->initialize(CHECK_(empty));
  return Handle(THREAD, k->allocate_instance(THREAD));
}

515
void MethodHandles::init_MemberName(oop mname_oop, oop target_oop) {
516
  if (target_oop->klass() == SystemDictionary::reflect_Field_klass()) {
517 518 519 520 521 522 523
    oop clazz = java_lang_reflect_Field::clazz(target_oop); // fd.field_holder()
    int slot  = java_lang_reflect_Field::slot(target_oop);  // fd.index()
    int mods  = java_lang_reflect_Field::modifiers(target_oop);
    klassOop k = java_lang_Class::as_klassOop(clazz);
    int offset = instanceKlass::cast(k)->offset_from_fields(slot);
    init_MemberName(mname_oop, k, accessFlags_from(mods), offset);
  } else {
524 525
    KlassHandle receiver_limit; int decode_flags = 0;
    methodHandle m = MethodHandles::decode_method(target_oop, receiver_limit, decode_flags);
526
    bool do_dispatch = ((decode_flags & MethodHandles::_dmf_does_dispatch) != 0);
527
    init_MemberName(mname_oop, m(), do_dispatch);
528 529 530 531 532 533 534 535 536 537 538
  }
}

void MethodHandles::init_MemberName(oop mname_oop, methodOop m, bool do_dispatch) {
  int flags = ((m->is_initializer() ? IS_CONSTRUCTOR : IS_METHOD)
               | (jushort)( m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS ));
  oop vmtarget = m;
  int vmindex  = methodOopDesc::invalid_vtable_index;  // implies no info yet
  if (!do_dispatch || (flags & IS_CONSTRUCTOR) || m->can_be_statically_bound())
    vmindex = methodOopDesc::nonvirtual_vtable_index; // implies never any dispatch
  assert(vmindex != VM_INDEX_UNINITIALIZED, "Java sentinel value");
539 540 541 542
  java_lang_invoke_MemberName::set_vmtarget(mname_oop, vmtarget);
  java_lang_invoke_MemberName::set_vmindex(mname_oop,  vmindex);
  java_lang_invoke_MemberName::set_flags(mname_oop,    flags);
  java_lang_invoke_MemberName::set_clazz(mname_oop,    Klass::cast(m->method_holder())->java_mirror());
543 544 545 546 547
}

void MethodHandles::init_MemberName(oop mname_oop, klassOop field_holder, AccessFlags mods, int offset) {
  int flags = (IS_FIELD | (jushort)( mods.as_short() & JVM_RECOGNIZED_FIELD_MODIFIERS ));
  oop vmtarget = field_holder;
548
  int vmindex  = offset;  // determines the field uniquely when combined with static bit
549
  assert(vmindex != VM_INDEX_UNINITIALIZED, "bad alias on vmindex");
550 551 552 553
  java_lang_invoke_MemberName::set_vmtarget(mname_oop, vmtarget);
  java_lang_invoke_MemberName::set_vmindex(mname_oop,  vmindex);
  java_lang_invoke_MemberName::set_flags(mname_oop,    flags);
  java_lang_invoke_MemberName::set_clazz(mname_oop,    Klass::cast(field_holder)->java_mirror());
554 555 556
}


557 558
methodHandle MethodHandles::decode_MemberName(oop mname, KlassHandle& receiver_limit_result, int& decode_flags_result) {
  methodHandle empty;
559
  int flags  = java_lang_invoke_MemberName::flags(mname);
560
  if ((flags & (IS_METHOD | IS_CONSTRUCTOR)) == 0)  return empty;  // not invocable
561 562
  oop vmtarget = java_lang_invoke_MemberName::vmtarget(mname);
  int vmindex  = java_lang_invoke_MemberName::vmindex(mname);
563 564
  if (vmindex == VM_INDEX_UNINITIALIZED)  return empty;  // not resolved
  methodHandle m = decode_vmtarget(vmtarget, vmindex, NULL, receiver_limit_result, decode_flags_result);
565
  oop clazz = java_lang_invoke_MemberName::clazz(mname);
566 567 568 569 570
  if (clazz != NULL && java_lang_Class::is_instance(clazz)) {
    klassOop klass = java_lang_Class::as_klassOop(clazz);
    if (klass != NULL)  receiver_limit_result = klass;
  }
  return m;
571 572
}

573
// convert the external string or reflective type to an internal signature
574
Symbol* MethodHandles::convert_to_signature(oop type_str, bool polymorphic, TRAPS) {
575 576
  if (java_lang_invoke_MethodType::is_instance(type_str)) {
    return java_lang_invoke_MethodType::as_signature(type_str, polymorphic, CHECK_NULL);
577 578 579 580 581 582 583 584 585 586 587 588 589
  } else if (java_lang_Class::is_instance(type_str)) {
    return java_lang_Class::as_signature(type_str, false, CHECK_NULL);
  } else if (java_lang_String::is_instance(type_str)) {
    if (polymorphic) {
      return java_lang_String::as_symbol(type_str, CHECK_NULL);
    } else {
      return java_lang_String::as_symbol_or_null(type_str);
    }
  } else {
    THROW_MSG_(vmSymbols::java_lang_InternalError(), "unrecognized type", NULL);
  }
}

590 591 592 593
// An unresolved member name is a mere symbolic reference.
// Resolving it plants a vmtarget/vmindex in it,
// which refers dirctly to JVM internals.
void MethodHandles::resolve_MemberName(Handle mname, TRAPS) {
594
  assert(java_lang_invoke_MemberName::is_instance(mname()), "");
595 596 597 598 599 600 601 602 603 604
#ifdef ASSERT
  // If this assert throws, renegotiate the sentinel value used by the Java code,
  // so that it is distinct from any valid vtable index value, and any special
  // values defined in methodOopDesc::VtableIndexFlag.
  // The point of the slop is to give the Java code and the JVM some room
  // to independently specify sentinel values.
  const int sentinel_slop  = 10;
  const int sentinel_limit = methodOopDesc::highest_unused_vtable_index_value - sentinel_slop;
  assert(VM_INDEX_UNINITIALIZED < sentinel_limit, "Java sentinel != JVM sentinels");
#endif
605
  if (java_lang_invoke_MemberName::vmindex(mname()) != VM_INDEX_UNINITIALIZED)
606
    return;  // already resolved
607 608 609 610
  Handle defc_oop(THREAD, java_lang_invoke_MemberName::clazz(mname()));
  Handle name_str(THREAD, java_lang_invoke_MemberName::name( mname()));
  Handle type_str(THREAD, java_lang_invoke_MemberName::type( mname()));
  int    flags    =       java_lang_invoke_MemberName::flags(mname());
611

612
  if (defc_oop.is_null() || name_str.is_null() || type_str.is_null()) {
613 614
    THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "nothing to resolve");
  }
615 616 617 618 619 620 621 622 623 624

  instanceKlassHandle defc;
  {
    klassOop defc_klassOop = java_lang_Class::as_klassOop(defc_oop());
    if (defc_klassOop == NULL)  return;  // a primitive; no resolution possible
    if (!Klass::cast(defc_klassOop)->oop_is_instance()) {
      if (!Klass::cast(defc_klassOop)->oop_is_array())  return;
      defc_klassOop = SystemDictionary::Object_klass();
    }
    defc = instanceKlassHandle(THREAD, defc_klassOop);
625 626 627 628
  }
  if (defc.is_null()) {
    THROW_MSG(vmSymbols::java_lang_InternalError(), "primitive class");
  }
629
  defc->link_class(CHECK);  // possible safepoint
630 631

  // convert the external string name to an internal symbol
632
  TempNewSymbol name = java_lang_String::as_symbol_or_null(name_str());
633
  if (name == NULL)  return;  // no such name
634 635
  if (name == vmSymbols::class_initializer_name())
    return; // illegal name
636

637 638 639
  Handle polymorphic_method_type;
  bool polymorphic_signature = false;
  if ((flags & ALL_KINDS) == IS_METHOD &&
640
      (defc() == SystemDictionary::MethodHandle_klass() &&
641
       methodOopDesc::is_method_handle_invoke_name(name))) {
642
    polymorphic_signature = true;
643
  }
644

645
  // convert the external string or reflective type to an internal signature
646 647 648
  TempNewSymbol type = convert_to_signature(type_str(), polymorphic_signature, CHECK);
  if (java_lang_invoke_MethodType::is_instance(type_str()) && polymorphic_signature) {
    polymorphic_method_type = type_str;  // preserve exactly
649
  }
650
  if (type == NULL)  return;  // no such signature exists in the VM
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670

  // Time to do the lookup.
  switch (flags & ALL_KINDS) {
  case IS_METHOD:
    {
      CallInfo result;
      {
        EXCEPTION_MARK;
        if ((flags & JVM_ACC_STATIC) != 0) {
          LinkResolver::resolve_static_call(result,
                        defc, name, type, KlassHandle(), false, false, THREAD);
        } else if (defc->is_interface()) {
          LinkResolver::resolve_interface_call(result, Handle(), defc,
                        defc, name, type, KlassHandle(), false, false, THREAD);
        } else {
          LinkResolver::resolve_virtual_call(result, Handle(), defc,
                        defc, name, type, KlassHandle(), false, false, THREAD);
        }
        if (HAS_PENDING_EXCEPTION) {
          CLEAR_PENDING_EXCEPTION;
671
          break;  // go to second chance
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
        }
      }
      methodHandle m = result.resolved_method();
      oop vmtarget = NULL;
      int vmindex = methodOopDesc::nonvirtual_vtable_index;
      if (defc->is_interface()) {
        vmindex = klassItable::compute_itable_index(m());
        assert(vmindex >= 0, "");
      } else if (result.has_vtable_index()) {
        vmindex = result.vtable_index();
        assert(vmindex >= 0, "");
      }
      assert(vmindex != VM_INDEX_UNINITIALIZED, "");
      if (vmindex < 0) {
        assert(result.is_statically_bound(), "");
        vmtarget = m();
      } else {
        vmtarget = result.resolved_klass()->as_klassOop();
      }
      int mods = (m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS);
692 693 694
      java_lang_invoke_MemberName::set_vmtarget(mname(), vmtarget);
      java_lang_invoke_MemberName::set_vmindex(mname(),  vmindex);
      java_lang_invoke_MemberName::set_modifiers(mname(), mods);
695 696
      DEBUG_ONLY(KlassHandle junk1; int junk2);
      assert(decode_MemberName(mname(), junk1, junk2) == result.resolved_method(),
697 698 699 700 701 702 703 704
             "properly stored for later decoding");
      return;
    }
  case IS_CONSTRUCTOR:
    {
      CallInfo result;
      {
        EXCEPTION_MARK;
705
        if (name == vmSymbols::object_initializer_name()) {
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
          LinkResolver::resolve_special_call(result,
                        defc, name, type, KlassHandle(), false, THREAD);
        } else {
          break;                // will throw after end of switch
        }
        if (HAS_PENDING_EXCEPTION) {
          CLEAR_PENDING_EXCEPTION;
          return;
        }
      }
      assert(result.is_statically_bound(), "");
      methodHandle m = result.resolved_method();
      oop vmtarget = m();
      int vmindex  = methodOopDesc::nonvirtual_vtable_index;
      int mods     = (m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS);
721 722 723
      java_lang_invoke_MemberName::set_vmtarget(mname(), vmtarget);
      java_lang_invoke_MemberName::set_vmindex(mname(),  vmindex);
      java_lang_invoke_MemberName::set_modifiers(mname(), mods);
724 725
      DEBUG_ONLY(KlassHandle junk1; int junk2);
      assert(decode_MemberName(mname(), junk1, junk2) == result.resolved_method(),
726 727 728 729 730 731 732
             "properly stored for later decoding");
      return;
    }
  case IS_FIELD:
    {
      // This is taken from LinkResolver::resolve_field, sans access checks.
      fieldDescriptor fd; // find_field initializes fd if found
733
      KlassHandle sel_klass(THREAD, instanceKlass::cast(defc())->find_field(name, type, &fd));
734 735 736 737 738 739
      // check if field exists; i.e., if a klass containing the field def has been selected
      if (sel_klass.is_null())  return;
      oop vmtarget = sel_klass->as_klassOop();
      int vmindex  = fd.offset();
      int mods     = (fd.access_flags().as_short() & JVM_RECOGNIZED_FIELD_MODIFIERS);
      if (vmindex == VM_INDEX_UNINITIALIZED)  break;  // should not happen
740 741 742
      java_lang_invoke_MemberName::set_vmtarget(mname(),  vmtarget);
      java_lang_invoke_MemberName::set_vmindex(mname(),   vmindex);
      java_lang_invoke_MemberName::set_modifiers(mname(), mods);
743 744
      return;
    }
745 746 747 748 749 750 751 752
  default:
    THROW_MSG(vmSymbols::java_lang_InternalError(), "unrecognized MemberName format");
  }

  // Second chance.
  if (polymorphic_method_type.not_null()) {
    // Look on a non-null class loader.
    Handle cur_class_loader;
753
    const int nptypes = java_lang_invoke_MethodType::ptype_count(polymorphic_method_type());
754 755
    for (int i = 0; i <= nptypes; i++) {
      oop type_mirror;
756 757
      if (i < nptypes)  type_mirror = java_lang_invoke_MethodType::ptype(polymorphic_method_type(), i);
      else              type_mirror = java_lang_invoke_MethodType::rtype(polymorphic_method_type());
758 759 760 761 762 763 764 765 766 767 768 769 770 771
      klassOop example_type = java_lang_Class::as_klassOop(type_mirror);
      if (example_type == NULL)  continue;
      oop class_loader = Klass::cast(example_type)->class_loader();
      if (class_loader == NULL || class_loader == cur_class_loader())  continue;
      cur_class_loader = Handle(THREAD, class_loader);
      methodOop m = SystemDictionary::find_method_handle_invoke(name,
                                                                type,
                                                                KlassHandle(THREAD, example_type),
                                                                THREAD);
      if (HAS_PENDING_EXCEPTION) {
        CLEAR_PENDING_EXCEPTION;
        m = NULL;
        // try again with a different class loader...
      }
772 773 774
      if (m != NULL &&
          m->is_method_handle_invoke() &&
          java_lang_invoke_MethodType::equals(polymorphic_method_type(), m->method_handle_type())) {
775
        int mods = (m->access_flags().as_short() & JVM_RECOGNIZED_METHOD_MODIFIERS);
776 777 778
        java_lang_invoke_MemberName::set_vmtarget(mname(),  m);
        java_lang_invoke_MemberName::set_vmindex(mname(),   m->vtable_index());
        java_lang_invoke_MemberName::set_modifiers(mname(), mods);
779 780 781
        return;
      }
    }
782 783 784 785 786 787 788 789
  }
}

// Conversely, a member name which is only initialized from JVM internals
// may have null defc, name, and type fields.
// Resolving it plants a vmtarget/vmindex in it,
// which refers directly to JVM internals.
void MethodHandles::expand_MemberName(Handle mname, int suppress, TRAPS) {
790 791 792
  assert(java_lang_invoke_MemberName::is_instance(mname()), "");
  oop vmtarget = java_lang_invoke_MemberName::vmtarget(mname());
  int vmindex  = java_lang_invoke_MemberName::vmindex(mname());
793 794 795 796
  if (vmtarget == NULL || vmindex == VM_INDEX_UNINITIALIZED) {
    THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "nothing to expand");
  }

797 798 799 800
  bool have_defc = (java_lang_invoke_MemberName::clazz(mname()) != NULL);
  bool have_name = (java_lang_invoke_MemberName::name(mname()) != NULL);
  bool have_type = (java_lang_invoke_MemberName::type(mname()) != NULL);
  int flags      = java_lang_invoke_MemberName::flags(mname());
801 802 803 804 805 806 807 808 809 810 811 812 813

  if (suppress != 0) {
    if (suppress & _suppress_defc)  have_defc = true;
    if (suppress & _suppress_name)  have_name = true;
    if (suppress & _suppress_type)  have_type = true;
  }

  if (have_defc && have_name && have_type)  return;  // nothing needed

  switch (flags & ALL_KINDS) {
  case IS_METHOD:
  case IS_CONSTRUCTOR:
    {
814 815
      KlassHandle receiver_limit; int decode_flags = 0;
      methodHandle m = decode_vmtarget(vmtarget, vmindex, NULL, receiver_limit, decode_flags);
816 817 818
      if (m.is_null())  break;
      if (!have_defc) {
        klassOop defc = m->method_holder();
819 820 821
        if (receiver_limit.not_null() && receiver_limit() != defc
            && Klass::cast(receiver_limit())->is_subtype_of(defc))
          defc = receiver_limit();
822
        java_lang_invoke_MemberName::set_clazz(mname(), Klass::cast(defc)->java_mirror());
823 824 825 826
      }
      if (!have_name) {
        //not java_lang_String::create_from_symbol; let's intern member names
        Handle name = StringTable::intern(m->name(), CHECK);
827
        java_lang_invoke_MemberName::set_name(mname(), name());
828 829 830
      }
      if (!have_type) {
        Handle type = java_lang_String::create_from_symbol(m->signature(), CHECK);
831
        java_lang_invoke_MemberName::set_type(mname(), type());
832 833 834 835 836 837 838 839 840 841 842 843 844 845
      }
      return;
    }
  case IS_FIELD:
    {
      // This is taken from LinkResolver::resolve_field, sans access checks.
      if (!vmtarget->is_klass())  break;
      if (!Klass::cast((klassOop) vmtarget)->oop_is_instance())  break;
      instanceKlassHandle defc(THREAD, (klassOop) vmtarget);
      bool is_static = ((flags & JVM_ACC_STATIC) != 0);
      fieldDescriptor fd; // find_field initializes fd if found
      if (!defc->find_field_from_offset(vmindex, is_static, &fd))
        break;                  // cannot expand
      if (!have_defc) {
846
        java_lang_invoke_MemberName::set_clazz(mname(), defc->java_mirror());
847 848 849 850
      }
      if (!have_name) {
        //not java_lang_String::create_from_symbol; let's intern member names
        Handle name = StringTable::intern(fd.name(), CHECK);
851
        java_lang_invoke_MemberName::set_name(mname(), name());
852 853 854
      }
      if (!have_type) {
        Handle type = java_lang_String::create_from_symbol(fd.signature(), CHECK);
855
        java_lang_invoke_MemberName::set_type(mname(), type());
856 857 858 859 860 861 862 863
      }
      return;
    }
  }
  THROW_MSG(vmSymbols::java_lang_InternalError(), "unrecognized MemberName format");
}

int MethodHandles::find_MemberNames(klassOop k,
864
                                    Symbol* name, Symbol* sig,
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
                                    int mflags, klassOop caller,
                                    int skip, objArrayOop results) {
  DEBUG_ONLY(No_Safepoint_Verifier nsv);
  // this code contains no safepoints!

  // %%% take caller into account!

  if (k == NULL || !Klass::cast(k)->oop_is_instance())  return -1;

  int rfill = 0, rlimit = results->length(), rskip = skip;
  // overflow measurement:
  int overflow = 0, overflow_limit = MAX2(1000, rlimit);

  int match_flags = mflags;
  bool search_superc = ((match_flags & SEARCH_SUPERCLASSES) != 0);
  bool search_intfc  = ((match_flags & SEARCH_INTERFACES)   != 0);
  bool local_only = !(search_superc | search_intfc);
  bool classes_only = false;

  if (name != NULL) {
    if (name->utf8_length() == 0)  return 0; // a match is not possible
  }
  if (sig != NULL) {
    if (sig->utf8_length() == 0)  return 0; // a match is not possible
    if (sig->byte_at(0) == '(')
      match_flags &= ~(IS_FIELD | IS_TYPE);
    else
      match_flags &= ~(IS_CONSTRUCTOR | IS_METHOD);
  }

  if ((match_flags & IS_TYPE) != 0) {
    // NYI, and Core Reflection works quite well for this query
  }

  if ((match_flags & IS_FIELD) != 0) {
    for (FieldStream st(k, local_only, !search_intfc); !st.eos(); st.next()) {
      if (name != NULL && st.name() != name)
          continue;
      if (sig != NULL && st.signature() != sig)
        continue;
      // passed the filters
      if (rskip > 0) {
        --rskip;
      } else if (rfill < rlimit) {
        oop result = results->obj_at(rfill++);
910
        if (!java_lang_invoke_MemberName::is_instance(result))
911 912 913 914 915 916 917 918 919 920
          return -99;  // caller bug!
        MethodHandles::init_MemberName(result, st.klass()->as_klassOop(), st.access_flags(), st.offset());
      } else if (++overflow >= overflow_limit) {
        match_flags = 0; break; // got tired of looking at overflow
      }
    }
  }

  if ((match_flags & (IS_METHOD | IS_CONSTRUCTOR)) != 0) {
    // watch out for these guys:
921 922
    Symbol* init_name   = vmSymbols::object_initializer_name();
    Symbol* clinit_name = vmSymbols::class_initializer_name();
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
    if (name == clinit_name)  clinit_name = NULL; // hack for exposing <clinit>
    bool negate_name_test = false;
    // fix name so that it captures the intention of IS_CONSTRUCTOR
    if (!(match_flags & IS_METHOD)) {
      // constructors only
      if (name == NULL) {
        name = init_name;
      } else if (name != init_name) {
        return 0;               // no constructors of this method name
      }
    } else if (!(match_flags & IS_CONSTRUCTOR)) {
      // methods only
      if (name == NULL) {
        name = init_name;
        negate_name_test = true; // if we see the name, we *omit* the entry
      } else if (name == init_name) {
        return 0;               // no methods of this constructor name
      }
    } else {
      // caller will accept either sort; no need to adjust name
    }
    for (MethodStream st(k, local_only, !search_intfc); !st.eos(); st.next()) {
      methodOop m = st.method();
946
      Symbol* m_name = m->name();
947 948 949 950 951 952 953 954 955 956 957
      if (m_name == clinit_name)
        continue;
      if (name != NULL && ((m_name != name) ^ negate_name_test))
          continue;
      if (sig != NULL && m->signature() != sig)
        continue;
      // passed the filters
      if (rskip > 0) {
        --rskip;
      } else if (rfill < rlimit) {
        oop result = results->obj_at(rfill++);
958
        if (!java_lang_invoke_MemberName::is_instance(result))
959 960 961 962 963 964 965 966 967 968 969 970 971
          return -99;  // caller bug!
        MethodHandles::init_MemberName(result, m, true);
      } else if (++overflow >= overflow_limit) {
        match_flags = 0; break; // got tired of looking at overflow
      }
    }
  }

  // return number of elements we at leasted wanted to initialize
  return rfill + overflow;
}


972 973 974 975 976 977 978 979 980 981 982 983 984 985
// Decode this java.lang.Class object into an instanceKlass, if possible.
// Throw IAE if not
instanceKlassHandle MethodHandles::resolve_instance_klass(oop java_mirror_oop, TRAPS) {
  instanceKlassHandle empty;
  klassOop caller = NULL;
  if (java_lang_Class::is_instance(java_mirror_oop)) {
    caller = java_lang_Class::as_klassOop(java_mirror_oop);
  }
  if (caller == NULL || !Klass::cast(caller)->oop_is_instance()) {
    THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(), "not a class", empty);
  }
  return instanceKlassHandle(THREAD, caller);
}

986 987 988 989 990 991


// Decode the vmtarget field of a method handle.
// Sanitize out methodOops, klassOops, and any other non-Java data.
// This is for debugging and reflection.
oop MethodHandles::encode_target(Handle mh, int format, TRAPS) {
992
  assert(java_lang_invoke_MethodHandle::is_instance(mh()), "must be a MH");
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
  if (format == ETF_FORCE_DIRECT_HANDLE ||
      format == ETF_COMPILE_DIRECT_HANDLE) {
    // Internal function for stress testing.
    Handle mt = java_lang_invoke_MethodHandle::type(mh());
    int invocation_count = 10000;
    TempNewSymbol signature = java_lang_invoke_MethodType::as_signature(mt(), true, CHECK_NULL);
    bool omit_receiver_argument = true;
    MethodHandleCompiler mhc(mh, vmSymbols::invoke_name(), signature, invocation_count, omit_receiver_argument, CHECK_NULL);
    methodHandle m = mhc.compile(CHECK_NULL);
    if (StressMethodHandleWalk && Verbose || PrintMiscellaneous) {
      tty->print_cr("MethodHandleNatives.getTarget(%s)",
                    format == ETF_FORCE_DIRECT_HANDLE ? "FORCE_DIRECT" : "COMPILE_DIRECT");
      if (Verbose) {
        m->print_codes();
      }
    }
    if (StressMethodHandleWalk) {
      InterpreterOopMap mask;
      OopMapCache::compute_one_oop_map(m, m->code_size() - 1, &mask);
    }
    if ((format == ETF_COMPILE_DIRECT_HANDLE ||
         CompilationPolicy::must_be_compiled(m))
        && !instanceKlass::cast(m->method_holder())->is_not_initialized()
        && CompilationPolicy::can_be_compiled(m)) {
      // Force compilation
      CompileBroker::compile_method(m, InvocationEntryBci,
                                    CompLevel_initial_compile,
                                    methodHandle(), 0, "MethodHandleNatives.getTarget",
                                    CHECK_NULL);
    }
    // Now wrap m in a DirectMethodHandle.
    instanceKlassHandle dmh_klass(THREAD, SystemDictionary::DirectMethodHandle_klass());
    Handle dmh = dmh_klass->allocate_instance_handle(CHECK_NULL);
    JavaValue ignore_result(T_VOID);
    Symbol* init_name = vmSymbols::object_initializer_name();
    Symbol* init_sig  = vmSymbols::notifyGenericMethodType_signature();
    JavaCalls::call_special(&ignore_result, dmh,
                            SystemDictionaryHandles::MethodHandle_klass(), init_name, init_sig,
                            java_lang_invoke_MethodHandle::type(mh()), CHECK_NULL);
    MethodHandles::init_DirectMethodHandle(dmh, m, false, CHECK_NULL);
    return dmh();
  }
1035
  if (format == ETF_HANDLE_OR_METHOD_NAME) {
1036
    oop target = java_lang_invoke_MethodHandle::vmtarget(mh());
1037 1038 1039 1040
    if (target == NULL) {
      return NULL;                // unformed MH
    }
    klassOop tklass = target->klass();
1041
    if (Klass::cast(tklass)->is_subclass_of(SystemDictionary::Object_klass())) {
1042 1043 1044 1045 1046 1047 1048 1049 1050
      return target;              // target is another MH (or something else?)
    }
  }
  if (format == ETF_DIRECT_HANDLE) {
    oop target = mh();
    for (;;) {
      if (target->klass() == SystemDictionary::DirectMethodHandle_klass()) {
        return target;
      }
1051
      if (!java_lang_invoke_MethodHandle::is_instance(target)){
1052 1053
        return NULL;                // unformed MH
      }
1054
      target = java_lang_invoke_MethodHandle::vmtarget(target);
1055 1056 1057 1058 1059 1060
    }
  }
  // cases of metadata in MH.vmtarget:
  // - AMH can have methodOop for static invoke with bound receiver
  // - DMH can have methodOop for static invoke (on variable receiver)
  // - DMH can have klassOop for dispatched (non-static) invoke
1061 1062 1063
  KlassHandle receiver_limit; int decode_flags = 0;
  methodHandle m = decode_MethodHandle(mh(), receiver_limit, decode_flags);
  if (m.is_null())  return NULL;
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
  switch (format) {
  case ETF_REFLECT_METHOD:
    // same as jni_ToReflectedMethod:
    if (m->is_initializer()) {
      return Reflection::new_constructor(m, THREAD);
    } else {
      return Reflection::new_method(m, UseNewReflection, false, THREAD);
    }

  case ETF_HANDLE_OR_METHOD_NAME:   // method, not handle
  case ETF_METHOD_NAME:
    {
      if (SystemDictionary::MemberName_klass() == NULL)  break;
      instanceKlassHandle mname_klass(THREAD, SystemDictionary::MemberName_klass());
      mname_klass->initialize(CHECK_NULL);
1079
      Handle mname = mname_klass->allocate_instance_handle(CHECK_NULL);  // possible safepoint
1080
      java_lang_invoke_MemberName::set_vmindex(mname(), VM_INDEX_UNINITIALIZED);
1081
      bool do_dispatch = ((decode_flags & MethodHandles::_dmf_does_dispatch) != 0);
1082
      init_MemberName(mname(), m(), do_dispatch);
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
      expand_MemberName(mname, 0, CHECK_NULL);
      return mname();
    }
  }

  // Unknown format code.
  char msg[50];
  jio_snprintf(msg, sizeof(msg), "unknown getTarget format=%d", format);
  THROW_MSG_NULL(vmSymbols::java_lang_IllegalArgumentException(), msg);
}

1094 1095 1096 1097 1098
static const char* always_null_names[] = {
  "java/lang/Void",
  "java/lang/Null",
  //"java/lang/Nothing",
  "sun/dyn/empty/Empty",
1099
  "sun/invoke/empty/Empty",
1100 1101 1102 1103
  NULL
};

static bool is_always_null_type(klassOop klass) {
1104
  if (klass == NULL)  return false;  // safety
1105 1106 1107 1108 1109
  if (!Klass::cast(klass)->oop_is_instance())  return false;
  instanceKlass* ik = instanceKlass::cast(klass);
  // Must be on the boot class path:
  if (ik->class_loader() != NULL)  return false;
  // Check the name.
1110
  Symbol* name = ik->name();
1111 1112 1113
  for (int i = 0; ; i++) {
    const char* test_name = always_null_names[i];
    if (test_name == NULL)  break;
1114
    if (name->equals(test_name))
1115 1116 1117 1118 1119
      return true;
  }
  return false;
}

1120
bool MethodHandles::class_cast_needed(klassOop src, klassOop dst) {
1121 1122
  if (dst == NULL)  return true;
  if (src == NULL)  return (dst != SystemDictionary::Object_klass());
1123
  if (src == dst || dst == SystemDictionary::Object_klass())
1124 1125 1126 1127 1128 1129
    return false;                               // quickest checks
  Klass* srck = Klass::cast(src);
  Klass* dstk = Klass::cast(dst);
  if (dstk->is_interface()) {
    // interface receivers can safely be viewed as untyped,
    // because interface calls always include a dynamic check
1130
    //dstk = Klass::cast(SystemDictionary::Object_klass());
1131 1132 1133 1134
    return false;
  }
  if (srck->is_interface()) {
    // interface arguments must be viewed as untyped
1135
    //srck = Klass::cast(SystemDictionary::Object_klass());
1136 1137
    return true;
  }
1138 1139 1140 1141 1142 1143
  if (is_always_null_type(src)) {
    // some source types are known to be never instantiated;
    // they represent references which are always null
    // such null references never fail to convert safely
    return false;
  }
1144 1145 1146 1147
  return !srck->is_subclass_of(dstk->as_klassOop());
}

static oop object_java_mirror() {
1148
  return Klass::cast(SystemDictionary::Object_klass())->java_mirror();
1149 1150
}

1151 1152 1153 1154 1155 1156 1157 1158
bool MethodHandles::is_float_fixed_reinterpretation_cast(BasicType src, BasicType dst) {
  if (src == T_FLOAT)   return dst == T_INT;
  if (src == T_INT)     return dst == T_FLOAT;
  if (src == T_DOUBLE)  return dst == T_LONG;
  if (src == T_LONG)    return dst == T_DOUBLE;
  return false;
}

1159 1160
bool MethodHandles::same_basic_type_for_arguments(BasicType src,
                                                  BasicType dst,
1161
                                                  bool raw,
1162
                                                  bool for_return) {
1163 1164 1165 1166 1167 1168 1169
  if (for_return) {
    // return values can always be forgotten:
    if (dst == T_VOID)  return true;
    if (src == T_VOID)  return raw && (dst == T_INT);
    // We allow caller to receive a garbage int, which is harmless.
    // This trick is pulled by trusted code (see VerifyType.canPassRaw).
  }
1170 1171 1172
  assert(src != T_VOID && dst != T_VOID, "should not be here");
  if (src == dst)  return true;
  if (type2size[src] != type2size[dst])  return false;
1173 1174
  if (src == T_OBJECT || dst == T_OBJECT)  return false;
  if (raw)  return true;  // bitwise reinterpretation; caller guarantees safety
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
  // allow reinterpretation casts for integral widening
  if (is_subword_type(src)) { // subwords can fit in int or other subwords
    if (dst == T_INT)         // any subword fits in an int
      return true;
    if (src == T_BOOLEAN)     // boolean fits in any subword
      return is_subword_type(dst);
    if (src == T_BYTE && dst == T_SHORT)
      return true;            // remaining case: byte fits in short
  }
  // allow float/fixed reinterpretation casts
1185 1186
  if (is_float_fixed_reinterpretation_cast(src, dst))
    return true;
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
  return false;
}

const char* MethodHandles::check_method_receiver(methodOop m,
                                                 klassOop passed_recv_type) {
  assert(!m->is_static(), "caller resp.");
  if (passed_recv_type == NULL)
    return "receiver type is primitive";
  if (class_cast_needed(passed_recv_type, m->method_holder())) {
    Klass* formal = Klass::cast(m->method_holder());
    return SharedRuntime::generate_class_cast_message("receiver type",
                                                      formal->external_name());
  }
  return NULL;                  // checks passed
}

// Verify that m's signature can be called type-safely by a method handle
// of the given method type 'mtype'.
// It takes a TRAPS argument because it must perform symbol lookups.
void MethodHandles::verify_method_signature(methodHandle m,
                                            Handle mtype,
                                            int first_ptype_pos,
                                            KlassHandle insert_ptype,
                                            TRAPS) {
1211 1212 1213 1214 1215
  Handle mhi_type;
  if (m->is_method_handle_invoke()) {
    // use this more exact typing instead of the symbolic signature:
    mhi_type = Handle(THREAD, m->method_handle_type());
  }
1216
  objArrayHandle ptypes(THREAD, java_lang_invoke_MethodType::ptypes(mtype()));
1217 1218
  int pnum = first_ptype_pos;
  int pmax = ptypes->length();
1219
  int anum = 0;                 // method argument
1220
  const char* err = NULL;
1221
  ResourceMark rm(THREAD);
1222 1223 1224 1225 1226
  for (SignatureStream ss(m->signature()); !ss.is_done(); ss.next()) {
    oop ptype_oop = NULL;
    if (ss.at_return_type()) {
      if (pnum != pmax)
        { err = "too many arguments"; break; }
1227
      ptype_oop = java_lang_invoke_MethodType::rtype(mtype());
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
    } else {
      if (pnum >= pmax)
        { err = "not enough arguments"; break; }
      if (pnum >= 0)
        ptype_oop = ptypes->obj_at(pnum);
      else if (insert_ptype.is_null())
        ptype_oop = NULL;
      else
        ptype_oop = insert_ptype->java_mirror();
      pnum += 1;
1238
      anum += 1;
1239
    }
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
    KlassHandle pklass;
    BasicType   ptype = T_OBJECT;
    bool   have_ptype = false;
    // missing ptype_oop does not match any non-reference; use Object to report the error
    pklass = SystemDictionaryHandles::Object_klass();
    if (ptype_oop != NULL) {
      have_ptype = true;
      klassOop pklass_oop = NULL;
      ptype = java_lang_Class::as_BasicType(ptype_oop, &pklass_oop);
      pklass = KlassHandle(THREAD, pklass_oop);
    }
    ptype_oop = NULL; //done with this
    KlassHandle aklass;
    BasicType   atype = ss.type();
    if (atype == T_ARRAY)  atype = T_OBJECT; // fold all refs to T_OBJECT
    if (atype == T_OBJECT) {
      if (!have_ptype) {
1257 1258 1259
        // null matches any reference
        continue;
      }
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
      if (mhi_type.is_null()) {
        // If we fail to resolve types at this point, we will usually throw an error.
        TempNewSymbol name = ss.as_symbol_or_null();
        if (name != NULL) {
          instanceKlass* mk = instanceKlass::cast(m->method_holder());
          Handle loader(THREAD, mk->class_loader());
          Handle domain(THREAD, mk->protection_domain());
          klassOop aklass_oop = SystemDictionary::resolve_or_null(name, loader, domain, CHECK);
          if (aklass_oop != NULL)
            aklass = KlassHandle(THREAD, aklass_oop);
1270 1271 1272 1273 1274 1275
          if (aklass.is_null() &&
              pklass.not_null() &&
              loader.is_null() &&
              pklass->name() == name)
            // accept name equivalence here, since that's the best we can do
            aklass = pklass;
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286
        }
      } else {
        // for method handle invokers we don't look at the name in the signature
        oop atype_oop;
        if (ss.at_return_type())
          atype_oop = java_lang_invoke_MethodType::rtype(mhi_type());
        else
          atype_oop = java_lang_invoke_MethodType::ptype(mhi_type(), anum-1);
        klassOop aklass_oop = NULL;
        atype = java_lang_Class::as_BasicType(atype_oop, &aklass_oop);
        aklass = KlassHandle(THREAD, aklass_oop);
1287
      }
1288 1289
    }
    if (!ss.at_return_type()) {
1290
      err = check_argument_type_change(ptype, pklass(), atype, aklass(), anum);
1291
    } else {
1292
      err = check_return_type_change(atype, aklass(), ptype, pklass()); // note reversal!
1293 1294 1295 1296 1297
    }
    if (err != NULL)  break;
  }

  if (err != NULL) {
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
#ifndef PRODUCT
    if (PrintMiscellaneous && (Verbose || WizardMode)) {
      tty->print("*** verify_method_signature failed: ");
      java_lang_invoke_MethodType::print_signature(mtype(), tty);
      tty->cr();
      tty->print_cr("    first_ptype_pos = %d, insert_ptype = "UINTX_FORMAT, first_ptype_pos, insert_ptype());
      tty->print("    Failing method: ");
      m->print();
    }
#endif //PRODUCT
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
    THROW_MSG(vmSymbols::java_lang_InternalError(), err);
  }
}

// Main routine for verifying the MethodHandle.type of a proposed
// direct or bound-direct method handle.
void MethodHandles::verify_method_type(methodHandle m,
                                       Handle mtype,
                                       bool has_bound_recv,
                                       KlassHandle bound_recv_type,
                                       TRAPS) {
  bool m_needs_receiver = !m->is_static();

  const char* err = NULL;

  int first_ptype_pos = m_needs_receiver ? 1 : 0;
1324 1325
  if (has_bound_recv) {
    first_ptype_pos -= 1;  // ptypes do not include the bound argument; start earlier in them
1326 1327 1328 1329 1330
    if (m_needs_receiver && bound_recv_type.is_null())
      { err = "bound receiver is not an object"; goto die; }
  }

  if (m_needs_receiver && err == NULL) {
1331
    objArrayOop ptypes = java_lang_invoke_MethodType::ptypes(mtype());
1332 1333
    if (ptypes->length() < first_ptype_pos)
      { err = "receiver argument is missing"; goto die; }
1334
    if (has_bound_recv)
1335 1336
      err = check_method_receiver(m(), bound_recv_type->as_klassOop());
    else
1337
      err = check_method_receiver(m(), java_lang_Class::as_klassOop(ptypes->obj_at(first_ptype_pos-1)));
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
    if (err != NULL)  goto die;
  }

  // Check the other arguments for mistypes.
  verify_method_signature(m, mtype, first_ptype_pos, bound_recv_type, CHECK);
  return;

 die:
  THROW_MSG(vmSymbols::java_lang_InternalError(), err);
}

void MethodHandles::verify_vmslots(Handle mh, TRAPS) {
  // Verify vmslots.
1351 1352
  int check_slots = argument_slot_count(java_lang_invoke_MethodHandle::type(mh()));
  if (java_lang_invoke_MethodHandle::vmslots(mh()) != check_slots) {
1353 1354 1355 1356 1357 1358
    THROW_MSG(vmSymbols::java_lang_InternalError(), "bad vmslots in BMH");
  }
}

void MethodHandles::verify_vmargslot(Handle mh, int argnum, int argslot, TRAPS) {
  // Verify that argslot points at the given argnum.
1359
  int check_slot = argument_slot(java_lang_invoke_MethodHandle::type(mh()), argnum);
1360
  if (argslot != check_slot || argslot < 0) {
1361
    ResourceMark rm;
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
    const char* fmt = "for argnum of %d, vmargslot is %d, should be %d";
    size_t msglen = strlen(fmt) + 3*11 + 1;
    char* msg = NEW_RESOURCE_ARRAY(char, msglen);
    jio_snprintf(msg, msglen, fmt, argnum, argslot, check_slot);
    THROW_MSG(vmSymbols::java_lang_InternalError(), msg);
  }
}

// Verify the correspondence between two method types.
// Apart from the advertised changes, caller method type X must
// be able to invoke the callee method Y type with no violations
// of type integrity.
// Return NULL if all is well, else a short error message.
const char* MethodHandles::check_method_type_change(oop src_mtype, int src_beg, int src_end,
                                                    int insert_argnum, oop insert_type,
                                                    int change_argnum, oop change_type,
                                                    int delete_argnum,
1379 1380
                                                    oop dst_mtype, int dst_beg, int dst_end,
                                                    bool raw) {
1381 1382
  objArrayOop src_ptypes = java_lang_invoke_MethodType::ptypes(src_mtype);
  objArrayOop dst_ptypes = java_lang_invoke_MethodType::ptypes(dst_mtype);
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438

  int src_max = src_ptypes->length();
  int dst_max = dst_ptypes->length();

  if (src_end == -1)  src_end = src_max;
  if (dst_end == -1)  dst_end = dst_max;

  assert(0 <= src_beg && src_beg <= src_end && src_end <= src_max, "oob");
  assert(0 <= dst_beg && dst_beg <= dst_end && dst_end <= dst_max, "oob");

  // pending actions; set to -1 when done:
  int ins_idx = insert_argnum, chg_idx = change_argnum, del_idx = delete_argnum;

  const char* err = NULL;

  // Walk along each array of parameter types, including a virtual
  // NULL end marker at the end of each.
  for (int src_idx = src_beg, dst_idx = dst_beg;
       (src_idx <= src_end && dst_idx <= dst_end);
       src_idx++, dst_idx++) {
    oop src_type = (src_idx == src_end) ? oop(NULL) : src_ptypes->obj_at(src_idx);
    oop dst_type = (dst_idx == dst_end) ? oop(NULL) : dst_ptypes->obj_at(dst_idx);
    bool fix_null_src_type = false;

    // Perform requested edits.
    if (ins_idx == src_idx) {
      // note that the inserted guy is never affected by a change or deletion
      ins_idx = -1;
      src_type = insert_type;
      fix_null_src_type = true;
      --src_idx;                // back up to process src type on next loop
      src_idx = src_end;
    } else {
      // note that the changed guy can be immediately deleted
      if (chg_idx == src_idx) {
        chg_idx = -1;
        assert(src_idx < src_end, "oob");
        src_type = change_type;
        fix_null_src_type = true;
      }
      if (del_idx == src_idx) {
        del_idx = -1;
        assert(src_idx < src_end, "oob");
        --dst_idx;
        continue;               // rerun loop after skipping this position
      }
    }

    if (src_type == NULL && fix_null_src_type)
      // explicit null in this case matches any dest reference
      src_type = (java_lang_Class::is_primitive(dst_type) ? object_java_mirror() : dst_type);

    // Compare the two argument types.
    if (src_type != dst_type) {
      if (src_type == NULL)  return "not enough arguments";
      if (dst_type == NULL)  return "too many arguments";
1439
      err = check_argument_type_change(src_type, dst_type, dst_idx, raw);
1440 1441 1442 1443 1444
      if (err != NULL)  return err;
    }
  }

  // Now compare return types also.
1445 1446
  oop src_rtype = java_lang_invoke_MethodType::rtype(src_mtype);
  oop dst_rtype = java_lang_invoke_MethodType::rtype(dst_mtype);
1447
  if (src_rtype != dst_rtype) {
1448
    err = check_return_type_change(dst_rtype, src_rtype, raw); // note reversal!
1449 1450 1451 1452 1453 1454 1455 1456 1457
    if (err != NULL)  return err;
  }

  assert(err == NULL, "");
  return NULL;  // all is well
}


const char* MethodHandles::check_argument_type_change(BasicType src_type,
1458 1459 1460 1461 1462
                                                      klassOop src_klass,
                                                      BasicType dst_type,
                                                      klassOop dst_klass,
                                                      int argnum,
                                                      bool raw) {
1463
  const char* err = NULL;
1464
  const bool for_return = (argnum < 0);
1465 1466 1467 1468 1469 1470

  // just in case:
  if (src_type == T_ARRAY)  src_type = T_OBJECT;
  if (dst_type == T_ARRAY)  dst_type = T_OBJECT;

  // Produce some nice messages if VerifyMethodHandles is turned on:
1471
  if (!same_basic_type_for_arguments(src_type, dst_type, raw, for_return)) {
1472
    if (src_type == T_OBJECT) {
1473 1474 1475
      if (raw && is_java_primitive(dst_type))
        return NULL;    // ref-to-prim discards ref and returns zero
      err = (!for_return
1476 1477 1478
             ? "type mismatch: passing a %s for method argument #%d, which expects primitive %s"
             : "type mismatch: returning a %s, but caller expects primitive %s");
    } else if (dst_type == T_OBJECT) {
1479
      err = (!for_return
1480 1481 1482
             ? "type mismatch: passing a primitive %s for method argument #%d, which expects %s"
             : "type mismatch: returning a primitive %s, but caller expects %s");
    } else {
1483
      err = (!for_return
1484 1485 1486
             ? "type mismatch: passing a %s for method argument #%d, which expects %s"
             : "type mismatch: returning a %s, but caller expects %s");
    }
1487 1488
  } else if (src_type == T_OBJECT && dst_type == T_OBJECT &&
             class_cast_needed(src_klass, dst_klass)) {
1489
    if (!class_cast_needed(dst_klass, src_klass)) {
1490 1491
      if (raw)
        return NULL;    // reverse cast is OK; the MH target is trusted to enforce it
1492
      err = (!for_return
1493 1494 1495
             ? "cast required: passing a %s for method argument #%d, which expects %s"
             : "cast required: returning a %s, but caller expects %s");
    } else {
1496
      err = (!for_return
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
             ? "reference mismatch: passing a %s for method argument #%d, which expects %s"
             : "reference mismatch: returning a %s, but caller expects %s");
    }
  } else {
    // passed the obstacle course
    return NULL;
  }

  // format, format, format
  const char* src_name = type2name(src_type);
  const char* dst_name = type2name(dst_type);
  if (src_name == NULL)  src_name = "unknown type";
  if (dst_name == NULL)  dst_name = "unknown type";
1510 1511 1512 1513
  if (src_type == T_OBJECT)
    src_name = (src_klass != NULL) ? Klass::cast(src_klass)->external_name() : "an unresolved class";
  if (dst_type == T_OBJECT)
    dst_name = (dst_klass != NULL) ? Klass::cast(dst_klass)->external_name() : "an unresolved class";
1514 1515 1516

  size_t msglen = strlen(err) + strlen(src_name) + strlen(dst_name) + (argnum < 10 ? 1 : 11);
  char* msg = NEW_RESOURCE_ARRAY(char, msglen + 1);
1517
  if (!for_return) {
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
    assert(strstr(err, "%d") != NULL, "");
    jio_snprintf(msg, msglen, err, src_name, argnum, dst_name);
  } else {
    assert(strstr(err, "%d") == NULL, "");
    jio_snprintf(msg, msglen, err, src_name,         dst_name);
  }
  return msg;
}

// Compute the depth within the stack of the given argument, i.e.,
// the combined size of arguments to the right of the given argument.
// For the last argument (ptypes.length-1) this will be zero.
// For the first argument (0) this will be the size of all
// arguments but that one.  For the special number -1, this
// will be the size of all arguments, including the first.
// If the argument is neither -1 nor a valid argument index,
// then return a negative number.  Otherwise, the result
// is in the range [0..vmslots] inclusive.
int MethodHandles::argument_slot(oop method_type, int arg) {
1537
  objArrayOop ptypes = java_lang_invoke_MethodType::ptypes(method_type);
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
  int argslot = 0;
  int len = ptypes->length();
  if (arg < -1 || arg >= len)  return -99;
  for (int i = len-1; i > arg; i--) {
    BasicType bt = java_lang_Class::as_BasicType(ptypes->obj_at(i));
    argslot += type2size[bt];
  }
  assert(argument_slot_to_argnum(method_type, argslot) == arg, "inverse works");
  return argslot;
}

// Given a slot number, return the argument number.
int MethodHandles::argument_slot_to_argnum(oop method_type, int query_argslot) {
1551
  objArrayOop ptypes = java_lang_invoke_MethodType::ptypes(method_type);
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
  int argslot = 0;
  int len = ptypes->length();
  for (int i = len-1; i >= 0; i--) {
    if (query_argslot == argslot)  return i;
    BasicType bt = java_lang_Class::as_BasicType(ptypes->obj_at(i));
    argslot += type2size[bt];
  }
  // return pseudo-arg deepest in stack:
  if (query_argslot == argslot)  return -1;
  return -99;                   // oob slot, or splitting a double-slot arg
}

methodHandle MethodHandles::dispatch_decoded_method(methodHandle m,
                                                    KlassHandle receiver_limit,
                                                    int decode_flags,
                                                    KlassHandle receiver_klass,
                                                    TRAPS) {
  assert((decode_flags & ~_DMF_DIRECT_MASK) == 0, "must be direct method reference");
  assert((decode_flags & _dmf_has_receiver) != 0, "must have a receiver or first reference argument");

  if (!m->is_static() &&
      (receiver_klass.is_null() || !receiver_klass->is_subtype_of(m->method_holder())))
    // given type does not match class of method, or receiver is null!
    // caller should have checked this, but let's be extra careful...
    return methodHandle();

  if (receiver_limit.not_null() &&
      (receiver_klass.not_null() && !receiver_klass->is_subtype_of(receiver_limit())))
    // given type is not limited to the receiver type
    // note that a null receiver can match any reference value, for a static method
    return methodHandle();

  if (!(decode_flags & MethodHandles::_dmf_does_dispatch)) {
    // pre-dispatched or static method (null receiver is OK for static)
    return m;

  } else if (receiver_klass.is_null()) {
    // null receiver value; cannot dispatch
    return methodHandle();

  } else if (!(decode_flags & MethodHandles::_dmf_from_interface)) {
    // perform virtual dispatch
    int vtable_index = m->vtable_index();
    guarantee(vtable_index >= 0, "valid vtable index");

    // receiver_klass might be an arrayKlassOop but all vtables start at
    // the same place. The cast is to avoid virtual call and assertion.
    // See also LinkResolver::runtime_resolve_virtual_method.
    instanceKlass* inst = (instanceKlass*)Klass::cast(receiver_klass());
    DEBUG_ONLY(inst->verify_vtable_index(vtable_index));
    methodOop m_oop = inst->method_at_vtable(vtable_index);
    return methodHandle(THREAD, m_oop);

  } else {
    // perform interface dispatch
    int itable_index = klassItable::compute_itable_index(m());
    guarantee(itable_index >= 0, "valid itable index");
    instanceKlass* inst = instanceKlass::cast(receiver_klass());
    methodOop m_oop = inst->method_at_itable(m->method_holder(), itable_index, THREAD);
    return methodHandle(THREAD, m_oop);
  }
}

void MethodHandles::verify_DirectMethodHandle(Handle mh, methodHandle m, TRAPS) {
  // Verify type.
1617
  Handle mtype(THREAD, java_lang_invoke_MethodHandle::type(mh()));
1618 1619 1620
  verify_method_type(m, mtype, false, KlassHandle(), CHECK);

  // Verify vmslots.
1621
  if (java_lang_invoke_MethodHandle::vmslots(mh()) != m->size_of_parameters()) {
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
    THROW_MSG(vmSymbols::java_lang_InternalError(), "bad vmslots in DMH");
  }
}

void MethodHandles::init_DirectMethodHandle(Handle mh, methodHandle m, bool do_dispatch, TRAPS) {
  // Check arguments.
  if (mh.is_null() || m.is_null() ||
      (!do_dispatch && m->is_abstract())) {
    THROW(vmSymbols::java_lang_InternalError());
  }

1633
  java_lang_invoke_MethodHandle::init_vmslots(mh());
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647

  if (VerifyMethodHandles) {
    // The privileged code which invokes this routine should not make
    // a mistake about types, but it's better to verify.
    verify_DirectMethodHandle(mh, m, CHECK);
  }

  // Finally, after safety checks are done, link to the target method.
  // We will follow the same path as the latter part of
  // InterpreterRuntime::resolve_invoke(), which first finds the method
  // and then decides how to populate the constant pool cache entry
  // that links the interpreter calls to the method.  We need the same
  // bits, and will use the same calling sequence code.

1648 1649
  int    vmindex = methodOopDesc::garbage_vtable_index;
  Handle vmtarget;
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666

  instanceKlass::cast(m->method_holder())->link_class(CHECK);

  MethodHandleEntry* me = NULL;
  if (do_dispatch && Klass::cast(m->method_holder())->is_interface()) {
    // We are simulating an invokeinterface instruction.
    // (We might also be simulating an invokevirtual on a miranda method,
    // but it is safe to treat it as an invokeinterface.)
    assert(!m->can_be_statically_bound(), "no final methods on interfaces");
    vmindex = klassItable::compute_itable_index(m());
    assert(vmindex >= 0, "(>=0) == do_dispatch");
    // Set up same bits as ConstantPoolCacheEntry::set_interface_call().
    vmtarget = m->method_holder(); // the interface
    me = MethodHandles::entry(MethodHandles::_invokeinterface_mh);
  } else if (!do_dispatch || m->can_be_statically_bound()) {
    // We are simulating an invokestatic or invokespecial instruction.
    // Set up the method pointer, just like ConstantPoolCacheEntry::set_method().
1667
    vmtarget = m;
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678
    // this does not help dispatch, but it will make it possible to parse this MH:
    vmindex  = methodOopDesc::nonvirtual_vtable_index;
    assert(vmindex < 0, "(>=0) == do_dispatch");
    if (!m->is_static()) {
      me = MethodHandles::entry(MethodHandles::_invokespecial_mh);
    } else {
      me = MethodHandles::entry(MethodHandles::_invokestatic_mh);
      // Part of the semantics of a static call is an initialization barrier.
      // For a DMH, it is done now, when the handle is created.
      Klass* k = Klass::cast(m->method_holder());
      if (k->should_be_initialized()) {
1679
        k->initialize(CHECK);  // possible safepoint
1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
      }
    }
  } else {
    // We are simulating an invokevirtual instruction.
    // Set up the vtable index, just like ConstantPoolCacheEntry::set_method().
    // The key logic is LinkResolver::runtime_resolve_virtual_method.
    vmindex  = m->vtable_index();
    vmtarget = m->method_holder();
    me = MethodHandles::entry(MethodHandles::_invokevirtual_mh);
  }

  if (me == NULL) { THROW(vmSymbols::java_lang_InternalError()); }

1693 1694 1695 1696
  java_lang_invoke_DirectMethodHandle::set_vmtarget(mh(), vmtarget());
  java_lang_invoke_DirectMethodHandle::set_vmindex( mh(), vmindex);
  DEBUG_ONLY(KlassHandle rlimit; int flags);
  assert(MethodHandles::decode_method(mh(), rlimit, flags) == m,
1697 1698 1699 1700 1701 1702 1703 1704
         "properly stored for later decoding");
  DEBUG_ONLY(bool actual_do_dispatch = ((flags & _dmf_does_dispatch) != 0));
  assert(!(actual_do_dispatch && !do_dispatch),
         "do not perform dispatch if !do_dispatch specified");
  assert(actual_do_dispatch == (vmindex >= 0), "proper later decoding of do_dispatch");
  assert(decode_MethodHandle_stack_pushes(mh()) == 0, "DMH does not move stack");

  // Done!
1705
  java_lang_invoke_MethodHandle::set_vmentry(mh(), me);
1706 1707 1708 1709 1710 1711 1712
}

void MethodHandles::verify_BoundMethodHandle_with_receiver(Handle mh,
                                                           methodHandle m,
                                                           TRAPS) {
  // Verify type.
  KlassHandle bound_recv_type;
1713 1714 1715 1716 1717 1718
  {
    oop receiver = java_lang_invoke_BoundMethodHandle::argument(mh());
    if (receiver != NULL)
      bound_recv_type = KlassHandle(THREAD, receiver->klass());
  }
  Handle mtype(THREAD, java_lang_invoke_MethodHandle::type(mh()));
1719 1720 1721 1722 1723
  verify_method_type(m, mtype, true, bound_recv_type, CHECK);

  int receiver_pos = m->size_of_parameters() - 1;

  // Verify MH.vmargslot, which should point at the bound receiver.
1724
  verify_vmargslot(mh, -1, java_lang_invoke_BoundMethodHandle::vmargslot(mh()), CHECK);
1725 1726 1727
  //verify_vmslots(mh, CHECK);

  // Verify vmslots.
1728
  if (java_lang_invoke_MethodHandle::vmslots(mh()) != receiver_pos) {
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745
    THROW_MSG(vmSymbols::java_lang_InternalError(), "bad vmslots in BMH (receiver)");
  }
}

// Initialize a BMH with a receiver bound directly to a methodOop.
void MethodHandles::init_BoundMethodHandle_with_receiver(Handle mh,
                                                         methodHandle original_m,
                                                         KlassHandle receiver_limit,
                                                         int decode_flags,
                                                         TRAPS) {
  // Check arguments.
  if (mh.is_null() || original_m.is_null()) {
    THROW(vmSymbols::java_lang_InternalError());
  }

  KlassHandle receiver_klass;
  {
1746
    oop receiver_oop = java_lang_invoke_BoundMethodHandle::argument(mh());
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756
    if (receiver_oop != NULL)
      receiver_klass = KlassHandle(THREAD, receiver_oop->klass());
  }
  methodHandle m = dispatch_decoded_method(original_m,
                                           receiver_limit, decode_flags,
                                           receiver_klass,
                                           CHECK);
  if (m.is_null())      { THROW(vmSymbols::java_lang_InternalError()); }
  if (m->is_abstract()) { THROW(vmSymbols::java_lang_AbstractMethodError()); }

1757
  java_lang_invoke_MethodHandle::init_vmslots(mh());
1758 1759
  int vmargslot = m->size_of_parameters() - 1;
  assert(java_lang_invoke_BoundMethodHandle::vmargslot(mh()) == vmargslot, "");
1760 1761 1762 1763 1764

  if (VerifyMethodHandles) {
    verify_BoundMethodHandle_with_receiver(mh, m, CHECK);
  }

1765
  java_lang_invoke_BoundMethodHandle::set_vmtarget(mh(), m());
1766

1767 1768
  DEBUG_ONLY(KlassHandle junk1; int junk2);
  assert(MethodHandles::decode_method(mh(), junk1, junk2) == m, "properly stored for later decoding");
1769 1770 1771
  assert(decode_MethodHandle_stack_pushes(mh()) == 1, "BMH pushes one stack slot");

  // Done!
1772
  java_lang_invoke_MethodHandle::set_vmentry(mh(), MethodHandles::entry(MethodHandles::_bound_ref_direct_mh));
1773 1774 1775 1776
}

void MethodHandles::verify_BoundMethodHandle(Handle mh, Handle target, int argnum,
                                             bool direct_to_method, TRAPS) {
1777
  ResourceMark rm;
1778
  Handle ptype_handle(THREAD,
1779
                           java_lang_invoke_MethodType::ptype(java_lang_invoke_MethodHandle::type(target()), argnum));
1780 1781 1782 1783
  KlassHandle ptype_klass;
  BasicType ptype = java_lang_Class::as_BasicType(ptype_handle(), &ptype_klass);
  int slots_pushed = type2size[ptype];

1784
  oop argument = java_lang_invoke_BoundMethodHandle::argument(mh());
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802

  const char* err = NULL;

  switch (ptype) {
  case T_OBJECT:
    if (argument != NULL)
      // we must implicitly convert from the arg type to the outgoing ptype
      err = check_argument_type_change(T_OBJECT, argument->klass(), ptype, ptype_klass(), argnum);
    break;

  case T_ARRAY: case T_VOID:
    assert(false, "array, void do not appear here");
  default:
    if (ptype != T_INT && !is_subword_type(ptype)) {
      err = "unexpected parameter type";
      break;
    }
    // check subrange of Integer.value, if necessary
1803
    if (argument == NULL || argument->klass() != SystemDictionary::Integer_klass()) {
1804 1805 1806 1807 1808 1809
      err = "bound integer argument must be of type java.lang.Integer";
      break;
    }
    if (ptype != T_INT) {
      int value_offset = java_lang_boxing_object::value_offset_in_bytes(T_INT);
      jint value = argument->int_field(value_offset);
1810
      int vminfo = adapter_unbox_subword_vminfo(ptype);
1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
      jint subword = truncate_subword_from_vminfo(value, vminfo);
      if (value != subword) {
        err = "bound subword value does not fit into the subword type";
        break;
      }
    }
    break;
  case T_FLOAT:
  case T_DOUBLE:
  case T_LONG:
    {
      // we must implicitly convert from the unboxed arg type to the outgoing ptype
      BasicType argbox = java_lang_boxing_object::basic_type(argument);
      if (argbox != ptype) {
        err = check_argument_type_change(T_OBJECT, (argument == NULL
1826
                                                    ? SystemDictionary::Object_klass()
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
                                                    : argument->klass()),
                                         ptype, ptype_klass(), argnum);
        assert(err != NULL, "this must be an error");
      }
      break;
    }
  }

  if (err == NULL) {
    DEBUG_ONLY(int this_pushes = decode_MethodHandle_stack_pushes(mh()));
    if (direct_to_method) {
      assert(this_pushes == slots_pushed, "BMH pushes one or two stack slots");
    } else {
1840 1841
      int target_pushes = decode_MethodHandle_stack_pushes(target());
      assert(this_pushes == slots_pushed + target_pushes, "BMH stack motion must be correct");
1842 1843 1844 1845 1846
    }
  }

  if (err == NULL) {
    // Verify the rest of the method type.
1847
    err = check_method_type_insertion(java_lang_invoke_MethodHandle::type(mh()),
1848
                                      argnum, ptype_handle(),
1849
                                      java_lang_invoke_MethodHandle::type(target()));
1850 1851 1852 1853 1854 1855 1856 1857 1858
  }

  if (err != NULL) {
    THROW_MSG(vmSymbols::java_lang_InternalError(), err);
  }
}

void MethodHandles::init_BoundMethodHandle(Handle mh, Handle target, int argnum, TRAPS) {
  // Check arguments.
1859
  if (mh.is_null() || target.is_null() || !java_lang_invoke_MethodHandle::is_instance(target())) {
1860 1861 1862
    THROW(vmSymbols::java_lang_InternalError());
  }

1863
  java_lang_invoke_MethodHandle::init_vmslots(mh());
1864
  int argslot = java_lang_invoke_BoundMethodHandle::vmargslot(mh());
1865 1866 1867

  if (VerifyMethodHandles) {
    int insert_after = argnum - 1;
1868
    verify_vmargslot(mh, insert_after, argslot, CHECK);
1869 1870 1871
    verify_vmslots(mh, CHECK);
  }

1872
  // Get bound type and required slots.
1873 1874 1875 1876 1877
  BasicType ptype;
  {
    oop ptype_oop = java_lang_invoke_MethodType::ptype(java_lang_invoke_MethodHandle::type(target()), argnum);
    ptype = java_lang_Class::as_BasicType(ptype_oop);
  }
1878 1879
  int slots_pushed = type2size[ptype];

1880 1881 1882 1883 1884 1885 1886
  // If (a) the target is a direct non-dispatched method handle,
  // or (b) the target is a dispatched direct method handle and we
  // are binding the receiver, cut out the middle-man.
  // Do this by decoding the DMH and using its methodOop directly as vmtarget.
  bool direct_to_method = false;
  if (OptimizeMethodHandles &&
      target->klass() == SystemDictionary::DirectMethodHandle_klass() &&
1887
      (argnum != 0 || java_lang_invoke_BoundMethodHandle::argument(mh()) != NULL) &&
1888
      (argnum == 0 || java_lang_invoke_DirectMethodHandle::vmindex(target()) < 0)) {
1889 1890
    KlassHandle receiver_limit; int decode_flags = 0;
    methodHandle m = decode_method(target(), receiver_limit, decode_flags);
1891
    if (m.is_null()) { THROW_MSG(vmSymbols::java_lang_InternalError(), "DMH failed to decode"); }
1892
    DEBUG_ONLY(int m_vmslots = m->size_of_parameters() - slots_pushed); // pos. of 1st arg.
1893
    assert(java_lang_invoke_BoundMethodHandle::vmslots(mh()) == m_vmslots, "type w/ m sig");
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
    if (argnum == 0 && (decode_flags & _dmf_has_receiver) != 0) {
      init_BoundMethodHandle_with_receiver(mh, m,
                                           receiver_limit, decode_flags,
                                           CHECK);
      return;
    }

    // Even if it is not a bound receiver, we still might be able
    // to bind another argument and still invoke the methodOop directly.
    if (!(decode_flags & _dmf_does_dispatch)) {
      direct_to_method = true;
1905
      java_lang_invoke_BoundMethodHandle::set_vmtarget(mh(), m());
1906 1907 1908
    }
  }
  if (!direct_to_method)
1909
    java_lang_invoke_BoundMethodHandle::set_vmtarget(mh(), target());
1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930

  if (VerifyMethodHandles) {
    verify_BoundMethodHandle(mh, target, argnum, direct_to_method, CHECK);
  }

  // Next question:  Is this a ref, int, or long bound value?
  MethodHandleEntry* me = NULL;
  if (ptype == T_OBJECT) {
    if (direct_to_method)  me = MethodHandles::entry(_bound_ref_direct_mh);
    else                   me = MethodHandles::entry(_bound_ref_mh);
  } else if (slots_pushed == 2) {
    if (direct_to_method)  me = MethodHandles::entry(_bound_long_direct_mh);
    else                   me = MethodHandles::entry(_bound_long_mh);
  } else if (slots_pushed == 1) {
    if (direct_to_method)  me = MethodHandles::entry(_bound_int_direct_mh);
    else                   me = MethodHandles::entry(_bound_int_mh);
  } else {
    assert(false, "");
  }

  // Done!
1931
  java_lang_invoke_MethodHandle::set_vmentry(mh(), me);
1932 1933 1934 1935 1936 1937 1938 1939 1940
}

static void throw_InternalError_for_bad_conversion(int conversion, const char* err, TRAPS) {
  char msg[200];
  jio_snprintf(msg, sizeof(msg), "bad adapter (conversion=0x%08x): %s", conversion, err);
  THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), msg);
}

void MethodHandles::verify_AdapterMethodHandle(Handle mh, int argnum, TRAPS) {
1941
  ResourceMark rm;
1942 1943
  jint conversion = java_lang_invoke_AdapterMethodHandle::conversion(mh());
  int  argslot    = java_lang_invoke_AdapterMethodHandle::vmargslot(mh());
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959

  verify_vmargslot(mh, argnum, argslot, CHECK);
  verify_vmslots(mh, CHECK);

  jint conv_op    = adapter_conversion_op(conversion);
  if (!conv_op_valid(conv_op)) {
    throw_InternalError_for_bad_conversion(conversion, "unknown conversion op", THREAD);
    return;
  }
  EntryKind ek = adapter_entry_kind(conv_op);

  int stack_move = adapter_conversion_stack_move(conversion);
  BasicType src  = adapter_conversion_src_type(conversion);
  BasicType dest = adapter_conversion_dest_type(conversion);
  int vminfo     = adapter_conversion_vminfo(conversion); // should be zero

1960 1961 1962 1963
  Handle argument(THREAD,  java_lang_invoke_AdapterMethodHandle::argument(mh()));
  Handle target(THREAD,    java_lang_invoke_AdapterMethodHandle::vmtarget(mh()));
  Handle src_mtype(THREAD, java_lang_invoke_MethodHandle::type(mh()));
  Handle dst_mtype(THREAD, java_lang_invoke_MethodHandle::type(target()));
1964
  Handle arg_mtype;
1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976

  const char* err = NULL;

  if (err == NULL) {
    // Check that the correct argument is supplied, but only if it is required.
    switch (ek) {
    case _adapter_check_cast:     // target type of cast
    case _adapter_ref_to_prim:    // wrapper type from which to unbox
    case _adapter_spread_args:    // array type to spread from
      if (!java_lang_Class::is_instance(argument())
          || java_lang_Class::is_primitive(argument()))
        { err = "adapter requires argument of type java.lang.Class"; break; }
1977
      if (ek == _adapter_spread_args) {
1978 1979
        // Make sure it is a suitable collection type.  (Array, for now.)
        Klass* ak = Klass::cast(java_lang_Class::as_klassOop(argument()));
1980 1981 1982 1983 1984
        if (!ak->oop_is_array())
          { err = "spread adapter requires argument representing an array class"; break; }
        BasicType et = arrayKlass::cast(ak->as_klassOop())->element_type();
        if (et != dest && stack_move <= 0)
          { err = "spread adapter requires array class argument of correct type"; break; }
1985 1986
      }
      break;
1987 1988 1989 1990 1991 1992
    case _adapter_prim_to_ref:    // boxer MH to use
    case _adapter_collect_args:   // method handle which collects the args
    case _adapter_fold_args:      // method handle which collects the args
      if (!UseRicochetFrames) {
        { err = "box/collect/fold operators are not supported"; break; }
      }
1993
      if (!java_lang_invoke_MethodHandle::is_instance(argument()))
1994
        { err = "MethodHandle adapter argument required"; break; }
1995
      arg_mtype = Handle(THREAD, java_lang_invoke_MethodHandle::type(argument()));
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
      break;
    default:
      if (argument.not_null())
        { err = "adapter has spurious argument"; break; }
      break;
    }
  }

  if (err == NULL) {
    // Check that the src/dest types are supplied if needed.
2006
    // Also check relevant parameter or return types.
2007
    switch (ek) {
2008 2009 2010 2011 2012
    case _adapter_check_cast:
      if (src != T_OBJECT || dest != T_OBJECT) {
        err = "adapter requires object src/dest conversion subfields";
      }
      break;
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028
    case _adapter_prim_to_prim:
      if (!is_java_primitive(src) || !is_java_primitive(dest) || src == dest) {
        err = "adapter requires primitive src/dest conversion subfields"; break;
      }
      if ( (src == T_FLOAT || src == T_DOUBLE) && !(dest == T_FLOAT || dest == T_DOUBLE) ||
          !(src == T_FLOAT || src == T_DOUBLE) &&  (dest == T_FLOAT || dest == T_DOUBLE)) {
        err = "adapter cannot convert beween floating and fixed-point"; break;
      }
      break;
    case _adapter_ref_to_prim:
      if (src != T_OBJECT || !is_java_primitive(dest)
          || argument() != Klass::cast(SystemDictionary::box_klass(dest))->java_mirror()) {
        err = "adapter requires primitive dest conversion subfield"; break;
      }
      break;
    case _adapter_prim_to_ref:
2029
      if (!is_java_primitive(src) || dest != T_OBJECT) {
2030 2031 2032 2033 2034
        err = "adapter requires primitive src conversion subfield"; break;
      }
      break;
    case _adapter_swap_args:
      {
2035
        if (!src || !dest) {
2036 2037
          err = "adapter requires src/dest conversion subfields for swap"; break;
        }
2038 2039 2040 2041
        int src_size  = type2size[src];
        if (src_size != type2size[dest]) {
          err = "adapter requires equal sizes for src/dest"; break;
        }
2042 2043 2044
        int src_slot   = argslot;
        int dest_slot  = vminfo;
        int src_arg    = argnum;
2045 2046 2047 2048 2049 2050 2051
        int dest_arg   = argument_slot_to_argnum(src_mtype(), dest_slot);
        verify_vmargslot(mh, dest_arg, dest_slot, CHECK);
        if (!(dest_slot >= src_slot + src_size) &&
            !(src_slot >= dest_slot + src_size)) {
          err = "source, destination slots must be distinct"; break;
        } else if (!(src_slot > dest_slot)) {
          err = "source of swap must be deeper in stack"; break;
2052
        }
2053 2054 2055
        err = check_argument_type_change(java_lang_invoke_MethodType::ptype(src_mtype(), dest_arg),
                                         java_lang_invoke_MethodType::ptype(dst_mtype(), src_arg),
                                         dest_arg);
2056
        if (err == NULL)
2057 2058
          err = check_argument_type_change(java_lang_invoke_MethodType::ptype(src_mtype(), src_arg),
                                           java_lang_invoke_MethodType::ptype(dst_mtype(), dest_arg),
2059
                                           src_arg);
2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
        break;
      }
    case _adapter_rot_args:
      {
        if (!src || !dest) {
          err = "adapter requires src/dest conversion subfields for rotate"; break;
        }
        int src_slot   = argslot;
        int limit_raw  = vminfo;
        bool rot_down  = (src_slot < limit_raw);
        int limit_bias = (rot_down ? MethodHandles::OP_ROT_ARGS_DOWN_LIMIT_BIAS : 0);
        int limit_slot = limit_raw - limit_bias;
        int src_arg    = argnum;
        int limit_arg  = argument_slot_to_argnum(src_mtype(), limit_slot);
        verify_vmargslot(mh, limit_arg, limit_slot, CHECK);
        if (src_slot == limit_slot) {
          err = "source, destination slots must be distinct"; break;
        }
        if (!rot_down) {  // rotate slots up == shift arguments left
          // limit_slot is an inclusive lower limit
          assert((src_slot > limit_slot) && (src_arg < limit_arg), "");
          // rotate up: [limit_slot..src_slot-ss] --> [limit_slot+ss..src_slot]
          // that is:   [src_arg+1..limit_arg] --> [src_arg..limit_arg-1]
          for (int i = src_arg+1; i <= limit_arg && err == NULL; i++) {
            err = check_argument_type_change(java_lang_invoke_MethodType::ptype(src_mtype(), i),
                                             java_lang_invoke_MethodType::ptype(dst_mtype(), i-1),
                                             i);
          }
        } else { // rotate slots down == shfit arguments right
          // limit_slot is an exclusive upper limit
          assert((src_slot < limit_slot - limit_bias) && (src_arg > limit_arg + limit_bias), "");
          // rotate down: [src_slot+ss..limit_slot) --> [src_slot..limit_slot-ss)
          // that is:     (limit_arg..src_arg-1] --> (dst_arg+1..src_arg]
          for (int i = limit_arg+1; i <= src_arg-1 && err == NULL; i++) {
            err = check_argument_type_change(java_lang_invoke_MethodType::ptype(src_mtype(), i),
                                             java_lang_invoke_MethodType::ptype(dst_mtype(), i+1),
                                             i);
          }
        }
        if (err == NULL) {
          int dest_arg = (rot_down ? limit_arg+1 : limit_arg);
          err = check_argument_type_change(java_lang_invoke_MethodType::ptype(src_mtype(), src_arg),
                                           java_lang_invoke_MethodType::ptype(dst_mtype(), dest_arg),
                                           src_arg);
        }
2105 2106 2107
      }
      break;
    case _adapter_spread_args:
2108 2109
    case _adapter_collect_args:
    case _adapter_fold_args:
2110
      {
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142
        bool is_spread = (ek == _adapter_spread_args);
        bool is_fold   = (ek == _adapter_fold_args);
        BasicType coll_type = is_spread ? src : dest;
        BasicType elem_type = is_spread ? dest : src;
        // coll_type is type of args in collected form (or T_VOID if none)
        // elem_type is common type of args in spread form (or T_VOID if missing or heterogeneous)
        if (coll_type == 0 || elem_type == 0) {
          err = "adapter requires src/dest subfields for spread or collect"; break;
        }
        if (is_spread && coll_type != T_OBJECT) {
          err = "spread adapter requires object type for argument bundle"; break;
        }
        Handle spread_mtype = (is_spread ? dst_mtype : src_mtype);
        int spread_slot = argslot;
        int spread_arg  = argnum;
        int slots_pushed = stack_move / stack_move_unit();
        int coll_slot_count = type2size[coll_type];
        int spread_slot_count = (is_spread ? slots_pushed : -slots_pushed) + coll_slot_count;
        if (is_fold)  spread_slot_count = argument_slot_count(arg_mtype());
        if (!is_spread) {
          int init_slots = argument_slot_count(src_mtype());
          int coll_slots = argument_slot_count(arg_mtype());
          if (spread_slot_count > init_slots ||
              spread_slot_count != coll_slots) {
            err = "collect adapter has inconsistent arg counts"; break;
          }
          int next_slots = argument_slot_count(dst_mtype());
          int unchanged_slots_in  = (init_slots - spread_slot_count);
          int unchanged_slots_out = (next_slots - coll_slot_count - (is_fold ? spread_slot_count : 0));
          if (unchanged_slots_in != unchanged_slots_out) {
            err = "collect adapter continuation has inconsistent arg counts"; break;
          }
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176
        }
      }
      break;
    default:
      if (src != 0 || dest != 0) {
        err = "adapter has spurious src/dest conversion subfields"; break;
      }
      break;
    }
  }

  if (err == NULL) {
    // Check the stack_move subfield.
    // It must always report the net change in stack size, positive or negative.
    int slots_pushed = stack_move / stack_move_unit();
    switch (ek) {
    case _adapter_prim_to_prim:
    case _adapter_ref_to_prim:
    case _adapter_prim_to_ref:
      if (slots_pushed != type2size[dest] - type2size[src]) {
        err = "wrong stack motion for primitive conversion";
      }
      break;
    case _adapter_dup_args:
      if (slots_pushed <= 0) {
        err = "adapter requires conversion subfield slots_pushed > 0";
      }
      break;
    case _adapter_drop_args:
      if (slots_pushed >= 0) {
        err = "adapter requires conversion subfield slots_pushed < 0";
      }
      break;
    case _adapter_collect_args:
2177 2178 2179
    case _adapter_fold_args:
      if (slots_pushed > 2) {
        err = "adapter requires conversion subfield slots_pushed <= 2";
2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198
      }
      break;
    case _adapter_spread_args:
      if (slots_pushed < -1) {
        err = "adapter requires conversion subfield slots_pushed >= -1";
      }
      break;
    default:
      if (stack_move != 0) {
        err = "adapter has spurious stack_move conversion subfield";
      }
      break;
    }
    if (err == NULL && stack_move != slots_pushed * stack_move_unit()) {
      err = "stack_move conversion subfield must be multiple of stack_move_unit";
    }
  }

  if (err == NULL) {
2199
    // Make sure this adapter's stack pushing is accurately recorded.
2200
    int slots_pushed = stack_move / stack_move_unit();
2201 2202
    int this_vmslots = java_lang_invoke_MethodHandle::vmslots(mh());
    int target_vmslots = java_lang_invoke_MethodHandle::vmslots(target());
2203
    int target_pushes = decode_MethodHandle_stack_pushes(target());
2204
    if (slots_pushed != (target_vmslots - this_vmslots)) {
2205
      err = "stack_move inconsistent with previous and current MethodType vmslots";
2206 2207 2208 2209 2210 2211 2212
    } else {
      int this_pushes = decode_MethodHandle_stack_pushes(mh());
      if (slots_pushed + target_pushes != this_pushes) {
        if (this_pushes == 0)
          err = "adapter push count not initialized";
        else
          err = "adapter push count is wrong";
2213 2214 2215 2216 2217
      }
    }

    // While we're at it, check that the stack motion decoder works:
    DEBUG_ONLY(int this_pushes = decode_MethodHandle_stack_pushes(mh()));
2218
    assert(this_pushes == slots_pushed + target_pushes, "AMH stack motion must be correct");
2219 2220 2221 2222
  }

  if (err == NULL && vminfo != 0) {
    switch (ek) {
2223 2224 2225 2226 2227 2228
    case _adapter_swap_args:
    case _adapter_rot_args:
    case _adapter_prim_to_ref:
    case _adapter_collect_args:
    case _adapter_fold_args:
      break;                // OK
2229 2230 2231 2232 2233 2234 2235 2236 2237
    default:
      err = "vminfo subfield is reserved to the JVM";
    }
  }

  // Do additional ad hoc checks.
  if (err == NULL) {
    switch (ek) {
    case _adapter_retype_only:
2238 2239 2240 2241 2242
      err = check_method_type_passthrough(src_mtype(), dst_mtype(), false);
      break;

    case _adapter_retype_raw:
      err = check_method_type_passthrough(src_mtype(), dst_mtype(), true);
2243 2244 2245 2246 2247
      break;

    case _adapter_check_cast:
      {
        // The actual value being checked must be a reference:
2248
        err = check_argument_type_change(java_lang_invoke_MethodType::ptype(src_mtype(), argnum),
2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271
                                         object_java_mirror(), argnum);
        if (err != NULL)  break;

        // The output of the cast must fit with the destination argument:
        Handle cast_class = argument;
        err = check_method_type_conversion(src_mtype(),
                                           argnum, cast_class(),
                                           dst_mtype());
      }
      break;

      // %%% TO DO: continue in remaining cases to verify src/dst_mtype if VerifyMethodHandles
    }
  }

  if (err != NULL) {
    throw_InternalError_for_bad_conversion(conversion, err, THREAD);
    return;
  }

}

void MethodHandles::init_AdapterMethodHandle(Handle mh, Handle target, int argnum, TRAPS) {
2272 2273 2274 2275
  Handle argument   = java_lang_invoke_AdapterMethodHandle::argument(mh());
  int    argslot    = java_lang_invoke_AdapterMethodHandle::vmargslot(mh());
  jint   conversion = java_lang_invoke_AdapterMethodHandle::conversion(mh());
  jint   conv_op    = adapter_conversion_op(conversion);
2276 2277 2278 2279

  // adjust the adapter code to the internal EntryKind enumeration:
  EntryKind ek_orig = adapter_entry_kind(conv_op);
  EntryKind ek_opt  = ek_orig;  // may be optimized
2280
  EntryKind ek_try;             // temp
2281 2282

  // Finalize the vmtarget field (Java initialized it to null).
2283
  if (!java_lang_invoke_MethodHandle::is_instance(target())) {
2284 2285 2286
    throw_InternalError_for_bad_conversion(conversion, "bad target", THREAD);
    return;
  }
2287
  java_lang_invoke_AdapterMethodHandle::set_vmtarget(mh(), target());
2288 2289 2290 2291 2292 2293

  int stack_move = adapter_conversion_stack_move(conversion);
  BasicType src  = adapter_conversion_src_type(conversion);
  BasicType dest = adapter_conversion_dest_type(conversion);
  int vminfo     = adapter_conversion_vminfo(conversion); // should be zero

2294 2295 2296 2297 2298 2299
  int slots_pushed = stack_move / stack_move_unit();

  if (VerifyMethodHandles) {
    verify_AdapterMethodHandle(mh, argnum, CHECK);
  }

2300 2301
  const char* err = NULL;

2302 2303 2304 2305
  if (!conv_op_supported(conv_op)) {
    err = "adapter not yet implemented in the JVM";
  }

2306 2307 2308
  // Now it's time to finish the case analysis and pick a MethodHandleEntry.
  switch (ek_orig) {
  case _adapter_retype_only:
2309
  case _adapter_retype_raw:
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324
  case _adapter_check_cast:
  case _adapter_dup_args:
  case _adapter_drop_args:
    // these work fine via general case code
    break;

  case _adapter_prim_to_prim:
    {
      // Non-subword cases are {int,float,long,double} -> {int,float,long,double}.
      // And, the {float,double} -> {int,long} cases must be handled by Java.
      switch (type2size[src] *4+ type2size[dest]) {
      case 1 *4+ 1:
        assert(src == T_INT || is_subword_type(src), "source is not float");
        // Subword-related cases are int -> {boolean,byte,char,short}.
        ek_opt = _adapter_opt_i2i;
2325
        vminfo = adapter_prim_to_prim_subword_vminfo(dest);
2326 2327 2328 2329
        break;
      case 2 *4+ 1:
        if (src == T_LONG && (dest == T_INT || is_subword_type(dest))) {
          ek_opt = _adapter_opt_l2i;
2330
          vminfo = adapter_prim_to_prim_subword_vminfo(dest);
2331 2332 2333
        } else if (src == T_DOUBLE && dest == T_FLOAT) {
          ek_opt = _adapter_opt_d2f;
        } else {
2334
          goto throw_not_impl;        // runs user code, hence could block
2335 2336 2337
        }
        break;
      case 1 *4+ 2:
2338
        if ((src == T_INT || is_subword_type(src)) && dest == T_LONG) {
2339 2340 2341 2342
          ek_opt = _adapter_opt_i2l;
        } else if (src == T_FLOAT && dest == T_DOUBLE) {
          ek_opt = _adapter_opt_f2d;
        } else {
2343
          goto throw_not_impl;        // runs user code, hence could block
2344 2345 2346
        }
        break;
      default:
2347
        goto throw_not_impl;        // runs user code, hence could block
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
        break;
      }
    }
    break;

  case _adapter_ref_to_prim:
    {
      switch (type2size[dest]) {
      case 1:
        ek_opt = _adapter_opt_unboxi;
2358
        vminfo = adapter_unbox_subword_vminfo(dest);
2359 2360 2361 2362 2363
        break;
      case 2:
        ek_opt = _adapter_opt_unboxl;
        break;
      default:
2364
        goto throw_not_impl;
2365 2366 2367 2368 2369 2370
        break;
      }
    }
    break;

  case _adapter_prim_to_ref:
2371 2372 2373 2374 2375 2376
    {
      assert(UseRicochetFrames, "else don't come here");
      // vminfo will be the location to insert the return value
      vminfo = argslot;
      ek_opt = _adapter_opt_collect_ref;
      ensure_vmlayout_field(target, CHECK);
2377 2378 2379
      // for MethodHandleWalk:
      if (java_lang_invoke_AdapterMethodHandle::is_instance(argument()))
        ensure_vmlayout_field(argument, CHECK);
2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
      if (!OptimizeMethodHandles)  break;
      switch (type2size[src]) {
      case 1:
        ek_try = EntryKind(_adapter_opt_filter_S0_ref + argslot);
        if (ek_try < _adapter_opt_collect_LAST &&
            ek_adapter_opt_collect_slot(ek_try) == argslot) {
          assert(ek_adapter_opt_collect_count(ek_try) == 1 &&
                 ek_adapter_opt_collect_type(ek_try) == T_OBJECT, "");
          ek_opt = ek_try;
          break;
        }
        // else downgrade to variable slot:
        ek_opt = _adapter_opt_collect_1_ref;
        break;
      case 2:
        ek_try = EntryKind(_adapter_opt_collect_2_S0_ref + argslot);
        if (ek_try < _adapter_opt_collect_LAST &&
            ek_adapter_opt_collect_slot(ek_try) == argslot) {
          assert(ek_adapter_opt_collect_count(ek_try) == 2 &&
                 ek_adapter_opt_collect_type(ek_try) == T_OBJECT, "");
          ek_opt = ek_try;
          break;
        }
        // else downgrade to variable slot:
        ek_opt = _adapter_opt_collect_2_ref;
        break;
      default:
2407
        goto throw_not_impl;
2408 2409 2410 2411
        break;
      }
    }
    break;
2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429

  case _adapter_swap_args:
  case _adapter_rot_args:
    {
      int swap_slots = type2size[src];
      int src_slot   = argslot;
      int dest_slot  = vminfo;
      int rotate     = (ek_orig == _adapter_swap_args) ? 0 : (src_slot > dest_slot) ? 1 : -1;
      switch (swap_slots) {
      case 1:
        ek_opt = (!rotate    ? _adapter_opt_swap_1 :
                  rotate > 0 ? _adapter_opt_rot_1_up : _adapter_opt_rot_1_down);
        break;
      case 2:
        ek_opt = (!rotate    ? _adapter_opt_swap_2 :
                  rotate > 0 ? _adapter_opt_rot_2_up : _adapter_opt_rot_2_down);
        break;
      default:
2430
        goto throw_not_impl;
2431 2432 2433 2434 2435 2436 2437
        break;
      }
    }
    break;

  case _adapter_spread_args:
    {
2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
#ifdef TARGET_ARCH_NYI_6939861
      // ports before 6939861 supported only three kinds of spread ops
      if (!UseRicochetFrames) {
        int array_size   = slots_pushed + 1;
        assert(array_size >= 0, "");
        vminfo = array_size;
        switch (array_size) {
        case 0:   ek_opt = _adapter_opt_spread_0;       break;
        case 1:   ek_opt = _adapter_opt_spread_1;       break;
        default:  ek_opt = _adapter_opt_spread_more;    break;
        }
        break;
      }
#endif //TARGET_ARCH_NYI_6939861
2452
      // vminfo will be the required length of the array
2453
      int array_size = (slots_pushed + 1) / (type2size[dest] == 2 ? 2 : 1);
2454
      vminfo = array_size;
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
      // general case
      switch (dest) {
      case T_BOOLEAN : // fall through to T_BYTE:
      case T_BYTE    : ek_opt = _adapter_opt_spread_byte;    break;
      case T_CHAR    : ek_opt = _adapter_opt_spread_char;    break;
      case T_SHORT   : ek_opt = _adapter_opt_spread_short;   break;
      case T_INT     : ek_opt = _adapter_opt_spread_int;     break;
      case T_LONG    : ek_opt = _adapter_opt_spread_long;    break;
      case T_FLOAT   : ek_opt = _adapter_opt_spread_float;   break;
      case T_DOUBLE  : ek_opt = _adapter_opt_spread_double;  break;
      case T_OBJECT  : ek_opt = _adapter_opt_spread_ref;     break;
      case T_VOID    : if (array_size != 0)  goto throw_not_impl;
                       ek_opt = _adapter_opt_spread_ref;     break;
      default        : goto throw_not_impl;
      }
      assert(array_size == 0 ||  // it doesn't matter what the spreader is
             (ek_adapter_opt_spread_count(ek_opt) == -1 &&
              (ek_adapter_opt_spread_type(ek_opt) == dest ||
               (ek_adapter_opt_spread_type(ek_opt) == T_BYTE && dest == T_BOOLEAN))),
             err_msg("dest=%d ek_opt=%d", dest, ek_opt));

      if (array_size <= 0) {
        // since the general case does not handle length 0, this case is required:
        ek_opt = _adapter_opt_spread_0;
        break;
2480
      }
2481 2482 2483 2484 2485 2486 2487 2488 2489 2490
      if (dest == T_OBJECT) {
        ek_try = EntryKind(_adapter_opt_spread_1_ref - 1 + array_size);
        if (ek_try < _adapter_opt_spread_LAST &&
            ek_adapter_opt_spread_count(ek_try) == array_size) {
          assert(ek_adapter_opt_spread_type(ek_try) == dest, "");
          ek_opt = ek_try;
          break;
        }
      }
      break;
2491 2492 2493
    }
    break;

2494 2495 2496
  case _adapter_collect_args:
    {
      assert(UseRicochetFrames, "else don't come here");
2497
      int elem_slots = argument_slot_count(java_lang_invoke_MethodHandle::type(argument()));
2498 2499 2500
      // vminfo will be the location to insert the return value
      vminfo = argslot;
      ensure_vmlayout_field(target, CHECK);
2501
      ensure_vmlayout_field(argument, CHECK);
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565

      // general case:
      switch (dest) {
      default       : if (!is_subword_type(dest))  goto throw_not_impl;
                    // else fall through:
      case T_INT    : ek_opt = _adapter_opt_collect_int;     break;
      case T_LONG   : ek_opt = _adapter_opt_collect_long;    break;
      case T_FLOAT  : ek_opt = _adapter_opt_collect_float;   break;
      case T_DOUBLE : ek_opt = _adapter_opt_collect_double;  break;
      case T_OBJECT : ek_opt = _adapter_opt_collect_ref;     break;
      case T_VOID   : ek_opt = _adapter_opt_collect_void;    break;
      }
      assert(ek_adapter_opt_collect_slot(ek_opt) == -1 &&
             ek_adapter_opt_collect_count(ek_opt) == -1 &&
             (ek_adapter_opt_collect_type(ek_opt) == dest ||
              ek_adapter_opt_collect_type(ek_opt) == T_INT && is_subword_type(dest)),
             "");

      if (dest == T_OBJECT && elem_slots == 1 && OptimizeMethodHandles) {
        // filter operation on a ref
        ek_try = EntryKind(_adapter_opt_filter_S0_ref + argslot);
        if (ek_try < _adapter_opt_collect_LAST &&
            ek_adapter_opt_collect_slot(ek_try) == argslot) {
          assert(ek_adapter_opt_collect_count(ek_try) == elem_slots &&
                 ek_adapter_opt_collect_type(ek_try) == dest, "");
          ek_opt = ek_try;
          break;
        }
        ek_opt = _adapter_opt_collect_1_ref;
        break;
      }

      if (dest == T_OBJECT && elem_slots == 2 && OptimizeMethodHandles) {
        // filter of two arguments
        ek_try = EntryKind(_adapter_opt_collect_2_S0_ref + argslot);
        if (ek_try < _adapter_opt_collect_LAST &&
            ek_adapter_opt_collect_slot(ek_try) == argslot) {
          assert(ek_adapter_opt_collect_count(ek_try) == elem_slots &&
                 ek_adapter_opt_collect_type(ek_try) == dest, "");
          ek_opt = ek_try;
          break;
        }
        ek_opt = _adapter_opt_collect_2_ref;
        break;
      }

      if (dest == T_OBJECT && OptimizeMethodHandles) {
        // try to use a fixed length adapter
        ek_try = EntryKind(_adapter_opt_collect_0_ref + elem_slots);
        if (ek_try < _adapter_opt_collect_LAST &&
            ek_adapter_opt_collect_count(ek_try) == elem_slots) {
          assert(ek_adapter_opt_collect_slot(ek_try) == -1 &&
                 ek_adapter_opt_collect_type(ek_try) == dest, "");
          ek_opt = ek_try;
          break;
        }
      }

      break;
    }

  case _adapter_fold_args:
    {
      assert(UseRicochetFrames, "else don't come here");
2566
      int elem_slots = argument_slot_count(java_lang_invoke_MethodHandle::type(argument()));
2567 2568 2569
      // vminfo will be the location to insert the return value
      vminfo = argslot + elem_slots;
      ensure_vmlayout_field(target, CHECK);
2570
      ensure_vmlayout_field(argument, CHECK);
2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607

      switch (dest) {
      default       : if (!is_subword_type(dest))  goto throw_not_impl;
                    // else fall through:
      case T_INT    : ek_opt = _adapter_opt_fold_int;     break;
      case T_LONG   : ek_opt = _adapter_opt_fold_long;    break;
      case T_FLOAT  : ek_opt = _adapter_opt_fold_float;   break;
      case T_DOUBLE : ek_opt = _adapter_opt_fold_double;  break;
      case T_OBJECT : ek_opt = _adapter_opt_fold_ref;     break;
      case T_VOID   : ek_opt = _adapter_opt_fold_void;    break;
      }
      assert(ek_adapter_opt_collect_slot(ek_opt) == -1 &&
             ek_adapter_opt_collect_count(ek_opt) == -1 &&
             (ek_adapter_opt_collect_type(ek_opt) == dest ||
              ek_adapter_opt_collect_type(ek_opt) == T_INT && is_subword_type(dest)),
             "");

      if (dest == T_OBJECT && elem_slots == 0 && OptimizeMethodHandles) {
        // if there are no args, just pretend it's a collect
        ek_opt = _adapter_opt_collect_0_ref;
        break;
      }

      if (dest == T_OBJECT && OptimizeMethodHandles) {
        // try to use a fixed length adapter
        ek_try = EntryKind(_adapter_opt_fold_1_ref - 1 + elem_slots);
        if (ek_try < _adapter_opt_fold_LAST &&
            ek_adapter_opt_collect_count(ek_try) == elem_slots) {
          assert(ek_adapter_opt_collect_slot(ek_try) == -1 &&
                 ek_adapter_opt_collect_type(ek_try) == dest, "");
          ek_opt = ek_try;
          break;
        }
      }

      break;
    }
2608 2609 2610 2611 2612 2613 2614

  default:
    // should have failed much earlier; must be a missing case here
    assert(false, "incomplete switch");
    // and fall through:

  throw_not_impl:
2615 2616
    if (err == NULL)
      err = "unknown adapter type";
2617 2618 2619
    break;
  }

2620
  if (err == NULL && (vminfo & CONV_VMINFO_MASK) != vminfo) {
2621 2622 2623 2624
    // should not happen, since vminfo is used to encode arg/slot indexes < 255
    err = "vminfo overflow";
  }

2625
  if (err == NULL && !have_entry(ek_opt)) {
2626 2627 2628
    err = "adapter stub for this kind of method handle is missing";
  }

2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644
  if (err == NULL && ek_opt == ek_orig) {
    switch (ek_opt) {
    case _adapter_prim_to_prim:
    case _adapter_ref_to_prim:
    case _adapter_prim_to_ref:
    case _adapter_swap_args:
    case _adapter_rot_args:
    case _adapter_collect_args:
    case _adapter_fold_args:
    case _adapter_spread_args:
      // should be handled completely by optimized cases; see above
      err = "init_AdapterMethodHandle should not issue this";
      break;
    }
  }

2645
  if (err != NULL) {
2646
    throw_InternalError_for_bad_conversion(conversion, err_msg("%s: conv_op %d ek_opt %d", err, conv_op, ek_opt), THREAD);
2647 2648 2649 2650 2651 2652 2653
    return;
  }

  // Rebuild the conversion value; maybe parts of it were changed.
  jint new_conversion = adapter_conversion(conv_op, src, dest, stack_move, vminfo);

  // Finalize the conversion field.  (Note that it is final to Java code.)
2654
  java_lang_invoke_AdapterMethodHandle::set_conversion(mh(), new_conversion);
2655 2656

  // Done!
2657
  java_lang_invoke_MethodHandle::set_vmentry(mh(), entry(ek_opt));
2658 2659 2660 2661 2662 2663

  // There should be enough memory barriers on exit from native methods
  // to ensure that the MH is fully initialized to all threads before
  // Java code can publish it in global data structures.
}

2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683
void MethodHandles::ensure_vmlayout_field(Handle target, TRAPS) {
  Handle mtype(THREAD, java_lang_invoke_MethodHandle::type(target()));
  Handle mtform(THREAD, java_lang_invoke_MethodType::form(mtype()));
  if (mtform.is_null()) { THROW(vmSymbols::java_lang_InternalError()); }
  if (java_lang_invoke_MethodTypeForm::vmlayout_offset_in_bytes() > 0) {
    if (java_lang_invoke_MethodTypeForm::vmlayout(mtform()) == NULL) {
      // fill it in
      Handle erased_mtype(THREAD, java_lang_invoke_MethodTypeForm::erasedType(mtform()));
      TempNewSymbol erased_signature
        = java_lang_invoke_MethodType::as_signature(erased_mtype(), /*intern:*/true, CHECK);
      methodOop cookie
        = SystemDictionary::find_method_handle_invoke(vmSymbols::invokeExact_name(),
                                                      erased_signature,
                                                      SystemDictionaryHandles::Object_klass(),
                                                      THREAD);
      java_lang_invoke_MethodTypeForm::init_vmlayout(mtform(), cookie);
    }
  }
}

2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708
#ifdef ASSERT

extern "C"
void print_method_handle(oop mh);

static void stress_method_handle_walk_impl(Handle mh, TRAPS) {
  if (StressMethodHandleWalk) {
    // Exercise the MethodHandleWalk code in various ways and validate
    // the resulting method oop.  Some of these produce output so they
    // are guarded under Verbose.
    ResourceMark rm;
    HandleMark hm;
    if (Verbose) {
      print_method_handle(mh());
    }
    TempNewSymbol name = SymbolTable::new_symbol("invoke", CHECK);
    Handle mt = java_lang_invoke_MethodHandle::type(mh());
    TempNewSymbol signature = java_lang_invoke_MethodType::as_signature(mt(), true, CHECK);
    MethodHandleCompiler mhc(mh, name, signature, 10000, false, CHECK);
    methodHandle m = mhc.compile(CHECK);
    if (Verbose) {
      m->print_codes();
    }
    InterpreterOopMap mask;
    OopMapCache::compute_one_oop_map(m, m->code_size() - 1, &mask);
2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719
    // compile to object code if -Xcomp or WizardMode
    if ((WizardMode ||
         CompilationPolicy::must_be_compiled(m))
        && !instanceKlass::cast(m->method_holder())->is_not_initialized()
        && CompilationPolicy::can_be_compiled(m)) {
      // Force compilation
      CompileBroker::compile_method(m, InvocationEntryBci,
                                    CompLevel_initial_compile,
                                    methodHandle(), 0, "StressMethodHandleWalk",
                                    CHECK);
    }
2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738
  }
}

static void stress_method_handle_walk(Handle mh, TRAPS) {
  stress_method_handle_walk_impl(mh, THREAD);
  if (HAS_PENDING_EXCEPTION) {
    oop ex = PENDING_EXCEPTION;
    CLEAR_PENDING_EXCEPTION;
    tty->print("StressMethodHandleWalk: ");
    java_lang_Throwable::print(ex, tty);
    tty->cr();
  }
}
#else

static void stress_method_handle_walk(Handle mh, TRAPS) {}

#endif

2739
//
2740
// Here are the native methods on sun.invoke.MethodHandleImpl.
2741 2742 2743 2744 2745 2746 2747 2748 2749
// They are the private interface between this JVM and the HotSpot-specific
// Java code that implements JSR 292 method handles.
//
// Note:  We use a JVM_ENTRY macro to define each of these, for this is the way
// that intrinsic (non-JNI) native methods are defined in HotSpot.
//

// direct method handles for invokestatic or invokespecial
// void init(DirectMethodHandle self, MemberName ref, boolean doDispatch, Class<?> caller);
2750
JVM_ENTRY(void, MHN_init_DMH(JNIEnv *env, jobject igcls, jobject mh_jh,
2751 2752 2753 2754
                             jobject target_jh, jboolean do_dispatch, jobject caller_jh)) {
  ResourceMark rm;              // for error messages

  // This is the guy we are initializing:
2755
  if (mh_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "self is null"); }
2756 2757 2758
  Handle mh(THREAD, JNIHandles::resolve_non_null(mh_jh));

  // Early returns out of this method leave the DMH in an unfinished state.
2759
  assert(java_lang_invoke_MethodHandle::vmentry(mh()) == NULL, "must be safely null");
2760 2761

  // which method are we really talking about?
2762
  if (target_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "target is null"); }
2763 2764 2765 2766
  Handle target(THREAD, JNIHandles::resolve_non_null(target_jh));
  if (java_lang_invoke_MemberName::is_instance(target()) &&
      java_lang_invoke_MemberName::vmindex(target()) == VM_INDEX_UNINITIALIZED) {
    MethodHandles::resolve_MemberName(target, CHECK);
2767 2768
  }

2769 2770
  KlassHandle receiver_limit; int decode_flags = 0;
  methodHandle m = MethodHandles::decode_method(target(), receiver_limit, decode_flags);
2771 2772 2773 2774 2775 2776 2777 2778
  if (m.is_null()) { THROW_MSG(vmSymbols::java_lang_InternalError(), "no such method"); }

  // The trusted Java code that calls this method should already have performed
  // access checks on behalf of the given caller.  But, we can verify this.
  if (VerifyMethodHandles && caller_jh != NULL) {
    KlassHandle caller(THREAD, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(caller_jh)));
    // If this were a bytecode, the first access check would be against
    // the "reference class" mentioned in the CONSTANT_Methodref.
2779 2780 2781 2782 2783 2784 2785 2786 2787
    // We don't know at this point which class that was, and if we
    // check against m.method_holder we might get the wrong answer.
    // So we just make sure to handle this check when the resolution
    // happens, when we call resolve_MemberName.
    //
    // (A public class can inherit public members from private supers,
    // and it would be wrong to check access against the private super
    // if the original symbolic reference was against the public class.)
    //
2788 2789 2790 2791 2792
    // If there were a bytecode, the next step would be to lookup the method
    // in the reference class, then then check the method's access bits.
    // Emulate LinkResolver::check_method_accessability.
    klassOop resolved_klass = m->method_holder();
    if (!Reflection::verify_field_access(caller->as_klassOop(),
2793
                                         resolved_klass, resolved_klass,
2794 2795 2796 2797
                                         m->access_flags(),
                                         true)) {
      // %%% following cutout belongs in Reflection::verify_field_access?
      bool same_pm = Reflection::is_same_package_member(caller->as_klassOop(),
2798
                                                        resolved_klass, THREAD);
2799 2800 2801 2802 2803 2804 2805
      if (!same_pm) {
        THROW_MSG(vmSymbols::java_lang_InternalError(), m->name_and_sig_as_C_string());
      }
    }
  }

  MethodHandles::init_DirectMethodHandle(mh, m, (do_dispatch != JNI_FALSE), CHECK);
2806
  stress_method_handle_walk(mh, CHECK);
2807 2808 2809 2810
}
JVM_END

// bound method handles
2811
JVM_ENTRY(void, MHN_init_BMH(JNIEnv *env, jobject igcls, jobject mh_jh,
2812 2813 2814 2815
                             jobject target_jh, int argnum)) {
  ResourceMark rm;              // for error messages

  // This is the guy we are initializing:
2816
  if (mh_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "self is null"); }
2817 2818 2819
  Handle mh(THREAD, JNIHandles::resolve_non_null(mh_jh));

  // Early returns out of this method leave the BMH in an unfinished state.
2820
  assert(java_lang_invoke_MethodHandle::vmentry(mh()) == NULL, "must be safely null");
2821

2822
  if (target_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "target is null"); }
2823 2824
  Handle target(THREAD, JNIHandles::resolve_non_null(target_jh));

2825
  if (!java_lang_invoke_MethodHandle::is_instance(target())) {
2826 2827 2828
    // Target object is a reflective method.  (%%% Do we need this alternate path?)
    Untested("init_BMH of non-MH");
    if (argnum != 0) { THROW(vmSymbols::java_lang_InternalError()); }
2829 2830
    KlassHandle receiver_limit; int decode_flags = 0;
    methodHandle m = MethodHandles::decode_method(target(), receiver_limit, decode_flags);
2831 2832 2833 2834
    MethodHandles::init_BoundMethodHandle_with_receiver(mh, m,
                                                       receiver_limit,
                                                       decode_flags,
                                                       CHECK);
2835 2836 2837
  } else {
    // Build a BMH on top of a DMH or another BMH:
    MethodHandles::init_BoundMethodHandle(mh, target, argnum, CHECK);
2838
  }
2839 2840 2841 2842 2843 2844

  if (StressMethodHandleWalk) {
    if (mh->klass() == SystemDictionary::BoundMethodHandle_klass())
      stress_method_handle_walk(mh, CHECK);
    // else don't, since the subclass has not yet initialized its own fields
  }
2845 2846 2847 2848
}
JVM_END

// adapter method handles
2849
JVM_ENTRY(void, MHN_init_AMH(JNIEnv *env, jobject igcls, jobject mh_jh,
2850 2851
                             jobject target_jh, int argnum)) {
  // This is the guy we are initializing:
2852 2853
  if (mh_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "self is null"); }
  if (target_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "target is null"); }
2854 2855 2856 2857
  Handle mh(THREAD, JNIHandles::resolve_non_null(mh_jh));
  Handle target(THREAD, JNIHandles::resolve_non_null(target_jh));

  // Early returns out of this method leave the AMH in an unfinished state.
2858
  assert(java_lang_invoke_MethodHandle::vmentry(mh()) == NULL, "must be safely null");
2859 2860

  MethodHandles::init_AdapterMethodHandle(mh, target, argnum, CHECK);
2861
  stress_method_handle_walk(mh, CHECK);
2862 2863 2864 2865
}
JVM_END

// method type forms
2866
JVM_ENTRY(void, MHN_init_MT(JNIEnv *env, jobject igcls, jobject erased_jh)) {
2867 2868 2869 2870 2871
  if (erased_jh == NULL)  return;
  if (TraceMethodHandles) {
    tty->print("creating MethodType form ");
    if (WizardMode || Verbose) {   // Warning: this calls Java code on the MH!
      // call Object.toString()
2872 2873
      Symbol* name = vmSymbols::toString_name();
      Symbol* sig = vmSymbols::void_string_signature();
2874 2875
      JavaCallArguments args(Handle(THREAD, JNIHandles::resolve_non_null(erased_jh)));
      JavaValue result(T_OBJECT);
2876
      JavaCalls::call_virtual(&result, SystemDictionary::Object_klass(), name, sig,
2877 2878 2879 2880 2881 2882 2883 2884 2885 2886
                              &args, CHECK);
      Handle str(THREAD, (oop)result.get_jobject());
      java_lang_String::print(str, tty);
    }
    tty->cr();
  }
}
JVM_END

// debugging and reflection
2887
JVM_ENTRY(jobject, MHN_getTarget(JNIEnv *env, jobject igcls, jobject mh_jh, jint format)) {
2888
  Handle mh(THREAD, JNIHandles::resolve(mh_jh));
2889
  if (!java_lang_invoke_MethodHandle::is_instance(mh())) {
2890 2891 2892 2893 2894 2895 2896
    THROW_NULL(vmSymbols::java_lang_IllegalArgumentException());
  }
  oop target = MethodHandles::encode_target(mh, format, CHECK_NULL);
  return JNIHandles::make_local(THREAD, target);
}
JVM_END

2897
JVM_ENTRY(jint, MHN_getConstant(JNIEnv *env, jobject igcls, jint which)) {
2898 2899 2900 2901 2902
  switch (which) {
  case MethodHandles::GC_JVM_PUSH_LIMIT:
    guarantee(MethodHandlePushLimit >= 2 && MethodHandlePushLimit <= 0xFF,
              "MethodHandlePushLimit parameter must be in valid range");
    return MethodHandlePushLimit;
2903
  case MethodHandles::GC_JVM_STACK_MOVE_UNIT:
2904 2905
    // return number of words per slot, signed according to stack direction
    return MethodHandles::stack_move_unit();
2906 2907
  case MethodHandles::GC_CONV_OP_IMPLEMENTED_MASK:
    return MethodHandles::adapter_conversion_ops_supported_mask();
2908 2909
  case MethodHandles::GC_OP_ROT_ARGS_DOWN_LIMIT_BIAS:
    return MethodHandles::OP_ROT_ARGS_DOWN_LIMIT_BIAS;
2910 2911 2912 2913 2914 2915 2916
  }
  return 0;
}
JVM_END

#ifndef PRODUCT
#define EACH_NAMED_CON(template) \
2917 2918 2919 2920
  /* hold back this one until JDK stabilizes */ \
  /* template(MethodHandles,GC_JVM_PUSH_LIMIT) */  \
  /* hold back this one until JDK stabilizes */ \
  /* template(MethodHandles,GC_JVM_STACK_MOVE_UNIT) */ \
2921 2922
  /* hold back this one until JDK stabilizes */ \
  /* template(MethodHandles,GC_OP_ROT_ARGS_DOWN_LIMIT_BIAS) */ \
2923 2924 2925 2926
    template(MethodHandles,ETF_HANDLE_OR_METHOD_NAME) \
    template(MethodHandles,ETF_DIRECT_HANDLE) \
    template(MethodHandles,ETF_METHOD_NAME) \
    template(MethodHandles,ETF_REFLECT_METHOD) \
2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945
    template(java_lang_invoke_MemberName,MN_IS_METHOD) \
    template(java_lang_invoke_MemberName,MN_IS_CONSTRUCTOR) \
    template(java_lang_invoke_MemberName,MN_IS_FIELD) \
    template(java_lang_invoke_MemberName,MN_IS_TYPE) \
    template(java_lang_invoke_MemberName,MN_SEARCH_SUPERCLASSES) \
    template(java_lang_invoke_MemberName,MN_SEARCH_INTERFACES) \
    template(java_lang_invoke_MemberName,VM_INDEX_UNINITIALIZED) \
    template(java_lang_invoke_AdapterMethodHandle,OP_RETYPE_ONLY) \
    template(java_lang_invoke_AdapterMethodHandle,OP_RETYPE_RAW) \
    template(java_lang_invoke_AdapterMethodHandle,OP_CHECK_CAST) \
    template(java_lang_invoke_AdapterMethodHandle,OP_PRIM_TO_PRIM) \
    template(java_lang_invoke_AdapterMethodHandle,OP_REF_TO_PRIM) \
    template(java_lang_invoke_AdapterMethodHandle,OP_PRIM_TO_REF) \
    template(java_lang_invoke_AdapterMethodHandle,OP_SWAP_ARGS) \
    template(java_lang_invoke_AdapterMethodHandle,OP_ROT_ARGS) \
    template(java_lang_invoke_AdapterMethodHandle,OP_DUP_ARGS) \
    template(java_lang_invoke_AdapterMethodHandle,OP_DROP_ARGS) \
    template(java_lang_invoke_AdapterMethodHandle,OP_COLLECT_ARGS) \
    template(java_lang_invoke_AdapterMethodHandle,OP_SPREAD_ARGS) \
2946 2947
      /* hold back this one until JDK stabilizes */ \
      /*template(java_lang_invoke_AdapterMethodHandle,CONV_OP_LIMIT)*/  \
2948 2949 2950 2951 2952 2953 2954 2955
    template(java_lang_invoke_AdapterMethodHandle,CONV_OP_MASK) \
    template(java_lang_invoke_AdapterMethodHandle,CONV_VMINFO_MASK) \
    template(java_lang_invoke_AdapterMethodHandle,CONV_VMINFO_SHIFT) \
    template(java_lang_invoke_AdapterMethodHandle,CONV_OP_SHIFT) \
    template(java_lang_invoke_AdapterMethodHandle,CONV_DEST_TYPE_SHIFT) \
    template(java_lang_invoke_AdapterMethodHandle,CONV_SRC_TYPE_SHIFT) \
    template(java_lang_invoke_AdapterMethodHandle,CONV_STACK_MOVE_SHIFT) \
    template(java_lang_invoke_AdapterMethodHandle,CONV_STACK_MOVE_MASK) \
2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970
    /*end*/

#define ONE_PLUS(scope,value) 1+
static const int con_value_count = EACH_NAMED_CON(ONE_PLUS) 0;
#define VALUE_COMMA(scope,value) scope::value,
static const int con_values[con_value_count+1] = { EACH_NAMED_CON(VALUE_COMMA) 0 };
#define STRING_NULL(scope,value) #value "\0"
static const char con_names[] = { EACH_NAMED_CON(STRING_NULL) };

#undef ONE_PLUS
#undef VALUE_COMMA
#undef STRING_NULL
#undef EACH_NAMED_CON
#endif

2971
JVM_ENTRY(jint, MHN_getNamedCon(JNIEnv *env, jobject igcls, jint which, jobjectArray box_jh)) {
2972 2973 2974
#ifndef PRODUCT
  if (which >= 0 && which < con_value_count) {
    int con = con_values[which];
2975 2976
    objArrayHandle box(THREAD, (objArrayOop) JNIHandles::resolve(box_jh));
    if (box.not_null() && box->klass() == Universe::objectArrayKlassObj() && box->length() > 0) {
2977 2978 2979
      const char* str = &con_names[0];
      for (int i = 0; i < which; i++)
        str += strlen(str) + 1;   // skip name and null
2980
      oop name = java_lang_String::create_oop_from_str(str, CHECK_0);  // possible safepoint
2981 2982 2983 2984 2985 2986 2987 2988 2989 2990
      box->obj_at_put(0, name);
    }
    return con;
  }
#endif
  return 0;
}
JVM_END

// void init(MemberName self, AccessibleObject ref)
2991
JVM_ENTRY(void, MHN_init_Mem(JNIEnv *env, jobject igcls, jobject mname_jh, jobject target_jh)) {
2992 2993
  if (mname_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "mname is null"); }
  if (target_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "target is null"); }
2994 2995 2996 2997 2998 2999 3000
  Handle mname(THREAD, JNIHandles::resolve_non_null(mname_jh));
  oop target_oop = JNIHandles::resolve_non_null(target_jh);
  MethodHandles::init_MemberName(mname(), target_oop);
}
JVM_END

// void expand(MemberName self)
3001
JVM_ENTRY(void, MHN_expand_Mem(JNIEnv *env, jobject igcls, jobject mname_jh)) {
3002
  if (mname_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "mname is null"); }
3003 3004 3005 3006 3007 3008
  Handle mname(THREAD, JNIHandles::resolve_non_null(mname_jh));
  MethodHandles::expand_MemberName(mname, 0, CHECK);
}
JVM_END

// void resolve(MemberName self, Class<?> caller)
3009
JVM_ENTRY(void, MHN_resolve_Mem(JNIEnv *env, jobject igcls, jobject mname_jh, jclass caller_jh)) {
3010
  if (mname_jh == NULL) { THROW_MSG(vmSymbols::java_lang_InternalError(), "mname is null"); }
3011
  Handle mname(THREAD, JNIHandles::resolve_non_null(mname_jh));
3012 3013 3014 3015

  // The trusted Java code that calls this method should already have performed
  // access checks on behalf of the given caller.  But, we can verify this.
  if (VerifyMethodHandles && caller_jh != NULL) {
3016
    klassOop reference_klass = java_lang_Class::as_klassOop(java_lang_invoke_MemberName::clazz(mname()));
3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027
    if (reference_klass != NULL) {
      // Emulate LinkResolver::check_klass_accessability.
      klassOop caller = java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(caller_jh));
      if (!Reflection::verify_class_access(caller,
                                           reference_klass,
                                           true)) {
        THROW_MSG(vmSymbols::java_lang_InternalError(), Klass::cast(reference_klass)->external_name());
      }
    }
  }

3028 3029 3030 3031 3032 3033
  MethodHandles::resolve_MemberName(mname, CHECK);
}
JVM_END

//  static native int getMembers(Class<?> defc, String matchName, String matchSig,
//          int matchFlags, Class<?> caller, int skip, MemberName[] results);
3034
JVM_ENTRY(jint, MHN_getMembers(JNIEnv *env, jobject igcls,
3035 3036 3037
                               jclass clazz_jh, jstring name_jh, jstring sig_jh,
                               int mflags, jclass caller_jh, jint skip, jobjectArray results_jh)) {
  if (clazz_jh == NULL || results_jh == NULL)  return -1;
3038
  KlassHandle k(THREAD, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz_jh)));
3039

3040 3041
  objArrayHandle results(THREAD, (objArrayOop) JNIHandles::resolve(results_jh));
  if (results.is_null() || !results->is_objArray())  return -1;
3042

3043 3044
  TempNewSymbol name = NULL;
  TempNewSymbol sig = NULL;
3045 3046 3047 3048 3049 3050 3051 3052 3053
  if (name_jh != NULL) {
    name = java_lang_String::as_symbol_or_null(JNIHandles::resolve_non_null(name_jh));
    if (name == NULL)  return 0; // a match is not possible
  }
  if (sig_jh != NULL) {
    sig = java_lang_String::as_symbol_or_null(JNIHandles::resolve_non_null(sig_jh));
    if (sig == NULL)  return 0; // a match is not possible
  }

3054
  KlassHandle caller;
3055 3056 3057
  if (caller_jh != NULL) {
    oop caller_oop = JNIHandles::resolve_non_null(caller_jh);
    if (!java_lang_Class::is_instance(caller_oop))  return -1;
3058
    caller = KlassHandle(THREAD, java_lang_Class::as_klassOop(caller_oop));
3059 3060
  }

3061
  if (name != NULL && sig != NULL && results.not_null()) {
3062 3063 3064 3065
    // try a direct resolve
    // %%% TO DO
  }

3066 3067
  int res = MethodHandles::find_MemberNames(k(), name, sig, mflags,
                                            caller(), skip, results());
3068 3069 3070 3071 3072
  // TO DO: expand at least some of the MemberNames, to avoid massive callbacks
  return res;
}
JVM_END

3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111
methodOop MethodHandles::resolve_raise_exception_method(TRAPS) {
  if (_raise_exception_method != NULL) {
    // no need to do it twice
    return raise_exception_method();
  }
  // LinkResolver::resolve_invokedynamic can reach this point
  // because an invokedynamic has failed very early (7049415)
  KlassHandle MHN_klass = SystemDictionaryHandles::MethodHandleNatives_klass();
  if (MHN_klass.not_null()) {
    TempNewSymbol raiseException_name = SymbolTable::new_symbol("raiseException", CHECK_NULL);
    TempNewSymbol raiseException_sig = SymbolTable::new_symbol("(ILjava/lang/Object;Ljava/lang/Object;)V", CHECK_NULL);
    methodOop raiseException_method  = instanceKlass::cast(MHN_klass->as_klassOop())
                  ->find_method(raiseException_name, raiseException_sig);
    if (raiseException_method != NULL && raiseException_method->is_static()) {
      return raiseException_method;
    }
  }
  // not found; let the caller deal with it
  return NULL;
}
void MethodHandles::raise_exception(int code, oop actual, oop required, TRAPS) {
  methodOop raiseException_method = resolve_raise_exception_method(CHECK);
  if (raiseException_method != NULL &&
      instanceKlass::cast(raiseException_method->method_holder())->is_not_initialized()) {
    instanceKlass::cast(raiseException_method->method_holder())->initialize(CHECK);
    // it had better be resolved by now, or maybe JSR 292 failed to load
    raiseException_method = raise_exception_method();
  }
  if (raiseException_method == NULL) {
    THROW_MSG(vmSymbols::java_lang_InternalError(), "no raiseException method");
  }
  JavaCallArguments args;
  args.push_int(code);
  args.push_oop(actual);
  args.push_oop(required);
  JavaValue result(T_VOID);
  JavaCalls::call(&result, raiseException_method, &args, CHECK);
}

3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125
JVM_ENTRY(jobject, MH_invoke_UOE(JNIEnv *env, jobject igmh, jobjectArray igargs)) {
    TempNewSymbol UOE_name = SymbolTable::new_symbol("java/lang/UnsupportedOperationException", CHECK_NULL);
    THROW_MSG_NULL(UOE_name, "MethodHandle.invoke cannot be invoked reflectively");
    return NULL;
}
JVM_END

JVM_ENTRY(jobject, MH_invokeExact_UOE(JNIEnv *env, jobject igmh, jobjectArray igargs)) {
    TempNewSymbol UOE_name = SymbolTable::new_symbol("java/lang/UnsupportedOperationException", CHECK_NULL);
    THROW_MSG_NULL(UOE_name, "MethodHandle.invokeExact cannot be invoked reflectively");
    return NULL;
}
JVM_END

3126

3127 3128 3129
/// JVM_RegisterMethodHandleMethods

#define LANG "Ljava/lang/"
3130
#define JLINV "Ljava/lang/invoke/"
3131 3132 3133 3134

#define OBJ   LANG"Object;"
#define CLS   LANG"Class;"
#define STRG  LANG"String;"
3135 3136 3137 3138 3139 3140
#define MT    JLINV"MethodType;"
#define MH    JLINV"MethodHandle;"
#define MEM   JLINV"MemberName;"
#define AMH   JLINV"AdapterMethodHandle;"
#define BMH   JLINV"BoundMethodHandle;"
#define DMH   JLINV"DirectMethodHandle;"
3141 3142 3143 3144

#define CC (char*)  /*cast a literal from (const char*)*/
#define FN_PTR(f) CAST_FROM_FN_PTR(void*, &f)

3145
// These are the native methods on sun.invoke.MethodHandleNatives.
3146 3147
static JNINativeMethod methods[] = {
  // void init(MemberName self, AccessibleObject ref)
3148 3149 3150 3151 3152 3153 3154 3155 3156
  {CC"init",                    CC"("AMH""MH"I)V",              FN_PTR(MHN_init_AMH)},
  {CC"init",                    CC"("BMH""OBJ"I)V",             FN_PTR(MHN_init_BMH)},
  {CC"init",                    CC"("DMH""OBJ"Z"CLS")V",        FN_PTR(MHN_init_DMH)},
  {CC"init",                    CC"("MT")V",                    FN_PTR(MHN_init_MT)},
  {CC"init",                    CC"("MEM""OBJ")V",              FN_PTR(MHN_init_Mem)},
  {CC"expand",                  CC"("MEM")V",                   FN_PTR(MHN_expand_Mem)},
  {CC"resolve",                 CC"("MEM""CLS")V",              FN_PTR(MHN_resolve_Mem)},
  {CC"getTarget",               CC"("MH"I)"OBJ,                 FN_PTR(MHN_getTarget)},
  {CC"getConstant",             CC"(I)I",                       FN_PTR(MHN_getConstant)},
3157
  //  static native int getNamedCon(int which, Object[] name)
3158
  {CC"getNamedCon",             CC"(I["OBJ")I",                 FN_PTR(MHN_getNamedCon)},
3159 3160
  //  static native int getMembers(Class<?> defc, String matchName, String matchSig,
  //          int matchFlags, Class<?> caller, int skip, MemberName[] results);
3161
  {CC"getMembers",              CC"("CLS""STRG""STRG"I"CLS"I["MEM")I",  FN_PTR(MHN_getMembers)}
3162 3163
};

3164 3165 3166 3167 3168 3169
static JNINativeMethod invoke_methods[] = {
  // void init(MemberName self, AccessibleObject ref)
  {CC"invoke",                  CC"(["OBJ")"OBJ,                FN_PTR(MH_invoke_UOE)},
  {CC"invokeExact",             CC"(["OBJ")"OBJ,                FN_PTR(MH_invokeExact_UOE)}
};

3170 3171 3172 3173 3174
// This one function is exported, used by NativeLookup.

JVM_ENTRY(void, JVM_RegisterMethodHandleMethods(JNIEnv *env, jclass MHN_class)) {
  assert(MethodHandles::spot_check_entry_names(), "entry enum is OK");

3175 3176
  if (!EnableInvokeDynamic) {
    warning("JSR 292 is disabled in this JVM.  Use -XX:+UnlockDiagnosticVMOptions -XX:+EnableInvokeDynamic to enable.");
3177 3178 3179
    return;  // bind nothing
  }

3180 3181
  bool enable_MH = true;

3182
  {
3183 3184 3185
    ThreadToNativeFromVM ttnfv(thread);

    int status = env->RegisterNatives(MHN_class, methods, sizeof(methods)/sizeof(JNINativeMethod));
3186 3187 3188 3189 3190 3191
    if (!env->ExceptionOccurred()) {
      const char* L_MH_name = (JLINV "MethodHandle");
      const char* MH_name = L_MH_name+1;
      jclass MH_class = env->FindClass(MH_name);
      status = env->RegisterNatives(MH_class, invoke_methods, sizeof(invoke_methods)/sizeof(JNINativeMethod));
    }
3192
    if (env->ExceptionOccurred()) {
3193 3194 3195
      MethodHandles::set_enabled(false);
      warning("JSR 292 method handle code is mismatched to this JVM.  Disabling support.");
      enable_MH = false;
3196 3197 3198
      env->ExceptionClear();
    }
  }
3199

3200
  if (enable_MH) {
3201 3202 3203
    methodOop raiseException_method = MethodHandles::resolve_raise_exception_method(CHECK);
    if (raiseException_method != NULL) {
      MethodHandles::set_raise_exception_method(raiseException_method);
3204
    } else {
3205
      warning("JSR 292 method handle code is mismatched to this JVM.  Disabling support.");
3206
      enable_MH = false;
3207 3208 3209 3210
    }
  }

  if (enable_MH) {
3211
    MethodHandles::generate_adapters();
3212 3213
    MethodHandles::set_enabled(true);
  }
3214 3215
}
JVM_END