linkResolver.cpp 78.8 KB
Newer Older
D
duke 已提交
1
/*
L
lfoltan 已提交
2
 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
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.
D
duke 已提交
22 23 24
 *
 */

25
#include "precompiled.hpp"
26
#include "classfile/defaultMethods.hpp"
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
#include "classfile/systemDictionary.hpp"
#include "classfile/vmSymbols.hpp"
#include "compiler/compileBroker.hpp"
#include "gc_interface/collectedHeap.inline.hpp"
#include "interpreter/bytecode.hpp"
#include "interpreter/interpreterRuntime.hpp"
#include "interpreter/linkResolver.hpp"
#include "memory/resourceArea.hpp"
#include "memory/universe.inline.hpp"
#include "oops/instanceKlass.hpp"
#include "oops/objArrayOop.hpp"
#include "prims/methodHandles.hpp"
#include "prims/nativeLookup.hpp"
#include "runtime/compilationPolicy.hpp"
#include "runtime/fieldDescriptor.hpp"
#include "runtime/frame.inline.hpp"
#include "runtime/handles.inline.hpp"
#include "runtime/reflection.hpp"
#include "runtime/signature.hpp"
46
#include "runtime/thread.inline.hpp"
47
#include "runtime/vmThread.hpp"
D
duke 已提交
48 49 50 51 52 53 54


//------------------------------------------------------------------------------------------------------------------------
// Implementation of CallInfo


void CallInfo::set_static(KlassHandle resolved_klass, methodHandle resolved_method, TRAPS) {
55
  int vtable_index = Method::nonvirtual_vtable_index;
56
  set_common(resolved_klass, resolved_klass, resolved_method, resolved_method, CallInfo::direct_call, vtable_index, CHECK);
D
duke 已提交
57 58 59
}


60
void CallInfo::set_interface(KlassHandle resolved_klass, KlassHandle selected_klass, methodHandle resolved_method, methodHandle selected_method, int itable_index, TRAPS) {
D
duke 已提交
61 62 63
  // This is only called for interface methods. If the resolved_method
  // comes from java/lang/Object, it can be the subject of a virtual call, so
  // we should pick the vtable index from the resolved method.
64 65 66 67
  // In that case, the caller must call set_virtual instead of set_interface.
  assert(resolved_method->method_holder()->is_interface(), "");
  assert(itable_index == resolved_method()->itable_index(), "");
  set_common(resolved_klass, selected_klass, resolved_method, selected_method, CallInfo::itable_call, itable_index, CHECK);
D
duke 已提交
68 69 70
}

void CallInfo::set_virtual(KlassHandle resolved_klass, KlassHandle selected_klass, methodHandle resolved_method, methodHandle selected_method, int vtable_index, TRAPS) {
71
  assert(vtable_index >= 0 || vtable_index == Method::nonvirtual_vtable_index, "valid index");
72 73 74
  assert(vtable_index < 0 || !resolved_method->has_vtable_index() || vtable_index == resolved_method->vtable_index(), "");
  CallKind kind = (vtable_index >= 0 && !resolved_method->can_be_statically_bound() ? CallInfo::vtable_call : CallInfo::direct_call);
  set_common(resolved_klass, selected_klass, resolved_method, selected_method, kind, vtable_index, CHECK);
75
  assert(!resolved_method->is_compiled_lambda_form(), "these must be handled via an invokehandle call");
D
duke 已提交
76 77
}

78
void CallInfo::set_handle(methodHandle resolved_method, Handle resolved_appendix, Handle resolved_method_type, TRAPS) {
79 80 81
  if (resolved_method.is_null()) {
    THROW_MSG(vmSymbols::java_lang_InternalError(), "resolved method is null");
  }
82
  KlassHandle resolved_klass = SystemDictionary::MethodHandle_klass();
83 84 85
  assert(resolved_method->intrinsic_id() == vmIntrinsics::_invokeBasic ||
         resolved_method->is_compiled_lambda_form(),
         "linkMethod must return one of these");
86
  int vtable_index = Method::nonvirtual_vtable_index;
87 88
  assert(!resolved_method->has_vtable_index(), "");
  set_common(resolved_klass, resolved_klass, resolved_method, resolved_method, CallInfo::direct_call, vtable_index, CHECK);
89 90
  _resolved_appendix    = resolved_appendix;
  _resolved_method_type = resolved_method_type;
91 92
}

93 94 95 96 97 98 99
void CallInfo::set_common(KlassHandle resolved_klass,
                          KlassHandle selected_klass,
                          methodHandle resolved_method,
                          methodHandle selected_method,
                          CallKind kind,
                          int index,
                          TRAPS) {
D
duke 已提交
100 101 102 103 104
  assert(resolved_method->signature() == selected_method->signature(), "signatures must correspond");
  _resolved_klass  = resolved_klass;
  _selected_klass  = selected_klass;
  _resolved_method = resolved_method;
  _selected_method = selected_method;
105 106
  _call_kind       = kind;
  _call_index      = index;
107
  _resolved_appendix = Handle();
108 109
  DEBUG_ONLY(verify());  // verify before making side effects

I
iveresov 已提交
110
  if (CompilationPolicy::must_be_compiled(selected_method)) {
111 112
    // This path is unusual, mostly used by the '-Xcomp' stress test mode.

I
iveresov 已提交
113 114 115
    // Note: with several active threads, the must_be_compiled may be true
    //       while can_be_compiled is false; remove assert
    // assert(CompilationPolicy::can_be_compiled(selected_method), "cannot compile");
D
duke 已提交
116 117 118 119
    if (THREAD->is_Compiler_thread()) {
      // don't force compilation, resolve was on behalf of compiler
      return;
    }
120
    if (selected_method->method_holder()->is_not_initialized()) {
121 122 123 124 125 126 127 128 129
      // 'is_not_initialized' means not only '!is_initialized', but also that
      // initialization has not been started yet ('!being_initialized')
      // Do not force compilation of methods in uninitialized classes.
      // Note that doing this would throw an assert later,
      // in CompileBroker::compile_method.
      // We sometimes use the link resolver to do reflective lookups
      // even before classes are initialized.
      return;
    }
D
duke 已提交
130
    CompileBroker::compile_method(selected_method, InvocationEntryBci,
131
                                  CompilationPolicy::policy()->initial_compile_level(),
I
iveresov 已提交
132
                                  methodHandle(), 0, "must_be_compiled", CHECK);
D
duke 已提交
133 134 135
  }
}

136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
// utility query for unreflecting a method
CallInfo::CallInfo(Method* resolved_method, Klass* resolved_klass) {
  Klass* resolved_method_holder = resolved_method->method_holder();
  if (resolved_klass == NULL) { // 2nd argument defaults to holder of 1st
    resolved_klass = resolved_method_holder;
  }
  _resolved_klass  = resolved_klass;
  _selected_klass  = resolved_klass;
  _resolved_method = resolved_method;
  _selected_method = resolved_method;
  // classify:
  CallKind kind = CallInfo::unknown_kind;
  int index = resolved_method->vtable_index();
  if (resolved_method->can_be_statically_bound()) {
    kind = CallInfo::direct_call;
  } else if (!resolved_method_holder->is_interface()) {
    // Could be an Object method inherited into an interface, but still a vtable call.
    kind = CallInfo::vtable_call;
  } else if (!resolved_klass->is_interface()) {
155
    // A default or miranda method.  Compute the vtable index.
156 157
    ResourceMark rm;
    klassVtable* vt = InstanceKlass::cast(resolved_klass)->vtable();
158 159 160 161
    index = LinkResolver::vtable_index_of_interface_method(resolved_klass,
                           resolved_method);
    assert(index >= 0 , "we should have valid vtable index at this point");

162
    kind = CallInfo::vtable_call;
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
  } else if (resolved_method->has_vtable_index()) {
    // Can occur if an interface redeclares a method of Object.

#ifdef ASSERT
    // Ensure that this is really the case.
    KlassHandle object_klass = SystemDictionary::Object_klass();
    Method * object_resolved_method = object_klass()->vtable()->method_at(index);
    assert(object_resolved_method->name() == resolved_method->name(),
      err_msg("Object and interface method names should match at vtable index %d, %s != %s",
      index, object_resolved_method->name()->as_C_string(), resolved_method->name()->as_C_string()));
    assert(object_resolved_method->signature() == resolved_method->signature(),
      err_msg("Object and interface method signatures should match at vtable index %d, %s != %s",
      index, object_resolved_method->signature()->as_C_string(), resolved_method->signature()->as_C_string()));
#endif // ASSERT

    kind = CallInfo::vtable_call;
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  } else {
    // A regular interface call.
    kind = CallInfo::itable_call;
    index = resolved_method->itable_index();
  }
  assert(index == Method::nonvirtual_vtable_index || index >= 0, err_msg("bad index %d", index));
  _call_kind  = kind;
  _call_index = index;
  _resolved_appendix = Handle();
  DEBUG_ONLY(verify());
}

#ifdef ASSERT
void CallInfo::verify() {
  switch (call_kind()) {  // the meaning and allowed value of index depends on kind
  case CallInfo::direct_call:
    if (_call_index == Method::nonvirtual_vtable_index)  break;
    // else fall through to check vtable index:
  case CallInfo::vtable_call:
    assert(resolved_klass()->verify_vtable_index(_call_index), "");
    break;
  case CallInfo::itable_call:
    assert(resolved_method()->method_holder()->verify_itable_index(_call_index), "");
    break;
  case CallInfo::unknown_kind:
    assert(call_kind() != CallInfo::unknown_kind, "CallInfo must be set");
    break;
  default:
    fatal(err_msg_res("Unexpected call kind %d", call_kind()));
  }
}
#endif //ASSERT


D
duke 已提交
213 214 215 216 217

//------------------------------------------------------------------------------------------------------------------------
// Klass resolution

void LinkResolver::check_klass_accessability(KlassHandle ref_klass, KlassHandle sel_klass, TRAPS) {
218 219
  if (!Reflection::verify_class_access(ref_klass(),
                                       sel_klass(),
D
duke 已提交
220 221 222 223
                                       true)) {
    ResourceMark rm(THREAD);
    Exceptions::fthrow(
      THREAD_AND_LOCATION,
224
      vmSymbols::java_lang_IllegalAccessError(),
D
duke 已提交
225 226 227 228 229 230 231 232 233
      "tried to access class %s from class %s",
      sel_klass->external_name(),
      ref_klass->external_name()
    );
    return;
  }
}

