annotate src/share/vm/ci/ciMethodData.cpp @ 1994:6cd6d394f280

7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed()) 7002546: regression on SpecJbb2005 on 7b118 comparing to 7b117 on small heaps Summary: Relaxed assertion checking related to incremental_collection_failed flag to allow for ExplicitGCInvokesConcurrent behaviour where we do not want a failing scavenge to bail to a stop-world collection. Parameterized incremental_collection_will_fail() so we can selectively use, or not use, as appropriate, the statistical prediction at specific use sites. This essentially reverts the scavenge bail-out logic to what it was prior to some recent changes that had inadvertently started using the statistical prediction which can be noisy in the presence of bursty loads. Added some associated verbose non-product debugging messages. Reviewed-by: johnc, tonyp
author ysr
date Tue, 07 Dec 2010 21:55:53 -0800
parents f95d63e2154a
children da91efe96a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
2 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #include "ci/ciMethodData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27 #include "ci/ciUtilities.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31 #include "utilities/copy.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // ciMethodData
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // ciMethodData::ciMethodData
a61af66fc99e Initial load
duke
parents:
diff changeset
37 //
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ciMethodData::ciMethodData(methodDataHandle h_md) : ciObject(h_md) {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 assert(h_md() != NULL, "no null method data");
a61af66fc99e Initial load
duke
parents:
diff changeset
40 Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _extra_data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 _current_mileage = 0;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
45 _invocation_counter = 0;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
46 _backedge_counter = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47 _state = empty_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _saw_free_extra_data = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Set an initial hint. Don't use set_hint_di() because
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // first_di() may be out of bounds if data_size is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _hint_di = first_di();
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
52 // Initialize the escape information (to "don't know.");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
53 _eflags = _arg_local = _arg_stack = _arg_returned = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // ciMethodData::ciMethodData
a61af66fc99e Initial load
duke
parents:
diff changeset
58 //
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // No methodDataOop.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 ciMethodData::ciMethodData() : ciObject() {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
62 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 _data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 _extra_data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _current_mileage = 0;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
66 _invocation_counter = 0;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
67 _backedge_counter = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _state = empty_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 _saw_free_extra_data = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Set an initial hint. Don't use set_hint_di() because
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // first_di() may be out of bounds if data_size is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
72 _hint_di = first_di();
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
73 // Initialize the escape information (to "don't know.");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
74 _eflags = _arg_local = _arg_stack = _arg_returned = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void ciMethodData::load_data() {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 methodDataOop mdo = get_methodDataOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if (mdo == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // To do: don't copy the data if it is not "ripe" -- require a minimum #
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // of invocations.
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Snapshot the data -- actually, take an approximate snapshot of
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // the data. Any concurrently executing threads may be changing the
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // data as we copy it.
a61af66fc99e Initial load
duke
parents:
diff changeset
87 int skip_header = oopDesc::header_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 Copy::disjoint_words((HeapWord*) mdo + skip_header,
a61af66fc99e Initial load
duke
parents:
diff changeset
89 (HeapWord*) &_orig + skip_header,
a61af66fc99e Initial load
duke
parents:
diff changeset
90 sizeof(_orig) / HeapWordSize - skip_header);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 DEBUG_ONLY(*_orig.adr_method() = NULL); // no dangling oops, please
a61af66fc99e Initial load
duke
parents:
diff changeset
92 Arena* arena = CURRENT_ENV->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _data_size = mdo->data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _extra_data_size = mdo->extra_data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 int total_size = _data_size + _extra_data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _data = (intptr_t *) arena->Amalloc(total_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 Copy::disjoint_words((HeapWord*) mdo->data_base(), (HeapWord*) _data, total_size / HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Traverse the profile data, translating any oops into their
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // ci equivalents.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ciProfileData* ci_data = first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 ProfileData* data = mdo->first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 while (is_valid(ci_data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 ci_data->translate_from(data);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 ci_data = next_data(ci_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 data = mdo->next_data(data);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Note: Extra data are all BitData, and do not need translation.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 _current_mileage = methodDataOopDesc::mileage_of(mdo->method());
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
111 _invocation_counter = mdo->invocation_count();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
112 _backedge_counter = mdo->backedge_count();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
113 _state = mdo->is_mature()? mature_state: immature_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 _eflags = mdo->eflags();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 _arg_local = mdo->arg_local();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 _arg_stack = mdo->arg_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
118 _arg_returned = mdo->arg_returned();
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void ciReceiverTypeData::translate_receiver_data_from(ProfileData* data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 klassOop k = data->as_ReceiverTypeData()->receiver(row);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 ciKlass* klass = CURRENT_ENV->get_object(k)->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
126 set_receiver(row, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // Get the data at an arbitrary (sort of) data index.
a61af66fc99e Initial load
duke
parents:
diff changeset
133 ciProfileData* ciMethodData::data_at(int data_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 if (out_of_bounds(data_index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 DataLayout* data_layout = data_layout_at(data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 switch (data_layout->tag()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 case DataLayout::no_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
141 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
142 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 case DataLayout::bit_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return new ciBitData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 case DataLayout::counter_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return new ciCounterData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 case DataLayout::jump_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
149 return new ciJumpData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 case DataLayout::receiver_type_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return new ciReceiverTypeData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 case DataLayout::virtual_call_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return new ciVirtualCallData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 case DataLayout::ret_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
155 return new ciRetData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 case DataLayout::branch_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
157 return new ciBranchData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 case DataLayout::multi_branch_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return new ciMultiBranchData(data_layout);
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
160 case DataLayout::arg_info_data_tag:
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
161 return new ciArgInfoData(data_layout);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
162 };
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Iteration over data.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 ciProfileData* ciMethodData::next_data(ciProfileData* current) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 int current_index = dp_to_di(current->dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
168 int next_index = current_index + current->size_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 ciProfileData* next = data_at(next_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 return next;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // Translate a bci to its corresponding data, or NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
174 ciProfileData* ciMethodData::bci_to_data(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 ciProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (data->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
179 return data;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 } else if (data->bci() > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // bci_to_extra_data(bci) ...
a61af66fc99e Initial load
duke
parents:
diff changeset
185 DataLayout* dp = data_layout_at(data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
186 DataLayout* end = data_layout_at(data_size() + extra_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
187 for (; dp < end; dp = methodDataOopDesc::next_extra(dp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (dp->tag() == DataLayout::no_tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 _saw_free_extra_data = true; // observed an empty slot (common case)
a61af66fc99e Initial load
duke
parents:
diff changeset
190 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
192 if (dp->tag() == DataLayout::arg_info_data_tag) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
193 break; // ArgInfoData is at the end of extra data section.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
194 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
195 if (dp->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 assert(dp->tag() == DataLayout::bit_data_tag, "sane");
a61af66fc99e Initial load
duke
parents:
diff changeset
197 return new ciBitData(dp);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // Conservatively decode the trap_state of a ciProfileData.
a61af66fc99e Initial load
duke
parents:
diff changeset
204 int ciMethodData::has_trap_at(ciProfileData* data, int reason) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 typedef Deoptimization::DeoptReason DR_t;
a61af66fc99e Initial load
duke
parents:
diff changeset
206 int per_bc_reason
a61af66fc99e Initial load
duke
parents:
diff changeset
207 = Deoptimization::reason_recorded_per_bytecode_if_any((DR_t) reason);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (trap_count(reason) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // Impossible for this trap to have occurred, regardless of trap_state.
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // Note: This happens if the MDO is empty.
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 } else if (per_bc_reason == Deoptimization::Reason_none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // We cannot conclude anything; a trap happened somewhere, maybe here.
a61af66fc99e Initial load
duke
parents:
diff changeset
214 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 } else if (data == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // No profile here, not even an extra_data record allocated on the fly.
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // If there are empty extra_data records, and there had been a trap,
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // there would have been a non-null data pointer. If there are no
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // free extra_data records, we must return a conservative -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
220 if (_saw_free_extra_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
221 return 0; // Q.E.D.
a61af66fc99e Initial load
duke
parents:
diff changeset
222 else
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return -1; // bail with a conservative answer
a61af66fc99e Initial load
duke
parents:
diff changeset
224 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 return Deoptimization::trap_state_has_reason(data->trap_state(), per_bc_reason);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 int ciMethodData::trap_recompiled_at(ciProfileData* data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 if (data == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 return (_saw_free_extra_data? 0: -1); // (see previous method)
a61af66fc99e Initial load
duke
parents:
diff changeset
232 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 return Deoptimization::trap_state_is_recompiled(data->trap_state())? 1: 0;
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 void ciMethodData::clear_escape_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 methodDataOop mdo = get_methodDataOop();
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
240 if (mdo != NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241 mdo->clear_escape_info();
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
242 ArgInfoData *aid = arg_info();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
243 int arg_count = (aid == NULL) ? 0 : aid->number_of_args();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
244 for (int i = 0; i < arg_count; i++) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
245 set_arg_modified(i, 0);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
246 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
247 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
248 _eflags = _arg_local = _arg_stack = _arg_returned = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 }
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // copy our escape info to the methodDataOop if it exists
a61af66fc99e Initial load
duke
parents:
diff changeset
252 void ciMethodData::update_escape_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 methodDataOop mdo = get_methodDataOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if ( mdo != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 mdo->set_eflags(_eflags);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 mdo->set_arg_local(_arg_local);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 mdo->set_arg_stack(_arg_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 mdo->set_arg_returned(_arg_returned);
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
260 int arg_count = mdo->method()->size_of_parameters();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
261 for (int i = 0; i < arg_count; i++) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
262 mdo->set_arg_modified(i, arg_modified(i));
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
263 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
267 void ciMethodData::set_compilation_stats(short loops, short blocks) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
268 VM_ENTRY_MARK;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
269 methodDataOop mdo = get_methodDataOop();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
270 if (mdo != NULL) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
271 mdo->set_num_loops(loops);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
272 mdo->set_num_blocks(blocks);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
273 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
274 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
275
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
276 void ciMethodData::set_would_profile(bool p) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
277 VM_ENTRY_MARK;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
278 methodDataOop mdo = get_methodDataOop();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
279 if (mdo != NULL) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
280 mdo->set_would_profile(p);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
281 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
282 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
283
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284 bool ciMethodData::has_escape_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 return eflag_set(methodDataOopDesc::estimated);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 void ciMethodData::set_eflag(methodDataOopDesc::EscapeFlag f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 set_bits(_eflags, f);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 void ciMethodData::clear_eflag(methodDataOopDesc::EscapeFlag f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 clear_bits(_eflags, f);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 bool ciMethodData::eflag_set(methodDataOopDesc::EscapeFlag f) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 return mask_bits(_eflags, f) != 0;
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::set_arg_local(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 set_nth_bit(_arg_local, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 void ciMethodData::set_arg_stack(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
305 set_nth_bit(_arg_stack, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 void ciMethodData::set_arg_returned(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 set_nth_bit(_arg_returned, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
312 void ciMethodData::set_arg_modified(int arg, uint val) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
313 ArgInfoData *aid = arg_info();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
314 if (aid == NULL)
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
315 return;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
316 assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
317 aid->set_arg_modified(arg, val);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
318 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
319
0
a61af66fc99e Initial load
duke
parents:
diff changeset
320 bool ciMethodData::is_arg_local(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 return is_set_nth_bit(_arg_local, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 bool ciMethodData::is_arg_stack(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 return is_set_nth_bit(_arg_stack, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 bool ciMethodData::is_arg_returned(int i) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 return is_set_nth_bit(_arg_returned, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
332 uint ciMethodData::arg_modified(int arg) const {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
333 ArgInfoData *aid = arg_info();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
334 if (aid == NULL)
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
335 return 0;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
336 assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
337 return aid->arg_modified(arg);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
338 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
339
0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 ByteSize ciMethodData::offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Get offset within methodDataOop of the data array
a61af66fc99e Initial load
duke
parents:
diff changeset
342 ByteSize data_offset = methodDataOopDesc::data_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // Get cell offset of the ProfileData within data array
a61af66fc99e Initial load
duke
parents:
diff changeset
345 int cell_offset = dp_to_di(data->dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // Add in counter_offset, the # of bytes into the ProfileData of counter or flag
a61af66fc99e Initial load
duke
parents:
diff changeset
348 int offset = in_bytes(data_offset) + cell_offset + in_bytes(slot_offset_in_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 return in_ByteSize(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
353 ciArgInfoData *ciMethodData::arg_info() const {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
354 // Should be last, have to skip all traps.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
355 DataLayout* dp = data_layout_at(data_size());
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
356 DataLayout* end = data_layout_at(data_size() + extra_data_size());
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
357 for (; dp < end; dp = methodDataOopDesc::next_extra(dp)) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
358 if (dp->tag() == DataLayout::arg_info_data_tag)
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
359 return new ciArgInfoData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
360 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
361 return NULL;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
362 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
363
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
364
0
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // Implementation of the print method.
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void ciMethodData::print_impl(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 ciObject::print_impl(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
371 void ciMethodData::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 print_data_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 void ciMethodData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 ciProfileData* data;
a61af66fc99e Initial load
duke
parents:
diff changeset
378 for (data = first_data(); is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
380 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
381 data->print_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
383 st->print_cr("--- Extra data:");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
384 DataLayout* dp = data_layout_at(data_size());
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
385 DataLayout* end = data_layout_at(data_size() + extra_data_size());
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
386 for (; dp < end; dp = methodDataOopDesc::next_extra(dp)) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
387 if (dp->tag() == DataLayout::no_tag) continue;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
388 if (dp->tag() == DataLayout::bit_data_tag) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
389 data = new BitData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
390 } else {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
391 assert(dp->tag() == DataLayout::arg_info_data_tag, "must be BitData or ArgInfo");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
392 data = new ciArgInfoData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
393 dp = end; // ArgInfoData is at the end of extra data section.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
394 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
395 st->print("%d", dp_to_di(data->dp()));
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
396 st->fill_to(6);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
397 data->print_data_on(st);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
398 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 void ciReceiverTypeData::print_receiver_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
402 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
403 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
404 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
405 if (receiver(row) != NULL) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
407 st->print_cr("count(%u) entries(%u)", count(), entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
409 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 receiver(row)->print_name_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 st->print_cr("(%u)", receiver_count(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417 void ciReceiverTypeData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
418 print_shared(st, "ciReceiverTypeData");
a61af66fc99e Initial load
duke
parents:
diff changeset
419 print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 void ciVirtualCallData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
423 print_shared(st, "ciVirtualCallData");
a61af66fc99e Initial load
duke
parents:
diff changeset
424 rtd_super()->print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
426 #endif