annotate src/share/vm/oops/methodOop.cpp @ 579:0fbdb4381b99

6814575: Update copyright year Summary: Update copyright for files that have been modified in 2009, up to 03/09 Reviewed-by: katleman, tbell, ohair
author xdono
date Mon, 09 Mar 2009 13:28:46 -0700
parents 0af8b0718fc9
children e5b0439ef4ae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
579
0fbdb4381b99 6814575: Update copyright year
xdono
parents: 518
diff changeset
2 * Copyright 1997-2009 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_methodOop.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Implementation of methodOopDesc
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 address methodOopDesc::get_i2c_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 assert(_adapter != NULL, "must have");
a61af66fc99e Initial load
duke
parents:
diff changeset
33 return _adapter->get_i2c_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
34 }
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 address methodOopDesc::get_c2i_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 assert(_adapter != NULL, "must have");
a61af66fc99e Initial load
duke
parents:
diff changeset
38 return _adapter->get_c2i_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 address methodOopDesc::get_c2i_unverified_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 assert(_adapter != NULL, "must have");
a61af66fc99e Initial load
duke
parents:
diff changeset
43 return _adapter->get_c2i_unverified_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 char* methodOopDesc::name_and_sig_as_C_string() {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 char* methodOopDesc::name_and_sig_as_C_string(char* buf, int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature(), buf, size);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, symbolOop method_name, symbolOop signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 const char* klass_name = klass->external_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int klass_name_len = (int)strlen(klass_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int method_name_len = method_name->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int len = klass_name_len + 1 + method_name_len + signature->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
59 char* dest = NEW_RESOURCE_ARRAY(char, len + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 strcpy(dest, klass_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 dest[klass_name_len] = '.';
a61af66fc99e Initial load
duke
parents:
diff changeset
62 strcpy(&dest[klass_name_len + 1], method_name->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
63 strcpy(&dest[klass_name_len + 1 + method_name_len], signature->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
64 dest[len] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 return dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, symbolOop method_name, symbolOop signature, char* buf, int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 symbolOop klass_name = klass->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 klass_name->as_klass_external_name(buf, size);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int len = (int)strlen(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 if (len < size - 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 buf[len++] = '.';
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 method_name->as_C_string(&(buf[len]), size - len);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 len = (int)strlen(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 signature->as_C_string(&(buf[len]), size - len);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 return buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int methodOopDesc::fast_exception_handler_bci_for(KlassHandle ex_klass, int throw_bci, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // exception table holds quadruple entries of the form (beg_bci, end_bci, handler_bci, klass_index)
a61af66fc99e Initial load
duke
parents:
diff changeset
87 const int beg_bci_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 const int end_bci_offset = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 const int handler_bci_offset = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 const int klass_index_offset = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 const int entry_size = 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // access exception table
a61af66fc99e Initial load
duke
parents:
diff changeset
93 typeArrayHandle table (THREAD, constMethod()->exception_table());
a61af66fc99e Initial load
duke
parents:
diff changeset
94 int length = table->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 assert(length % entry_size == 0, "exception table format has changed");
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // iterate through all entries sequentially
a61af66fc99e Initial load
duke
parents:
diff changeset
97 constantPoolHandle pool(THREAD, constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
98 for (int i = 0; i < length; i += entry_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 int beg_bci = table->int_at(i + beg_bci_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 int end_bci = table->int_at(i + end_bci_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 assert(beg_bci <= end_bci, "inconsistent exception table");
a61af66fc99e Initial load
duke
parents:
diff changeset
102 if (beg_bci <= throw_bci && throw_bci < end_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // exception handler bci range covers throw_bci => investigate further
a61af66fc99e Initial load
duke
parents:
diff changeset
104 int handler_bci = table->int_at(i + handler_bci_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 int klass_index = table->int_at(i + klass_index_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 if (klass_index == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 return handler_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 } else if (ex_klass.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return handler_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // we know the exception class => get the constraint class
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // this may require loading of the constraint class; if verification
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // fails or some other exception occurs, return handler_bci
a61af66fc99e Initial load
duke
parents:
diff changeset
114 klassOop k = pool->klass_at(klass_index, CHECK_(handler_bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
115 KlassHandle klass = KlassHandle(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 assert(klass.not_null(), "klass not loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (ex_klass->is_subtype_of(klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 return handler_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 methodOop methodOopDesc::method_from_bcp(address bcp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 debug_only(static int count = 0; count++);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 assert(Universe::heap()->is_in_permanent(bcp), "bcp not in perm_gen");
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // TO DO: this may be unsafe in some configurations
a61af66fc99e Initial load
duke
parents:
diff changeset
131 HeapWord* p = Universe::heap()->block_start(bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 assert(Universe::heap()->block_is_obj(p), "must be obj");
a61af66fc99e Initial load
duke
parents:
diff changeset
133 assert(oop(p)->is_constMethod(), "not a method");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 return constMethodOop(p)->method();
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 void methodOopDesc::mask_for(int bci, InterpreterOopMap* mask) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 Thread* myThread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
141 methodHandle h_this(myThread, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
143 bool has_capability = myThread->is_VM_thread() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
144 myThread->is_ConcurrentGC_thread() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
145 myThread->is_GC_task_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 if (!has_capability) {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (!VerifyStack && !VerifyLastFrame) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // verify stack calls this outside VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
150 warning("oopmap should only be accessed by the "
a61af66fc99e Initial load
duke
parents:
diff changeset
151 "VM, GC task or CMS threads (or during debugging)");
a61af66fc99e Initial load
duke
parents:
diff changeset
152 InterpreterOopMap local_mask;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 instanceKlass::cast(method_holder())->mask_for(h_this, bci, &local_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 local_mask.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
158 instanceKlass::cast(method_holder())->mask_for(h_this, bci, mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 int methodOopDesc::bci_from(address bcp) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
a61af66fc99e Initial load
duke
parents:
diff changeset
165 return bcp - code_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // Return (int)bcx if it appears to be a valid BCI.
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // Return bci_from((address)bcx) if it appears to be a valid BCP.
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // Return -1 otherwise.
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // Used by profiling code, when invalid data is a possibility.
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // The caller is responsible for validating the methodOop itself.
a61af66fc99e Initial load
duke
parents:
diff changeset
174 int methodOopDesc::validate_bci_from_bcx(intptr_t bcx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // keep bci as -1 if not a valid bci
a61af66fc99e Initial load
duke
parents:
diff changeset
176 int bci = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (bcx == 0 || (address)bcx == code_base()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // code_size() may return 0 and we allow 0 here
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // the method may be native
a61af66fc99e Initial load
duke
parents:
diff changeset
180 bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 } else if (frame::is_bci(bcx)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (bcx < code_size()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 bci = (int)bcx;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 } else if (contains((address)bcx)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 bci = (address)bcx - code_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // Assert that if we have dodged any asserts, bci is negative.
a61af66fc99e Initial load
duke
parents:
diff changeset
189 assert(bci == -1 || bci == bci_from(bcp_from(bci)), "sane bci if >=0");
a61af66fc99e Initial load
duke
parents:
diff changeset
190 return bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 address methodOopDesc::bcp_from(int bci) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 assert((is_native() && bci == 0) || (!is_native() && 0 <= bci && bci < code_size()), "illegal bci");
a61af66fc99e Initial load
duke
parents:
diff changeset
195 address bcp = code_base() + bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
a61af66fc99e Initial load
duke
parents:
diff changeset
197 return bcp;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 int methodOopDesc::object_size(bool is_native) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // If native, then include pointers for native_function and signature_handler
a61af66fc99e Initial load
duke
parents:
diff changeset
203 int extra_bytes = (is_native) ? 2*sizeof(address*) : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 return align_object_size(header_size() + extra_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 symbolOop methodOopDesc::klass_name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 klassOop k = method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
211 assert(k->is_klass(), "must be klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
212 instanceKlass* ik = (instanceKlass*) k->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return ik->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 void methodOopDesc::set_interpreter_kind() {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 int kind = Interpreter::method_kind(methodOop(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
219 assert(kind != Interpreter::invalid,
a61af66fc99e Initial load
duke
parents:
diff changeset
220 "interpreter entry must be valid");
a61af66fc99e Initial load
duke
parents:
diff changeset
221 set_interpreter_kind(kind);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // Attempt to return method oop to original state. Clear any pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // (to objects outside the shared spaces). We won't be able to predict
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // where they should point in a new JVM. Further initialize some
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // entries now in order allow them to be write protected later.
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void methodOopDesc::remove_unshareable_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 unlink_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
232 set_interpreter_kind();
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 bool methodOopDesc::was_executed_more_than(int n) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Invocation counter is reset when the methodOop is compiled.
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // If the method has compiled code we therefore assume it has
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // be excuted more than n times.
a61af66fc99e Initial load
duke
parents:
diff changeset
240 if (is_accessor() || is_empty_method() || (code() != NULL)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // interpreter doesn't bump invocation counter of trivial methods
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // compiler does not bump invocation counter of compiled methods
a61af66fc99e Initial load
duke
parents:
diff changeset
243 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 } else if (_invocation_counter.carry()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // The carry bit is set when the counter overflows and causes
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // a compilation to occur. We don't know how many times
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // the counter has been reset, so we simply assume it has
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // been executed more than n times.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 return invocation_count() > n;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
256 void methodOopDesc::print_invocation_count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 if (is_static()) tty->print("static ");
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if (is_final()) tty->print("final ");
a61af66fc99e Initial load
duke
parents:
diff changeset
259 if (is_synchronized()) tty->print("synchronized ");
a61af66fc99e Initial load
duke
parents:
diff changeset
260 if (is_native()) tty->print("native ");
a61af66fc99e Initial load
duke
parents:
diff changeset
261 method_holder()->klass_part()->name()->print_symbol_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 tty->print(".");
a61af66fc99e Initial load
duke
parents:
diff changeset
263 name()->print_symbol_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 signature()->print_symbol_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 if (WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // dump the size of the byte codes
a61af66fc99e Initial load
duke
parents:
diff changeset
268 tty->print(" {%d}", code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 tty->print_cr (" interpreter_invocation_count: %8d ", interpreter_invocation_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
273 tty->print_cr (" invocation_counter: %8d ", invocation_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
274 tty->print_cr (" backedge_counter: %8d ", backedge_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
275 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 tty->print_cr (" compiled_invocation_count: %8d ", compiled_invocation_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // Build a methodDataOop object to hold information about this method
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // collected in the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
284 void methodOopDesc::build_interpreter_method_data(methodHandle method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // Grab a lock here to prevent multiple
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // methodDataOops from being created.
a61af66fc99e Initial load
duke
parents:
diff changeset
287 MutexLocker ml(MethodData_lock, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (method->method_data() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 methodDataOop method_data = oopFactory::new_methodData(method, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 method->set_method_data(method_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 if (PrintMethodData && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 tty->print("build_interpreter_method_data for ");
a61af66fc99e Initial load
duke
parents:
diff changeset
294 method->print_name(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // At the end of the run, the MDO, full of data, will be dumped.
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 void methodOopDesc::cleanup_inline_caches() {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // The current system doesn't use inline caches in the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // => nothing to do (keep this method around for future use)
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 void methodOopDesc::compute_size_of_parameters(Thread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 symbolHandle h_signature(thread, signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
309 ArgumentSizeComputer asc(h_signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 set_size_of_parameters(asc.size() + (is_static() ? 0 : 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
314 void methodOopDesc::set_result_index(BasicType type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
315 _result_index = Interpreter::BasicType_as_index(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 BasicType methodOopDesc::result_type() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 ResultTypeFinder rtf(signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
321 return rtf.type();
a61af66fc99e Initial load
duke
parents:
diff changeset
322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 bool methodOopDesc::is_empty_method() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
326 return code_size() == 1
a61af66fc99e Initial load
duke
parents:
diff changeset
327 && *code_base() == Bytecodes::_return;
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 bool methodOopDesc::is_vanilla_constructor() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // Returns true if this method is a vanilla constructor, i.e. an "<init>" "()V" method
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // which only calls the superclass vanilla constructor and possibly does stores of
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // zero constants to local fields:
a61af66fc99e Initial load
duke
parents:
diff changeset
335 //
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // aload_0
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // invokespecial
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // indexbyte1
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // indexbyte2
a61af66fc99e Initial load
duke
parents:
diff changeset
340 //
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // followed by an (optional) sequence of:
a61af66fc99e Initial load
duke
parents:
diff changeset
342 //
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // aload_0
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // aconst_null / iconst_0 / fconst_0 / dconst_0
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // putfield
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // indexbyte1
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // indexbyte2
a61af66fc99e Initial load
duke
parents:
diff changeset
348 //
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // followed by:
a61af66fc99e Initial load
duke
parents:
diff changeset
350 //
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // return
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353 assert(name() == vmSymbols::object_initializer_name(), "Should only be called for default constructors");
a61af66fc99e Initial load
duke
parents:
diff changeset
354 assert(signature() == vmSymbols::void_method_signature(), "Should only be called for default constructors");
a61af66fc99e Initial load
duke
parents:
diff changeset
355 int size = code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // Check if size match
a61af66fc99e Initial load
duke
parents:
diff changeset
357 if (size == 0 || size % 5 != 0) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
358 address cb = code_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
359 int last = size - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 if (cb[0] != Bytecodes::_aload_0 || cb[1] != Bytecodes::_invokespecial || cb[last] != Bytecodes::_return) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // Does not call superclass default constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
362 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Check optional sequence
a61af66fc99e Initial load
duke
parents:
diff changeset
365 for (int i = 4; i < last; i += 5) {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 if (cb[i] != Bytecodes::_aload_0) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
367 if (!Bytecodes::is_zero_const(Bytecodes::cast(cb[i+1]))) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
368 if (cb[i+2] != Bytecodes::_putfield) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
371 }
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 bool methodOopDesc::compute_has_loops_flag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 BytecodeStream bcs(methodOop(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
376 Bytecodes::Code bc;
a61af66fc99e Initial load
duke
parents:
diff changeset
377
a61af66fc99e Initial load
duke
parents:
diff changeset
378 while ((bc = bcs.next()) >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 switch( bc ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
381 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
382 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
383 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
384 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
385 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
386 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
387 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
388 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
389 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
390 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
391 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
392 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
393 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
394 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
395 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
396 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
397 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
398 if( bcs.dest() < bcs.next_bci() ) _access_flags.set_has_loops();
a61af66fc99e Initial load
duke
parents:
diff changeset
399 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
402 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
403 if( bcs.dest_w() < bcs.next_bci() ) _access_flags.set_has_loops();
a61af66fc99e Initial load
duke
parents:
diff changeset
404 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
407 _access_flags.set_loops_flag_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
408 return _access_flags.has_loops();
a61af66fc99e Initial load
duke
parents:
diff changeset
409 }
a61af66fc99e Initial load
duke
parents:
diff changeset
410
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 bool methodOopDesc::is_final_method() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // %%% Should return true for private methods also,
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // since there is no way to override them.
a61af66fc99e Initial load
duke
parents:
diff changeset
415 return is_final() || Klass::cast(method_holder())->is_final();
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 bool methodOopDesc::is_strict_method() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
420 return is_strict();
a61af66fc99e Initial load
duke
parents:
diff changeset
421 }
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 bool methodOopDesc::can_be_statically_bound() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 if (is_final_method()) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 return vtable_index() == nonvirtual_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 bool methodOopDesc::is_accessor() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 if (code_size() != 5) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
432 if (size_of_parameters() != 1) return false;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
433 methodOop m = (methodOop)this; // pass to code_at() to avoid method_from_bcp
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
434 if (Bytecodes::java_code_at(code_base()+0, m) != Bytecodes::_aload_0 ) return false;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
435 if (Bytecodes::java_code_at(code_base()+1, m) != Bytecodes::_getfield) return false;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
436 if (Bytecodes::java_code_at(code_base()+4, m) != Bytecodes::_areturn &&
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
437 Bytecodes::java_code_at(code_base()+4, m) != Bytecodes::_ireturn ) return false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
438 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 bool methodOopDesc::is_initializer() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 return name() == vmSymbols::object_initializer_name() || name() == vmSymbols::class_initializer_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 objArrayHandle methodOopDesc::resolved_checked_exceptions_impl(methodOop this_oop, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
448 int length = this_oop->checked_exceptions_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
449 if (length == 0) { // common case
a61af66fc99e Initial load
duke
parents:
diff changeset
450 return objArrayHandle(THREAD, Universe::the_empty_class_klass_array());
a61af66fc99e Initial load
duke
parents:
diff changeset
451 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
452 methodHandle h_this(THREAD, this_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
453 objArrayOop m_oop = oopFactory::new_objArray(SystemDictionary::class_klass(), length, CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
454 objArrayHandle mirrors (THREAD, m_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
455 for (int i = 0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 CheckedExceptionElement* table = h_this->checked_exceptions_start(); // recompute on each iteration, not gc safe
a61af66fc99e Initial load
duke
parents:
diff changeset
457 klassOop k = h_this->constants()->klass_at(table[i].class_cp_index, CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
458 assert(Klass::cast(k)->is_subclass_of(SystemDictionary::throwable_klass()), "invalid exception class");
a61af66fc99e Initial load
duke
parents:
diff changeset
459 mirrors->obj_at_put(i, Klass::cast(k)->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
460 }
a61af66fc99e Initial load
duke
parents:
diff changeset
461 return mirrors;
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463 };
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 int methodOopDesc::line_number_from_bci(int bci) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 if (bci == SynchronizationEntryBCI) bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
468 assert(bci == 0 || 0 <= bci && bci < code_size(), "illegal bci");
a61af66fc99e Initial load
duke
parents:
diff changeset
469 int best_bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
470 int best_line = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 if (has_linenumber_table()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // The line numbers are a short array of 2-tuples [start_pc, line_number].
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // Not necessarily sorted and not necessarily one-to-one.
a61af66fc99e Initial load
duke
parents:
diff changeset
475 CompressedLineNumberReadStream stream(compressed_linenumber_table());
a61af66fc99e Initial load
duke
parents:
diff changeset
476 while (stream.read_pair()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 if (stream.bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // perfect match
a61af66fc99e Initial load
duke
parents:
diff changeset
479 return stream.line();
a61af66fc99e Initial load
duke
parents:
diff changeset
480 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // update best_bci/line
a61af66fc99e Initial load
duke
parents:
diff changeset
482 if (stream.bci() < bci && stream.bci() >= best_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
483 best_bci = stream.bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
484 best_line = stream.line();
a61af66fc99e Initial load
duke
parents:
diff changeset
485 }
a61af66fc99e Initial load
duke
parents:
diff changeset
486 }
a61af66fc99e Initial load
duke
parents:
diff changeset
487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
489 return best_line;
a61af66fc99e Initial load
duke
parents:
diff changeset
490 }
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 bool methodOopDesc::is_klass_loaded_by_klass_index(int klass_index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 if( _constants->tag_at(klass_index).is_unresolved_klass() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
495 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
496 symbolHandle klass_name(thread, _constants->klass_name_at(klass_index));
a61af66fc99e Initial load
duke
parents:
diff changeset
497 Handle loader(thread, instanceKlass::cast(method_holder())->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
498 Handle prot (thread, Klass::cast(method_holder())->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
499 return SystemDictionary::find(klass_name, loader, prot, thread) != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
500 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
502 }
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505
a61af66fc99e Initial load
duke
parents:
diff changeset
506 bool methodOopDesc::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 int klass_index = _constants->klass_ref_index_at(refinfo_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 if (must_be_resolved) {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // Make sure klass is resolved in constantpool.
a61af66fc99e Initial load
duke
parents:
diff changeset
510 if (constants()->tag_at(klass_index).is_unresolved_klass()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
512 return is_klass_loaded_by_klass_index(klass_index);
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 methodOopDesc::set_native_function(address function, bool post_event_flag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
517 assert(function != NULL, "use clear_native_function to unregister natives");
a61af66fc99e Initial load
duke
parents:
diff changeset
518 address* native_function = native_function_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
519
a61af66fc99e Initial load
duke
parents:
diff changeset
520 // We can see racers trying to place the same native function into place. Once
a61af66fc99e Initial load
duke
parents:
diff changeset
521 // is plenty.
a61af66fc99e Initial load
duke
parents:
diff changeset
522 address current = *native_function;
a61af66fc99e Initial load
duke
parents:
diff changeset
523 if (current == function) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
524 if (post_event_flag && JvmtiExport::should_post_native_method_bind() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
525 function != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 // native_method_throw_unsatisfied_link_error_entry() should only
a61af66fc99e Initial load
duke
parents:
diff changeset
527 // be passed when post_event_flag is false.
a61af66fc99e Initial load
duke
parents:
diff changeset
528 assert(function !=
a61af66fc99e Initial load
duke
parents:
diff changeset
529 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
a61af66fc99e Initial load
duke
parents:
diff changeset
530 "post_event_flag mis-match");
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // post the bind event, and possible change the bind function
a61af66fc99e Initial load
duke
parents:
diff changeset
533 JvmtiExport::post_native_method_bind(this, &function);
a61af66fc99e Initial load
duke
parents:
diff changeset
534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
535 *native_function = function;
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // This function can be called more than once. We must make sure that we always
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // use the latest registered method -> check if a stub already has been generated.
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // If so, we have to make it not_entrant.
a61af66fc99e Initial load
duke
parents:
diff changeset
539 nmethod* nm = code(); // Put it into local variable to guard against concurrent updates
a61af66fc99e Initial load
duke
parents:
diff changeset
540 if (nm != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
541 nm->make_not_entrant();
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
a61af66fc99e Initial load
duke
parents:
diff changeset
546 bool methodOopDesc::has_native_function() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
547 address func = native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
548 return (func != NULL && func != SharedRuntime::native_method_throw_unsatisfied_link_error_entry());
a61af66fc99e Initial load
duke
parents:
diff changeset
549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 void methodOopDesc::clear_native_function() {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 set_native_function(
a61af66fc99e Initial load
duke
parents:
diff changeset
554 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
a61af66fc99e Initial load
duke
parents:
diff changeset
555 !native_bind_event_is_interesting);
a61af66fc99e Initial load
duke
parents:
diff changeset
556 clear_code();
a61af66fc99e Initial load
duke
parents:
diff changeset
557 }
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559
a61af66fc99e Initial load
duke
parents:
diff changeset
560 void methodOopDesc::set_signature_handler(address handler) {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 address* signature_handler = signature_handler_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
562 *signature_handler = handler;
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 bool methodOopDesc::is_not_compilable(int comp_level) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
567 methodDataOop mdo = method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
568 if (mdo != NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
569 && (uint)mdo->decompile_count() > (uint)PerMethodRecompilationCutoff) {
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // Since (uint)-1 is large, -1 really means 'no cutoff'.
a61af66fc99e Initial load
duke
parents:
diff changeset
571 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
572 }
a61af66fc99e Initial load
duke
parents:
diff changeset
573 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
574 if (is_tier1_compile(comp_level)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 if (is_not_tier1_compilable()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
580 return (_invocation_counter.state() == InvocationCounter::wait_for_nothing)
a61af66fc99e Initial load
duke
parents:
diff changeset
581 || (number_of_breakpoints() > 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583
a61af66fc99e Initial load
duke
parents:
diff changeset
584 // call this when compiler finds that this method is not compilable
a61af66fc99e Initial load
duke
parents:
diff changeset
585 void methodOopDesc::set_not_compilable(int comp_level) {
a61af66fc99e Initial load
duke
parents:
diff changeset
586 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
587 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
588 xtty->begin_elem("make_not_compilable thread='%d'", (int) os::current_thread_id());
a61af66fc99e Initial load
duke
parents:
diff changeset
589 xtty->method(methodOop(this));
a61af66fc99e Initial load
duke
parents:
diff changeset
590 xtty->stamp();
a61af66fc99e Initial load
duke
parents:
diff changeset
591 xtty->end_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
593 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
594 if (is_tier1_compile(comp_level)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
595 set_not_tier1_compilable();
a61af66fc99e Initial load
duke
parents:
diff changeset
596 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
598 #endif /* COMPILER2 */
a61af66fc99e Initial load
duke
parents:
diff changeset
599 assert(comp_level == CompLevel_highest_tier, "unexpected compilation level");
a61af66fc99e Initial load
duke
parents:
diff changeset
600 invocation_counter()->set_state(InvocationCounter::wait_for_nothing);
a61af66fc99e Initial load
duke
parents:
diff changeset
601 backedge_counter()->set_state(InvocationCounter::wait_for_nothing);
a61af66fc99e Initial load
duke
parents:
diff changeset
602 }
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604 // Revert to using the interpreter and clear out the nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
605 void methodOopDesc::clear_code() {
a61af66fc99e Initial load
duke
parents:
diff changeset
606
a61af66fc99e Initial load
duke
parents:
diff changeset
607 // this may be NULL if c2i adapters have not been made yet
a61af66fc99e Initial load
duke
parents:
diff changeset
608 // Only should happen at allocate time.
a61af66fc99e Initial load
duke
parents:
diff changeset
609 if (_adapter == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
610 _from_compiled_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
611 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
612 _from_compiled_entry = _adapter->get_c2i_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
614 OrderAccess::storestore();
a61af66fc99e Initial load
duke
parents:
diff changeset
615 _from_interpreted_entry = _i2i_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
616 OrderAccess::storestore();
a61af66fc99e Initial load
duke
parents:
diff changeset
617 _code = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 // Called by class data sharing to remove any entry points (which are not shared)
a61af66fc99e Initial load
duke
parents:
diff changeset
621 void methodOopDesc::unlink_method() {
a61af66fc99e Initial load
duke
parents:
diff changeset
622 _code = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
623 _i2i_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
624 _from_interpreted_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
625 if (is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 *native_function_addr() = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
627 set_signature_handler(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
629 NOT_PRODUCT(set_compiled_invocation_count(0);)
a61af66fc99e Initial load
duke
parents:
diff changeset
630 invocation_counter()->reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
631 backedge_counter()->reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
632 _adapter = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
633 _from_compiled_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 assert(_method_data == NULL, "unexpected method data?");
a61af66fc99e Initial load
duke
parents:
diff changeset
635 set_method_data(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
636 set_interpreter_throwout_count(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
637 set_interpreter_invocation_count(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
638 _highest_tier_compile = CompLevel_none;
a61af66fc99e Initial load
duke
parents:
diff changeset
639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
640
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // Called when the method_holder is getting linked. Setup entrypoints so the method
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // is ready to be called from interpreter, compiler, and vtables.
a61af66fc99e Initial load
duke
parents:
diff changeset
643 void methodOopDesc::link_method(methodHandle h_method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
644 assert(_i2i_entry == NULL, "should only be called once");
a61af66fc99e Initial load
duke
parents:
diff changeset
645 assert(_adapter == NULL, "init'd to NULL" );
a61af66fc99e Initial load
duke
parents:
diff changeset
646 assert( _code == NULL, "nothing compiled yet" );
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 // Setup interpreter entrypoint
a61af66fc99e Initial load
duke
parents:
diff changeset
649 assert(this == h_method(), "wrong h_method()" );
a61af66fc99e Initial load
duke
parents:
diff changeset
650 address entry = Interpreter::entry_for_method(h_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 assert(entry != NULL, "interpreter entry must be non-null");
a61af66fc99e Initial load
duke
parents:
diff changeset
652 // Sets both _i2i_entry and _from_interpreted_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
653 set_interpreter_entry(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
654 if (is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
655 set_native_function(
a61af66fc99e Initial load
duke
parents:
diff changeset
656 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
a61af66fc99e Initial load
duke
parents:
diff changeset
657 !native_bind_event_is_interesting);
a61af66fc99e Initial load
duke
parents:
diff changeset
658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // Setup compiler entrypoint. This is made eagerly, so we do not need
a61af66fc99e Initial load
duke
parents:
diff changeset
661 // special handling of vtables. An alternative is to make adapters more
a61af66fc99e Initial load
duke
parents:
diff changeset
662 // lazily by calling make_adapter() from from_compiled_entry() for the
a61af66fc99e Initial load
duke
parents:
diff changeset
663 // normal calls. For vtable calls life gets more complicated. When a
a61af66fc99e Initial load
duke
parents:
diff changeset
664 // call-site goes mega-morphic we need adapters in all methods which can be
a61af66fc99e Initial load
duke
parents:
diff changeset
665 // called from the vtable. We need adapters on such methods that get loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // later. Ditto for mega-morphic itable calls. If this proves to be a
a61af66fc99e Initial load
duke
parents:
diff changeset
667 // problem we'll make these lazily later.
a61af66fc99e Initial load
duke
parents:
diff changeset
668 (void) make_adapters(h_method, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 // ONLY USE the h_method now as make_adapter may have blocked
a61af66fc99e Initial load
duke
parents:
diff changeset
671
a61af66fc99e Initial load
duke
parents:
diff changeset
672 }
a61af66fc99e Initial load
duke
parents:
diff changeset
673
a61af66fc99e Initial load
duke
parents:
diff changeset
674 address methodOopDesc::make_adapters(methodHandle mh, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // Adapters for compiled code are made eagerly here. They are fairly
a61af66fc99e Initial load
duke
parents:
diff changeset
676 // small (generally < 100 bytes) and quick to make (and cached and shared)
a61af66fc99e Initial load
duke
parents:
diff changeset
677 // so making them eagerly shouldn't be too expensive.
a61af66fc99e Initial load
duke
parents:
diff changeset
678 AdapterHandlerEntry* adapter = AdapterHandlerLibrary::get_adapter(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
679 if (adapter == NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
680 THROW_0(vmSymbols::java_lang_OutOfMemoryError());
a61af66fc99e Initial load
duke
parents:
diff changeset
681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
682
a61af66fc99e Initial load
duke
parents:
diff changeset
683 mh->set_adapter_entry(adapter);
a61af66fc99e Initial load
duke
parents:
diff changeset
684 mh->_from_compiled_entry = adapter->get_c2i_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
685 return adapter->get_c2i_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
686 }
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688 // The verified_code_entry() must be called when a invoke is resolved
a61af66fc99e Initial load
duke
parents:
diff changeset
689 // on this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
690
a61af66fc99e Initial load
duke
parents:
diff changeset
691 // It returns the compiled code entry point, after asserting not null.
a61af66fc99e Initial load
duke
parents:
diff changeset
692 // This function is called after potential safepoints so that nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
693 // or adapter that it points to is still live and valid.
a61af66fc99e Initial load
duke
parents:
diff changeset
694 // This function must not hit a safepoint!
a61af66fc99e Initial load
duke
parents:
diff changeset
695 address methodOopDesc::verified_code_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
696 debug_only(No_Safepoint_Verifier nsv;)
a61af66fc99e Initial load
duke
parents:
diff changeset
697 assert(_from_compiled_entry != NULL, "must be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
698 return _from_compiled_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
699 }
a61af66fc99e Initial load
duke
parents:
diff changeset
700
a61af66fc99e Initial load
duke
parents:
diff changeset
701 // Check that if an nmethod ref exists, it has a backlink to this or no backlink at all
a61af66fc99e Initial load
duke
parents:
diff changeset
702 // (could be racing a deopt).
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // Not inline to avoid circular ref.
a61af66fc99e Initial load
duke
parents:
diff changeset
704 bool methodOopDesc::check_code() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
705 // cached in a register or local. There's a race on the value of the field.
a61af66fc99e Initial load
duke
parents:
diff changeset
706 nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
707 return code == NULL || (code->method() == NULL) || (code->method() == (methodOop)this && !code->is_osr_method());
a61af66fc99e Initial load
duke
parents:
diff changeset
708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 // Install compiled code. Instantly it can execute.
a61af66fc99e Initial load
duke
parents:
diff changeset
711 void methodOopDesc::set_code(methodHandle mh, nmethod *code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
712 assert( code, "use clear_code to remove code" );
a61af66fc99e Initial load
duke
parents:
diff changeset
713 assert( mh->check_code(), "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
714
a61af66fc99e Initial load
duke
parents:
diff changeset
715 guarantee(mh->adapter() != NULL, "Adapter blob must already exist!");
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 // These writes must happen in this order, because the interpreter will
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // directly jump to from_interpreted_entry which jumps to an i2c adapter
a61af66fc99e Initial load
duke
parents:
diff changeset
719 // which jumps to _from_compiled_entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
720 mh->_code = code; // Assign before allowing compiled code to exec
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 int comp_level = code->comp_level();
a61af66fc99e Initial load
duke
parents:
diff changeset
723 // In theory there could be a race here. In practice it is unlikely
a61af66fc99e Initial load
duke
parents:
diff changeset
724 // and not worth worrying about.
a61af66fc99e Initial load
duke
parents:
diff changeset
725 if (comp_level > highest_tier_compile()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
726 set_highest_tier_compile(comp_level);
a61af66fc99e Initial load
duke
parents:
diff changeset
727 }
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 OrderAccess::storestore();
a61af66fc99e Initial load
duke
parents:
diff changeset
730 mh->_from_compiled_entry = code->verified_entry_point();
a61af66fc99e Initial load
duke
parents:
diff changeset
731 OrderAccess::storestore();
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // Instantly compiled code can execute.
a61af66fc99e Initial load
duke
parents:
diff changeset
733 mh->_from_interpreted_entry = mh->get_i2c_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
734
a61af66fc99e Initial load
duke
parents:
diff changeset
735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
736
a61af66fc99e Initial load
duke
parents:
diff changeset
737
a61af66fc99e Initial load
duke
parents:
diff changeset
738 bool methodOopDesc::is_overridden_in(klassOop k) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
739 instanceKlass* ik = instanceKlass::cast(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
740
a61af66fc99e Initial load
duke
parents:
diff changeset
741 if (ik->is_interface()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
742
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // If method is an interface, we skip it - except if it
a61af66fc99e Initial load
duke
parents:
diff changeset
744 // is a miranda method
a61af66fc99e Initial load
duke
parents:
diff changeset
745 if (instanceKlass::cast(method_holder())->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
746 // Check that method is not a miranda method
a61af66fc99e Initial load
duke
parents:
diff changeset
747 if (ik->lookup_method(name(), signature()) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // No implementation exist - so miranda method
a61af66fc99e Initial load
duke
parents:
diff changeset
749 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
750 }
a61af66fc99e Initial load
duke
parents:
diff changeset
751 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
752 }
a61af66fc99e Initial load
duke
parents:
diff changeset
753
a61af66fc99e Initial load
duke
parents:
diff changeset
754 assert(ik->is_subclass_of(method_holder()), "should be subklass");
a61af66fc99e Initial load
duke
parents:
diff changeset
755 assert(ik->vtable() != NULL, "vtable should exist");
a61af66fc99e Initial load
duke
parents:
diff changeset
756 if (vtable_index() == nonvirtual_vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
757 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
758 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
759 methodOop vt_m = ik->method_at_vtable(vtable_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
760 return vt_m != methodOop(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
761 }
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764
48
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
765 // give advice about whether this methodOop should be cached or not
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
766 bool methodOopDesc::should_not_be_cached() const {
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
767 if (is_old()) {
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
768 // This method has been redefined. It is either EMCP or obsolete
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
769 // and we don't want to cache it because that would pin the method
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
770 // down and prevent it from being collectible if and when it
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
771 // finishes executing.
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
772 return true;
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
773 }
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
774
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
775 if (mark()->should_not_be_cached()) {
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
776 // It is either not safe or not a good idea to cache this
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
777 // method at this time because of the state of the embedded
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
778 // markOop. See markOop.cpp for the gory details.
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
779 return true;
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
780 }
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
781
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
782 // caching this method should be just fine
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
783 return false;
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
784 }
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
785
d8b3ef7ee3e5 6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure
dcubed
parents: 0
diff changeset
786
0
a61af66fc99e Initial load
duke
parents:
diff changeset
787 methodHandle methodOopDesc:: clone_with_new_data(methodHandle m, u_char* new_code, int new_code_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
788 u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
789 // Code below does not work for native methods - they should never get rewritten anyway
a61af66fc99e Initial load
duke
parents:
diff changeset
790 assert(!m->is_native(), "cannot rewrite native methods");
a61af66fc99e Initial load
duke
parents:
diff changeset
791 // Allocate new methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
792 AccessFlags flags = m->access_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
793 int checked_exceptions_len = m->checked_exceptions_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
794 int localvariable_len = m->localvariable_table_length();
518
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
795 // Allocate newm_oop with the is_conc_safe parameter set
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
796 // to IsUnsafeConc to indicate that newm_oop is not yet
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
797 // safe for concurrent processing by a GC.
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
798 methodOop newm_oop = oopFactory::new_method(new_code_length,
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
799 flags,
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
800 new_compressed_linenumber_size,
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
801 localvariable_len,
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
802 checked_exceptions_len,
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
803 IsUnsafeConc,
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
804 CHECK_(methodHandle()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
805 methodHandle newm (THREAD, newm_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
806 int new_method_size = newm->method_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
807 // Create a shallow copy of methodOopDesc part, but be careful to preserve the new constMethodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
808 constMethodOop newcm = newm->constMethod();
a61af66fc99e Initial load
duke
parents:
diff changeset
809 int new_const_method_size = newm->constMethod()->object_size();
518
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
810
0
a61af66fc99e Initial load
duke
parents:
diff changeset
811 memcpy(newm(), m(), sizeof(methodOopDesc));
a61af66fc99e Initial load
duke
parents:
diff changeset
812 // Create shallow copy of constMethodOopDesc, but be careful to preserve the methodOop
518
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
813 // is_conc_safe is set to false because that is the value of
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
814 // is_conc_safe initialzied into newcm and the copy should
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
815 // not overwrite that value. During the window during which it is
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
816 // tagged as unsafe, some extra work could be needed during precleaning
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
817 // or concurrent marking but those phases will be correct. Setting and
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
818 // resetting is done in preference to a careful copying into newcm to
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
819 // avoid having to know the precise layout of a constMethodOop.
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
820 m->constMethod()->set_is_conc_safe(false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
821 memcpy(newcm, m->constMethod(), sizeof(constMethodOopDesc));
518
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
822 m->constMethod()->set_is_conc_safe(true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
823 // Reset correct method/const method, method size, and parameter info
a61af66fc99e Initial load
duke
parents:
diff changeset
824 newcm->set_method(newm());
a61af66fc99e Initial load
duke
parents:
diff changeset
825 newm->set_constMethod(newcm);
a61af66fc99e Initial load
duke
parents:
diff changeset
826 assert(newcm->method() == newm(), "check");
a61af66fc99e Initial load
duke
parents:
diff changeset
827 newm->constMethod()->set_code_size(new_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
828 newm->constMethod()->set_constMethod_size(new_const_method_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
829 newm->set_method_size(new_method_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
830 assert(newm->code_size() == new_code_length, "check");
a61af66fc99e Initial load
duke
parents:
diff changeset
831 assert(newm->checked_exceptions_length() == checked_exceptions_len, "check");
a61af66fc99e Initial load
duke
parents:
diff changeset
832 assert(newm->localvariable_table_length() == localvariable_len, "check");
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // Copy new byte codes
a61af66fc99e Initial load
duke
parents:
diff changeset
834 memcpy(newm->code_base(), new_code, new_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
835 // Copy line number table
a61af66fc99e Initial load
duke
parents:
diff changeset
836 if (new_compressed_linenumber_size > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
837 memcpy(newm->compressed_linenumber_table(),
a61af66fc99e Initial load
duke
parents:
diff changeset
838 new_compressed_linenumber_table,
a61af66fc99e Initial load
duke
parents:
diff changeset
839 new_compressed_linenumber_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
840 }
a61af66fc99e Initial load
duke
parents:
diff changeset
841 // Copy checked_exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
842 if (checked_exceptions_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
843 memcpy(newm->checked_exceptions_start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
844 m->checked_exceptions_start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
845 checked_exceptions_len * sizeof(CheckedExceptionElement));
a61af66fc99e Initial load
duke
parents:
diff changeset
846 }
a61af66fc99e Initial load
duke
parents:
diff changeset
847 // Copy local variable number table
a61af66fc99e Initial load
duke
parents:
diff changeset
848 if (localvariable_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 memcpy(newm->localvariable_table_start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
850 m->localvariable_table_start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
851 localvariable_len * sizeof(LocalVariableTableElement));
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
518
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
853
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
854 // Only set is_conc_safe to true when changes to newcm are
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
855 // complete.
0af8b0718fc9 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 196
diff changeset
856 newcm->set_is_conc_safe(true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
857 return newm;
a61af66fc99e Initial load
duke
parents:
diff changeset
858 }
a61af66fc99e Initial load
duke
parents:
diff changeset
859
a61af66fc99e Initial load
duke
parents:
diff changeset
860 vmIntrinsics::ID methodOopDesc::compute_intrinsic_id() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
861 assert(vmIntrinsics::_none == 0, "correct coding of default case");
a61af66fc99e Initial load
duke
parents:
diff changeset
862 const uintptr_t max_cache_uint = right_n_bits((int)(sizeof(_intrinsic_id_cache) * BitsPerByte));
a61af66fc99e Initial load
duke
parents:
diff changeset
863 assert((uintptr_t)vmIntrinsics::ID_LIMIT <= max_cache_uint, "else fix cache size");
a61af66fc99e Initial load
duke
parents:
diff changeset
864 // if loader is not the default loader (i.e., != NULL), we can't know the intrinsics
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // because we are not loading from core libraries
a61af66fc99e Initial load
duke
parents:
diff changeset
866 if (instanceKlass::cast(method_holder())->class_loader() != NULL) return vmIntrinsics::_none;
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868 // see if the klass name is well-known:
a61af66fc99e Initial load
duke
parents:
diff changeset
869 symbolOop klass_name = instanceKlass::cast(method_holder())->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
870 vmSymbols::SID klass_id = vmSymbols::find_sid(klass_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
871 if (klass_id == vmSymbols::NO_SID) return vmIntrinsics::_none;
a61af66fc99e Initial load
duke
parents:
diff changeset
872
a61af66fc99e Initial load
duke
parents:
diff changeset
873 // ditto for method and signature:
a61af66fc99e Initial load
duke
parents:
diff changeset
874 vmSymbols::SID name_id = vmSymbols::find_sid(name());
a61af66fc99e Initial load
duke
parents:
diff changeset
875 if (name_id == vmSymbols::NO_SID) return vmIntrinsics::_none;
a61af66fc99e Initial load
duke
parents:
diff changeset
876 vmSymbols::SID sig_id = vmSymbols::find_sid(signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
877 if (sig_id == vmSymbols::NO_SID) return vmIntrinsics::_none;
a61af66fc99e Initial load
duke
parents:
diff changeset
878 jshort flags = access_flags().as_short();
a61af66fc99e Initial load
duke
parents:
diff changeset
879
a61af66fc99e Initial load
duke
parents:
diff changeset
880 // A few slightly irregular cases:
a61af66fc99e Initial load
duke
parents:
diff changeset
881 switch (klass_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
882 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_StrictMath):
a61af66fc99e Initial load
duke
parents:
diff changeset
883 // Second chance: check in regular Math.
a61af66fc99e Initial load
duke
parents:
diff changeset
884 switch (name_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
885 case vmSymbols::VM_SYMBOL_ENUM_NAME(min_name):
a61af66fc99e Initial load
duke
parents:
diff changeset
886 case vmSymbols::VM_SYMBOL_ENUM_NAME(max_name):
a61af66fc99e Initial load
duke
parents:
diff changeset
887 case vmSymbols::VM_SYMBOL_ENUM_NAME(sqrt_name):
a61af66fc99e Initial load
duke
parents:
diff changeset
888 // pretend it is the corresponding method in the non-strict class:
a61af66fc99e Initial load
duke
parents:
diff changeset
889 klass_id = vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_Math);
a61af66fc99e Initial load
duke
parents:
diff changeset
890 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
891 }
a61af66fc99e Initial load
duke
parents:
diff changeset
892 }
a61af66fc99e Initial load
duke
parents:
diff changeset
893
a61af66fc99e Initial load
duke
parents:
diff changeset
894 // return intrinsic id if any
a61af66fc99e Initial load
duke
parents:
diff changeset
895 return vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
896 }
a61af66fc99e Initial load
duke
parents:
diff changeset
897
a61af66fc99e Initial load
duke
parents:
diff changeset
898
a61af66fc99e Initial load
duke
parents:
diff changeset
899 // These two methods are static since a GC may move the methodOopDesc
a61af66fc99e Initial load
duke
parents:
diff changeset
900 bool methodOopDesc::load_signature_classes(methodHandle m, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
901 bool sig_is_loaded = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
902 Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
903 Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
904 symbolHandle signature(THREAD, m->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
905 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
906 if (ss.is_object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
907 symbolOop sym = ss.as_symbol(CHECK_(false));
a61af66fc99e Initial load
duke
parents:
diff changeset
908 symbolHandle name (THREAD, sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
909 klassOop klass = SystemDictionary::resolve_or_null(name, class_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
910 protection_domain, THREAD);
104
541929da62d2 6624474: Server compiler generates unexpected LinkageError
rasbold
parents: 48
diff changeset
911 // We are loading classes eagerly. If a ClassNotFoundException or
541929da62d2 6624474: Server compiler generates unexpected LinkageError
rasbold
parents: 48
diff changeset
912 // a LinkageError was generated, be sure to ignore it.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
913 if (HAS_PENDING_EXCEPTION) {
104
541929da62d2 6624474: Server compiler generates unexpected LinkageError
rasbold
parents: 48
diff changeset
914 if (PENDING_EXCEPTION->is_a(SystemDictionary::classNotFoundException_klass()) ||
541929da62d2 6624474: Server compiler generates unexpected LinkageError
rasbold
parents: 48
diff changeset
915 PENDING_EXCEPTION->is_a(SystemDictionary::linkageError_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
916 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
917 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
918 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
919 }
a61af66fc99e Initial load
duke
parents:
diff changeset
920 }
a61af66fc99e Initial load
duke
parents:
diff changeset
921 if( klass == NULL) { sig_is_loaded = false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
922 }
a61af66fc99e Initial load
duke
parents:
diff changeset
923 }
a61af66fc99e Initial load
duke
parents:
diff changeset
924 return sig_is_loaded;
a61af66fc99e Initial load
duke
parents:
diff changeset
925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
926
a61af66fc99e Initial load
duke
parents:
diff changeset
927 bool methodOopDesc::has_unloaded_classes_in_signature(methodHandle m, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
928 Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
929 Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
930 symbolHandle signature(THREAD, m->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
931 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
932 if (ss.type() == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
933 symbolHandle name(THREAD, ss.as_symbol_or_null());
a61af66fc99e Initial load
duke
parents:
diff changeset
934 if (name() == NULL) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
935 klassOop klass = SystemDictionary::find(name, class_loader, protection_domain, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
936 if (klass == NULL) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
937 }
a61af66fc99e Initial load
duke
parents:
diff changeset
938 }
a61af66fc99e Initial load
duke
parents:
diff changeset
939 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
941
a61af66fc99e Initial load
duke
parents:
diff changeset
942 // Exposed so field engineers can debug VM
a61af66fc99e Initial load
duke
parents:
diff changeset
943 void methodOopDesc::print_short_name(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
944 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
945 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
946 st->print(" %s::", method_holder()->klass_part()->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
947 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
948 st->print(" %s::", method_holder()->klass_part()->internal_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
949 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
950 name()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
951 if (WizardMode) signature()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
953
a61af66fc99e Initial load
duke
parents:
diff changeset
954
a61af66fc99e Initial load
duke
parents:
diff changeset
955 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
956 static int method_compare(methodOop* a, methodOop* b) {
a61af66fc99e Initial load
duke
parents:
diff changeset
957 return (*a)->name()->fast_compare((*b)->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // Prevent qsort from reordering a previous valid sort by
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // considering the address of the methodOops if two methods
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // would otherwise compare as equal. Required to preserve
a61af66fc99e Initial load
duke
parents:
diff changeset
963 // optimal access order in the shared archive. Slower than
a61af66fc99e Initial load
duke
parents:
diff changeset
964 // method_compare, only used for shared archive creation.
a61af66fc99e Initial load
duke
parents:
diff changeset
965 static int method_compare_idempotent(methodOop* a, methodOop* b) {
a61af66fc99e Initial load
duke
parents:
diff changeset
966 int i = method_compare(a, b);
a61af66fc99e Initial load
duke
parents:
diff changeset
967 if (i != 0) return i;
a61af66fc99e Initial load
duke
parents:
diff changeset
968 return ( a < b ? -1 : (a == b ? 0 : 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
969 }
a61af66fc99e Initial load
duke
parents:
diff changeset
970
a61af66fc99e Initial load
duke
parents:
diff changeset
971 typedef int (*compareFn)(const void*, const void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
972 }
a61af66fc99e Initial load
duke
parents:
diff changeset
973
a61af66fc99e Initial load
duke
parents:
diff changeset
974
a61af66fc99e Initial load
duke
parents:
diff changeset
975 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
a61af66fc99e Initial load
duke
parents:
diff changeset
976 static void reorder_based_on_method_index(objArrayOop methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
977 objArrayOop annotations,
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
978 GrowableArray<oop>* temp_array) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
979 if (annotations == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
980 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
981 }
a61af66fc99e Initial load
duke
parents:
diff changeset
982
a61af66fc99e Initial load
duke
parents:
diff changeset
983 int length = methods->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
984 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
985 // Copy to temp array
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
986 temp_array->clear();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
987 for (i = 0; i < length; i++) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
988 temp_array->append(annotations->obj_at(i));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
989 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
990
a61af66fc99e Initial load
duke
parents:
diff changeset
991 // Copy back using old method indices
a61af66fc99e Initial load
duke
parents:
diff changeset
992 for (i = 0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
993 methodOop m = (methodOop) methods->obj_at(i);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
994 annotations->obj_at_put(i, temp_array->at(m->method_idnum()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
995 }
a61af66fc99e Initial load
duke
parents:
diff changeset
996 }
a61af66fc99e Initial load
duke
parents:
diff changeset
997
a61af66fc99e Initial load
duke
parents:
diff changeset
998
a61af66fc99e Initial load
duke
parents:
diff changeset
999 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 void methodOopDesc::sort_methods(objArrayOop methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 objArrayOop methods_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 objArrayOop methods_parameter_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 objArrayOop methods_default_annotations,
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 bool idempotent) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 int length = methods->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 if (length > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 bool do_annotations = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 if (methods_annotations != NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 methods_parameter_annotations != NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 methods_default_annotations != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 do_annotations = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 if (do_annotations) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 // Remember current method ordering so we can reorder annotations
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 for (int i = 0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 methodOop m = (methodOop) methods->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 m->set_method_idnum(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1020
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // Use a simple bubble sort for small number of methods since
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 // qsort requires a functional pointer call for each comparison.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1023 if (UseCompressedOops || length < 8) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 bool sorted = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 for (int i=length-1; i>0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 for (int j=0; j<i; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 methodOop m1 = (methodOop)methods->obj_at(j);
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 methodOop m2 = (methodOop)methods->obj_at(j+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 if ((uintptr_t)m1->name() > (uintptr_t)m2->name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 methods->obj_at_put(j, m2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 methods->obj_at_put(j+1, m1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 sorted = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 if (sorted) break;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1036 sorted = true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 } else {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1039 // XXX This doesn't work for UseCompressedOops because the compare fn
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1040 // will have to decode the methodOop anyway making it not much faster
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1041 // than above.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 compareFn compare = (compareFn) (idempotent ? method_compare_idempotent : method_compare);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1043 qsort(methods->base(), length, heapOopSize, compare);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1045
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 // Sort annotations if necessary
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 assert(methods_annotations == NULL || methods_annotations->length() == methods->length(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 assert(methods_parameter_annotations == NULL || methods_parameter_annotations->length() == methods->length(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 assert(methods_default_annotations == NULL || methods_default_annotations->length() == methods->length(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 if (do_annotations) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1051 ResourceMark rm;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 // Allocate temporary storage
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 104
diff changeset
1053 GrowableArray<oop>* temp_array = new GrowableArray<oop>(length);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 reorder_based_on_method_index(methods, methods_annotations, temp_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 reorder_based_on_method_index(methods, methods_parameter_annotations, temp_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 reorder_based_on_method_index(methods, methods_default_annotations, temp_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1058
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 // Reset method ordering
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 for (int i = 0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 methodOop m = (methodOop) methods->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 m->set_method_idnum(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1066
a61af66fc99e Initial load
duke
parents:
diff changeset
1067
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 //-----------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 // Non-product code
a61af66fc99e Initial load
duke
parents:
diff changeset
1070
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 class SignatureTypePrinter : public SignatureTypeNames {
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 outputStream* _st;
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 bool _use_separator;
a61af66fc99e Initial load
duke
parents:
diff changeset
1076
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 void type_name(const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 if (_use_separator) _st->print(", ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 _st->print(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 _use_separator = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1082
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 SignatureTypePrinter(symbolHandle signature, outputStream* st) : SignatureTypeNames(signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 _st = st;
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 _use_separator = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1088
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 void print_parameters() { _use_separator = false; iterate_parameters(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 void print_returntype() { _use_separator = false; iterate_returntype(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1092
a61af66fc99e Initial load
duke
parents:
diff changeset
1093
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 void methodOopDesc::print_name(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 ResourceMark rm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 SignatureTypePrinter sig(signature(), st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 st->print("%s ", is_static() ? "static" : "virtual");
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 sig.print_returntype();
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 st->print(" %s.", method_holder()->klass_part()->internal_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 name()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 st->print("(");
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 sig.print_parameters();
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 st->print(")");
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1106
a61af66fc99e Initial load
duke
parents:
diff changeset
1107
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 void methodOopDesc::print_codes_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 print_codes_on(0, code_size(), st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1111
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 void methodOopDesc::print_codes_on(int from, int to, outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 ResourceMark rm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 methodHandle mh (thread, (methodOop)this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 BytecodeStream s(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 s.set_interval(from, to);
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 BytecodeTracer::set_closure(BytecodeTracer::std_closure());
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 while (s.next() >= 0) BytecodeTracer::trace(mh, s.bcp(), st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 #endif // not PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1122
a61af66fc99e Initial load
duke
parents:
diff changeset
1123
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 // Simple compression of line number tables. We use a regular compressed stream, except that we compress deltas
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 // between (bci,line) pairs since they are smaller. If (bci delta, line delta) fits in (5-bit unsigned, 3-bit unsigned)
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 // we save it as one byte, otherwise we write a 0xFF escape character and use regular compression. 0x0 is used
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 // as end-of-stream terminator.
a61af66fc99e Initial load
duke
parents:
diff changeset
1128
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 void CompressedLineNumberWriteStream::write_pair_regular(int bci_delta, int line_delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 // bci and line number does not compress into single byte.
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 // Write out escape character and use regular compression for bci and line number.
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 write_byte((jubyte)0xFF);
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 write_signed_int(bci_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 write_signed_int(line_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1136
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 // See comment in methodOop.hpp which explains why this exists.
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 #if defined(_M_AMD64) && MSC_VER >= 1400
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 #pragma optimize("", off)
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 void CompressedLineNumberWriteStream::write_pair(int bci, int line) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 write_pair_inline(bci, line);
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 #pragma optimize("", on)
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1145
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 CompressedLineNumberReadStream::CompressedLineNumberReadStream(u_char* buffer) : CompressedReadStream(buffer) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 _bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 _line = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
a61af66fc99e Initial load
duke
parents:
diff changeset
1151
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 bool CompressedLineNumberReadStream::read_pair() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 jubyte next = read_byte();
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // Check for terminator
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 if (next == 0) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 if (next == 0xFF) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 // Escape character, regular compression used
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 _bci += read_signed_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 _line += read_signed_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 // Single byte compression used
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 _bci += next >> 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 _line += next & 0x7;
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1167
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 Bytecodes::Code methodOopDesc::orig_bytecode_at(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 for (; bp != NULL; bp = bp->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 if (bp->match(this, bci)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 return bp->orig_bytecode();
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 return Bytecodes::_shouldnotreachhere;
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1179
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 void methodOopDesc::set_orig_bytecode_at(int bci, Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 assert(code != Bytecodes::_breakpoint, "cannot patch breakpoints this way");
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 for (; bp != NULL; bp = bp->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 if (bp->match(this, bci)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 bp->set_orig_bytecode(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 // and continue, in case there is more than one
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1190
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 void methodOopDesc::set_breakpoint(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 instanceKlass* ik = instanceKlass::cast(method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 BreakpointInfo *bp = new BreakpointInfo(this, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 bp->set_next(ik->breakpoints());
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 ik->set_breakpoints(bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 // do this last:
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 bp->set(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1199
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 static void clear_matches(methodOop m, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 instanceKlass* ik = instanceKlass::cast(m->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 BreakpointInfo* prev_bp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 BreakpointInfo* next_bp;
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 for (BreakpointInfo* bp = ik->breakpoints(); bp != NULL; bp = next_bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 next_bp = bp->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 // bci value of -1 is used to delete all breakpoints in method m (ex: clear_all_breakpoint).
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 if (bci >= 0 ? bp->match(m, bci) : bp->match(m)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 // do this first:
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 bp->clear(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 // unhook it
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 if (prev_bp != NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 prev_bp->set_next(next_bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 ik->set_breakpoints(next_bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 delete bp;
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 // When class is redefined JVMTI sets breakpoint in all versions of EMCP methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 // at same location. So we have multiple matching (method_index and bci)
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 // BreakpointInfo nodes in BreakpointInfo list. We should just delete one
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 // breakpoint for clear_breakpoint request and keep all other method versions
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 // BreakpointInfo for future clear_breakpoint request.
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 // bcivalue of -1 is used to clear all breakpoints (see clear_all_breakpoints)
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 // which is being called when class is unloaded. We delete all the Breakpoint
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 // information for all versions of method. We may not correctly restore the original
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 // bytecode in all method versions, but that is ok. Because the class is being unloaded
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 // so these methods won't be used anymore.
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 if (bci >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 // This one is a keeper.
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 prev_bp = bp;
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1235
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 void methodOopDesc::clear_breakpoint(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 assert(bci >= 0, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 clear_matches(this, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 void methodOopDesc::clear_all_breakpoints() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 clear_matches(this, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1244
a61af66fc99e Initial load
duke
parents:
diff changeset
1245
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 BreakpointInfo::BreakpointInfo(methodOop m, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 _bci = bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 _name_index = m->name_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 _signature_index = m->signature_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 _orig_bytecode = (Bytecodes::Code) *m->bcp_from(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 if (_orig_bytecode == Bytecodes::_breakpoint)
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 _orig_bytecode = m->orig_bytecode_at(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1255
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 void BreakpointInfo::set(methodOop method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 Bytecodes::Code code = (Bytecodes::Code) *method->bcp_from(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 if (code == Bytecodes::_breakpoint)
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 code = method->orig_bytecode_at(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 assert(orig_bytecode() == code, "original bytecode must be the same");
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 *method->bcp_from(_bci) = Bytecodes::_breakpoint;
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 method->incr_number_of_breakpoints();
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 SystemDictionary::notice_modification();
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 // Deoptimize all dependents on this method
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 Universe::flush_dependents_on_method(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1276
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 void BreakpointInfo::clear(methodOop method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 *method->bcp_from(_bci) = orig_bytecode();
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 assert(method->number_of_breakpoints() > 0, "must not go negative");
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 method->decr_number_of_breakpoints();
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 }