src/hotspot/share/code/compiledIC.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 58505 c16f3a24a6fc
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
57603
f9d9bed12d1a 8228630: Remove always true parameter to NoSafepointVerifier
coleenp
parents: 54786
diff changeset
     2
 * Copyright (c) 1997, 2019, 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"
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    27
#include "code/codeBehaviours.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    28
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    29
#include "code/compiledIC.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    30
#include "code/icBuffer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    31
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    32
#include "code/vtableStubs.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    33
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    34
#include "interpreter/linkResolver.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    35
#include "memory/metadataFactory.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    36
#include "memory/oopFactory.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 35086
diff changeset
    37
#include "memory/resourceArea.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 53652
diff changeset
    38
#include "memory/universe.hpp"
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 48858
diff changeset
    39
#include "oops/method.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    40
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    41
#include "oops/symbol.hpp"
49361
1956d0ec092a 8199319: Remove handles.inline.hpp include from reflectionUtils.hpp
stefank
parents: 49340
diff changeset
    42
#include "runtime/handles.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    43
#include "runtime/icache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    44
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    45
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    46
#include "utilities/events.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Every time a compiled IC is changed or its type is being accessed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// either the CompiledIC_lock must be set or we must be at a safe point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    52
CompiledICLocker::CompiledICLocker(CompiledMethod* method)
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    53
  : _method(method),
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    54
    _behaviour(CompiledICProtectionBehaviour::current()),
