annotate src/share/vm/code/compiledIC.cpp @ 4970:33df1aeaebbf

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