void LinkResolver::resolve_klass(KlassHandle& result, constantPoolHandle pool, int index, TRAPS) {
234
  Klass* result_oop = pool->klass_ref_at(index, CHECK);
D
duke 已提交
235 236 237 238 239 240 241 242
  result = KlassHandle(THREAD, result_oop);
}

//------------------------------------------------------------------------------------------------------------------------
// Method resolution
//
// According to JVM spec. $5.4.3c & $5.4.3d

243 244
// Look up method in klasses, including static methods
// Then look up local default methods
245
void LinkResolver::lookup_method_in_klasses(methodHandle& result, KlassHandle klass, Symbol* name, Symbol* signature, bool checkpolymorphism, bool in_imethod_resolve, TRAPS) {
246 247
  // Ignore overpasses so statics can be found during resolution
  Method* result_oop = klass->uncached_lookup_method(name, signature, Klass::skip_overpass);
248

L
lfoltan 已提交
249 250 251 252 253 254
  if (klass->oop_is_array()) {
    // Only consider klass and super klass for arrays
    result = methodHandle(THREAD, result_oop);
    return;
  }

255 256 257 258 259 260 261 262 263 264 265
  // JDK 8, JVMS 5.4.3.4: Interface method resolution should
  // ignore static and non-public methods of java.lang.Object,
  // like clone, finalize, registerNatives.
  if (in_imethod_resolve &&
      result_oop != NULL &&
      klass->is_interface() &&
      (result_oop->is_static() || !result_oop->is_public()) &&
      result_oop->method_holder() == SystemDictionary::Object_klass()) {
    result_oop = NULL;
  }

266 267 268 269 270 271
  // Before considering default methods, check for an overpass in the
  // current class if a method has not been found.
  if (result_oop == NULL) {
    result_oop = InstanceKlass::cast(klass())->find_method(name, signature);
  }

272 273 274 275 276 277 278
  if (result_oop == NULL) {
    Array<Method*>* default_methods = InstanceKlass::cast(klass())->default_methods();
    if (default_methods != NULL) {
      result_oop = InstanceKlass::find_method(default_methods, name, signature);
    }
  }

A
acorn 已提交
279
  if (checkpolymorphism && EnableInvokeDynamic && result_oop != NULL) {
280 281 282
    vmIntrinsics::ID iid = result_oop->intrinsic_id();
    if (MethodHandles::is_signature_polymorphic(iid)) {
      // Do not link directly to these.  The VM must produce a synthetic one using lookup_polymorphic_method.
283 284 285
      return;
    }
  }
D
duke 已提交
286 287 288 289
  result = methodHandle(THREAD, result_oop);
}

// returns first instance method
290
// Looks up method in classes, then looks up local default methods
291
void LinkResolver::lookup_instance_method_in_klasses(methodHandle& result, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS) {
292
  Method* result_oop = klass->uncached_lookup_method(name, signature, Klass::normal);
D
duke 已提交
293
  result = methodHandle(THREAD, result_oop);
294
  while (!result.is_null() && result->is_static() && result->method_holder()->super() != NULL) {
295
    KlassHandle super_klass = KlassHandle(THREAD, result->method_holder()->super());
296
    result = methodHandle(THREAD, super_klass->uncached_lookup_method(name, signature, Klass::normal));
D
duke 已提交
297
  }
298

L
lfoltan 已提交
299 300 301 302 303
  if (klass->oop_is_array()) {
    // Only consider klass and super klass for arrays
    return;
  }

304 305 306 307 308 309 310
  if (result.is_null()) {
    Array<Method*>* default_methods = InstanceKlass::cast(klass())->default_methods();
    if (default_methods != NULL) {
      result = methodHandle(InstanceKlass::find_method(default_methods, name, signature));
      assert(result.is_null() || !result->is_static(), "static defaults not allowed");
    }
  }
D
duke 已提交
311 312
}

313
int LinkResolver::vtable_index_of_interface_method(KlassHandle klass,
314
                                          methodHandle resolved_method) {
D
duke 已提交
315

316 317 318 319 320
  int vtable_index = Method::invalid_vtable_index;
  Symbol* name = resolved_method->name();
  Symbol* signature = resolved_method->signature();

  // First check in default method array
321
  if (!resolved_method->is_abstract() &&
322
    (InstanceKlass::cast(klass())->default_methods() != NULL)) {
323
    int index = InstanceKlass::find_method_index(InstanceKlass::cast(klass())->default_methods(), name, signature, false, false);
324 325 326 327 328 329
    if (index >= 0 ) {
      vtable_index = InstanceKlass::cast(klass())->default_vtable_indices()->at(index);
    }
  }
  if (vtable_index == Method::invalid_vtable_index) {
    // get vtable_index for miranda methods
330
    ResourceMark rm;
331 332 333 334
    klassVtable *vt = InstanceKlass::cast(klass())->vtable();
    vtable_index = vt->index_of_miranda(name, signature);
  }
  return vtable_index;
D
duke 已提交
335 336
}

337
void LinkResolver::lookup_method_in_interfaces(methodHandle& result, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS) {
338
  InstanceKlass *ik = InstanceKlass::cast(klass());
339 340 341 342

  // Specify 'true' in order to skip default methods when searching the
  // interfaces.  Function lookup_method_in_klasses() already looked for
  // the method in the default methods table.
343
  result = methodHandle(THREAD, ik->lookup_method_in_all_interfaces(name, signature, Klass::skip_defaults));
D
duke 已提交
344 345
}

346 347 348
void LinkResolver::lookup_polymorphic_method(methodHandle& result,
                                             KlassHandle klass, Symbol* name, Symbol* full_signature,
                                             KlassHandle current_klass,
349 350
                                             Handle *appendix_result_or_null,
                                             Handle *method_type_result,
351 352 353
                                             TRAPS) {
  vmIntrinsics::ID iid = MethodHandles::signature_polymorphic_name_id(name);
  if (TraceMethodHandles) {
354
    ResourceMark rm(THREAD);
355 356 357 358
    tty->print_cr("lookup_polymorphic_method iid=%s %s.%s%s",
                  vmIntrinsics::name_at(iid), klass->external_name(),
                  name->as_C_string(), full_signature->as_C_string());
  }
359
  if (EnableInvokeDynamic &&
360
      klass() == SystemDictionary::MethodHandle_klass() &&
361 362 363 364 365 366 367 368
      iid != vmIntrinsics::_none) {
    if (MethodHandles::is_signature_polymorphic_intrinsic(iid)) {
      // Most of these do not need an up-call to Java to resolve, so can be done anywhere.
      // Do not erase last argument type (MemberName) if it is a static linkTo method.
      bool keep_last_arg = MethodHandles::is_signature_polymorphic_static(iid);
      TempNewSymbol basic_signature =
        MethodHandles::lookup_basic_type_signature(full_signature, keep_last_arg, CHECK);
      if (TraceMethodHandles) {
369
        ResourceMark rm(THREAD);
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
        tty->print_cr("lookup_polymorphic_method %s %s => basic %s",
                      name->as_C_string(),
                      full_signature->as_C_string(),
                      basic_signature->as_C_string());
      }
      result = SystemDictionary::find_method_handle_intrinsic(iid,
                                                              basic_signature,
                                                              CHECK);
      if (result.not_null()) {
        assert(result->is_method_handle_intrinsic(), "MH.invokeBasic or MH.linkTo* intrinsic");
        assert(result->intrinsic_id() != vmIntrinsics::_invokeGeneric, "wrong place to find this");
        assert(basic_signature == result->signature(), "predict the result signature");
        if (TraceMethodHandles) {
          tty->print("lookup_polymorphic_method => intrinsic ");
          result->print_on(tty);
        }
        return;
      }
    } else if (iid == vmIntrinsics::_invokeGeneric
               && !THREAD->is_Compiler_thread()
               && appendix_result_or_null != NULL) {
      // This is a method with type-checking semantics.
      // We will ask Java code to spin an adapter method for it.
      if (!MethodHandles::enabled()) {
        // Make sure the Java part of the runtime has been booted up.
395 396
        Klass* natives = SystemDictionary::MethodHandleNatives_klass();
        if (natives == NULL || InstanceKlass::cast(natives)->is_not_initialized()) {
397 398 399 400 401 402 403 404 405
          SystemDictionary::resolve_or_fail(vmSymbols::java_lang_invoke_MethodHandleNatives(),
                                            Handle(),
                                            Handle(),
                                            true,
                                            CHECK);
        }
      }

      Handle appendix;
406
      Handle method_type;
407 408 409 410
      result = SystemDictionary::find_method_handle_invoker(name,
                                                            full_signature,
                                                            current_klass,
                                                            &appendix,
411
                                                            &method_type,
412 413 414 415 416 417 418 419 420 421
                                                            CHECK);
      if (TraceMethodHandles) {
        tty->print("lookup_polymorphic_method => (via Java) ");
        result->print_on(tty);
        tty->print("  lookup_polymorphic_method => appendix = ");
        if (appendix.is_null())  tty->print_cr("(none)");
        else                     appendix->print_on(tty);
      }
      if (result.not_null()) {
#ifdef ASSERT
422 423
        ResourceMark rm(THREAD);

424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
        TempNewSymbol basic_signature =
          MethodHandles::lookup_basic_type_signature(full_signature, CHECK);
        int actual_size_of_params = result->size_of_parameters();
        int expected_size_of_params = ArgumentSizeComputer(basic_signature).size();
        // +1 for MethodHandle.this, +1 for trailing MethodType
        if (!MethodHandles::is_signature_polymorphic_static(iid))  expected_size_of_params += 1;
        if (appendix.not_null())                                   expected_size_of_params += 1;
        if (actual_size_of_params != expected_size_of_params) {
          tty->print_cr("*** basic_signature=%s", basic_signature->as_C_string());
          tty->print_cr("*** result for %s: ", vmIntrinsics::name_at(iid));
          result->print();
        }
        assert(actual_size_of_params == expected_size_of_params,
               err_msg("%d != %d", actual_size_of_params, expected_size_of_params));
#endif //ASSERT

        assert(appendix_result_or_null != NULL, "");
        (*appendix_result_or_null) = appendix;
442
        (*method_type_result)      = method_type;
443
        return;
444
      }
445 446 447 448
    }
  }
}

