hotspot/src/share/vm/code/compiledIC.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 5686 5435e77aa3df
child 5547 f4b087cbb361
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_compiledIC.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Every time a compiled IC is changed or its type is being accessed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// either the CompiledIC_lock must be set or we must be at a safe point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Low-level access to an inline cache. Private, since they might not be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// MT-safe to use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
void CompiledIC::set_cached_oop(oop cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  assert (!is_optimized(), "an optimized virtual call does not have a cached oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  assert (cache == NULL || cache != badOop, "invalid oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  if (TraceCompiledIC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    tty->print("  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    print_compiled_ic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    tty->print_cr(" changing oop to " INTPTR_FORMAT, (address)cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if (cache == NULL)  cache = (oop)Universe::non_oop_word();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  *_oop_addr = cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // fix up the relocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  RelocIterator iter = _oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  while (iter.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    if (iter.type() == relocInfo::oop_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      oop_Relocation* r = iter.oop_reloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
      if (r->oop_addr() == _oop_addr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
        r->fix_oop_relocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
oop CompiledIC::cached_oop() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  assert (!is_optimized(), "an optimized virtual call does not have a cached oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if (!is_in_transition_state()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    oop data = *_oop_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    // If we let the oop value here be initialized to zero...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    assert(data != NULL || Universe::non_oop_word() == NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
           "no raw nulls in CompiledIC oops, because of patching races");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    return (data == (oop)Universe::non_oop_word()) ? (oop)NULL : data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    return InlineCacheBuffer::cached_oop_for((CompiledIC *)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void CompiledIC::set_ic_destination(address entry_point) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  assert(entry_point != NULL, "must set legal entry point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  assert(CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  if (TraceCompiledIC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    tty->print("  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    print_compiled_ic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    tty->print_cr(" changing destination to " INTPTR_FORMAT, entry_point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  CodeBlob* cb = CodeCache::find_blob_unsafe(_ic_call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  assert(cb != NULL && cb->is_nmethod(), "must be nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  _ic_call->set_destination_mt_safe(entry_point);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
address CompiledIC::ic_destination() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
 assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
 if (!is_in_transition_state()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
   return _ic_call->destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
 } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
   return InlineCacheBuffer::ic_destination_for((CompiledIC *)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
 }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
bool CompiledIC::is_in_transition_state() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  return InlineCacheBuffer::contains(_ic_call->destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// Returns native address of 'call' instruction in inline-cache. Used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// the InlineCacheBuffer when it needs to find the stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
address CompiledIC::stub_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  assert(is_in_transition_state(), "should only be called when we are in a transition state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  return _ic_call->destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
// High-level access to an inline cache. Guaranteed to be MT-safe.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
void CompiledIC::set_to_megamorphic(CallInfo* call_info, Bytecodes::Code bytecode, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  methodHandle method = call_info->selected_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  bool is_invoke_interface = (bytecode == Bytecodes::_invokeinterface && !call_info->has_vtable_index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  assert(CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  assert(method->is_oop(), "cannot be NULL and must be oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(!is_optimized(), "cannot set an optimized virtual call to megamorphic");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  assert(is_call_to_compiled() || is_call_to_interpreted(), "going directly to megamorphic?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  address entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  if (is_invoke_interface) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    int index = klassItable::compute_itable_index(call_info->resolved_method()());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    entry = VtableStubs::create_stub(false, index, method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    assert(entry != NULL, "entry not computed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    klassOop k = call_info->resolved_method()->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    assert(Klass::cast(k)->is_interface(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    InlineCacheBuffer::create_transition_stub(this, k, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // Can be different than method->vtable_index(), due to package-private etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    int vtable_index = call_info->vtable_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    entry = VtableStubs::create_stub(true, vtable_index, method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    InlineCacheBuffer::create_transition_stub(this, method(), entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    tty->print_cr ("IC@" INTPTR_FORMAT ": to megamorphic %s entry: " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                   instruction_address(), method->print_value_string(), entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  Events::log("compiledIC " INTPTR_FORMAT " --> megamorphic " INTPTR_FORMAT, this, (address)method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // assert(is_megamorphic(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// true if destination is megamorphic stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
bool CompiledIC::is_megamorphic() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  assert(CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  assert(!is_optimized(), "an optimized call cannot be megamorphic");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Cannot rely on cached_oop. It is either an interface or a method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  return VtableStubs::is_entry_point(ic_destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
bool CompiledIC::is_call_to_compiled() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Use unsafe, since an inline cache might point to a zombie method. However, the zombie
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // method is guaranteed to still exist, since we only remove methods after all inline caches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // has been cleaned up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  CodeBlob* cb = CodeCache::find_blob_unsafe(ic_destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  bool is_monomorphic = (cb != NULL && cb->is_nmethod());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Check that the cached_oop is a klass for non-optimized monomorphic calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // This assertion is invalid for compiler1: a call that does not look optimized (no static stub) can be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // for calling directly to vep without using the inline cache (i.e., cached_oop == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  CodeBlob* caller = CodeCache::find_blob_unsafe(instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  bool is_c1_method = caller->is_compiled_by_c1();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
#ifdef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  bool is_c1_method = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  bool is_c1_method = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#endif // COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  assert( is_c1_method ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
         !is_monomorphic ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
         is_optimized() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
         (cached_oop() != NULL && cached_oop()->is_klass()), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  return is_monomorphic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
bool CompiledIC::is_call_to_interpreted() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // Call to interpreter if destination is either calling to a stub (if it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // is optimized), or calling to an I2C blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  bool is_call_to_interpreted = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  if (!is_optimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    // must use unsafe because the destination can be a zombie (and we're cleaning)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    // and the print_compiled_ic code wants to know if site (in the non-zombie)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    // is to the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    CodeBlob* cb = CodeCache::find_blob_unsafe(ic_destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    is_call_to_interpreted = (cb != NULL && cb->is_adapter_blob());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    assert(!is_call_to_interpreted ||  (cached_oop() != NULL && cached_oop()->is_compiledICHolder()), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    // Check if we are calling into our own codeblob (i.e., to a stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    CodeBlob* cb = CodeCache::find_blob(_ic_call->instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    address dest = ic_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
      CodeBlob* db = CodeCache::find_blob_unsafe(dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      assert(!db->is_adapter_blob(), "must use stub!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    is_call_to_interpreted = cb->contains(dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  return is_call_to_interpreted;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
void CompiledIC::set_to_clean() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  assert(SafepointSynchronize::is_at_safepoint() || CompiledIC_lock->is_locked() , "MT-unsafe call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  if (TraceInlineCacheClearing || TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    tty->print_cr("IC@" INTPTR_FORMAT ": set to clean", instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  address entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  if (is_optimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    entry = SharedRuntime::get_resolve_opt_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    entry = SharedRuntime::get_resolve_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // A zombie transition will always be safe, since the oop has already been set to NULL, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // we only need to patch the destination
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  bool safe_transition = is_optimized() || SafepointSynchronize::is_at_safepoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  if (safe_transition) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    if (!is_optimized()) set_cached_oop(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    // Kill any leftover stub we might have too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    if (is_in_transition_state()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      ICStub* old_stub = ICStub_from_destination_address(stub_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      old_stub->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    set_ic_destination(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    // Unsafe transition - create stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    InlineCacheBuffer::create_transition_stub(this, NULL, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // assert(is_clean(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
bool CompiledIC::is_clean() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  bool is_clean = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  address dest = ic_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  is_clean = dest == SharedRuntime::get_resolve_opt_virtual_call_stub() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
             dest == SharedRuntime::get_resolve_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  assert(!is_clean || is_optimized() || cached_oop() == NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  return is_clean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
void CompiledIC::set_to_monomorphic(const CompiledICInfo& info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Updating a cache to the wrong entry can cause bugs that are very hard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // to track down - if cache entry gets invalid - we just clean it. In
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // this way it is always the same code path that is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // updating and resolving an inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // The above is no longer true. SharedRuntime::fixup_callers_callsite will change optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // callsites. In addition ic_miss code will update a site to monomorphic if it determines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // that an monomorphic call to the interpreter can now be monomorphic to compiled code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // In both of these cases the only thing being modifed is the jump/call target and these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // transitions are mt_safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  if (info._to_interpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    // Call to interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    if (info.is_optimized() && is_optimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
       assert(is_clean(), "unsafe IC path");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
       MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
      // the call analysis (callee structure) specifies that the call is optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
      // (either because of CHA or the static target is final)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
      // At code generation time, this call has been emitted as static call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
      // Call via stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
      assert(info.cached_oop().not_null() && info.cached_oop()->is_method(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      CompiledStaticCall* csc = compiledStaticCall_at(instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      methodHandle method (thread, (methodOop)info.cached_oop()());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      csc->set_to_interpreted(method, info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
         ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
         tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to interpreter: %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
           instruction_address(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
           method->print_value_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      // Call via method-klass-holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      assert(info.cached_oop().not_null(), "must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
      InlineCacheBuffer::create_transition_stub(this, info.cached_oop()(), info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
         ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
         tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to interpreter via mkh", instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    // Call to compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    bool static_bound = info.is_optimized() || (info.cached_oop().is_null());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    CodeBlob* cb = CodeCache::find_blob_unsafe(info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    assert (cb->is_nmethod(), "must be compiled!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    // This is MT safe if we come from a clean-cache and go through a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    // non-verified entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    bool safe = SafepointSynchronize::is_at_safepoint() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
                (!is_in_transition_state() && (info.is_optimized() || static_bound || is_clean()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    if (!safe) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      InlineCacheBuffer::create_transition_stub(this, info.cached_oop()(), info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      set_ic_destination(info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      if (!is_optimized()) set_cached_oop(info.cached_oop()());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
      assert(info.cached_oop() == NULL || info.cached_oop()()->is_klass(), "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
      tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to compiled (rcvr klass) %s: %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
        instruction_address(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
        ((klassOop)info.cached_oop()())->print_value_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
        (safe) ? "" : "via stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // assert(is_call_to_compiled() || is_call_to_interpreted(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
// is_optimized: Compiler has generated an optimized call (i.e., no inline
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
// cache) static_bound: The call can be static bound (i.e, no need to use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// inline cache)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
void CompiledIC::compute_monomorphic_entry(methodHandle method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
                                           KlassHandle receiver_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
                                           bool is_optimized,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
                                           bool static_bound,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
                                           CompiledICInfo& info,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
                                           TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  info._is_optimized = is_optimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  nmethod* method_code = method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  address entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  if (method_code != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    // Call to compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    if (static_bound || is_optimized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
      entry      = method_code->verified_entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
      entry      = method_code->entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    // Call to compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    info._entry      = entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    if (static_bound || is_optimized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
      info._cached_oop = Handle(THREAD, (oop)NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      info._cached_oop = receiver_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    info._to_interpreter = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    // Note: the following problem exists with Compiler1:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    //   - at compile time we may or may not know if the destination is final
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    //   - if we know that the destination is final, we will emit an optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    //     virtual call (no inline cache), and need a methodOop to make a call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    //     to the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    //   - if we do not know if the destination is final, we emit a standard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    //     virtual call, and use CompiledICHolder to call interpreted code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    //     (no static call stub has been generated)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    //     However in that case we will now notice it is static_bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    //     and convert the call into what looks to be an optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    //     virtual call. This causes problems in verifying the IC because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    //     it look vanilla but is optimized. Code in is_call_to_interpreted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    //     is aware of this and weakens its asserts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    info._to_interpreter = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    // static_bound should imply is_optimized -- otherwise we have a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    // performance bug (statically-bindable method is called via
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    // dynamically-dispatched call note: the reverse implication isn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    // necessarily true -- the call may have been optimized based on compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    // analysis (static_bound is only based on "final" etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
#if defined(ASSERT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    // can't check the assert because we don't have the CompiledIC with which to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    // find the address if the call instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    // CodeBlob* cb = find_blob_unsafe(instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    // assert(cb->is_compiled_by_c1() || !static_bound || is_optimized, "static_bound should imply is_optimized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    assert(!static_bound || is_optimized, "static_bound should imply is_optimized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    if (is_optimized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
      // Use stub entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
      info._entry      = method()->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
      info._cached_oop = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
      // Use mkh entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
      oop holder = oopFactory::new_compiledICHolder(method, receiver_klass, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
      info._cached_oop = Handle(THREAD, holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
      info._entry      = method()->get_c2i_unverified_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
inline static RelocIterator parse_ic(CodeBlob* code, address ic_call, oop* &_oop_addr, bool *is_optimized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
   address  first_oop = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
   // Mergers please note: Sun SC5.x CC insists on an lvalue for a reference parameter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
   CodeBlob *code1 = code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
   return virtual_call_Relocation::parse_ic(code1, ic_call, first_oop, _oop_addr, is_optimized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
CompiledIC::CompiledIC(NativeCall* ic_call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  : _ic_call(ic_call),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    _oops(parse_ic(NULL, ic_call->instruction_address(), _oop_addr, &_is_optimized))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
CompiledIC::CompiledIC(Relocation* ic_reloc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  : _ic_call(nativeCall_at(ic_reloc->addr())),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    _oops(parse_ic(ic_reloc->code(), ic_reloc->addr(), _oop_addr, &_is_optimized))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  assert(ic_reloc->type() == relocInfo::virtual_call_type ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
         ic_reloc->type() == relocInfo::opt_virtual_call_type, "wrong reloc. info");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
// ----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
void CompiledStaticCall::set_to_clean() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "mt unsafe call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // Reset call site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  CodeBlob* cb = CodeCache::find_blob_unsafe(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  assert(cb != NULL && cb->is_nmethod(), "must be nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  set_destination_mt_safe(SharedRuntime::get_resolve_static_call_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  // Do not reset stub here:  It is too expensive to call find_stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  // Instead, rely on caller (nmethod::clear_inline_caches) to clear
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // both the call and its stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
bool CompiledStaticCall::is_clean() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  return destination() == SharedRuntime::get_resolve_static_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
bool CompiledStaticCall::is_call_to_compiled() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  return CodeCache::contains(destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
bool CompiledStaticCall::is_call_to_interpreted() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // It is a call to interpreted, if it calls to a stub. Hence, the destination
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // must be in the stub part of the nmethod that contains the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  nmethod* nm = CodeCache::find_nmethod(instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  return nm->stub_contains(destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
void CompiledStaticCall::set_to_interpreted(methodHandle callee, address entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  address stub=find_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  assert(stub!=NULL, "stub not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    tty->print_cr("CompiledStaticCall@" INTPTR_FORMAT ": set_to_interpreted %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
                  instruction_address(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
                  callee->name_and_sig_as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  NativeMovConstReg* method_holder = nativeMovConstReg_at(stub);   // creation also verifies the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  NativeJump*        jump          = nativeJump_at(method_holder->next_instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  assert(method_holder->data()    == 0           || method_holder->data()    == (intptr_t)callee(), "a) MT-unsafe modification of inline cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  assert(jump->jump_destination() == (address)-1 || jump->jump_destination() == entry, "b) MT-unsafe modification of inline cache");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  // Update stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  method_holder->set_data((intptr_t)callee());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  jump->set_jump_destination(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  // Update jump to call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  set_destination_mt_safe(stub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
void CompiledStaticCall::set(const StaticCallInfo& info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "mt unsafe call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  // Updating a cache to the wrong entry can cause bugs that are very hard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // to track down - if cache entry gets invalid - we just clean it. In
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // this way it is always the same code path that is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  // updating and resolving an inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  assert(is_clean(), "do not update a call entry - use clean");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  if (info._to_interpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    // Call to interpreted code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    set_to_interpreted(info.callee(), info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      tty->print_cr("CompiledStaticCall@" INTPTR_FORMAT ": set_to_compiled " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
                    instruction_address(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
                    info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    // Call to compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    assert (CodeCache::contains(info.entry()), "wrong entry point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    set_destination_mt_safe(info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
// Compute settings for a CompiledStaticCall. Since we might have to set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
// the stub when calling to the interpreter, we need to return arguments.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
void CompiledStaticCall::compute_entry(methodHandle m, StaticCallInfo& info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  nmethod* m_code = m->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  info._callee = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  if (m_code != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    info._to_interpreter = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    info._entry  = m_code->verified_entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    // Callee is interpreted code.  In any case entering the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    // puts a converter-frame on the stack to save arguments.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    info._to_interpreter = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    info._entry      = m()->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
void CompiledStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "mt unsafe call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  // Reset stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  address stub = static_stub->addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  assert(stub!=NULL, "stub not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  NativeMovConstReg* method_holder = nativeMovConstReg_at(stub);   // creation also verifies the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  NativeJump*        jump          = nativeJump_at(method_holder->next_instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  method_holder->set_data(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  jump->set_jump_destination((address)-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
address CompiledStaticCall::find_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // Find reloc. information containing this call-site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  RelocIterator iter((nmethod*)NULL, instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  while (iter.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    if (iter.addr() == instruction_address()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
      switch(iter.type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
        case relocInfo::static_call_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
          return iter.static_call_reloc()->static_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
        // We check here for opt_virtual_call_type, since we reuse the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
        // from the CompiledIC implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
        case relocInfo::opt_virtual_call_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
          return iter.opt_virtual_call_reloc()->static_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
        case relocInfo::poll_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
        case relocInfo::poll_return_type: // A safepoint can't overlap a call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
// Non-product mode code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
void CompiledIC::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  // make sure code pattern is actually a call imm32 instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  _ic_call->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  if (os::is_MP()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    _ic_call->verify_alignment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
          || is_optimized() || is_megamorphic(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
void CompiledIC::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  print_compiled_ic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
void CompiledIC::print_compiled_ic() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  tty->print("Inline cache at " INTPTR_FORMAT ", calling %s " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
             instruction_address(), is_call_to_interpreted() ? "interpreted " : "", ic_destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
void CompiledStaticCall::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  tty->print("static call at " INTPTR_FORMAT " -> ", instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  if (is_clean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    tty->print("clean");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  } else if (is_call_to_compiled()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    tty->print("compiled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  } else if (is_call_to_interpreted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    tty->print("interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
void CompiledStaticCall::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  // Verify call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  NativeCall::verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  if (os::is_MP()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    verify_alignment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  // Verify stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  address stub = find_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  assert(stub != NULL, "no stub found for static call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  NativeMovConstReg* method_holder = nativeMovConstReg_at(stub);   // creation also verifies the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  NativeJump*        jump          = nativeJump_at(method_holder->next_instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  // Verify state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
#endif