src/share/vm/code/icBuffer.cpp

Fri, 08 Nov 2013 01:13:11 -0800

author
vlivanov
date
Fri, 08 Nov 2013 01:13:11 -0800
changeset 6096
e2509677809c
parent 4318
cd3d6a6b95d9
child 6680
78bbf4d43a14
permissions
-rw-r--r--

8023037: Race between ciEnv::register_method and nmethod::make_not_entrant_or_zombie
Reviewed-by: kvn, iveresov

duke@435 1 /*
coleenp@4037 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
twisti@4318 26 #include "code/codeCache.hpp"
stefank@2314 27 #include "code/compiledIC.hpp"
stefank@2314 28 #include "code/icBuffer.hpp"
stefank@2314 29 #include "code/nmethod.hpp"
stefank@2314 30 #include "code/scopeDesc.hpp"
stefank@2314 31 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 32 #include "interpreter/interpreter.hpp"
stefank@2314 33 #include "interpreter/linkResolver.hpp"
stefank@2314 34 #include "memory/resourceArea.hpp"
stefank@2314 35 #include "memory/universe.inline.hpp"
coleenp@4037 36 #include "oops/method.hpp"
stefank@2314 37 #include "oops/oop.inline.hpp"
stefank@2314 38 #include "oops/oop.inline2.hpp"
stefank@2314 39 #include "runtime/mutexLocker.hpp"
stefank@2314 40 #include "runtime/stubRoutines.hpp"
duke@435 41
duke@435 42
duke@435 43 DEF_STUB_INTERFACE(ICStub);
duke@435 44
duke@435 45 StubQueue* InlineCacheBuffer::_buffer = NULL;
duke@435 46 ICStub* InlineCacheBuffer::_next_stub = NULL;
duke@435 47
coleenp@4037 48 CompiledICHolder* InlineCacheBuffer::_pending_released = NULL;
coleenp@4037 49 int InlineCacheBuffer::_pending_count = 0;
duke@435 50
duke@435 51 void ICStub::finalize() {
duke@435 52 if (!is_empty()) {
duke@435 53 ResourceMark rm;
coleenp@4037 54 CompiledIC *ic = CompiledIC_at(CodeCache::find_nmethod(ic_site()), ic_site());
duke@435 55 assert(CodeCache::find_nmethod(ic->instruction_address()) != NULL, "inline cache in non-nmethod?");
duke@435 56
duke@435 57 assert(this == ICStub_from_destination_address(ic->stub_address()), "wrong owner of ic buffer");
coleenp@4037 58 ic->set_ic_destination_and_value(destination(), cached_value());
duke@435 59 }
duke@435 60 }
duke@435 61
duke@435 62
duke@435 63 address ICStub::destination() const {
duke@435 64 return InlineCacheBuffer::ic_buffer_entry_point(code_begin());
duke@435 65 }
duke@435 66
coleenp@4037 67 void* ICStub::cached_value() const {
coleenp@4037 68 return InlineCacheBuffer::ic_buffer_cached_value(code_begin());
duke@435 69 }
duke@435 70
duke@435 71
coleenp@4037 72 void ICStub::set_stub(CompiledIC *ic, void* cached_val, address dest_addr) {
duke@435 73 // We cannot store a pointer to the 'ic' object, since it is resource allocated. Instead we
duke@435 74 // store the location of the inline cache. Then we have enough information recreate the CompiledIC
duke@435 75 // object when we need to remove the stub.
duke@435 76 _ic_site = ic->instruction_address();
duke@435 77
duke@435 78 // Assemble new stub
coleenp@4037 79 InlineCacheBuffer::assemble_ic_buffer_code(code_begin(), cached_val, dest_addr);
duke@435 80 assert(destination() == dest_addr, "can recover destination");
coleenp@4037 81 assert(cached_value() == cached_val, "can recover destination");
duke@435 82 }
duke@435 83
duke@435 84
duke@435 85 void ICStub::clear() {
coleenp@4037 86 if (CompiledIC::is_icholder_entry(destination())) {
coleenp@4037 87 InlineCacheBuffer::queue_for_release((CompiledICHolder*)cached_value());
coleenp@4037 88 }
duke@435 89 _ic_site = NULL;
duke@435 90 }
duke@435 91
duke@435 92
duke@435 93 #ifndef PRODUCT
duke@435 94 // anybody calling to this stub will trap
duke@435 95
duke@435 96 void ICStub::verify() {
duke@435 97 }
duke@435 98
duke@435 99 void ICStub::print() {
duke@435 100 tty->print_cr("ICStub: site: " INTPTR_FORMAT, _ic_site);
duke@435 101 }
duke@435 102 #endif
duke@435 103
duke@435 104 //-----------------------------------------------------------------------------------------------
duke@435 105 // Implementation of InlineCacheBuffer
duke@435 106
duke@435 107 void InlineCacheBuffer::init_next_stub() {
duke@435 108 ICStub* ic_stub = (ICStub*)buffer()->request_committed (ic_stub_code_size());
duke@435 109 assert (ic_stub != NULL, "no room for a single stub");
duke@435 110 set_next_stub(ic_stub);
duke@435 111 }
duke@435 112
duke@435 113 void InlineCacheBuffer::initialize() {
duke@435 114 if (_buffer != NULL) return; // already initialized
duke@435 115 _buffer = new StubQueue(new ICStubInterface, 10*K, InlineCacheBuffer_lock, "InlineCacheBuffer");
duke@435 116 assert (_buffer != NULL, "cannot allocate InlineCacheBuffer");
duke@435 117 init_next_stub();
duke@435 118 }
duke@435 119
duke@435 120
duke@435 121 ICStub* InlineCacheBuffer::new_ic_stub() {
duke@435 122 while (true) {
duke@435 123 ICStub* ic_stub = (ICStub*)buffer()->request_committed(ic_stub_code_size());
duke@435 124 if (ic_stub != NULL) {
duke@435 125 return ic_stub;
duke@435 126 }
duke@435 127 // we ran out of inline cache buffer space; must enter safepoint.
duke@435 128 // We do this by forcing a safepoint
duke@435 129 EXCEPTION_MARK;
duke@435 130
duke@435 131 VM_ForceSafepoint vfs;
duke@435 132 VMThread::execute(&vfs);
duke@435 133 // We could potential get an async. exception at this point.
duke@435 134 // In that case we will rethrow it to ourselvs.
duke@435 135 if (HAS_PENDING_EXCEPTION) {
duke@435 136 oop exception = PENDING_EXCEPTION;
duke@435 137 CLEAR_PENDING_EXCEPTION;
duke@435 138 Thread::send_async_exception(JavaThread::current()->threadObj(), exception);
duke@435 139 }
duke@435 140 }
duke@435 141 ShouldNotReachHere();
duke@435 142 return NULL;
duke@435 143 }
duke@435 144
duke@435 145
duke@435 146 void InlineCacheBuffer::update_inline_caches() {
duke@435 147 if (buffer()->number_of_stubs() > 1) {
duke@435 148 if (TraceICBuffer) {
duke@435 149 tty->print_cr("[updating inline caches with %d stubs]", buffer()->number_of_stubs());
duke@435 150 }
duke@435 151 buffer()->remove_all();
duke@435 152 init_next_stub();
duke@435 153 }
coleenp@4037 154 release_pending_icholders();
duke@435 155 }
duke@435 156
duke@435 157
duke@435 158 bool InlineCacheBuffer::contains(address instruction_address) {
duke@435 159 return buffer()->contains(instruction_address);
duke@435 160 }
duke@435 161
duke@435 162
duke@435 163 bool InlineCacheBuffer::is_empty() {
duke@435 164 return buffer()->number_of_stubs() == 1; // always has sentinel
duke@435 165 }
duke@435 166
duke@435 167
duke@435 168 void InlineCacheBuffer_init() {
duke@435 169 InlineCacheBuffer::initialize();
duke@435 170 }
duke@435 171
duke@435 172
coleenp@4037 173 void InlineCacheBuffer::create_transition_stub(CompiledIC *ic, void* cached_value, address entry) {
duke@435 174 assert(!SafepointSynchronize::is_at_safepoint(), "should not be called during a safepoint");
duke@435 175 assert (CompiledIC_lock->is_locked(), "");
coleenp@4037 176 if (TraceICBuffer) {
coleenp@4037 177 tty->print_cr(" create transition stub for " INTPTR_FORMAT " destination " INTPTR_FORMAT " cached value " INTPTR_FORMAT,
coleenp@4037 178 ic->instruction_address(), entry, cached_value);
coleenp@4037 179 }
duke@435 180
duke@435 181 // If an transition stub is already associate with the inline cache, then we remove the association.
duke@435 182 if (ic->is_in_transition_state()) {
duke@435 183 ICStub* old_stub = ICStub_from_destination_address(ic->stub_address());
duke@435 184 old_stub->clear();
duke@435 185 }
duke@435 186
duke@435 187 // allocate and initialize new "out-of-line" inline-cache
duke@435 188 ICStub* ic_stub = get_next_stub();
coleenp@4037 189 ic_stub->set_stub(ic, cached_value, entry);
duke@435 190
duke@435 191 // Update inline cache in nmethod to point to new "out-of-line" allocated inline cache
coleenp@4037 192 ic->set_ic_destination(ic_stub);
duke@435 193
duke@435 194 set_next_stub(new_ic_stub()); // can cause safepoint synchronization
duke@435 195 }
duke@435 196
duke@435 197
duke@435 198 address InlineCacheBuffer::ic_destination_for(CompiledIC *ic) {
duke@435 199 ICStub* stub = ICStub_from_destination_address(ic->stub_address());
duke@435 200 return stub->destination();
duke@435 201 }
duke@435 202
duke@435 203
coleenp@4037 204 void* InlineCacheBuffer::cached_value_for(CompiledIC *ic) {
duke@435 205 ICStub* stub = ICStub_from_destination_address(ic->stub_address());
coleenp@4037 206 return stub->cached_value();
duke@435 207 }
coleenp@4037 208
coleenp@4037 209
coleenp@4037 210 // Free CompiledICHolder*s that are no longer in use
coleenp@4037 211 void InlineCacheBuffer::release_pending_icholders() {
coleenp@4037 212 assert(SafepointSynchronize::is_at_safepoint(), "should only be called during a safepoint");
coleenp@4037 213 CompiledICHolder* holder = _pending_released;
coleenp@4037 214 _pending_released = NULL;
coleenp@4037 215 while (holder != NULL) {
coleenp@4037 216 CompiledICHolder* next = holder->next();
coleenp@4037 217 delete holder;
coleenp@4037 218 holder = next;
coleenp@4037 219 _pending_count--;
coleenp@4037 220 }
coleenp@4037 221 assert(_pending_count == 0, "wrong count");
coleenp@4037 222 }
coleenp@4037 223
coleenp@4037 224 // Enqueue this icholder for release during the next safepoint. It's
coleenp@4037 225 // not safe to free them until them since they might be visible to
coleenp@4037 226 // another thread.
coleenp@4037 227 void InlineCacheBuffer::queue_for_release(CompiledICHolder* icholder) {
coleenp@4037 228 MutexLockerEx mex(InlineCacheBuffer_lock);
coleenp@4037 229 icholder->set_next(_pending_released);
coleenp@4037 230 _pending_released = icholder;
coleenp@4037 231 _pending_count++;
coleenp@4037 232 if (TraceICBuffer) {
coleenp@4037 233 tty->print_cr("enqueueing icholder " INTPTR_FORMAT " to be freed", icholder);
coleenp@4037 234 }
coleenp@4037 235 }

mercurial