D
duke 已提交
449 450 451 452 453 454 455 456
void LinkResolver::check_method_accessability(KlassHandle ref_klass,
                                              KlassHandle resolved_klass,
                                              KlassHandle sel_klass,
                                              methodHandle sel_method,
                                              TRAPS) {

  AccessFlags flags = sel_method->access_flags();

457
  // Special case:  arrays always override "clone". JVMS 2.15.
D
duke 已提交
458 459 460 461
  // If the resolved klass is an array class, and the declaring class
  // is java.lang.Object and the method is "clone", set the flags
  // to public.
  //
462 463 464 465 466
  // We'll check for the method name first, as that's most likely
  // to be false (so we'll short-circuit out of these tests).
  if (sel_method->name() == vmSymbols::clone_name() &&
      sel_klass() == SystemDictionary::Object_klass() &&
      resolved_klass->oop_is_array()) {
D
duke 已提交
467
    // We need to change "protected" to "public".
468
    assert(flags.is_protected(), "clone not protected?");
D
duke 已提交
469 470 471 472 473
    jint new_flags = flags.as_int();
    new_flags = new_flags & (~JVM_ACC_PROTECTED);
    new_flags = new_flags | JVM_ACC_PUBLIC;
    flags.set_flags(new_flags);
  }
474
//  assert(extra_arg_result_or_null != NULL, "must be able to return extra argument");
D
duke 已提交
475

476 477 478
  if (!Reflection::verify_field_access(ref_klass(),
                                       resolved_klass(),
                                       sel_klass(),
D
duke 已提交
479 480 481 482 483
                                       flags,
                                       true)) {
    ResourceMark rm(THREAD);
    Exceptions::fthrow(
      THREAD_AND_LOCATION,
484
      vmSymbols::java_lang_IllegalAccessError(),
D
duke 已提交
485 486 487 488 489 490 491 492 493 494
      "tried to access method %s.%s%s from class %s",
      sel_klass->external_name(),
      sel_method->name()->as_C_string(),
      sel_method->signature()->as_C_string(),
      ref_klass->external_name()
    );
    return;
  }
}

495 496
void LinkResolver::resolve_method_statically(methodHandle& resolved_method, KlassHandle& resolved_klass,
                                             Bytecodes::Code code, constantPoolHandle pool, int index, TRAPS) {
497 498 499 500 501 502
  // This method is used only
  // (1) in C2 from InlineTree::ok_to_inline (via ciMethod::check_call),
  // and
  // (2) in Bytecode_invoke::static_target
  // It appears to fail when applied to an invokeinterface call site.
  // FIXME: Remove this method and ciMethod::check_call; refactor to use the other LinkResolver entry points.
D
duke 已提交
503
  // resolve klass
504
  if (code == Bytecodes::_invokedynamic) {
505
    resolved_klass = SystemDictionary::MethodHandle_klass();
506 507 508
    Symbol* method_name = vmSymbols::invoke_name();
    Symbol* method_signature = pool->signature_ref_at(index);
    KlassHandle  current_klass(THREAD, pool->pool_holder());
509
    resolve_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, true, false, CHECK);
510 511 512
    return;
  }

D
duke 已提交
513 514
  resolve_klass(resolved_klass, pool, index, CHECK);

515 516
  Symbol*  method_name       = pool->name_ref_at(index);
  Symbol*  method_signature  = pool->signature_ref_at(index);
D
duke 已提交
517 518
  KlassHandle  current_klass(THREAD, pool->pool_holder());

519 520
  if (pool->has_preresolution()
      || (resolved_klass() == SystemDictionary::MethodHandle_klass() &&
521
          MethodHandles::is_signature_polymorphic_name(resolved_klass(), method_name))) {
522
    Method* result_oop = ConstantPool::method_at_if_loaded(pool, index);
523 524 525 526 527 528
    if (result_oop != NULL) {
      resolved_method = methodHandle(THREAD, result_oop);
      return;
    }
  }

529
  if (code == Bytecodes::_invokeinterface) {
A
acorn 已提交
530
    resolve_interface_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, true, true, CHECK);
531 532
  } else if (code == Bytecodes::_invokevirtual) {
    resolve_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, true, true, CHECK);
A
acorn 已提交
533
  } else if (!resolved_klass->is_interface()) {
534
    resolve_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, true, false, CHECK);
A
acorn 已提交
535 536 537
  } else {
    bool nostatics = (code == Bytecodes::_invokestatic) ? false : true;
    resolve_interface_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, true, nostatics, CHECK);
538
  }
D
duke 已提交
539 540 541
}

void LinkResolver::resolve_method(methodHandle& resolved_method, KlassHandle resolved_klass,
542
                                  Symbol* method_name, Symbol* method_signature,
543 544
                                  KlassHandle current_klass, bool check_access,
                                  bool require_methodref, TRAPS) {
D
duke 已提交
545

546 547
  Handle nested_exception;

548 549 550 551 552 553 554 555 556 557
  // 1. check if methodref required, that resolved_klass is not interfacemethodref
  if (require_methodref && resolved_klass->is_interface()) {
    ResourceMark rm(THREAD);
    char buf[200];
    jio_snprintf(buf, sizeof(buf), "Found interface %s, but class was expected",
        resolved_klass()->external_name());
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }

  // 2. lookup method in resolved klass and its super klasses
558
  lookup_method_in_klasses(resolved_method, resolved_klass, method_name, method_signature, true, false, CHECK);
D
duke 已提交
559

L
lfoltan 已提交
560
  if (resolved_method.is_null() && !resolved_klass->oop_is_array()) { // not found in the class hierarchy
561
    // 3. lookup method in all the interfaces implemented by the resolved klass
D
duke 已提交
562 563
    lookup_method_in_interfaces(resolved_method, resolved_klass, method_name, method_signature, CHECK);

564
    if (resolved_method.is_null()) {
565 566
      // JSR 292:  see if this is an implicitly generated method MethodHandle.linkToVirtual(*...), etc
      lookup_polymorphic_method(resolved_method, resolved_klass, method_name, method_signature,
567
                                current_klass, (Handle*)NULL, (Handle*)NULL, THREAD);
568 569 570 571
      if (HAS_PENDING_EXCEPTION) {
        nested_exception = Handle(THREAD, PENDING_EXCEPTION);
        CLEAR_PENDING_EXCEPTION;
      }
572
    }
L
lfoltan 已提交
573
  }
574

L
lfoltan 已提交
575 576 577 578 579 580 581 582
  if (resolved_method.is_null()) {
    // 4. method lookup failed
    ResourceMark rm(THREAD);
    THROW_MSG_CAUSE(vmSymbols::java_lang_NoSuchMethodError(),
                    Method::name_and_sig_as_C_string(resolved_klass(),
                                                            method_name,
                                                            method_signature),
                    nested_exception);
D
duke 已提交
583 584
  }

585
  // 5. access checks, access checking may be turned off when calling from within the VM.
D
duke 已提交
586 587 588 589 590 591 592 593 594 595 596
  if (check_access) {
    assert(current_klass.not_null() , "current_klass should not be null");

    // check if method can be accessed by the referring class
    check_method_accessability(current_klass,
                               resolved_klass,
                               KlassHandle(THREAD, resolved_method->method_holder()),
                               resolved_method,
                               CHECK);

    // check loader constraints
597
    Handle loader (THREAD, InstanceKlass::cast(current_klass())->class_loader());
598
    Handle class_loader (THREAD, resolved_method->method_holder()->class_loader());
D
duke 已提交
599 600
    {
      ResourceMark rm(THREAD);
601
      Symbol* failed_type_symbol =
D
duke 已提交
602 603
        SystemDictionary::check_signature_loaders(method_signature, loader,
                                                  class_loader, true, CHECK);
604
      if (failed_type_symbol != NULL) {
D
duke 已提交
605 606
        const char* msg = "loader constraint violation: when resolving method"
          " \"%s\" the class loader (instance of %s) of the current class, %s,"
607
          " and the class loader (instance of %s) for the method's defining class, %s, have"
D
duke 已提交
608
          " different Class objects for the type %s used in the signature";
H
hseigel 已提交
609
        char* sig = Method::name_and_sig_as_C_string(resolved_klass(),method_name,method_signature);
D
duke 已提交
610
        const char* loader1 = SystemDictionary::loader_name(loader());
611
        char* current = InstanceKlass::cast(current_klass())->name()->as_C_string();
D
duke 已提交
612
        const char* loader2 = SystemDictionary::loader_name(class_loader());
613 614 615
        char* target = InstanceKlass::cast(resolved_method->method_holder())
                       ->name()->as_C_string();
        char* failed_type_name = failed_type_symbol->as_C_string();
D
duke 已提交
616
        size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
617 618
          strlen(current) + strlen(loader2) + strlen(target) +
          strlen(failed_type_name) + 1;
D
duke 已提交
619 620
        char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
        jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
621
                     target, failed_type_name);
D
duke 已提交
622 623 624 625 626 627 628 629
        THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
      }
    }
  }
}

