hotspot/src/share/vm/code/icBuffer.cpp
author stefank
Tue, 23 Nov 2010 13:22:55 -0800
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 8107 78e5bd944384
permissions -rw-r--r--
6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1997, 2010, 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: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "code/compiledIC.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "code/icBuffer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "code/scopeDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "oops/methodOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "oops/oop.inline2.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#ifdef TARGET_ARCH_x86
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
# include "assembler_x86.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    43
#ifdef TARGET_ARCH_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
# include "assembler_sparc.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    46
#ifdef TARGET_ARCH_zero
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    47
# include "assembler_zero.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    48
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
DEF_STUB_INTERFACE(ICStub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
StubQueue* InlineCacheBuffer::_buffer    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
ICStub*    InlineCacheBuffer::_next_stub = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
void ICStub::finalize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  if (!is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    CompiledIC *ic = CompiledIC_at(ic_site());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    assert(CodeCache::find_nmethod(ic->instruction_address()) != NULL, "inline cache in non-nmethod?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    assert(this == ICStub_from_destination_address(ic->stub_address()), "wrong owner of ic buffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    ic->set_cached_oop(cached_oop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    ic->set_ic_destination(destination());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
address ICStub::destination() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  return InlineCacheBuffer::ic_buffer_entry_point(code_begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
oop ICStub::cached_oop() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return InlineCacheBuffer::ic_buffer_cached_oop(code_begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void ICStub::set_stub(CompiledIC *ic, oop cached_value, address dest_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // We cannot store a pointer to the 'ic' object, since it is resource allocated. Instead we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // store the location of the inline cache. Then we have enough information recreate the CompiledIC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // object when we need to remove the stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  _ic_site = ic->instruction_address();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Assemble new stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  InlineCacheBuffer::assemble_ic_buffer_code(code_begin(), cached_value, dest_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  assert(destination() == dest_addr,   "can recover destination");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  assert(cached_oop() == cached_value, "can recover destination");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
void ICStub::clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _ic_site = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// anybody calling to this stub will trap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
void ICStub::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
void ICStub::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  tty->print_cr("ICStub: site: " INTPTR_FORMAT, _ic_site);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
//-----------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// Implementation of InlineCacheBuffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void InlineCacheBuffer::init_next_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  ICStub* ic_stub = (ICStub*)buffer()->request_committed (ic_stub_code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  assert (ic_stub != NULL, "no room for a single stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  set_next_stub(ic_stub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
void InlineCacheBuffer::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  if (_buffer != NULL) return; // already initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  _buffer = new StubQueue(new ICStubInterface, 10*K, InlineCacheBuffer_lock, "InlineCacheBuffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  assert (_buffer != NULL, "cannot allocate InlineCacheBuffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  init_next_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
ICStub* InlineCacheBuffer::new_ic_stub() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    ICStub* ic_stub = (ICStub*)buffer()->request_committed(ic_stub_code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    if (ic_stub != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      return ic_stub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // we ran out of inline cache buffer space; must enter safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    // We do this by forcing a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    VM_ForceSafepoint vfs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    VMThread::execute(&vfs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    // We could potential get an async. exception at this point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    // In that case we will rethrow it to ourselvs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      oop exception = PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      Thread::send_async_exception(JavaThread::current()->threadObj(), exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
void InlineCacheBuffer::update_inline_caches() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  if (buffer()->number_of_stubs() > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    if (TraceICBuffer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      tty->print_cr("[updating inline caches with %d stubs]", buffer()->number_of_stubs());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    buffer()->remove_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    init_next_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
bool InlineCacheBuffer::contains(address instruction_address) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  return buffer()->contains(instruction_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
bool InlineCacheBuffer::is_empty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  return buffer()->number_of_stubs() == 1;    // always has sentinel
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
void InlineCacheBuffer_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  InlineCacheBuffer::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
void InlineCacheBuffer::create_transition_stub(CompiledIC *ic, oop cached_oop, address entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  assert(!SafepointSynchronize::is_at_safepoint(), "should not be called during a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  assert (CompiledIC_lock->is_locked(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  assert(cached_oop == NULL || cached_oop->is_perm(), "must belong to perm. space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  if (TraceICBuffer) { tty->print_cr("  create transition stub for " INTPTR_FORMAT, ic->instruction_address()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // If an transition stub is already associate with the inline cache, then we remove the association.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  if (ic->is_in_transition_state()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    ICStub* old_stub = ICStub_from_destination_address(ic->stub_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    old_stub->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // allocate and initialize new "out-of-line" inline-cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  ICStub* ic_stub = get_next_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  ic_stub->set_stub(ic, cached_oop, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Update inline cache in nmethod to point to new "out-of-line" allocated inline cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  ic->set_ic_destination(ic_stub->code_begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  set_next_stub(new_ic_stub()); // can cause safepoint synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
address InlineCacheBuffer::ic_destination_for(CompiledIC *ic) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  ICStub* stub = ICStub_from_destination_address(ic->stub_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  return stub->destination();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
oop InlineCacheBuffer::cached_oop_for(CompiledIC *ic) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  ICStub* stub = ICStub_from_destination_address(ic->stub_address());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  return stub->cached_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
}