annotate src/share/vm/ci/ciMethodData.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 48a3fa21394b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.
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/_ciMethodData.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ciMethodData
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // ciMethodData::ciMethodData
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ciMethodData::ciMethodData(methodDataHandle h_md) : ciObject(h_md) {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 assert(h_md() != NULL, "no null method data");
a61af66fc99e Initial load
duke
parents:
diff changeset
35 Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
36 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 _data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 _extra_data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _current_mileage = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _state = empty_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _saw_free_extra_data = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Set an initial hint. Don't use set_hint_di() because
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // first_di() may be out of bounds if data_size is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
44 _hint_di = first_di();
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // ciMethodData::ciMethodData
a61af66fc99e Initial load
duke
parents:
diff changeset
49 //
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // No methodDataOop.
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ciMethodData::ciMethodData() : ciObject() {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
53 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 _data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 _extra_data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _current_mileage = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _state = empty_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _saw_free_extra_data = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Set an initial hint. Don't use set_hint_di() because
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // first_di() may be out of bounds if data_size is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _hint_di = first_di();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 void ciMethodData::load_data() {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 methodDataOop mdo = get_methodDataOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
66 if (mdo == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // To do: don't copy the data if it is not "ripe" -- require a minimum #
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // of invocations.
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // Snapshot the data -- actually, take an approximate snapshot of
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // the data. Any concurrently executing threads may be changing the
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // data as we copy it.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 int skip_header = oopDesc::header_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 Copy::disjoint_words((HeapWord*) mdo + skip_header,
a61af66fc99e Initial load
duke
parents:
diff changeset
76 (HeapWord*) &_orig + skip_header,
a61af66fc99e Initial load
duke
parents:
diff changeset
77 sizeof(_orig) / HeapWordSize - skip_header);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 DEBUG_ONLY(*_orig.adr_method() = NULL); // no dangling oops, please
a61af66fc99e Initial load
duke
parents:
diff changeset
79 Arena* arena = CURRENT_ENV->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _data_size = mdo->data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _extra_data_size = mdo->extra_data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
82 int total_size = _data_size + _extra_data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _data = (intptr_t *) arena->Amalloc(total_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 Copy::disjoint_words((HeapWord*) mdo->data_base(), (HeapWord*) _data, total_size / HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Traverse the profile data, translating any oops into their
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // ci equivalents.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 ciProfileData* ci_data = first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 ProfileData* data = mdo->first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 while (is_valid(ci_data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ci_data->translate_from(data);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 ci_data = next_data(ci_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 data = mdo->next_data(data);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Note: Extra data are all BitData, and do not need translation.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 _current_mileage = methodDataOopDesc::mileage_of(mdo->method());
a61af66fc99e Initial load
duke
parents:
diff changeset
98 _state = mdo->is_mature()? mature_state: immature_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _eflags = mdo->eflags();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _arg_local = mdo->arg_local();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 _arg_stack = mdo->arg_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 _arg_returned = mdo->arg_returned();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void ciReceiverTypeData::translate_receiver_data_from(ProfileData* data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 klassOop k = data->as_ReceiverTypeData()->receiver(row);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 if (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 ciKlass* klass = CURRENT_ENV->get_object(k)->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
111 set_receiver(row, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Get the data at an arbitrary (sort of) data index.
a61af66fc99e Initial load
duke
parents:
diff changeset
118 ciProfileData* ciMethodData::data_at(int data_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 if (out_of_bounds(data_index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 DataLayout* data_layout = data_layout_at(data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 switch (data_layout->tag()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 case DataLayout::no_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
126 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
127 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 case DataLayout::bit_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
130 return new ciBitData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 case DataLayout::counter_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return new ciCounterData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 case DataLayout::jump_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
134 return new ciJumpData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 case DataLayout::receiver_type_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
136 return new ciReceiverTypeData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 case DataLayout::virtual_call_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
138 return new ciVirtualCallData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 case DataLayout::ret_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return new ciRetData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 case DataLayout::branch_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
142 return new ciBranchData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 case DataLayout::multi_branch_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
144 return new ciMultiBranchData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 };
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Iteration over data.
a61af66fc99e Initial load
duke
parents:
diff changeset
149 ciProfileData* ciMethodData::next_data(ciProfileData* current) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 int current_index = dp_to_di(current->dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
151 int next_index = current_index + current->size_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 ciProfileData* next = data_at(next_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return next;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Translate a bci to its corresponding data, or NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 ciProfileData* ciMethodData::bci_to_data(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 ciProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if (data->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
162 return data;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 } else if (data->bci() > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // bci_to_extra_data(bci) ...
a61af66fc99e Initial load
duke
parents:
diff changeset
168 DataLayout* dp = data_layout_at(data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
169 DataLayout* end = data_layout_at(data_size() + extra_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
170 for (; dp < end; dp = methodDataOopDesc::next_extra(dp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 if (dp->tag() == DataLayout::no_tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 _saw_free_extra_data = true; // observed an empty slot (common case)
a61af66fc99e Initial load
duke
parents:
diff changeset
173 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 if (dp->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 assert(dp->tag() == DataLayout::bit_data_tag, "sane");
a61af66fc99e Initial load
duke
parents:
diff changeset
177 return new ciBitData(dp);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // Conservatively decode the trap_state of a ciProfileData.
a61af66fc99e Initial load
duke
parents:
diff changeset
184 int ciMethodData::has_trap_at(ciProfileData* data, int reason) {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 typedef Deoptimization::DeoptReason DR_t;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 int per_bc_reason
a61af66fc99e Initial load
duke
parents:
diff changeset
187 = Deoptimization::reason_recorded_per_bytecode_if_any((DR_t) reason);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (trap_count(reason) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Impossible for this trap to have occurred, regardless of trap_state.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // Note: This happens if the MDO is empty.
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 } else if (per_bc_reason == Deoptimization::Reason_none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // We cannot conclude anything; a trap happened somewhere, maybe here.
a61af66fc99e Initial load
duke
parents:
diff changeset
194 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 } else if (data == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // No profile here, not even an extra_data record allocated on the fly.
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // If there are empty extra_data records, and there had been a trap,
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // there would have been a non-null data pointer. If there are no
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // free extra_data records, we must return a conservative -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
200 if (_saw_free_extra_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
201 return 0; // Q.E.D.
a61af66fc99e Initial load
duke
parents:
diff changeset
202 else
a61af66fc99e Initial load
duke
parents:
diff changeset
203 return -1; // bail with a conservative answer
a61af66fc99e Initial load
duke
parents:
diff changeset
204 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 return Deoptimization::trap_state_has_reason(data->trap_state(), per_bc_reason);
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 int ciMethodData::trap_recompiled_at(ciProfileData* data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 if (data == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return (_saw_free_extra_data? 0: -1); // (see previous method)
a61af66fc99e Initial load
duke
parents:
diff changeset
212 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return Deoptimization::trap_state_is_recompiled(data->trap_state())? 1: 0;
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 ciMethodData::clear_escape_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 methodDataOop mdo = get_methodDataOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
220 if (mdo != NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
221 mdo->clear_escape_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
222 _eflags = _arg_local = _arg_stack = _arg_returned = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // copy our escape info to the methodDataOop if it exists
a61af66fc99e Initial load
duke
parents:
diff changeset
226 void ciMethodData::update_escape_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 methodDataOop mdo = get_methodDataOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
229 if ( mdo != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 mdo->set_eflags(_eflags);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 mdo->set_arg_local(_arg_local);
a61af66fc99e Initial load
duke
parents:
diff changeset
232 mdo->set_arg_stack(_arg_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 mdo->set_arg_returned(_arg_returned);
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 bool ciMethodData::has_escape_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 return eflag_set(methodDataOopDesc::estimated);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 void ciMethodData::set_eflag(methodDataOopDesc::EscapeFlag f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 set_bits(_eflags, f);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 void ciMethodData::clear_eflag(methodDataOopDesc::EscapeFlag f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 clear_bits(_eflags, f);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 bool ciMethodData::eflag_set(methodDataOopDesc::EscapeFlag f) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 return mask_bits(_eflags, f) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 void ciMethodData::set_arg_local(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 set_nth_bit(_arg_local, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 void ciMethodData::set_arg_stack(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 set_nth_bit(_arg_stack, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 void ciMethodData::set_arg_returned(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 set_nth_bit(_arg_returned, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 bool ciMethodData::is_arg_local(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 return is_set_nth_bit(_arg_local, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 bool ciMethodData::is_arg_stack(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 return is_set_nth_bit(_arg_stack, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 bool ciMethodData::is_arg_returned(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return is_set_nth_bit(_arg_returned, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 ByteSize ciMethodData::offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Get offset within methodDataOop of the data array
a61af66fc99e Initial load
duke
parents:
diff changeset
279 ByteSize data_offset = methodDataOopDesc::data_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // Get cell offset of the ProfileData within data array
a61af66fc99e Initial load
duke
parents:
diff changeset
282 int cell_offset = dp_to_di(data->dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // Add in counter_offset, the # of bytes into the ProfileData of counter or flag
a61af66fc99e Initial load
duke
parents:
diff changeset
285 int offset = in_bytes(data_offset) + cell_offset + in_bytes(slot_offset_in_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 return in_ByteSize(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // Implementation of the print method.
a61af66fc99e Initial load
duke
parents:
diff changeset
291 void ciMethodData::print_impl(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 ciObject::print_impl(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
296 void ciMethodData::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 print_data_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 void ciMethodData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 ciProfileData* data;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 for (data = first_data(); is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
305 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 data->print_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 void ciReceiverTypeData::print_receiver_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
312 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
313 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 if (receiver(row) != NULL) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 st->print_cr("count(%u) entries(%u)", count(), entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
320 receiver(row)->print_name_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 st->print_cr("(%u)", receiver_count(row));
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
a61af66fc99e Initial load
duke
parents:
diff changeset
326 void ciReceiverTypeData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 print_shared(st, "ciReceiverTypeData");
a61af66fc99e Initial load
duke
parents:
diff changeset
328 print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 void ciVirtualCallData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 print_shared(st, "ciVirtualCallData");
a61af66fc99e Initial load
duke
parents:
diff changeset
333 rtd_super()->print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335 #endif