void LinkResolver::resolve_interface_method(methodHandle& resolved_method,
                                            KlassHandle resolved_klass,
630 631
                                            Symbol* method_name,
                                            Symbol* method_signature,
D
duke 已提交
632
                                            KlassHandle current_klass,
A
acorn 已提交
633 634
                                            bool check_access,
                                            bool nostatics, TRAPS) {
D
duke 已提交
635

636
  // check if klass is interface
D
duke 已提交
637
  if (!resolved_klass->is_interface()) {
638
    ResourceMark rm(THREAD);
D
duke 已提交
639
    char buf[200];
H
hseigel 已提交
640
    jio_snprintf(buf, sizeof(buf), "Found class %s, but interface was expected", resolved_klass()->external_name());
D
duke 已提交
641 642 643 644
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }

  // lookup method in this interface or its super, java.lang.Object
A
acorn 已提交
645
  // JDK8: also look for static methods
646
  lookup_method_in_klasses(resolved_method, resolved_klass, method_name, method_signature, false, true, CHECK);
D
duke 已提交
647

L
lfoltan 已提交
648
  if (resolved_method.is_null() && !resolved_klass->oop_is_array()) {
D
duke 已提交
649 650
    // lookup method in all the super-interfaces
    lookup_method_in_interfaces(resolved_method, resolved_klass, method_name, method_signature, CHECK);
L
lfoltan 已提交
651 652 653 654 655 656 657 658 659
  }

  if (resolved_method.is_null()) {
    // no method found
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_NoSuchMethodError(),
              Method::name_and_sig_as_C_string(resolved_klass(),
                                                      method_name,
                                                      method_signature));
D
duke 已提交
660 661 662
  }

  if (check_access) {
663 664 665 666 667 668 669 670 671 672
    // JDK8 adds non-public interface methods, and accessability check requirement
    assert(current_klass.not_null() , "current_klass should not be null");

    // check if method can be accessed by the referring class
    check_method_accessability(current_klass,
                               resolved_klass,
                               KlassHandle(THREAD, resolved_method->method_holder()),
                               resolved_method,
                               CHECK);

D
duke 已提交
673
    HandleMark hm(THREAD);
674
    Handle loader (THREAD, InstanceKlass::cast(current_klass())->class_loader());
675
    Handle class_loader (THREAD, resolved_method->method_holder()->class_loader());
D
duke 已提交
676 677
    {
      ResourceMark rm(THREAD);
678
      Symbol* failed_type_symbol =
D
duke 已提交
679 680
        SystemDictionary::check_signature_loaders(method_signature, loader,
                                                  class_loader, true, CHECK);
681
      if (failed_type_symbol != NULL) {
D
duke 已提交
682 683 684
        const char* msg = "loader constraint violation: when resolving "
          "interface method \"%s\" the class loader (instance of %s) of the "
          "current class, %s, and the class loader (instance of %s) for "
685
          "the method's defining class, %s, have different Class objects for the type %s "
D
duke 已提交
686
          "used in the signature";
H
hseigel 已提交
687
        char* sig = Method::name_and_sig_as_C_string(resolved_klass(),method_name,method_signature);
D
duke 已提交
688
        const char* loader1 = SystemDictionary::loader_name(loader());
689
        char* current = InstanceKlass::cast(current_klass())->name()->as_C_string();
D
duke 已提交
690
        const char* loader2 = SystemDictionary::loader_name(class_loader());
691 692 693
        char* target = InstanceKlass::cast(resolved_method->method_holder())
                       ->name()->as_C_string();
        char* failed_type_name = failed_type_symbol->as_C_string();
D
duke 已提交
694
        size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
695 696
          strlen(current) + strlen(loader2) + strlen(target) +
          strlen(failed_type_name) + 1;
D
duke 已提交
697 698
        char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
        jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
699
                     target, failed_type_name);
D
duke 已提交
700 701 702 703
        THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
      }
    }
  }
704

705 706 707 708 709 710 711 712 713
  if (nostatics && resolved_method->is_static()) {
    ResourceMark rm(THREAD);
    char buf[200];
    jio_snprintf(buf, sizeof(buf), "Expected instance not static method %s",
                 Method::name_and_sig_as_C_string(resolved_klass(),
                 resolved_method->name(), resolved_method->signature()));
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }

714 715 716 717 718 719 720 721 722 723 724
  if (TraceItables && Verbose) {
    ResourceMark rm(THREAD);
    tty->print("invokeinterface resolved method: caller-class:%s, compile-time-class:%s, method:%s, method_holder:%s, access_flags: ",
                   (current_klass.is_null() ? "<NULL>" : current_klass->internal_name()),
                   (resolved_klass.is_null() ? "<NULL>" : resolved_klass->internal_name()),
                   Method::name_and_sig_as_C_string(resolved_klass(),
                                                    resolved_method->name(),
                                                    resolved_method->signature()),
                   resolved_method->method_holder()->internal_name()
                  );
    resolved_method->access_flags().print_on(tty);
725
    if (resolved_method->is_default_method()) {
726
      tty->print("default ");
727 728 729 730
    }
    if (resolved_method->is_overpass()) {
      tty->print("overpass");
    }
731 732
    tty->cr();
  }
D
duke 已提交
733 734 735 736 737 738 739 740 741 742
}

//------------------------------------------------------------------------------------------------------------------------
// Field resolution

void LinkResolver::check_field_accessability(KlassHandle ref_klass,
                                             KlassHandle resolved_klass,
                                             KlassHandle sel_klass,
                                             fieldDescriptor& fd,
                                             TRAPS) {
743 744 745
  if (!Reflection::verify_field_access(ref_klass(),
                                       resolved_klass(),
                                       sel_klass(),
D
duke 已提交
746 747 748 749 750
                                       fd.access_flags(),
                                       true)) {
    ResourceMark rm(THREAD);
    Exceptions::fthrow(
      THREAD_AND_LOCATION,
751
      vmSymbols::java_lang_IllegalAccessError(),
D
duke 已提交
752 753 754 755 756 757 758 759 760
      "tried to access field %s.%s from class %s",
      sel_klass->external_name(),
      fd.name()->as_C_string(),
      ref_klass->external_name()
    );
    return;
  }
}

761 762 763 764 765 766 767 768 769 770 771
void LinkResolver::resolve_field_access(fieldDescriptor& result, constantPoolHandle pool, int index, Bytecodes::Code byte, TRAPS) {
  // Load these early in case the resolve of the containing klass fails
  Symbol* field = pool->name_ref_at(index);
  Symbol* sig   = pool->signature_ref_at(index);

  // resolve specified klass
  KlassHandle resolved_klass;
  resolve_klass(resolved_klass, pool, index, CHECK);

  KlassHandle  current_klass(THREAD, pool->pool_holder());
  resolve_field(result, resolved_klass, field, sig, current_klass, byte, true, true, CHECK);
D
duke 已提交
772 773
}

774 775 776
void LinkResolver::resolve_field(fieldDescriptor& fd, KlassHandle resolved_klass, Symbol* field, Symbol* sig,
                                 KlassHandle current_klass, Bytecodes::Code byte, bool check_access, bool initialize_class,
                                 TRAPS) {
D
duke 已提交
777
  assert(byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic ||
778 779
         byte == Bytecodes::_getfield  || byte == Bytecodes::_putfield  ||
         (byte == Bytecodes::_nop && !check_access), "bad field access bytecode");
D
duke 已提交
780 781 782 783 784

  bool is_static = (byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic);
  bool is_put    = (byte == Bytecodes::_putfield  || byte == Bytecodes::_putstatic);

  // Check if there's a resolved klass containing the field
785
  if (resolved_klass.is_null()) {
D
duke 已提交
786 787 788 789 790
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_NoSuchFieldError(), field->as_C_string());
  }

  // Resolve instance field
L
lfoltan 已提交
791
  KlassHandle sel_klass(THREAD, resolved_klass->find_field(field, sig, &fd));
D
duke 已提交
792
  // check if field exists; i.e., if a klass containing the field def has been selected
793
  if (sel_klass.is_null()) {
D
duke 已提交
794 795 796 797
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_NoSuchFieldError(), field->as_C_string());
  }

798 799 800 801
  if (!check_access)
    // Access checking may be turned off when calling from within the VM.
    return;

D
duke 已提交
802
  // check access
803
  check_field_accessability(current_klass, resolved_klass, sel_klass, fd, CHECK);
D
duke 已提交
804 805 806

  // check for errors
  if (is_static != fd.is_static()) {
807
    ResourceMark rm(THREAD);
D
duke 已提交
808
    char msg[200];
H
hseigel 已提交
809
    jio_snprintf(msg, sizeof(msg), "Expected %s field %s.%s", is_static ? "static" : "non-static", resolved_klass()->external_name(), fd.name()->as_C_string());
D
duke 已提交
810 811 812 813
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), msg);
  }

  // Final fields can only be accessed from its own class.
814
  if (is_put && fd.access_flags().is_final() && sel_klass() != current_klass()) {
D
duke 已提交
815 816 817 818 819 820 821 822 823
    THROW(vmSymbols::java_lang_IllegalAccessError());
  }

  // initialize resolved_klass if necessary
  // note 1: the klass which declared the field must be initialized (i.e, sel_klass)
  //         according to the newest JVM spec (5.5, p.170) - was bug (gri 7/28/99)
  //
  // note 2: we don't want to force initialization if we are just checking
  //         if the field access is legal; e.g., during compilation
824
  if (is_static && initialize_class) {
D
duke 已提交
825 826 827
    sel_klass->initialize(CHECK);
  }

828
  if (sel_klass() != current_klass()) {
D
duke 已提交
829
    HandleMark hm(THREAD);
830
    Handle ref_loader (THREAD, InstanceKlass::cast(current_klass())->class_loader());
831
    Handle sel_loader (THREAD, InstanceKlass::cast(sel_klass())->class_loader());
D
duke 已提交
832 833
    {
      ResourceMark rm(THREAD);
834
      Symbol* failed_type_symbol =
835
        SystemDictionary::check_signature_loaders(sig,
D
duke 已提交
836 837 838
                                                  ref_loader, sel_loader,
                                                  false,
                                                  CHECK);
839
      if (failed_type_symbol != NULL) {
D
duke 已提交
840 841 842 843
        const char* msg = "loader constraint violation: when resolving field"
          " \"%s\" the class loader (instance of %s) of the referring class, "
          "%s, and the class loader (instance of %s) for the field's resolved "
          "type, %s, have different Class objects for that type";
844
        char* field_name = field->as_C_string();
D
duke 已提交
845
        const char* loader1 = SystemDictionary::loader_name(ref_loader());
846
        char* sel = InstanceKlass::cast(sel_klass())->name()->as_C_string();
D
duke 已提交
847
        const char* loader2 = SystemDictionary::loader_name(sel_loader());
848
        char* failed_type_name = failed_type_symbol->as_C_string();
D
duke 已提交
849
        size_t buflen = strlen(msg) + strlen(field_name) + strlen(loader1) +
850
          strlen(sel) + strlen(loader2) + strlen(failed_type_name) + 1;
D
duke 已提交
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
        char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
        jio_snprintf(buf, buflen, msg, field_name, loader1, sel, loader2,
                     failed_type_name);
        THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
      }
    }
  }

  // return information. note that the klass is set to the actual klass containing the
  // field, otherwise access of static fields in superclasses will not work.
}


