hotspot/src/share/vm/code/compiledIC.cpp
author rbackman
Tue, 26 Apr 2016 10:28:51 +0200
changeset 38133 78b95467b9f1
parent 38035 a6105022c551
child 42544 58de8aaf9365
permissions -rw-r--r--
8151956: Support non-continuous CodeBlobs in HotSpot Reviewed-by: iveresov, thartmann, simonis
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 35086
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
1
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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    27
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    28
#include "code/compiledIC.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    29
#include "code/icBuffer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    30
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    31
#include "code/vtableStubs.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    32
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    33
#include "interpreter/linkResolver.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    34
#include "memory/metadataFactory.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    35
#include "memory/oopFactory.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 35086
diff changeset
    36
#include "memory/resourceArea.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    37
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    38
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    39
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    40
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    41
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    42
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    43
#include "utilities/events.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// Every time a compiled IC is changed or its type is being accessed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// either the CompiledIC_lock must be set or we must be at a safe point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// Low-level access to an inline cache. Private, since they might not be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// MT-safe to use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    53
void* CompiledIC::cached_value() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    55
  assert (!is_optimized(), "an optimized virtual call does not have a cached metadata");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    56
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    57
  if (!is_in_transition_state()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    58
    void* data = (void*)_value->data();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    59
    // If we let the metadata value here be initialized to zero...
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    60
    assert(data != NULL || Universe::non_oop_word() == NULL,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    61
           "no raw nulls in CompiledIC metadatas, because of patching races");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    62
    return (data == (void*)Universe::non_oop_word()) ? NULL : data;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    63
  } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    64
    return InlineCacheBuffer::cached_value_for((CompiledIC *)this);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    65
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    66
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    67
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    68
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    69
void CompiledIC::internal_set_ic_destination(address entry_point, bool is_icstub, void* cache, bool is_icholder) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    70
  assert(entry_point != NULL, "must set legal entry point");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    71
  assert(CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    72
  assert (!is_optimized() || cache == NULL, "an optimized virtual call does not have a cached metadata");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    73
  assert (cache == NULL || cache != (Metadata*)badOopVal, "invalid metadata");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    74
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    75
  assert(!is_icholder || is_icholder_entry(entry_point), "must be");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    76
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    77
  // Don't use ic_destination for this test since that forwards
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    78
  // through ICBuffer instead of returning the actual current state of
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    79
  // the CompiledIC.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    80
  if (is_icholder_entry(_ic_call->destination())) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    81
    // When patching for the ICStub case the cached value isn't
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    82
    // overwritten until the ICStub copied into the CompiledIC during
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    83
    // the next safepoint.  Make sure that the CompiledICHolder* is
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    84
    // marked for release at this point since it won't be identifiable
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    85
    // once the entry point is overwritten.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    86
    InlineCacheBuffer::queue_for_release((CompiledICHolder*)_value->data());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    87
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (TraceCompiledIC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    tty->print("  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    print_compiled_ic();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
    92
    tty->print(" changing destination to " INTPTR_FORMAT, p2i(entry_point));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    93
    if (!is_optimized()) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
    94
      tty->print(" changing cached %s to " INTPTR_FORMAT, is_icholder ? "icholder" : "metadata", p2i((address)cache));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    95
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    96
    if (is_icstub) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    97
      tty->print(" (icstub)");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    98
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    99
    tty->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   102
  {
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   103
    MutexLockerEx pl(SafepointSynchronize::is_at_safepoint() ? NULL : Patching_lock, Mutex::_no_safepoint_check_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#ifdef ASSERT
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   105
    CodeBlob* cb = CodeCache::find_blob_unsafe(_ic_call);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   106
    assert(cb != NULL && cb->is_compiled(), "must be compiled");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
#endif
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   108
     _ic_call->set_destination_mt_safe(entry_point);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   109
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   111
  if (is_optimized() || is_icstub) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   112
    // Optimized call sites don't have a cache value and ICStub call
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   113
    // sites only change the entry point.  Changing the value in that
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   114
    // case could lead to MT safety issues.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   115
    assert(cache == NULL, "must be null");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   116
    return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   117
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   118
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   119
  if (cache == NULL)  cache = (void*)Universe::non_oop_word();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   120
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   121
  _value->set_data((intptr_t)cache);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   122
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   123
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   124
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   125
void CompiledIC::set_ic_destination(ICStub* stub) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   126
  internal_set_ic_destination(stub->code_begin(), true, NULL, false);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   127
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   128
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   129
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
address CompiledIC::ic_destination() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
 assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
 if (!is_in_transition_state()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
   return _ic_call->destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
 } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
   return InlineCacheBuffer::ic_destination_for((CompiledIC *)this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
 }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
bool CompiledIC::is_in_transition_state() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  return InlineCacheBuffer::contains(_ic_call->destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   147
bool CompiledIC::is_icholder_call() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   148
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   149
  return !_is_optimized && is_icholder_entry(ic_destination());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   150
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   151
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
// Returns native address of 'call' instruction in inline-cache. Used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
// the InlineCacheBuffer when it needs to find the stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
address CompiledIC::stub_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  assert(is_in_transition_state(), "should only be called when we are in a transition state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  return _ic_call->destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
26912
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   159
// Clears the IC stub if the compiled IC is in transition state
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   160
void CompiledIC::clear_ic_stub() {
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   161
  if (is_in_transition_state()) {
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   162
    ICStub* stub = ICStub_from_destination_address(stub_address());
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   163
    stub->clear();
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   164
  }
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   165
}
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   166
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// High-level access to an inline cache. Guaranteed to be MT-safe.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   171
void CompiledIC::initialize_from_iter(RelocIterator* iter) {
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   172
  assert(iter->addr() == _ic_call->instruction_address(), "must find ic_call");
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   173
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   174
  if (iter->type() == relocInfo::virtual_call_type) {
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   175
    virtual_call_Relocation* r = iter->virtual_call_reloc();
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   176
    _is_optimized = false;
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   177
    _value = nativeMovConstReg_at(r->cached_value());
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   178
  } else {
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   179
    assert(iter->type() == relocInfo::opt_virtual_call_type, "must be a virtual call");
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   180
    _is_optimized = true;
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   181
    _value = NULL;
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   182
  }
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   183
}
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   184
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   185
CompiledIC::CompiledIC(CompiledMethod* cm, NativeCall* call)
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   186
  : _ic_call(call)
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   187
{
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   188
  address ic_call = _ic_call->instruction_address();
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   189
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   190
  assert(ic_call != NULL, "ic_call address must be set");
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   191
  assert(cm != NULL, "must pass compiled method");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   192
  assert(cm->contains(ic_call), "must be in compiled method");
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   193
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   194
  // Search for the ic_call at the given address.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   195
  RelocIterator iter(cm, ic_call, ic_call+1);
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   196
  bool ret = iter.next();
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   197
  assert(ret == true, "relocInfo must exist at this address");
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   198
  assert(iter.addr() == ic_call, "must find ic_call");
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   199
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   200
  initialize_from_iter(&iter);
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   201
}
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   202
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   203
CompiledIC::CompiledIC(RelocIterator* iter)
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   204
  : _ic_call(nativeCall_at(iter->addr()))
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   205
{
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   206
  address ic_call = _ic_call->instruction_address();
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   207
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   208
  CompiledMethod* nm = iter->code();
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   209
  assert(ic_call != NULL, "ic_call address must be set");
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   210
  assert(nm != NULL, "must pass compiled method");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   211
  assert(nm->contains(ic_call), "must be in compiled method");
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   212
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   213
  initialize_from_iter(iter);
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   214
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   216
bool CompiledIC::set_to_megamorphic(CallInfo* call_info, Bytecodes::Code bytecode, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  assert(!is_optimized(), "cannot set an optimized virtual call to megamorphic");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert(is_call_to_compiled() || is_call_to_interpreted(), "going directly to megamorphic?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  address entry;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   222
  if (call_info->call_kind() == CallInfo::itable_call) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   223
    assert(bytecode == Bytecodes::_invokeinterface, "");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   224
    int itable_index = call_info->itable_index();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   225
    entry = VtableStubs::find_itable_stub(itable_index);
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   226
    if (entry == false) {
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   227
      return false;
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   228
    }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   229
#ifdef ASSERT
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   230
    int index = call_info->resolved_method()->itable_index();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   231
    assert(index == itable_index, "CallInfo pre-computes this");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   232
#endif //ASSERT
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   233
    InstanceKlass* k = call_info->resolved_method()->method_holder();
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   234
    assert(k->verify_itable_index(itable_index), "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    InlineCacheBuffer::create_transition_stub(this, k, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  } else {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   237
    assert(call_info->call_kind() == CallInfo::vtable_call, "either itable or vtable");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   238
    // Can be different than selected_method->vtable_index(), due to package-private etc.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    int vtable_index = call_info->vtable_index();
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   240
    assert(call_info->resolved_klass()->verify_vtable_index(vtable_index), "sanity check");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   241
    entry = VtableStubs::find_vtable_stub(vtable_index);
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   242
    if (entry == NULL) {
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   243
      return false;
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   244
    }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   245
    InlineCacheBuffer::create_transition_stub(this, NULL, entry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    tty->print_cr ("IC@" INTPTR_FORMAT ": to megamorphic %s entry: " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   251
                   p2i(instruction_address()), call_info->selected_method()->print_value_string(), p2i(entry));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // assert(is_megamorphic(), "sanity check");
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   261
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// true if destination is megamorphic stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
bool CompiledIC::is_megamorphic() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  assert(CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  assert(!is_optimized(), "an optimized call cannot be megamorphic");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   270
  // Cannot rely on cached_value. It is either an interface or a method.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  return VtableStubs::is_entry_point(ic_destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
bool CompiledIC::is_call_to_compiled() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // Use unsafe, since an inline cache might point to a zombie method. However, the zombie
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // method is guaranteed to still exist, since we only remove methods after all inline caches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // has been cleaned up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  CodeBlob* cb = CodeCache::find_blob_unsafe(ic_destination());
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   281
  bool is_monomorphic = (cb != NULL && cb->is_compiled());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   282
  // Check that the cached_value is a klass for non-optimized monomorphic calls
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // This assertion is invalid for compiler1: a call that does not look optimized (no static stub) can be used
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32466
diff changeset
   284
  // for calling directly to vep without using the inline cache (i.e., cached_value == NULL).
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32466
diff changeset
   285
  // For JVMCI this occurs because CHA is only used to improve inlining so call sites which could be optimized
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32466
diff changeset
   286
  // virtuals because there are no currently loaded subclasses of a type are left as virtual call sites.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  CodeBlob* caller = CodeCache::find_blob_unsafe(instruction_address());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32466
diff changeset
   289
  bool is_c1_or_jvmci_method = caller->is_compiled_by_c1() || caller->is_compiled_by_jvmci();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32466
diff changeset
   290
  assert( is_c1_or_jvmci_method ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
         !is_monomorphic ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
         is_optimized() ||
32466
915d0c3d25aa 8134493: Cleaning inline caches of unloaded nmethods should be done in sweeper
thartmann
parents: 32401
diff changeset
   293
         !caller->is_alive() ||
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   294
         (cached_metadata() != NULL && cached_metadata()->is_klass()), "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  return is_monomorphic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
bool CompiledIC::is_call_to_interpreted() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // Call to interpreter if destination is either calling to a stub (if it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // is optimized), or calling to an I2C blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  bool is_call_to_interpreted = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  if (!is_optimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    // must use unsafe because the destination can be a zombie (and we're cleaning)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    // and the print_compiled_ic code wants to know if site (in the non-zombie)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    // is to the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    CodeBlob* cb = CodeCache::find_blob_unsafe(ic_destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    is_call_to_interpreted = (cb != NULL && cb->is_adapter_blob());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   311
    assert(!is_call_to_interpreted || (is_icholder_call() && cached_icholder() != NULL), "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    // Check if we are calling into our own codeblob (i.e., to a stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    CodeBlob* cb = CodeCache::find_blob(_ic_call->instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    address dest = ic_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      CodeBlob* db = CodeCache::find_blob_unsafe(dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      assert(!db->is_adapter_blob(), "must use stub!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    is_call_to_interpreted = cb->contains(dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  return is_call_to_interpreted;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
32466
915d0c3d25aa 8134493: Cleaning inline caches of unloaded nmethods should be done in sweeper
thartmann
parents: 32401
diff changeset
   328
void CompiledIC::set_to_clean(bool in_use) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  assert(SafepointSynchronize::is_at_safepoint() || CompiledIC_lock->is_locked() , "MT-unsafe call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  if (TraceInlineCacheClearing || TraceICs) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   331
    tty->print_cr("IC@" INTPTR_FORMAT ": set to clean", p2i(instruction_address()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  address entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  if (is_optimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    entry = SharedRuntime::get_resolve_opt_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    entry = SharedRuntime::get_resolve_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   342
  // A zombie transition will always be safe, since the metadata has already been set to NULL, so
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // we only need to patch the destination
32466
915d0c3d25aa 8134493: Cleaning inline caches of unloaded nmethods should be done in sweeper
thartmann
parents: 32401
diff changeset
   344
  bool safe_transition = !in_use || is_optimized() || SafepointSynchronize::is_at_safepoint();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  if (safe_transition) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    // Kill any leftover stub we might have too
26912
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   348
    clear_ic_stub();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   349
    if (is_optimized()) {
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 26912
diff changeset
   350
      set_ic_destination(entry);
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 26912
diff changeset
   351
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   352
      set_ic_destination_and_value(entry, (void*)NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   353
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   354
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    // Unsafe transition - create stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    InlineCacheBuffer::create_transition_stub(this, NULL, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // assert(is_clean(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
bool CompiledIC::is_clean() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  bool is_clean = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  address dest = ic_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  is_clean = dest == SharedRuntime::get_resolve_opt_virtual_call_stub() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
             dest == SharedRuntime::get_resolve_virtual_call_stub();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   374
  assert(!is_clean || is_optimized() || cached_value() == NULL, "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  return is_clean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   379
void CompiledIC::set_to_monomorphic(CompiledICInfo& info) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // Updating a cache to the wrong entry can cause bugs that are very hard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // to track down - if cache entry gets invalid - we just clean it. In
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // this way it is always the same code path that is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // updating and resolving an inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // The above is no longer true. SharedRuntime::fixup_callers_callsite will change optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // callsites. In addition ic_miss code will update a site to monomorphic if it determines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // that an monomorphic call to the interpreter can now be monomorphic to compiled code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // In both of these cases the only thing being modifed is the jump/call target and these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // transitions are mt_safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  Thread *thread = Thread::current();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   394
  if (info.to_interpreter()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    // Call to interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    if (info.is_optimized() && is_optimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
       assert(is_clean(), "unsafe IC path");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
       MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      // the call analysis (callee structure) specifies that the call is optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      // (either because of CHA or the static target is final)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
      // At code generation time, this call has been emitted as static call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
      // Call via stub
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   403
      assert(info.cached_metadata() != NULL && info.cached_metadata()->is_method(), "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
      CompiledStaticCall* csc = compiledStaticCall_at(instruction_address());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   405
      methodHandle method (thread, (Method*)info.cached_metadata());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      csc->set_to_interpreted(method, info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
      if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
         ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
         tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to interpreter: %s",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   410
           p2i(instruction_address()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
           method->print_value_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      // Call via method-klass-holder
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   415
      InlineCacheBuffer::create_transition_stub(this, info.claim_cached_icholder(), info.entry());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
         ResourceMark rm(thread);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   418
         tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to interpreter via icholder ", p2i(instruction_address()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    // Call to compiled code
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   423
    bool static_bound = info.is_optimized() || (info.cached_metadata() == NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    CodeBlob* cb = CodeCache::find_blob_unsafe(info.entry());
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   426
    assert (cb->is_compiled(), "must be compiled!");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    // This is MT safe if we come from a clean-cache and go through a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    // non-verified entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    bool safe = SafepointSynchronize::is_at_safepoint() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
                (!is_in_transition_state() && (info.is_optimized() || static_bound || is_clean()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    if (!safe) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   435
      InlineCacheBuffer::create_transition_stub(this, info.cached_metadata(), info.entry());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   437
      if (is_optimized()) {
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33593
diff changeset
   438
        set_ic_destination(info.entry());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   439
      } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   440
        set_ic_destination_and_value(info.entry(), info.cached_metadata());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   441
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      ResourceMark rm(thread);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   446
      assert(info.cached_metadata() == NULL || info.cached_metadata()->is_klass(), "must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to compiled (rcvr klass) %s: %s",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   448
        p2i(instruction_address()),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   449
        ((Klass*)info.cached_metadata())->print_value_string(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
        (safe) ? "" : "via stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // assert(is_call_to_compiled() || is_call_to_interpreted(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
// is_optimized: Compiler has generated an optimized call (i.e., no inline
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
// cache) static_bound: The call can be static bound (i.e, no need to use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
// inline cache)
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   466
void CompiledIC::compute_monomorphic_entry(const methodHandle& method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
                                           KlassHandle receiver_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
                                           bool is_optimized,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
                                           bool static_bound,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
                                           CompiledICInfo& info,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
                                           TRAPS) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   472
  CompiledMethod* method_code = method->code();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   473
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  address entry = NULL;
22223
82e95c562133 8028107: Kitchensink crashed with EAV
kvn
parents: 20072
diff changeset
   475
  if (method_code != NULL && method_code->is_in_use()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   476
    assert(method_code->is_compiled(), "must be compiled");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    // Call to compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    if (static_bound || is_optimized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      entry      = method_code->verified_entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      entry      = method_code->entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    // Call to compiled code
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   486
    info.set_compiled_entry(entry, (static_bound || is_optimized) ? NULL : receiver_klass(), is_optimized);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    // Note: the following problem exists with Compiler1:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    //   - at compile time we may or may not know if the destination is final
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    //   - if we know that the destination is final, we will emit an optimized
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   491
    //     virtual call (no inline cache), and need a Method* to make a call
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    //     to the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    //   - if we do not know if the destination is final, we emit a standard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    //     virtual call, and use CompiledICHolder to call interpreted code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    //     (no static call stub has been generated)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    //     However in that case we will now notice it is static_bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    //     and convert the call into what looks to be an optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    //     virtual call. This causes problems in verifying the IC because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    //     it look vanilla but is optimized. Code in is_call_to_interpreted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    //     is aware of this and weakens its asserts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    // static_bound should imply is_optimized -- otherwise we have a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
    // performance bug (statically-bindable method is called via
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    // dynamically-dispatched call note: the reverse implication isn't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    // necessarily true -- the call may have been optimized based on compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    // analysis (static_bound is only based on "final" etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
#if defined(ASSERT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    // can't check the assert because we don't have the CompiledIC with which to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    // find the address if the call instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    // CodeBlob* cb = find_blob_unsafe(instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    // assert(cb->is_compiled_by_c1() || !static_bound || is_optimized, "static_bound should imply is_optimized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    assert(!static_bound || is_optimized, "static_bound should imply is_optimized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
#endif // COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    if (is_optimized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
      // Use stub entry
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   522
      info.set_interpreter_entry(method()->get_c2i_entry(), method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   524
      // Use icholder entry
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   525
      assert(method_code == NULL || method_code->is_compiled(), "must be compiled");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   526
      CompiledICHolder* holder = new CompiledICHolder(method(), receiver_klass());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   527
      info.set_icholder_entry(method()->get_c2i_unverified_entry(), holder);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   530
  assert(info.is_optimized() == is_optimized, "must agree");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   531
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   532
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   533
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   534
bool CompiledIC::is_icholder_entry(address entry) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   535
  CodeBlob* cb = CodeCache::find_blob_unsafe(entry);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   536
  return (cb != NULL && cb->is_adapter_blob());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
38035
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   539
// Release the CompiledICHolder* associated with this call site is there is one.
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   540
void CompiledIC::cleanup_call_site(virtual_call_Relocation* call_site) {
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   541
  // This call site might have become stale so inspect it carefully.
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   542
  NativeCall* call = nativeCall_at(call_site->addr());
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   543
  if (is_icholder_entry(call->destination())) {
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   544
    NativeMovConstReg* value = nativeMovConstReg_at(call_site->cached_value());
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   545
    InlineCacheBuffer::queue_for_release((CompiledICHolder*)value->data());
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   546
  }
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   547
}
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   548
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   549
bool CompiledIC::is_icholder_call_site(virtual_call_Relocation* call_site) {
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   550
  // This call site might have become stale so inspect it carefully.
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   551
  NativeCall* call = nativeCall_at(call_site->addr());
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   552
  return is_icholder_entry(call->destination());
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   553
}
a6105022c551 8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents: 37248
diff changeset
   554
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
// ----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
void CompiledStaticCall::set_to_clean() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "mt unsafe call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  // Reset call site
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   560
  MutexLockerEx pl(SafepointSynchronize::is_at_safepoint() ? NULL : Patching_lock, Mutex::_no_safepoint_check_flag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  CodeBlob* cb = CodeCache::find_blob_unsafe(this);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   563
  assert(cb != NULL && cb->is_compiled(), "must be compiled");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  set_destination_mt_safe(SharedRuntime::get_resolve_static_call_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  // Do not reset stub here:  It is too expensive to call find_stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  // Instead, rely on caller (nmethod::clear_inline_caches) to clear
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // both the call and its stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
bool CompiledStaticCall::is_clean() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  return destination() == SharedRuntime::get_resolve_static_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
bool CompiledStaticCall::is_call_to_compiled() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  return CodeCache::contains(destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
bool CompiledStaticCall::is_call_to_interpreted() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  // It is a call to interpreted, if it calls to a stub. Hence, the destination
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // must be in the stub part of the nmethod that contains the call
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   585
  CompiledMethod* cm = CodeCache::find_compiled(instruction_address());
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   586
  return cm->stub_contains(destination());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
void CompiledStaticCall::set(const StaticCallInfo& info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "mt unsafe call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // Updating a cache to the wrong entry can cause bugs that are very hard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  // to track down - if cache entry gets invalid - we just clean it. In
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // this way it is always the same code path that is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // updating and resolving an inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  assert(is_clean(), "do not update a call entry - use clean");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  if (info._to_interpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    // Call to interpreted code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    set_to_interpreted(info.callee(), info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
      ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
      tty->print_cr("CompiledStaticCall@" INTPTR_FORMAT ": set_to_compiled " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   605
                    p2i(instruction_address()),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   606
                    p2i(info.entry()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    // Call to compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    assert (CodeCache::contains(info.entry()), "wrong entry point");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    set_destination_mt_safe(info.entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
// Compute settings for a CompiledStaticCall. Since we might have to set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
// the stub when calling to the interpreter, we need to return arguments.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   617
void CompiledStaticCall::compute_entry(const methodHandle& m, StaticCallInfo& info) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   618
  CompiledMethod* m_code = m->code();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  info._callee = m;
22223
82e95c562133 8028107: Kitchensink crashed with EAV
kvn
parents: 20072
diff changeset
   620
  if (m_code != NULL && m_code->is_in_use()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    info._to_interpreter = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    info._entry  = m_code->verified_entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    // Callee is interpreted code.  In any case entering the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    // puts a converter-frame on the stack to save arguments.
26580
8cca7fbe77b8 8056154: JVM crash with EXCEPTION_ACCESS_VIOLATION when there are many threads running
iveresov
parents: 25492
diff changeset
   626
    assert(!m->is_method_handle_intrinsic(), "Compiled code should never call interpreter MH intrinsics");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    info._to_interpreter = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    info._entry      = m()->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
address CompiledStaticCall::find_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  // Find reloc. information containing this call-site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  RelocIterator iter((nmethod*)NULL, instruction_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  while (iter.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    if (iter.addr() == instruction_address()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
      switch(iter.type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
        case relocInfo::static_call_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
          return iter.static_call_reloc()->static_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
        // We check here for opt_virtual_call_type, since we reuse the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
        // from the CompiledIC implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
        case relocInfo::opt_virtual_call_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
          return iter.opt_virtual_call_reloc()->static_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
        case relocInfo::poll_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
        case relocInfo::poll_return_type: // A safepoint can't overlap a call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
// Non-product mode code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
void CompiledIC::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  // make sure code pattern is actually a call imm32 instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  _ic_call->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  if (os::is_MP()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    _ic_call->verify_alignment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
          || is_optimized() || is_megamorphic(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
void CompiledIC::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  print_compiled_ic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
void CompiledIC::print_compiled_ic() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   675
  tty->print("Inline cache at " INTPTR_FORMAT ", calling %s " INTPTR_FORMAT " cached_value " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   676
             p2i(instruction_address()), is_call_to_interpreted() ? "interpreted " : "", p2i(ic_destination()), p2i(is_optimized() ? NULL : cached_value()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
void CompiledStaticCall::print() {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   680
  tty->print("static call at " INTPTR_FORMAT " -> ", p2i(instruction_address()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  if (is_clean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    tty->print("clean");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  } else if (is_call_to_compiled()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    tty->print("compiled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  } else if (is_call_to_interpreted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    tty->print("interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
17094
29c4955396d2 8003853: specify offset of IC load in java_to_interp stub
dlong
parents: 16377
diff changeset
   691
#endif // !PRODUCT