57603
f9d9bed12d1a 8228630: Remove always true parameter to NoSafepointVerifier
coleenp
parents: 54786
diff changeset
    55
    _locked(_behaviour->lock(_method)) {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    56
}
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    57
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    58
CompiledICLocker::~CompiledICLocker() {
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    59
  if (_locked) {
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    60
    _behaviour->unlock(_method);
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    61
  }
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    62
}
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    63
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    64
bool CompiledICLocker::is_safe(CompiledMethod* method) {
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    65
  return CompiledICProtectionBehaviour::current()->is_safe(method);
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    66
}
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    67
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    68
bool CompiledICLocker::is_safe(address code) {
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    69
  CodeBlob* cb = CodeCache::find_blob_unsafe(code);
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    70
  assert(cb != NULL && cb->is_compiled(), "must be compiled");
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    71
  CompiledMethod* cm = cb->as_compiled_method();
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    72
  return CompiledICProtectionBehaviour::current()->is_safe(cm);
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    73
}
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    74
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// Low-level access to an inline cache. Private, since they might not be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// MT-safe to use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    79
void* CompiledIC::cached_value() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    80
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    81
  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
    82
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    83
  if (!is_in_transition_state()) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
    84
    void* data = get_data();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    85
    // 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
    86
    assert(data != NULL || Universe::non_oop_word() == NULL,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    87
           "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
    88
    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
    89
  } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    90
    return InlineCacheBuffer::cached_value_for((CompiledIC *)this);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    91
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    92
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    93
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    94
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    95
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
    96
  assert(entry_point != NULL, "must set legal entry point");
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
    97
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
    98
  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
    99
  assert (cache == NULL || cache != (Metadata*)badOopVal, "invalid metadata");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   100
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   101
  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
   102
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   103
  // 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
   104
  // 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
   105
  // the CompiledIC.
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   106
  if (is_icholder_entry(_call->destination())) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   107
    // 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
   108
    // 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
   109
    // 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
   110
    // 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
   111
    // once the entry point is overwritten.
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   112
    InlineCacheBuffer::queue_for_release((CompiledICHolder*)get_data());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   113
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  if (TraceCompiledIC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    tty->print("  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    print_compiled_ic();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   118
    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
   119
    if (!is_optimized()) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   120
      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
   121
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   122
    if (is_icstub) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   123
      tty->print(" (icstub)");
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
    tty->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   128
  {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   129
    CodeBlob* cb = CodeCache::find_blob_unsafe(_call->instruction_address());
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   130
    assert(cb != NULL && cb->is_compiled(), "must be compiled");
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   131
    _call->set_destination_mt_safe(entry_point);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   132
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   134
  if (is_optimized() || is_icstub) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   135
    // 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
   136
    // 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
   137
    // case could lead to MT safety issues.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   138
    assert(cache == NULL, "must be null");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   139
    return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   140
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   141
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   142
  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
   143
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   144
  set_data((intptr_t)cache);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   145
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   146
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   147
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   148
void CompiledIC::set_ic_destination(ICStub* stub) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   149
  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
   150
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   151
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   152
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
address CompiledIC::ic_destination() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   155
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   156
  if (!is_in_transition_state()) {
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   157
    return _call->destination();
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   158
  } else {
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   159
    return InlineCacheBuffer::ic_destination_for((CompiledIC *)this);
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   160
  }
1
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
bool CompiledIC::is_in_transition_state() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   165
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   166
  return InlineCacheBuffer::contains(_call->destination());;
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
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   170
bool CompiledIC::is_icholder_call() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   171
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   172
  return !_is_optimized && is_icholder_entry(ic_destination());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   173
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   174
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// Returns native address of 'call' instruction in inline-cache. Used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// the InlineCacheBuffer when it needs to find the stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
address CompiledIC::stub_address() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  assert(is_in_transition_state(), "should only be called when we are in a transition state");
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   179
  return _call->destination();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
26912
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   182
// 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
   183
void CompiledIC::clear_ic_stub() {
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   184
  if (is_in_transition_state()) {
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   185
    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
   186
    stub->clear();
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   187
  }
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   188
}
19021f626ad2 8058737: CodeCache::find_blob fails with 'unsafe access to zombie method'
thartmann
parents: 26580
diff changeset
   189
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// High-level access to an inline cache. Guaranteed to be MT-safe.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   193
void CompiledIC::initialize_from_iter(RelocIterator* iter) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   194
  assert(iter->addr() == _call->instruction_address(), "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
   195
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   196
  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
   197
    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
   198
    _is_optimized = false;
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   199
    _value = _call->get_load_instruction(r);
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   200
  } else {
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   201
    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
   202
    _is_optimized = true;
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   203
    _value = NULL;
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   204
  }
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
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   207
CompiledIC::CompiledIC(CompiledMethod* cm, NativeCall* call)
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   208
  : _method(cm)
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   209
{
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   210
  _call = _method->call_wrapper_at((address) call);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   211
  address ic_call = _call->instruction_address();
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   212
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   213
  assert(ic_call != NULL, "ic_call address must be set");
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   214
  assert(cm != NULL, "must pass compiled method");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   215
  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
   216
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   217
  // Search for the ic_call at the given address.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   218
  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
   219
  bool ret = iter.next();
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   220
  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
   221
  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
   222
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   223
  initialize_from_iter(&iter);
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   224
}
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   225
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   226
CompiledIC::CompiledIC(RelocIterator* iter)
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   227
  : _method(iter->code())
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   228
{
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   229
  _call = _method->call_wrapper_at(iter->addr());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   230
  address ic_call = _call->instruction_address();
25486
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   231
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   232
  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
   233
  assert(ic_call != NULL, "ic_call address must be set");
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   234
  assert(nm != NULL, "must pass compiled method");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   235
  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
   236
be44827be5e7 8047362: Add a version of CompiledIC_at that doesn't create a new RelocIterator
stefank
parents: 25359
diff changeset
   237
  initialize_from_iter(iter);
25359
8a19ff205f89 8047326: Consolidate all CompiledIC::CompiledIC implementations and move it to compiledIC.cpp
stefank
parents: 24424
diff changeset
   238
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   240
// This function may fail for two reasons: either due to running out of vtable
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   241
// stubs, or due to running out of IC stubs in an attempted transition to a
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   242
// transitional state. The needs_ic_stub_refill value will be set if the failure
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   243
// was due to running out of IC stubs, in which case the caller will refill IC
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   244
// stubs and retry.
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   245
bool CompiledIC::set_to_megamorphic(CallInfo* call_info, Bytecodes::Code bytecode,
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   246
                                    bool& needs_ic_stub_refill, TRAPS) {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   247
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  assert(!is_optimized(), "cannot set an optimized virtual call to megamorphic");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  assert(is_call_to_compiled() || is_call_to_interpreted(), "going directly to megamorphic?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  address entry;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   252
  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
   253
    assert(bytecode == Bytecodes::_invokeinterface, "");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   254
    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
   255
    entry = VtableStubs::find_itable_stub(itable_index);
48824
e48c4461a8bb 8181503: Can't compile hotspot with c++11
gziemski
parents: 48557
diff changeset
   256
    if (entry == NULL) {
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   257
      return false;
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   258
    }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   259
#ifdef ASSERT
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   260
    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
   261
    assert(index == itable_index, "CallInfo pre-computes this");
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   262
    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
   263
    assert(k->verify_itable_index(itable_index), "sanity check");
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   264
#endif //ASSERT
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   265
    CompiledICHolder* holder = new CompiledICHolder(call_info->resolved_method()->method_holder(),
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49361
diff changeset
   266
                                                    call_info->resolved_klass(), false);
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   267
    holder->claim();
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   268
    if (!InlineCacheBuffer::create_transition_stub(this, holder, entry)) {
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   269
      delete holder;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   270
      needs_ic_stub_refill = true;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   271
      return false;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   272
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  } else {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17094
diff changeset
   274
    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
   275
    // Can be different than selected_method->vtable_index(), due to package-private etc.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    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
   277
    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
   278
    entry = VtableStubs::find_vtable_stub(vtable_index);
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   279
    if (entry == NULL) {
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   280
      return false;
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   281
    }
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   282
    if (!InlineCacheBuffer::create_transition_stub(this, NULL, entry)) {
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   283
      needs_ic_stub_refill = true;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   284
      return false;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   285
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    ResourceMark rm;
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 58505
diff changeset
   290
    assert(call_info->selected_method() != NULL, "Unexpected null selected method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    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
   292
                   p2i(instruction_address()), call_info->selected_method()->print_value_string(), p2i(entry));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // assert(is_megamorphic(), "sanity check");
20072
6da61000acff 7009641: Don't fail VM when CodeCache is full
anoll
parents: 20017
diff changeset
   302
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// true if destination is megamorphic stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
bool CompiledIC::is_megamorphic() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   308
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  assert(!is_optimized(), "an optimized call cannot be megamorphic");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   311
  // Cannot rely on cached_value. It is either an interface or a method.
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49361
diff changeset
   312
  return VtableStubs::entry_point(ic_destination()) != NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
bool CompiledIC::is_call_to_compiled() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   316
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // Use unsafe, since an inline cache might point to a zombie method. However, the zombie
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // method is guaranteed to still exist, since we only remove methods after all inline caches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // has been cleaned up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  CodeBlob* cb = CodeCache::find_blob_unsafe(ic_destination());
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   322
  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
   323
  // Check that the cached_value is a klass for non-optimized monomorphic calls
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // 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
   325
  // 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
   326
  // 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
   327
  // 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
   328
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  CodeBlob* caller = CodeCache::find_blob_unsafe(instruction_address());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32466
diff changeset
   330
  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
   331
  assert( is_c1_or_jvmci_method ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
         !is_monomorphic ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
         is_optimized() ||
32466
915d0c3d25aa 8134493: Cleaning inline caches of unloaded nmethods should be done in sweeper
thartmann
parents: 32401
diff changeset
   334
         !caller->is_alive() ||
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   335
         (cached_metadata() != NULL && cached_metadata()->is_klass()), "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  return is_monomorphic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
bool CompiledIC::is_call_to_interpreted() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   342
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // Call to interpreter if destination is either calling to a stub (if it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // is optimized), or calling to an I2C blob
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  bool is_call_to_interpreted = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  if (!is_optimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    // must use unsafe because the destination can be a zombie (and we're cleaning)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    // and the print_compiled_ic code wants to know if site (in the non-zombie)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    // is to the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    CodeBlob* cb = CodeCache::find_blob_unsafe(ic_destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    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
   352
    assert(!is_call_to_interpreted || (is_icholder_call() && cached_icholder() != NULL), "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    // Check if we are calling into our own codeblob (i.e., to a stub)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    address dest = ic_destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   358
      _call->verify_resolve_call(dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
#endif /* ASSERT */
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   361
    is_call_to_interpreted = _call->is_call_to_interpreted(dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  return is_call_to_interpreted;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   366
bool CompiledIC::set_to_clean(bool in_use) {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   367
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  if (TraceInlineCacheClearing || TraceICs) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   369
    tty->print_cr("IC@" INTPTR_FORMAT ": set to clean", p2i(instruction_address()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   373
  address entry = _call->get_resolve_call_stub(is_optimized());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   375
  // 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
   376
  // we only need to patch the destination
52858
dad45affbdaa 8214257: IC cache not clean after cleaning assertion failure
eosterlund
parents: 52857
diff changeset
   377
  bool safe_transition = _call->is_safe_for_patching() || !in_use || is_optimized() || SafepointSynchronize::is_at_safepoint();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  if (safe_transition) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    // 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
   381
    clear_ic_stub();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   382
    if (is_optimized()) {
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 26912
diff changeset
   383
      set_ic_destination(entry);
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 26912
diff changeset
   384
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   385
      set_ic_destination_and_value(entry, (void*)NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   386
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   387
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    // Unsafe transition - create stub.
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   389
    if (!InlineCacheBuffer::create_transition_stub(this, NULL, entry)) {
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   390
      return false;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   391
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // assert(is_clean(), "sanity check");
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   400
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
bool CompiledIC::is_clean() const {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   404
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  bool is_clean = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  address dest = ic_destination();
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   407
  is_clean = dest == _call->get_resolve_call_stub(is_optimized());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   408
  assert(!is_clean || is_optimized() || cached_value() == NULL, "sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  return is_clean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   412
bool CompiledIC::set_to_monomorphic(CompiledICInfo& info) {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   413
  assert(CompiledICLocker::is_safe(_method), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // Updating a cache to the wrong entry can cause bugs that are very hard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // to track down - if cache entry gets invalid - we just clean it. In
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // this way it is always the same code path that is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // updating and resolving an inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  // The above is no longer true. SharedRuntime::fixup_callers_callsite will change optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // callsites. In addition ic_miss code will update a site to monomorphic if it determines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // that an monomorphic call to the interpreter can now be monomorphic to compiled code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // In both of these cases the only thing being modifed is the jump/call target and these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // transitions are mt_safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  Thread *thread = Thread::current();
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   427
  if (info.to_interpreter() || info.to_aot()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    // Call to interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    if (info.is_optimized() && is_optimized()) {
52858
dad45affbdaa 8214257: IC cache not clean after cleaning assertion failure
eosterlund
parents: 52857
diff changeset
   430
      assert(is_clean(), "unsafe IC path");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
      // the call analysis (callee structure) specifies that the call is optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
      // (either because of CHA or the static target is final)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
      // At code generation time, this call has been emitted as static call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
      // Call via stub
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   435
      assert(info.cached_metadata() != NULL && info.cached_metadata()->is_method(), "sanity check");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   436
      methodHandle method (thread, (Method*)info.cached_metadata());
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   437
      _call->set_to_interpreted(method, info);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   438
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
         ResourceMark rm(thread);
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   441
         tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to %s: %s",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   442
           p2i(instruction_address()),
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   443
           (info.to_aot() ? "aot" : "interpreter"),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
           method->print_value_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      // Call via method-klass-holder
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   448
      CompiledICHolder* holder = info.claim_cached_icholder();
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   449
      if (!InlineCacheBuffer::create_transition_stub(this, holder, info.entry())) {
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   450
        delete holder;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   451
        return false;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   452
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
         ResourceMark rm(thread);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   455
         tty->print_cr ("IC@" INTPTR_FORMAT ": monomorphic to interpreter via icholder ", p2i(instruction_address()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    // Call to compiled code
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   460
    bool static_bound = info.is_optimized() || (info.cached_metadata() == NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    CodeBlob* cb = CodeCache::find_blob_unsafe(info.entry());
48858
e50e326a2bfc 8194990: 3 Null pointer dereference defect groups related to CodeCache::find_blob_unsafe()
dlong
parents: 48824
diff changeset
   463
    assert (cb != NULL && cb->is_compiled(), "must be compiled!");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    // This is MT safe if we come from a clean-cache and go through a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    // non-verified entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    bool safe = SafepointSynchronize::is_at_safepoint() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
                (!is_in_transition_state() && (info.is_optimized() || static_bound || is_clean()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    if (!safe) {
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   472
      if (!InlineCacheBuffer::create_transition_stub(this, info.cached_metadata(), info.entry())) {
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   473
        return false;
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   474
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   476
      if (is_optimized()) {
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33593
diff changeset
   477
        set_ic_destination(info.entry());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   478
      } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   479
        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
   480
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    if (TraceICs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      ResourceMark rm(thread);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   485
      assert(info.cached_metadata() == NULL || info.cached_metadata()->is_klass(), "must be");
53415
698ee6095c76 8217447: Develop flag TraceICs is broken
thartmann
parents: 52858
diff changeset
   486
      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
   487
        p2i(instruction_address()),
53415
698ee6095c76 8217447: Develop flag TraceICs is broken
thartmann
parents: 52858
diff changeset
   488
        (info.cached_metadata() != NULL) ? ((Klass*)info.cached_metadata())->print_value_string() : "NULL",
698ee6095c76 8217447: Develop flag TraceICs is broken
thartmann
parents: 52858
diff changeset
   489
        (safe) ? "" : " via stub");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // We can't check this anymore. With lazy deopt we could have already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  // cleaned this IC entry before we even return. This is possible if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // we ran out of space in the inline cache buffer trying to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // set_next and we safepointed to free up space. This is a benign
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // race because the IC entry was complete when we safepointed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // cleaning it immediately is harmless.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  // assert(is_call_to_compiled() || is_call_to_interpreted(), "sanity check");
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   499
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
42544
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   503
// is_optimized: Compiler has generated an optimized call (i.e. fixed, no inline cache)
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   504
// static_bound: The call can be static bound. If it isn't also optimized, the property
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   505
// wasn't provable at time of compilation. An optimized call will have any necessary
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   506
// null check, while a static_bound won't. A static_bound (but not optimized) must
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   507
// therefore use the unverified entry point.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   508
void CompiledIC::compute_monomorphic_entry(const methodHandle& method,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 42650
diff changeset
   509
                                           Klass* receiver_klass,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
                                           bool is_optimized,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
                                           bool static_bound,
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   512
                                           bool caller_is_nmethod,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
                                           CompiledICInfo& info,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
                                           TRAPS) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   515
  CompiledMethod* method_code = method->code();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   516
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  address entry = NULL;
22223
82e95c562133 8028107: Kitchensink crashed with EAV
kvn
parents: 20072
diff changeset
   518
  if (method_code != NULL && method_code->is_in_use()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   519
    assert(method_code->is_compiled(), "must be compiled");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    // Call to compiled code
42544
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   521
    //
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   522
    // Note: the following problem exists with Compiler1:
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   523
    //   - at compile time we may or may not know if the destination is final
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   524
    //   - if we know that the destination is final (is_optimized), we will emit
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   525
    //     an optimized virtual call (no inline cache), and need a Method* to make
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   526
    //     a call to the interpreter
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   527
    //   - if we don't know if the destination is final, we emit a standard
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   528
    //     virtual call, and use CompiledICHolder to call interpreted code
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   529
    //     (no static call stub has been generated)
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   530
    //   - In the case that we here notice the call is static bound we
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   531
    //     convert the call into what looks to be an optimized virtual call,
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   532
    //     but we must use the unverified entry point (since there will be no
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   533
    //     null check on a call when the target isn't loaded).
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   534
    //     This causes problems when verifying the IC because
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   535
    //     it looks vanilla but is optimized. Code in is_call_to_interpreted
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   536
    //     is aware of this and weakens its asserts.
58de8aaf9365 8160543: C1: Crash in java.lang.String.indexOf in some java.sql tests
neliasso
parents: 38133
diff changeset
   537
    if (is_optimized) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      entry      = method_code->verified_entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      entry      = method_code->entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   543
  bool far_c2a = entry != NULL && caller_is_nmethod && method_code->is_far_code();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   544
  if (entry != NULL && !far_c2a) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   545
    // Call to near compiled code (nmethod or aot).
48001
600868bd3a8c 8169766: c1 + Xcomp reresolving call target every invocation
neliasso
parents: 47216
diff changeset
   546
    info.set_compiled_entry(entry, is_optimized ? NULL : receiver_klass, is_optimized);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    if (is_optimized) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   549
      if (far_c2a) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   550
        // Call to aot code from nmethod.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   551
        info.set_aot_entry(entry, method());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   552
      } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   553
        // Use stub entry
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   554
        info.set_interpreter_entry(method()->get_c2i_entry(), method());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   555
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   557
      // Use icholder entry
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   558
      assert(method_code == NULL || method_code->is_compiled(), "must be compiled");
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 42650
diff changeset
   559
      CompiledICHolder* holder = new CompiledICHolder(method(), receiver_klass);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   560
      info.set_icholder_entry(method()->get_c2i_unverified_entry(), holder);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   563
  assert(info.is_optimized() == is_optimized, "must agree");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   564
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   565
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   566
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   567
bool CompiledIC::is_icholder_entry(address entry) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   568
  CodeBlob* cb = CodeCache::find_blob_unsafe(entry);
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   569
  if (cb != NULL && cb->is_adapter_blob()) {
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   570
    return true;
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   571
  }
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   572
  // itable stubs also use CompiledICHolder
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49361
diff changeset
   573
  if (cb != NULL && cb->is_vtable_blob()) {
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49361
diff changeset
   574
    VtableStub* s = VtableStubs::entry_point(entry);
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49361
diff changeset
   575
    return (s != NULL) && s->is_itable_stub();
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   576
  }
49655
d6893a76c554 8199406: Performance drop with Java JDK 1.8.0_162-b32
poonam
parents: 49361
diff changeset
   577
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 48001
diff changeset
   578
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   581
bool CompiledIC::is_icholder_call_site(virtual_call_Relocation* call_site, const CompiledMethod* cm) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   582
  // This call site might have become stale so inspect it carefully.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   583
  address dest = cm->call_wrapper_at(call_site->addr())->destination();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   584
  return is_icholder_entry(dest);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   585
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   586
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
// ----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   589
bool CompiledStaticCall::set_to_clean(bool in_use) {
50416
ef980b9ac191 8203837: Split nmethod unloading from inline cache cleaning
coleenp
parents: 49655
diff changeset
   590
  // in_use is unused but needed to match template function in CompiledMethod
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   591
  assert(CompiledICLocker::is_safe(instruction_address()), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // Reset call site
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   593
  set_destination_mt_safe(resolve_call_stub());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // Do not reset stub here:  It is too expensive to call find_stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  // Instead, rely on caller (nmethod::clear_inline_caches) to clear
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  // both the call and its stub.
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52384
diff changeset
   598
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
bool CompiledStaticCall::is_clean() const {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   602
  return destination() == resolve_call_stub();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
bool CompiledStaticCall::is_call_to_compiled() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  return CodeCache::contains(destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   609
bool CompiledDirectStaticCall::is_call_to_interpreted() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  // It is a call to interpreted, if it calls to a stub. Hence, the destination
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  // 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
   612
  CompiledMethod* cm = CodeCache::find_compiled(instruction_address());
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   613
  return cm->stub_contains(destination());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   616
bool CompiledDirectStaticCall::is_call_to_far() const {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   617
  // It is a call to aot method, if it calls to a stub. Hence, the destination
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   618
  // must be in the stub part of the nmethod that contains the call
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   619
  CodeBlob* desc = CodeCache::find_blob(instruction_address());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   620
  return desc->as_compiled_method()->stub_contains(destination());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   621
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   622
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   623
void CompiledStaticCall::set_to_compiled(address entry) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   624
  if (TraceICs) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   625
    ResourceMark rm;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   626
    tty->print_cr("%s@" INTPTR_FORMAT ": set_to_compiled " INTPTR_FORMAT,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   627
        name(),
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   628
        p2i(instruction_address()),
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   629
        p2i(entry));
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   630
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   631
  // Call to compiled code
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   632
  assert(CodeCache::contains(entry), "wrong entry point");
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   633
  set_destination_mt_safe(entry);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   634
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   635
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
void CompiledStaticCall::set(const StaticCallInfo& info) {
52384
d6dc479bcdd3 8212681: Refactor IC locking to use a fine grained CompiledICLocker
eosterlund
parents: 51314
diff changeset
   637
  assert(CompiledICLocker::is_safe(instruction_address()), "mt unsafe call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  // Updating a cache to the wrong entry can cause bugs that are very hard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  // to track down - if cache entry gets invalid - we just clean it. In
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  // this way it is always the same code path that is responsible for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  // updating and resolving an inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  assert(is_clean(), "do not update a call entry - use clean");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  if (info._to_interpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    // Call to interpreted code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    set_to_interpreted(info.callee(), info.entry());
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   647
#if INCLUDE_AOT
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   648
  } else if (info._to_aot) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   649
    // Call to far code
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   650
    set_to_far(info.callee(), info.entry());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   651
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  } else {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   653
    set_to_compiled(info.entry());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
// Compute settings for a CompiledStaticCall. Since we might have to set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
// the stub when calling to the interpreter, we need to return arguments.
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   659
void CompiledStaticCall::compute_entry(const methodHandle& m, bool caller_is_nmethod, StaticCallInfo& info) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38035
diff changeset
   660
  CompiledMethod* m_code = m->code();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  info._callee = m;
22223
82e95c562133 8028107: Kitchensink crashed with EAV
kvn
parents: 20072
diff changeset
   662
  if (m_code != NULL && m_code->is_in_use()) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   663
    if (caller_is_nmethod && m_code->is_far_code()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   664
      // Call to far aot code from nmethod.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   665
      info._to_aot = true;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   666
    } else {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   667
      info._to_aot = false;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   668
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    info._to_interpreter = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    info._entry  = m_code->verified_entry_point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    // Callee is interpreted code.  In any case entering the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    // 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
   674
    assert(!m->is_method_handle_intrinsic(), "Compiled code should never call interpreter MH intrinsics");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    info._to_interpreter = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    info._entry      = m()->get_c2i_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   680
address CompiledDirectStaticCall::find_stub_for(address instruction, bool is_aot) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // Find reloc. information containing this call-site
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   682
  RelocIterator iter((nmethod*)NULL, instruction);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  while (iter.next()) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   684
    if (iter.addr() == instruction) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
      switch(iter.type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
        case relocInfo::static_call_type:
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   687
          return iter.static_call_reloc()->static_stub(is_aot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
        // We check here for opt_virtual_call_type, since we reuse the code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
        // from the CompiledIC implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
        case relocInfo::opt_virtual_call_type:
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   691
          return iter.opt_virtual_call_reloc()->static_stub(is_aot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
        case relocInfo::poll_type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
        case relocInfo::poll_return_type: // A safepoint can't overlap a call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
        default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
          ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   702
address CompiledDirectStaticCall::find_stub(bool is_aot) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   703
  return CompiledDirectStaticCall::find_stub_for(instruction_address(), is_aot);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   704
}
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   705
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   706
address CompiledDirectStaticCall::resolve_call_stub() const {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   707
  return SharedRuntime::get_resolve_static_call_stub();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   708
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
// Non-product mode code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
void CompiledIC::verify() {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   715
  _call->verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
          || is_optimized() || is_megamorphic(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
void CompiledIC::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  print_compiled_ic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
void CompiledIC::print_compiled_ic() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11636
diff changeset
   726
  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
   727
             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
   728
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   730
void CompiledDirectStaticCall::print() {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22223
diff changeset
   731
  tty->print("static call at " INTPTR_FORMAT " -> ", p2i(instruction_address()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  if (is_clean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    tty->print("clean");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  } else if (is_call_to_compiled()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    tty->print("compiled");
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   736
  } else if (is_call_to_far()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42544
diff changeset
   737
    tty->print("far");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  } else if (is_call_to_interpreted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    tty->print("interpreted");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
58505
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   744
void CompiledDirectStaticCall::verify_mt_safe(const methodHandle& callee, address entry,
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   745
                                              NativeMovConstReg* method_holder,
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   746
                                              NativeJump*        jump) {
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   747
  // A generated lambda form might be deleted from the Lambdaform
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   748
  // cache in MethodTypeForm.  If a jit compiled lambdaform method
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   749
  // becomes not entrant and the cache access returns null, the new
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   750
  // resolve will lead to a new generated LambdaForm.
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   751
  Method* old_method = reinterpret_cast<Method*>(method_holder->data());
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   752
  assert(old_method == NULL || old_method == callee() ||
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   753
         callee->is_compiled_lambda_form() ||
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   754
         !old_method->method_holder()->is_loader_alive() ||
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   755
         old_method->is_old(),  // may be race patching deoptimized nmethod due to redefinition.
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   756
         "a) MT-unsafe modification of inline cache");
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   757
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   758
  address destination = jump->jump_destination();
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   759
  assert(destination == (address)-1 || destination == entry,
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   760
         "b) MT-unsafe modification of inline cache");
c16f3a24a6fc 8225681: vmTestbase/nsk/jvmti/RedefineClasses/StressRedefine fails due a) MT-unsafe modification of inline cache
coleenp
parents: 57603
diff changeset
   761
}
17094
29c4955396d2 8003853: specify offset of IC load in java_to_interp stub
dlong
parents: 16377
diff changeset
   762
#endif // !PRODUCT