//------------------------------------------------------------------------------------------------------------------------
// Invoke resolution
//
// Naming conventions:
//
// resolved_method    the specified method (i.e., static receiver specified via constant pool index)
// sel_method         the selected method  (selected via run-time lookup; e.g., based on dynamic receiver class)
// resolved_klass     the specified klass  (i.e., specified via constant pool index)
// recv_klass         the receiver klass


875 876
void LinkResolver::resolve_static_call(CallInfo& result, KlassHandle& resolved_klass, Symbol* method_name,
                                       Symbol* method_signature, KlassHandle current_klass,
D
duke 已提交
877 878 879
                                       bool check_access, bool initialize_class, TRAPS) {
  methodHandle resolved_method;
  linktime_resolve_static_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, CHECK);
H
hseigel 已提交
880
  resolved_klass = KlassHandle(THREAD, resolved_method->method_holder());
D
duke 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893

  // Initialize klass (this should only happen if everything is ok)
  if (initialize_class && resolved_klass->should_be_initialized()) {
    resolved_klass->initialize(CHECK);
    linktime_resolve_static_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, CHECK);
  }

  // setup result
  result.set_static(resolved_klass, resolved_method, CHECK);
}

// throws linktime exceptions
void LinkResolver::linktime_resolve_static_method(methodHandle& resolved_method, KlassHandle resolved_klass,
894
                                                  Symbol* method_name, Symbol* method_signature,
D
duke 已提交
895 896
                                                  KlassHandle current_klass, bool check_access, TRAPS) {

A
acorn 已提交
897 898 899 900 901
  if (!resolved_klass->is_interface()) {
    resolve_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, false, CHECK);
  } else {
    resolve_interface_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, false, CHECK);
  }
D
duke 已提交
902 903 904 905
  assert(resolved_method->name() != vmSymbols::class_initializer_name(), "should have been checked in verifier");

  // check if static
  if (!resolved_method->is_static()) {
906
    ResourceMark rm(THREAD);
D
duke 已提交
907
    char buf[200];
H
hseigel 已提交
908
    jio_snprintf(buf, sizeof(buf), "Expected static method %s", Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
909 910 911 912 913 914 915
                                                      resolved_method->name(),
                                                      resolved_method->signature()));
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }
}


916 917
void LinkResolver::resolve_special_call(CallInfo& result, KlassHandle resolved_klass, Symbol* method_name,
                                        Symbol* method_signature, KlassHandle current_klass, bool check_access, TRAPS) {
D
duke 已提交
918 919 920 921 922 923 924
  methodHandle resolved_method;
  linktime_resolve_special_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, CHECK);
  runtime_resolve_special_method(result, resolved_method, resolved_klass, current_klass, check_access, CHECK);
}

// throws linktime exceptions
void LinkResolver::linktime_resolve_special_method(methodHandle& resolved_method, KlassHandle resolved_klass,
925
                                                   Symbol* method_name, Symbol* method_signature,
D
duke 已提交
926 927
                                                   KlassHandle current_klass, bool check_access, TRAPS) {

928 929 930 931 932 933
  // Invokespecial is called for multiple special reasons:
  // <init>
  // local private method invocation, for classes and interfaces
  // superclass.method, which can also resolve to a default method
  // and the selected method is recalculated relative to the direct superclass
  // superinterface.method, which explicitly does not check shadowing
934

A
acorn 已提交
935 936 937 938 939
  if (!resolved_klass->is_interface()) {
    resolve_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, false, CHECK);
  } else {
    resolve_interface_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, true, CHECK);
  }
D
duke 已提交
940 941 942 943 944 945 946

  // check if method name is <init>, that it is found in same klass as static type
  if (resolved_method->name() == vmSymbols::object_initializer_name() &&
      resolved_method->method_holder() != resolved_klass()) {
    ResourceMark rm(THREAD);
    Exceptions::fthrow(
      THREAD_AND_LOCATION,
947
      vmSymbols::java_lang_NoSuchMethodError(),
D
duke 已提交
948 949 950 951 952 953 954 955
      "%s: method %s%s not found",
      resolved_klass->external_name(),
      resolved_method->name()->as_C_string(),
      resolved_method->signature()->as_C_string()
    );
    return;
  }

956 957 958 959 960
  // check if invokespecial's interface method reference is in an indirect superinterface
  if (!current_klass.is_null() && resolved_klass->is_interface()) {
    Klass *klass_to_check = !InstanceKlass::cast(current_klass())->is_anonymous() ?
                                  current_klass() :
                                  InstanceKlass::cast(current_klass())->host_klass();
H
hseigel 已提交
961 962 963 964 965 966 967 968 969 970 971
    // As of the fix for 4486457 we disable verification for all of the
    // dynamically-generated bytecodes associated with the 1.4
    // reflection implementation, not just those associated with
    // sun/reflect/SerializationConstructorAccessor.
    bool is_reflect = JDK_Version::is_gte_jdk14x_version() &&
                      UseNewReflection &&
                      klass_to_check->is_subclass_of(
                        SystemDictionary::reflect_MagicAccessorImpl_klass());

    if (!is_reflect &&
        !InstanceKlass::cast(klass_to_check)->is_same_or_direct_interface(resolved_klass())) {
972 973 974 975 976 977 978 979 980 981 982 983
      ResourceMark rm(THREAD);
      char buf[200];
      jio_snprintf(buf, sizeof(buf),
                   "Interface method reference: %s, is in an indirect superinterface of %s",
                   Method::name_and_sig_as_C_string(resolved_klass(),
                                                         resolved_method->name(),
                                                         resolved_method->signature()),
                   current_klass->external_name());
      THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
    }
  }

D
duke 已提交
984 985
  // check if not static
  if (resolved_method->is_static()) {
986
    ResourceMark rm(THREAD);
D
duke 已提交
987 988 989
    char buf[200];
    jio_snprintf(buf, sizeof(buf),
                 "Expecting non-static method %s",
H
hseigel 已提交
990
                 Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
991 992 993 994
                                                         resolved_method->name(),
                                                         resolved_method->signature()));
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }
995

996 997 998 999 1000 1001 1002 1003 1004 1005 1006
  if (TraceItables && Verbose) {
    ResourceMark rm(THREAD);
    tty->print("invokespecial resolved method: caller-class:%s, compile-time-class:%s, method:%s, method_holder:%s, access_flags: ",
                (current_klass.is_null() ? "<NULL>" : current_klass->internal_name()),
                (resolved_klass.is_null() ? "<NULL>" : resolved_klass->internal_name()),
                Method::name_and_sig_as_C_string(resolved_klass(),
                                                 resolved_method->name(),
                                                 resolved_method->signature()),
                resolved_method->method_holder()->internal_name()
               );
    resolved_method->access_flags().print_on(tty);
1007
    if (resolved_method->is_default_method()) {
1008
      tty->print("default ");
1009 1010 1011 1012 1013 1014
    }
    if (resolved_method->is_overpass()) {
      tty->print("overpass");
    }
    tty->cr();
  }
D
duke 已提交
1015 1016 1017 1018 1019 1020 1021
}

// throws runtime exceptions
void LinkResolver::runtime_resolve_special_method(CallInfo& result, methodHandle resolved_method, KlassHandle resolved_klass,
                                                  KlassHandle current_klass, bool check_access, TRAPS) {

  // resolved method is selected method unless we have an old-style lookup
1022 1023 1024
  // for a superclass method
  // Invokespecial for a superinterface, resolved method is selected method,
  // no checks for shadowing
D
duke 已提交
1025 1026 1027 1028 1029 1030
  methodHandle sel_method(THREAD, resolved_method());

  // check if this is an old-style super call and do a new lookup if so
  { KlassHandle method_klass  = KlassHandle(THREAD,
                                            resolved_method->method_holder());

1031
    if (check_access &&
D
duke 已提交
1032
        // a) check if ACC_SUPER flag is set for the current class
K
kamg 已提交
1033
        (current_klass->is_super() || !AllowNonVirtualCalls) &&
1034 1035 1036 1037 1038 1039
        // b) check if the class of the resolved_klass is a superclass
        // (not supertype in order to exclude interface classes) of the current class.
        // This check is not performed for super.invoke for interface methods
        // in super interfaces.
        current_klass->is_subclass_of(resolved_klass()) &&
        current_klass() != resolved_klass() &&
D
duke 已提交
1040 1041 1042 1043 1044
        // c) check if the method is not <init>
        resolved_method->name() != vmSymbols::object_initializer_name()) {
      // Lookup super method
      KlassHandle super_klass(THREAD, current_klass->super());
      lookup_instance_method_in_klasses(sel_method, super_klass,
1045 1046
                           resolved_method->name(),
                           resolved_method->signature(), CHECK);
D
duke 已提交
1047 1048 1049 1050
      // check if found
      if (sel_method.is_null()) {
        ResourceMark rm(THREAD);
        THROW_MSG(vmSymbols::java_lang_AbstractMethodError(),
H
hseigel 已提交
1051
                  Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
1052 1053 1054 1055 1056 1057 1058 1059
                                            resolved_method->name(),
                                            resolved_method->signature()));
      }
    }
  }

  // check if not static
  if (sel_method->is_static()) {
1060
    ResourceMark rm(THREAD);
D
duke 已提交
1061
    char buf[200];
H
hseigel 已提交
1062
    jio_snprintf(buf, sizeof(buf), "Expecting non-static method %s", Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
1063 1064 1065 1066 1067 1068 1069 1070 1071
                                                                                                             resolved_method->name(),
                                                                                                             resolved_method->signature()));
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }

  // check if abstract
  if (sel_method->is_abstract()) {
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_AbstractMethodError(),
H
hseigel 已提交
1072
              Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
1073 1074 1075 1076
                                                      sel_method->name(),
                                                      sel_method->signature()));
  }

1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
  if (TraceItables && Verbose) {
    ResourceMark rm(THREAD);
    tty->print("invokespecial selected method: resolved-class:%s, method:%s, method_holder:%s, access_flags: ",
                 (resolved_klass.is_null() ? "<NULL>" : resolved_klass->internal_name()),
                 Method::name_and_sig_as_C_string(resolved_klass(),
                                                  sel_method->name(),
                                                  sel_method->signature()),
                 sel_method->method_holder()->internal_name()
                );
    sel_method->access_flags().print_on(tty);
1087
    if (sel_method->is_default_method()) {
1088
      tty->print("default ");
1089
    }
1090 1091 1092
    if (sel_method->is_overpass()) {
      tty->print("overpass");
    }
1093 1094 1095
    tty->cr();
  }

D
duke 已提交
1096 1097 1098 1099 1100
  // setup result
  result.set_static(resolved_klass, sel_method, CHECK);
}

void LinkResolver::resolve_virtual_call(CallInfo& result, Handle recv, KlassHandle receiver_klass, KlassHandle resolved_klass,
1101
                                        Symbol* method_name, Symbol* method_signature, KlassHandle current_klass,
D
duke 已提交
1102 1103 1104 1105 1106 1107 1108 1109
                                        bool check_access, bool check_null_and_abstract, TRAPS) {
  methodHandle resolved_method;
  linktime_resolve_virtual_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, CHECK);
  runtime_resolve_virtual_method(result, resolved_method, resolved_klass, recv, receiver_klass, check_null_and_abstract, CHECK);
}

// throws linktime exceptions
void LinkResolver::linktime_resolve_virtual_method(methodHandle &resolved_method, KlassHandle resolved_klass,
1110
                                                   Symbol* method_name, Symbol* method_signature,
D
duke 已提交
1111 1112
                                                   KlassHandle current_klass, bool check_access, TRAPS) {
  // normal method resolution
1113
  resolve_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, true, CHECK);
D
duke 已提交
1114 1115 1116 1117

  assert(resolved_method->name() != vmSymbols::object_initializer_name(), "should have been checked in verifier");
  assert(resolved_method->name() != vmSymbols::class_initializer_name (), "should have been checked in verifier");

1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
  // check if private interface method
  if (resolved_klass->is_interface() && resolved_method->is_private()) {
    ResourceMark rm(THREAD);
    char buf[200];
    jio_snprintf(buf, sizeof(buf), "private interface method requires invokespecial, not invokevirtual: method %s, caller-class:%s",
                 Method::name_and_sig_as_C_string(resolved_klass(),
                                                  resolved_method->name(),
                                                  resolved_method->signature()),
                   (current_klass.is_null() ? "<NULL>" : current_klass->internal_name()));
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }

D
duke 已提交
1130 1131
  // check if not static
  if (resolved_method->is_static()) {
1132
    ResourceMark rm(THREAD);
D
duke 已提交
1133
    char buf[200];
H
hseigel 已提交
1134
    jio_snprintf(buf, sizeof(buf), "Expecting non-static method %s", Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
1135 1136 1137 1138
                                                                                                             resolved_method->name(),
                                                                                                             resolved_method->signature()));
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }
1139

1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
  if (PrintVtables && Verbose) {
    ResourceMark rm(THREAD);
    tty->print("invokevirtual resolved method: caller-class:%s, compile-time-class:%s, method:%s, method_holder:%s, access_flags: ",
                   (current_klass.is_null() ? "<NULL>" : current_klass->internal_name()),
                   (resolved_klass.is_null() ? "<NULL>" : resolved_klass->internal_name()),
                   Method::name_and_sig_as_C_string(resolved_klass(),
                                                    resolved_method->name(),
                                                    resolved_method->signature()),
                   resolved_method->method_holder()->internal_name()
                  );
    resolved_method->access_flags().print_on(tty);
    if (resolved_method->is_default_method()) {
1152
      tty->print("default ");
1153 1154 1155 1156 1157 1158
    }
    if (resolved_method->is_overpass()) {
      tty->print("overpass");
    }
    tty->cr();
  }
D
duke 已提交
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
}

// throws runtime exceptions
void LinkResolver::runtime_resolve_virtual_method(CallInfo& result,
                                                  methodHandle resolved_method,
                                                  KlassHandle resolved_klass,
                                                  Handle recv,
                                                  KlassHandle recv_klass,
                                                  bool check_null_and_abstract,
                                                  TRAPS) {

  // setup default return values
1171
  int vtable_index = Method::invalid_vtable_index;
D
duke 已提交
1172 1173 1174 1175 1176 1177 1178 1179 1180
  methodHandle selected_method;

  assert(recv.is_null() || recv->is_oop(), "receiver is not an oop");

  // runtime method resolution
  if (check_null_and_abstract && recv.is_null()) { // check if receiver exists
    THROW(vmSymbols::java_lang_NullPointerException());
  }

1181
  // Virtual methods cannot be resolved before its klass has been linked, for otherwise the Method*'s
D
duke 已提交
1182 1183
  // has not been rewritten, and the vtable initialized. Make sure to do this after the nullcheck, since
  // a missing receiver might result in a bogus lookup.
1184
  assert(resolved_method->method_holder()->is_linked(), "must be linked");
D
duke 已提交
1185 1186

  // do lookup based on receiver klass using the vtable index
1187
  if (resolved_method->method_holder()->is_interface()) { // miranda method
1188
    vtable_index = vtable_index_of_interface_method(resolved_klass,
1189
                           resolved_method);
D
duke 已提交
1190 1191
    assert(vtable_index >= 0 , "we should have valid vtable index at this point");

1192
    InstanceKlass* inst = InstanceKlass::cast(recv_klass());
D
duke 已提交
1193 1194 1195 1196
    selected_method = methodHandle(THREAD, inst->method_at_vtable(vtable_index));
  } else {
    // at this point we are sure that resolved_method is virtual and not
    // a miranda method; therefore, it must have a valid vtable index.
1197
    assert(!resolved_method->has_itable_index(), "");
D
duke 已提交
1198 1199 1200 1201 1202 1203
    vtable_index = resolved_method->vtable_index();
    // We could get a negative vtable_index for final methods,
    // because as an optimization they are they are never put in the vtable,
    // unless they override an existing method.
    // If we do get a negative, it means the resolved method is the the selected
    // method, and it can never be changed by an override.
1204
    if (vtable_index == Method::nonvirtual_vtable_index) {
D
duke 已提交
1205 1206 1207 1208 1209
      assert(resolved_method->can_be_statically_bound(), "cannot override this method");
      selected_method = resolved_method;
    } else {
      // recv_klass might be an arrayKlassOop but all vtables start at
      // the same place. The cast is to avoid virtual call and assertion.
1210
      InstanceKlass* inst = (InstanceKlass*)recv_klass();
D
duke 已提交
1211 1212 1213 1214 1215 1216 1217 1218
      selected_method = methodHandle(THREAD, inst->method_at_vtable(vtable_index));
    }
  }

  // check if method exists
  if (selected_method.is_null()) {
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_AbstractMethodError(),
H
hseigel 已提交
1219
              Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
1220 1221 1222 1223 1224 1225 1226 1227
                                                      resolved_method->name(),
                                                      resolved_method->signature()));
  }

  // check if abstract
  if (check_null_and_abstract && selected_method->is_abstract()) {
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_AbstractMethodError(),
H
hseigel 已提交
1228
              Method::name_and_sig_as_C_string(resolved_klass(),
D
duke 已提交
1229 1230 1231 1232
                                                      selected_method->name(),
                                                      selected_method->signature()));
  }

1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
  if (PrintVtables && Verbose) {
    ResourceMark rm(THREAD);
    tty->print("invokevirtual selected method: receiver-class:%s, resolved-class:%s, method:%s, method_holder:%s, vtable_index:%d, access_flags: ",
                   (recv_klass.is_null() ? "<NULL>" : recv_klass->internal_name()),
                   (resolved_klass.is_null() ? "<NULL>" : resolved_klass->internal_name()),
                   Method::name_and_sig_as_C_string(resolved_klass(),
                                                    resolved_method->name(),
                                                    resolved_method->signature()),
                   selected_method->method_holder()->internal_name(),
                   vtable_index
                  );
    selected_method->access_flags().print_on(tty);
1245
    if (selected_method->is_default_method()) {
1246
      tty->print("default ");
1247
    }
1248
    if (selected_method->is_overpass()) {
1249 1250 1251 1252
      tty->print("overpass");
    }
    tty->cr();
  }
D
duke 已提交
1253 1254 1255 1256 1257
  // setup result
  result.set_virtual(resolved_klass, recv_klass, resolved_method, selected_method, vtable_index, CHECK);
}

void LinkResolver::resolve_interface_call(CallInfo& result, Handle recv, KlassHandle recv_klass, KlassHandle resolved_klass,
1258
                                          Symbol* method_name, Symbol* method_signature, KlassHandle current_klass,
D
duke 已提交
1259 1260 1261 1262 1263 1264 1265
                                          bool check_access, bool check_null_and_abstract, TRAPS) {
  methodHandle resolved_method;
  linktime_resolve_interface_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, CHECK);
  runtime_resolve_interface_method(result, resolved_method, resolved_klass, recv, recv_klass, check_null_and_abstract, CHECK);
}

// throws linktime exceptions
1266 1267
void LinkResolver::linktime_resolve_interface_method(methodHandle& resolved_method, KlassHandle resolved_klass, Symbol* method_name,
                                                     Symbol* method_signature, KlassHandle current_klass, bool check_access, TRAPS) {
D
duke 已提交
1268
  // normal interface method resolution
A
acorn 已提交
1269
  resolve_interface_method(resolved_method, resolved_klass, method_name, method_signature, current_klass, check_access, true, CHECK);
D
duke 已提交
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282

  assert(resolved_method->name() != vmSymbols::object_initializer_name(), "should have been checked in verifier");
  assert(resolved_method->name() != vmSymbols::class_initializer_name (), "should have been checked in verifier");
}

// throws runtime exceptions
void LinkResolver::runtime_resolve_interface_method(CallInfo& result, methodHandle resolved_method, KlassHandle resolved_klass,
                                                    Handle recv, KlassHandle recv_klass, bool check_null_and_abstract, TRAPS) {
  // check if receiver exists
  if (check_null_and_abstract && recv.is_null()) {
    THROW(vmSymbols::java_lang_NullPointerException());
  }

1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
  // check if private interface method
  if (resolved_klass->is_interface() && resolved_method->is_private()) {
    ResourceMark rm(THREAD);
    char buf[200];
    jio_snprintf(buf, sizeof(buf), "private interface method requires invokespecial, not invokeinterface: method %s",
                 Method::name_and_sig_as_C_string(resolved_klass(),
                                                  resolved_method->name(),
                                                  resolved_method->signature()));
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }

D
duke 已提交
1294 1295
  // check if receiver klass implements the resolved interface
  if (!recv_klass->is_subtype_of(resolved_klass())) {
1296
    ResourceMark rm(THREAD);
D
duke 已提交
1297 1298
    char buf[200];
    jio_snprintf(buf, sizeof(buf), "Class %s does not implement the requested interface %s",
H
hseigel 已提交
1299 1300
                 recv_klass()->external_name(),
                 resolved_klass()->external_name());
D
duke 已提交
1301 1302
    THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
  }
1303

D
duke 已提交
1304 1305
  // do lookup based on receiver klass
  methodHandle sel_method;
1306 1307
  // This search must match the linktime preparation search for itable initialization
  // to correctly enforce loader constraints for interface method inheritance
D
duke 已提交
1308
  lookup_instance_method_in_klasses(sel_method, recv_klass,
1309 1310
            resolved_method->name(),
            resolved_method->signature(), CHECK);
1311 1312 1313 1314 1315 1316
  if (sel_method.is_null() && !check_null_and_abstract) {
    // In theory this is a harmless placeholder value, but
    // in practice leaving in null affects the nsk default method tests.
    // This needs further study.
    sel_method = resolved_method;
  }
D
duke 已提交
1317 1318 1319 1320
  // check if method exists
  if (sel_method.is_null()) {
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_AbstractMethodError(),
H
hseigel 已提交
1321
              Method::name_and_sig_as_C_string(recv_klass(),
D
duke 已提交
1322 1323 1324
                                                      resolved_method->name(),
                                                      resolved_method->signature()));
  }
1325
  // check access
1326 1327 1328 1329 1330 1331 1332
  // Throw Illegal Access Error if sel_method is not public.
  if (!sel_method->is_public()) {
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_IllegalAccessError(),
              Method::name_and_sig_as_C_string(recv_klass(),
                                               sel_method->name(),
                                               sel_method->signature()));
D
duke 已提交
1333 1334 1335 1336 1337
  }
  // check if abstract
  if (check_null_and_abstract && sel_method->is_abstract()) {
    ResourceMark rm(THREAD);
    THROW_MSG(vmSymbols::java_lang_AbstractMethodError(),
H
hseigel 已提交
1338
              Method::name_and_sig_as_C_string(recv_klass(),
D
duke 已提交
1339 1340 1341
                                                      sel_method->name(),
                                                      sel_method->signature()));
  }
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353

  if (TraceItables && Verbose) {
    ResourceMark rm(THREAD);
    tty->print("invokeinterface selected method: receiver-class:%s, resolved-class:%s, method:%s, method_holder:%s, access_flags: ",
                   (recv_klass.is_null() ? "<NULL>" : recv_klass->internal_name()),
                   (resolved_klass.is_null() ? "<NULL>" : resolved_klass->internal_name()),
                   Method::name_and_sig_as_C_string(resolved_klass(),
                                                    resolved_method->name(),
                                                    resolved_method->signature()),
                   sel_method->method_holder()->internal_name()
                  );
    sel_method->access_flags().print_on(tty);
1354
    if (sel_method->is_default_method()) {
1355
      tty->print("default ");
1356
    }
1357
    if (sel_method->is_overpass()) {
1358 1359 1360 1361
      tty->print("overpass");
    }
    tty->cr();
  }
1362 1363 1364 1365 1366 1367 1368 1369 1370
  // setup result
  if (!resolved_method->has_itable_index()) {
    int vtable_index = resolved_method->vtable_index();
    assert(vtable_index == sel_method->vtable_index(), "sanity check");
    result.set_virtual(resolved_klass, recv_klass, resolved_method, sel_method, vtable_index, CHECK);
  } else {
    int itable_index = resolved_method()->itable_index();
    result.set_interface(resolved_klass, recv_klass, resolved_method, sel_method, itable_index, CHECK);
  }
D
duke 已提交
1371 1372 1373 1374 1375
}


methodHandle LinkResolver::linktime_resolve_interface_method_or_null(
                                                 KlassHandle resolved_klass,
1376 1377
                                                 Symbol* method_name,
                                                 Symbol* method_signature,
D
duke 已提交
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392
                                                 KlassHandle current_klass,
                                                 bool check_access) {
  EXCEPTION_MARK;
  methodHandle method_result;
  linktime_resolve_interface_method(method_result, resolved_klass, method_name, method_signature, current_klass, check_access, THREAD);
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
    return methodHandle();
  } else {
    return method_result;
  }
}

methodHandle LinkResolver::linktime_resolve_virtual_method_or_null(
                                                 KlassHandle resolved_klass,
1393 1394
                                                 Symbol* method_name,
                                                 Symbol* method_signature,
D
duke 已提交
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
                                                 KlassHandle current_klass,
                                                 bool check_access) {
  EXCEPTION_MARK;
  methodHandle method_result;
  linktime_resolve_virtual_method(method_result, resolved_klass, method_name, method_signature, current_klass, check_access, THREAD);
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
    return methodHandle();
  } else {
    return method_result;
  }
}

methodHandle LinkResolver::resolve_virtual_call_or_null(
                                                 KlassHandle receiver_klass,
                                                 KlassHandle resolved_klass,
1411 1412
                                                 Symbol* name,
                                                 Symbol* signature,
1413 1414
                                                 KlassHandle current_klass,
                                                 bool check_access) {
D
duke 已提交
1415 1416
  EXCEPTION_MARK;
  CallInfo info;
1417
  resolve_virtual_call(info, Handle(), receiver_klass, resolved_klass, name, signature, current_klass, check_access, false, THREAD);
D
duke 已提交
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
    return methodHandle();
  }
  return info.selected_method();
}

methodHandle LinkResolver::resolve_interface_call_or_null(
                                                 KlassHandle receiver_klass,
                                                 KlassHandle resolved_klass,
1428 1429
                                                 Symbol* name,
                                                 Symbol* signature,
1430 1431
                                                 KlassHandle current_klass,
                                                 bool check_access) {
D
duke 已提交
1432 1433
  EXCEPTION_MARK;
  CallInfo info;
1434
  resolve_interface_call(info, Handle(), receiver_klass, resolved_klass, name, signature, current_klass, check_access, false, THREAD);
D
duke 已提交
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
    return methodHandle();
  }
  return info.selected_method();
}

int LinkResolver::resolve_virtual_vtable_index(
                                               KlassHandle receiver_klass,
                                               KlassHandle resolved_klass,
1445 1446
                                               Symbol* name,
                                               Symbol* signature,
D
duke 已提交
1447 1448 1449 1450 1451 1452
                                               KlassHandle current_klass) {
  EXCEPTION_MARK;
  CallInfo info;
  resolve_virtual_call(info, Handle(), receiver_klass, resolved_klass, name, signature, current_klass, true, false, THREAD);
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
1453
    return Method::invalid_vtable_index;
D
duke 已提交
1454 1455 1456 1457 1458 1459
  }
  return info.vtable_index();
}

methodHandle LinkResolver::resolve_static_call_or_null(
                                                  KlassHandle resolved_klass,
1460 1461
                                                  Symbol* name,
                                                  Symbol* signature,
1462 1463
                                                  KlassHandle current_klass,
                                                  bool check_access) {
D
duke 已提交
1464 1465
  EXCEPTION_MARK;
  CallInfo info;
1466
  resolve_static_call(info, resolved_klass, name, signature, current_klass, check_access, false, THREAD);
D
duke 已提交
1467 1468 1469 1470 1471 1472 1473
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
    return methodHandle();
  }
  return info.selected_method();
}

1474 1475 1476 1477 1478 1479
methodHandle LinkResolver::resolve_special_call_or_null(
                                                  KlassHandle resolved_klass,
                                                  Symbol* name,
                                                  Symbol* signature,
                                                  KlassHandle current_klass,
                                                  bool check_access) {
D
duke 已提交
1480 1481
  EXCEPTION_MARK;
  CallInfo info;
1482
  resolve_special_call(info, resolved_klass, name, signature, current_klass, check_access, THREAD);
D
duke 已提交
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
    return methodHandle();
  }
  return info.selected_method();
}



//------------------------------------------------------------------------------------------------------------------------
// ConstantPool entries

void LinkResolver::resolve_invoke(CallInfo& result, Handle recv, constantPoolHandle pool, int index, Bytecodes::Code byte, TRAPS) {
  switch (byte) {
    case Bytecodes::_invokestatic   : resolve_invokestatic   (result,       pool, index, CHECK); break;
    case Bytecodes::_invokespecial  : resolve_invokespecial  (result,       pool, index, CHECK); break;
    case Bytecodes::_invokevirtual  : resolve_invokevirtual  (result, recv, pool, index, CHECK); break;
1500
    case Bytecodes::_invokehandle   : resolve_invokehandle   (result,       pool, index, CHECK); break;
1501
    case Bytecodes::_invokedynamic  : resolve_invokedynamic  (result,       pool, index, CHECK); break;
D
duke 已提交
1502 1503 1504 1505 1506
    case Bytecodes::_invokeinterface: resolve_invokeinterface(result, recv, pool, index, CHECK); break;
  }
  return;
}

1507
void LinkResolver::resolve_pool(KlassHandle& resolved_klass, Symbol*& method_name, Symbol*& method_signature,
D
duke 已提交
1508 1509 1510 1511 1512
                                KlassHandle& current_klass, constantPoolHandle pool, int index, TRAPS) {
   // resolve klass
  resolve_klass(resolved_klass, pool, index, CHECK);

  // Get name, signature, and static klass
1513 1514
  method_name      = pool->name_ref_at(index);
  method_signature = pool->signature_ref_at(index);
D
duke 已提交
1515 1516 1517 1518 1519 1520
  current_klass    = KlassHandle(THREAD, pool->pool_holder());
}


void LinkResolver::resolve_invokestatic(CallInfo& result, constantPoolHandle pool, int index, TRAPS) {
  KlassHandle  resolved_klass;
1521 1522
  Symbol* method_name = NULL;
  Symbol* method_signature = NULL;
D
duke 已提交
1523 1524 1525 1526 1527 1528 1529 1530
  KlassHandle  current_klass;
  resolve_pool(resolved_klass, method_name,  method_signature, current_klass, pool, index, CHECK);
  resolve_static_call(result, resolved_klass, method_name, method_signature, current_klass, true, true, CHECK);
}


void LinkResolver::resolve_invokespecial(CallInfo& result, constantPoolHandle pool, int index, TRAPS) {
  KlassHandle  resolved_klass;
1531 1532
  Symbol* method_name = NULL;
  Symbol* method_signature = NULL;
D
duke 已提交
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
  KlassHandle  current_klass;
  resolve_pool(resolved_klass, method_name,  method_signature, current_klass, pool, index, CHECK);
  resolve_special_call(result, resolved_klass, method_name, method_signature, current_klass, true, CHECK);
}


void LinkResolver::resolve_invokevirtual(CallInfo& result, Handle recv,
                                          constantPoolHandle pool, int index,
                                          TRAPS) {

  KlassHandle  resolved_klass;
1544 1545
  Symbol* method_name = NULL;
  Symbol* method_signature = NULL;
D
duke 已提交
1546 1547
  KlassHandle  current_klass;
  resolve_pool(resolved_klass, method_name,  method_signature, current_klass, pool, index, CHECK);
1548
  KlassHandle recvrKlass (THREAD, recv.is_null() ? (Klass*)NULL : recv->klass());
D
duke 已提交
1549 1550 1551 1552 1553 1554
  resolve_virtual_call(result, recv, recvrKlass, resolved_klass, method_name, method_signature, current_klass, true, true, CHECK);
}


void LinkResolver::resolve_invokeinterface(CallInfo& result, Handle recv, constantPoolHandle pool, int index, TRAPS) {
  KlassHandle  resolved_klass;
1555 1556
  Symbol* method_name = NULL;
  Symbol* method_signature = NULL;
D
duke 已提交
1557 1558
  KlassHandle  current_klass;
  resolve_pool(resolved_klass, method_name,  method_signature, current_klass, pool, index, CHECK);
1559
  KlassHandle recvrKlass (THREAD, recv.is_null() ? (Klass*)NULL : recv->klass());
D
duke 已提交
1560 1561 1562
  resolve_interface_call(result, recv, recvrKlass, resolved_klass, method_name, method_signature, current_klass, true, true, CHECK);
}

1563

1564 1565 1566 1567 1568 1569 1570 1571
void LinkResolver::resolve_invokehandle(CallInfo& result, constantPoolHandle pool, int index, TRAPS) {
  assert(EnableInvokeDynamic, "");
  // This guy is reached from InterpreterRuntime::resolve_invokehandle.
  KlassHandle  resolved_klass;
  Symbol* method_name = NULL;
  Symbol* method_signature = NULL;
  KlassHandle  current_klass;
  resolve_pool(resolved_klass, method_name,  method_signature, current_klass, pool, index, CHECK);
1572 1573
  if (TraceMethodHandles) {
    ResourceMark rm(THREAD);
1574
    tty->print_cr("resolve_invokehandle %s %s", method_name->as_C_string(), method_signature->as_C_string());
1575
  }
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
  resolve_handle_call(result, resolved_klass, method_name, method_signature, current_klass, CHECK);
}

void LinkResolver::resolve_handle_call(CallInfo& result, KlassHandle resolved_klass,
                                       Symbol* method_name, Symbol* method_signature,
                                       KlassHandle current_klass,
                                       TRAPS) {
  // JSR 292:  this must be an implicitly generated method MethodHandle.invokeExact(*...) or similar
  assert(resolved_klass() == SystemDictionary::MethodHandle_klass(), "");
  assert(MethodHandles::is_signature_polymorphic_name(method_name), "");
  methodHandle resolved_method;
1587 1588
  Handle       resolved_appendix;
  Handle       resolved_method_type;
1589 1590
  lookup_polymorphic_method(resolved_method, resolved_klass,
                            method_name, method_signature,
1591 1592
                            current_klass, &resolved_appendix, &resolved_method_type, CHECK);
  result.set_handle(resolved_method, resolved_appendix, resolved_method_type, CHECK);
1593 1594
}

1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
static void wrap_invokedynamic_exception(TRAPS) {
  if (HAS_PENDING_EXCEPTION) {
    if (TraceMethodHandles) {
      tty->print_cr("invokedynamic throws BSME for " INTPTR_FORMAT, p2i((void *)PENDING_EXCEPTION));
      PENDING_EXCEPTION->print();
    }
    if (PENDING_EXCEPTION->is_a(SystemDictionary::BootstrapMethodError_klass())) {
      // throw these guys, since they are already wrapped
      return;
    }
    if (!PENDING_EXCEPTION->is_a(SystemDictionary::LinkageError_klass())) {
      // intercept only LinkageErrors which might have failed to wrap
      return;
    }
    // See the "Linking Exceptions" section for the invokedynamic instruction in the JVMS.
    Handle nested_exception(THREAD, PENDING_EXCEPTION);
    CLEAR_PENDING_EXCEPTION;
    THROW_CAUSE(vmSymbols::java_lang_BootstrapMethodError(), nested_exception)
  }
}
1615 1616

void LinkResolver::resolve_invokedynamic(CallInfo& result, constantPoolHandle pool, int index, TRAPS) {
1617
  assert(EnableInvokeDynamic, "");
1618

1619
  //resolve_pool(<resolved_klass>, method_name, method_signature, current_klass, pool, index, CHECK);
1620 1621 1622 1623 1624 1625 1626
  Symbol* method_name       = pool->name_ref_at(index);
  Symbol* method_signature  = pool->signature_ref_at(index);
  KlassHandle current_klass = KlassHandle(THREAD, pool->pool_holder());

  // Resolve the bootstrap specifier (BSM + optional arguments).
  Handle bootstrap_specifier;
  // Check if CallSite has been bound already:
1627
  ConstantPoolCacheEntry* cpce = pool->invokedynamic_cp_cache_entry_at(index);
1628
  if (cpce->is_f1_null()) {
1629
    int pool_index = cpce->constant_pool_index();
1630 1631
    oop bsm_info = pool->resolve_bootstrap_specifier_at(pool_index, THREAD);
    wrap_invokedynamic_exception(CHECK);
1632 1633 1634 1635 1636
    assert(bsm_info != NULL, "");
    // FIXME: Cache this once per BootstrapMethods entry, not once per CONSTANT_InvokeDynamic.
    bootstrap_specifier = Handle(THREAD, bsm_info);
  }
  if (!cpce->is_f1_null()) {
1637 1638 1639
    methodHandle method(     THREAD, cpce->f1_as_method());
    Handle       appendix(   THREAD, cpce->appendix_if_resolved(pool));
    Handle       method_type(THREAD, cpce->method_type_if_resolved(pool));
1640 1641
    result.set_handle(method, appendix, method_type, THREAD);
    wrap_invokedynamic_exception(CHECK);
1642 1643
    return;
  }
1644

1645
  if (TraceMethodHandles) {
1646 1647
      ResourceMark rm(THREAD);
      tty->print_cr("resolve_invokedynamic #%d %s %s",
1648
                  ConstantPool::decode_invokedynamic_index(index),
1649 1650 1651
                  method_name->as_C_string(), method_signature->as_C_string());
    tty->print("  BSM info: "); bootstrap_specifier->print();
  }
1652

1653 1654
  resolve_dynamic_call(result, bootstrap_specifier, method_name, method_signature, current_klass, CHECK);
}
1655

1656 1657 1658 1659 1660 1661 1662 1663
void LinkResolver::resolve_dynamic_call(CallInfo& result,
                                        Handle bootstrap_specifier,
                                        Symbol* method_name, Symbol* method_signature,
                                        KlassHandle current_klass,
                                        TRAPS) {
  // JSR 292:  this must resolve to an implicitly generated method MH.linkToCallSite(*...)
  // The appendix argument is likely to be a freshly-created CallSite.
  Handle       resolved_appendix;
1664
  Handle       resolved_method_type;
1665 1666 1667 1668 1669
  methodHandle resolved_method =
    SystemDictionary::find_dynamic_call_site_invoker(current_klass,
                                                     bootstrap_specifier,
                                                     method_name, method_signature,
                                                     &resolved_appendix,
1670
                                                     &resolved_method_type,
1671
                                                     THREAD);
1672 1673 1674
  wrap_invokedynamic_exception(CHECK);
  result.set_handle(resolved_method, resolved_appendix, resolved_method_type, THREAD);
  wrap_invokedynamic_exception(CHECK);
1675 1676
}

D
duke 已提交
1677 1678 1679
//------------------------------------------------------------------------------------------------------------------------
#ifndef PRODUCT

1680
void CallInfo::print() {
D
duke 已提交
1681
  ResourceMark rm;
1682 1683 1684 1685 1686 1687 1688 1689
  const char* kindstr = "unknown";
  switch (_call_kind) {
  case direct_call: kindstr = "direct"; break;
  case vtable_call: kindstr = "vtable"; break;
  case itable_call: kindstr = "itable"; break;
  }
  tty->print_cr("Call %s@%d %s", kindstr, _call_index,
                _resolved_method.is_null() ? "(none)" : _resolved_method->name_and_sig_as_C_string());
D
duke 已提交
1690 1691 1692
}

#endif