annotate src/share/vm/ci/ciTypeFlow.cpp @ 6266:1d7922586cf6

7023639: JSR 292 method handle invocation needs a fast path for compiled code 6984705: JSR 292 method handle creation should not go through JNI Summary: remove assembly code for JDK 7 chained method handles Reviewed-by: jrose, twisti, kvn, mhaupt Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>
author twisti
date Tue, 24 Jul 2012 10:51:00 -0700
parents e9a5e0a812c8
children 7f813940ac35
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
2 * Copyright (c) 2000, 2011, 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: 1137
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1137
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: 1137
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: 1846
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
26 #include "ci/ciConstant.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
27 #include "ci/ciField.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
28 #include "ci/ciMethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
29 #include "ci/ciMethodData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
30 #include "ci/ciObjArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
31 #include "ci/ciStreams.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
32 #include "ci/ciTypeArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
33 #include "ci/ciTypeFlow.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
34 #include "compiler/compileLog.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
35 #include "interpreter/bytecode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
36 #include "interpreter/bytecodes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
37 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
38 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1846
diff changeset
39 #include "utilities/growableArray.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // ciTypeFlow::JsrSet
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // A JsrSet represents some set of JsrRecords. This class
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // is used to record a set of all jsr routines which we permit
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // execution to return (ret) from.
a61af66fc99e Initial load
duke
parents:
diff changeset
46 //
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // During abstract interpretation, JsrSets are used to determine
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // whether two paths which reach a given block are unique, and
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // should be cloned apart, or are compatible, and should merge
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // together.
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // ciTypeFlow::JsrSet::JsrSet
a61af66fc99e Initial load
duke
parents:
diff changeset
54 ciTypeFlow::JsrSet::JsrSet(Arena* arena, int default_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (arena != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Allocate growable array in Arena.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _set = new (arena) GrowableArray<JsrRecord*>(arena, default_len, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Allocate growable array in current ResourceArea.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _set = new GrowableArray<JsrRecord*>(4, 0, NULL, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // ciTypeFlow::JsrSet::copy_into
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void ciTypeFlow::JsrSet::copy_into(JsrSet* jsrs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 int len = size();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 jsrs->_set->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
69 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 jsrs->_set->append(_set->at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // ciTypeFlow::JsrSet::is_compatible_with
a61af66fc99e Initial load
duke
parents:
diff changeset
76 //
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // !!!! MISGIVINGS ABOUT THIS... disregard
a61af66fc99e Initial load
duke
parents:
diff changeset
78 //
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Is this JsrSet compatible with some other JsrSet?
a61af66fc99e Initial load
duke
parents:
diff changeset
80 //
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // In set-theoretic terms, a JsrSet can be viewed as a partial function
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // from entry addresses to return addresses. Two JsrSets A and B are
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // compatible iff
a61af66fc99e Initial load
duke
parents:
diff changeset
84 //
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // For any x,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // A(x) defined and B(x) defined implies A(x) == B(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
87 //
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Less formally, two JsrSets are compatible when they have identical
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // return addresses for any entry addresses they share in common.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 bool ciTypeFlow::JsrSet::is_compatible_with(JsrSet* other) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Walk through both sets in parallel. If the same entry address
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // appears in both sets, then the return address must match for
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // the sets to be compatible.
a61af66fc99e Initial load
duke
parents:
diff changeset
94 int size1 = size();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 int size2 = other->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Special case. If nothing is on the jsr stack, then there can
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // be no ret.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 if (size2 == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 } else if (size1 != size2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 for (int i = 0; i < size1; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 JsrRecord* record1 = record_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 JsrRecord* record2 = other->record_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 if (record1->entry_address() != record2->entry_address() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
108 record1->return_address() != record2->return_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 int pos1 = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 int pos2 = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 int size1 = size();
a61af66fc99e Initial load
duke
parents:
diff changeset
119 int size2 = other->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
120 while (pos1 < size1 && pos2 < size2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 JsrRecord* record1 = record_at(pos1);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 JsrRecord* record2 = other->record_at(pos2);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int entry1 = record1->entry_address();
a61af66fc99e Initial load
duke
parents:
diff changeset
124 int entry2 = record2->entry_address();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (entry1 < entry2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 pos1++;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 } else if (entry1 > entry2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 pos2++;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 if (record1->return_address() == record2->return_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 pos1++;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 pos2++;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // These two JsrSets are incompatible.
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // The two JsrSets agree.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // ciTypeFlow::JsrSet::insert_jsr_record
a61af66fc99e Initial load
duke
parents:
diff changeset
146 //
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Insert the given JsrRecord into the JsrSet, maintaining the order
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // of the set and replacing any element with the same entry address.
a61af66fc99e Initial load
duke
parents:
diff changeset
149 void ciTypeFlow::JsrSet::insert_jsr_record(JsrRecord* record) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 int len = size();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 int entry = record->entry_address();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 int pos = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 for ( ; pos < len; pos++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 JsrRecord* current = record_at(pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 if (entry == current->entry_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Stomp over this entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 _set->at_put(pos, record);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 assert(size() == len, "must be same size");
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 } else if (entry < current->entry_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 break;
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 // Insert the record into the list.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 JsrRecord* swap = record;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 JsrRecord* temp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 for ( ; pos < len; pos++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 temp = _set->at(pos);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 _set->at_put(pos, swap);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 swap = temp;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 _set->append(swap);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 assert(size() == len+1, "must be larger");
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // ciTypeFlow::JsrSet::remove_jsr_record
a61af66fc99e Initial load
duke
parents:
diff changeset
179 //
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // Remove the JsrRecord with the given return address from the JsrSet.
a61af66fc99e Initial load
duke
parents:
diff changeset
181 void ciTypeFlow::JsrSet::remove_jsr_record(int return_address) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 int len = size();
a61af66fc99e Initial load
duke
parents:
diff changeset
183 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 if (record_at(i)->return_address() == return_address) {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // We have found the proper entry. Remove it from the
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // JsrSet and exit.
a61af66fc99e Initial load
duke
parents:
diff changeset
187 for (int j = i+1; j < len ; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 _set->at_put(j-1, _set->at(j));
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 _set->trunc_to(len-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 assert(size() == len-1, "must be smaller");
a61af66fc99e Initial load
duke
parents:
diff changeset
192 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 assert(false, "verify: returning from invalid subroutine");
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // ciTypeFlow::JsrSet::apply_control
a61af66fc99e Initial load
duke
parents:
diff changeset
200 //
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // Apply the effect of a control-flow bytecode on the JsrSet. The
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // only bytecodes that modify the JsrSet are jsr and ret.
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void ciTypeFlow::JsrSet::apply_control(ciTypeFlow* analyzer,
a61af66fc99e Initial load
duke
parents:
diff changeset
204 ciBytecodeStream* str,
a61af66fc99e Initial load
duke
parents:
diff changeset
205 ciTypeFlow::StateVector* state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 Bytecodes::Code code = str->cur_bc();
a61af66fc99e Initial load
duke
parents:
diff changeset
207 if (code == Bytecodes::_jsr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 JsrRecord* record =
a61af66fc99e Initial load
duke
parents:
diff changeset
209 analyzer->make_jsr_record(str->get_dest(), str->next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
210 insert_jsr_record(record);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 } else if (code == Bytecodes::_jsr_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 JsrRecord* record =
a61af66fc99e Initial load
duke
parents:
diff changeset
213 analyzer->make_jsr_record(str->get_far_dest(), str->next_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
214 insert_jsr_record(record);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 } else if (code == Bytecodes::_ret) {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 Cell local = state->local(str->get_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
217 ciType* return_address = state->type_at(local);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 assert(return_address->is_return_address(), "verify: wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if (size() == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // Ret-state underflow: Hit a ret w/o any previous jsrs. Bail out.
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // This can happen when a loop is inside a finally clause (4614060).
a61af66fc99e Initial load
duke
parents:
diff changeset
222 analyzer->record_failure("OSR in finally clause");
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225 remove_jsr_record(return_address->as_return_address()->bci());
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 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // ciTypeFlow::JsrSet::print_on
a61af66fc99e Initial load
duke
parents:
diff changeset
232 void ciTypeFlow::JsrSet::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 st->print("{ ");
a61af66fc99e Initial load
duke
parents:
diff changeset
234 int num_elements = size();
a61af66fc99e Initial load
duke
parents:
diff changeset
235 if (num_elements > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 int i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 for( ; i < num_elements - 1; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 _set->at(i)->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 st->print(", ");
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241 _set->at(i)->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 st->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244 st->print("}");
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // ciTypeFlow::StateVector
a61af66fc99e Initial load
duke
parents:
diff changeset
249 //
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // A StateVector summarizes the type information at some point in
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // the program.
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // ciTypeFlow::StateVector::type_meet
a61af66fc99e Initial load
duke
parents:
diff changeset
255 //
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // Meet two types.
a61af66fc99e Initial load
duke
parents:
diff changeset
257 //
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // The semi-lattice of types use by this analysis are modeled on those
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // of the verifier. The lattice is as follows:
a61af66fc99e Initial load
duke
parents:
diff changeset
260 //
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // top_type() >= all non-extremal types >= bottom_type
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // and
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // Every primitive type is comparable only with itself. The meet of
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // reference types is determined by their kind: instance class,
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // interface, or array class. The meet of two types of the same
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // kind is their least common ancestor. The meet of two types of
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // different kinds is always java.lang.Object.
a61af66fc99e Initial load
duke
parents:
diff changeset
268 ciType* ciTypeFlow::StateVector::type_meet_internal(ciType* t1, ciType* t2, ciTypeFlow* analyzer) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 assert(t1 != t2, "checked in caller");
a61af66fc99e Initial load
duke
parents:
diff changeset
270 if (t1->equals(top_type())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 return t2;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 } else if (t2->equals(top_type())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 return t1;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 } else if (t1->is_primitive_type() || t2->is_primitive_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Special case null_type. null_type meet any reference type T
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // is T. null_type meet null_type is null_type.
a61af66fc99e Initial load
duke
parents:
diff changeset
277 if (t1->equals(null_type())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 if (!t2->is_primitive_type() || t2->equals(null_type())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 return t2;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
281 } else if (t2->equals(null_type())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 if (!t1->is_primitive_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 return t1;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // At least one of the two types is a non-top primitive type.
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // The other type is not equal to it. Fall to bottom.
a61af66fc99e Initial load
duke
parents:
diff changeset
289 return bottom_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
290 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // Both types are non-top non-primitive types. That is,
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // both types are either instanceKlasses or arrayKlasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
293 ciKlass* object_klass = analyzer->env()->Object_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
294 ciKlass* k1 = t1->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
295 ciKlass* k2 = t2->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if (k1->equals(object_klass) || k2->equals(object_klass)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 return object_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 } else if (!k1->is_loaded() || !k2->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // Unloaded classes fall to java.lang.Object at a merge.
a61af66fc99e Initial load
duke
parents:
diff changeset
300 return object_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 } else if (k1->is_interface() != k2->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // When an interface meets a non-interface, we get Object;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // This is what the verifier does.
a61af66fc99e Initial load
duke
parents:
diff changeset
304 return object_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 } else if (k1->is_array_klass() || k2->is_array_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // When an array meets a non-array, we get Object.
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // When objArray meets typeArray, we also get Object.
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // And when typeArray meets different typeArray, we again get Object.
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // But when objArray meets objArray, we look carefully at element types.
a61af66fc99e Initial load
duke
parents:
diff changeset
310 if (k1->is_obj_array_klass() && k2->is_obj_array_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // Meet the element types, then construct the corresponding array type.
a61af66fc99e Initial load
duke
parents:
diff changeset
312 ciKlass* elem1 = k1->as_obj_array_klass()->element_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
313 ciKlass* elem2 = k2->as_obj_array_klass()->element_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
314 ciKlass* elem = type_meet_internal(elem1, elem2, analyzer)->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // Do an easy shortcut if one type is a super of the other.
a61af66fc99e Initial load
duke
parents:
diff changeset
316 if (elem == elem1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 assert(k1 == ciObjArrayKlass::make(elem), "shortcut is OK");
a61af66fc99e Initial load
duke
parents:
diff changeset
318 return k1;
a61af66fc99e Initial load
duke
parents:
diff changeset
319 } else if (elem == elem2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 assert(k2 == ciObjArrayKlass::make(elem), "shortcut is OK");
a61af66fc99e Initial load
duke
parents:
diff changeset
321 return k2;
a61af66fc99e Initial load
duke
parents:
diff changeset
322 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
323 return ciObjArrayKlass::make(elem);
a61af66fc99e Initial load
duke
parents:
diff changeset
324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
325 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
326 return object_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
328 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // Must be two plain old instance klasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
330 assert(k1->is_instance_klass(), "previous cases handle non-instances");
a61af66fc99e Initial load
duke
parents:
diff changeset
331 assert(k2->is_instance_klass(), "previous cases handle non-instances");
a61af66fc99e Initial load
duke
parents:
diff changeset
332 return k1->least_common_ancestor(k2);
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // ciTypeFlow::StateVector::StateVector
a61af66fc99e Initial load
duke
parents:
diff changeset
340 //
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Build a new state vector
a61af66fc99e Initial load
duke
parents:
diff changeset
342 ciTypeFlow::StateVector::StateVector(ciTypeFlow* analyzer) {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 _outer = analyzer;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 _stack_size = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
345 _monitor_count = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // Allocate the _types array
a61af66fc99e Initial load
duke
parents:
diff changeset
347 int max_cells = analyzer->max_cells();
a61af66fc99e Initial load
duke
parents:
diff changeset
348 _types = (ciType**)analyzer->arena()->Amalloc(sizeof(ciType*) * max_cells);
a61af66fc99e Initial load
duke
parents:
diff changeset
349 for (int i=0; i<max_cells; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 _types[i] = top_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352 _trap_bci = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 _trap_index = 0;
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
354 _def_locals.clear();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
357
0
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // ciTypeFlow::get_start_state
a61af66fc99e Initial load
duke
parents:
diff changeset
360 //
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // Set this vector to the method entry state.
a61af66fc99e Initial load
duke
parents:
diff changeset
362 const ciTypeFlow::StateVector* ciTypeFlow::get_start_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 StateVector* state = new StateVector(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 if (is_osr_flow()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 ciTypeFlow* non_osr_flow = method()->get_flow_analysis();
a61af66fc99e Initial load
duke
parents:
diff changeset
366 if (non_osr_flow->failing()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 record_failure(non_osr_flow->failure_reason());
a61af66fc99e Initial load
duke
parents:
diff changeset
368 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 JsrSet* jsrs = new JsrSet(NULL, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
371 Block* non_osr_block = non_osr_flow->existing_block_at(start_bci(), jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (non_osr_block == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 record_failure("cannot reach OSR point");
a61af66fc99e Initial load
duke
parents:
diff changeset
374 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376 // load up the non-OSR state at this point
a61af66fc99e Initial load
duke
parents:
diff changeset
377 non_osr_block->copy_state_into(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 int non_osr_start = non_osr_block->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
379 if (non_osr_start != start_bci()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // must flow forward from it
a61af66fc99e Initial load
duke
parents:
diff changeset
381 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 tty->print_cr(">> Interpreting pre-OSR block %d:", non_osr_start);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 Block* block = block_at(non_osr_start, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 assert(block->limit() == start_bci(), "must flow forward to start");
a61af66fc99e Initial load
duke
parents:
diff changeset
386 flow_block(block, state, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388 return state;
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // Note: The code below would be an incorrect for an OSR flow,
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // even if it were possible for an OSR entry point to be at bci zero.
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // "Push" the method signature into the first few locals.
a61af66fc99e Initial load
duke
parents:
diff changeset
393 state->set_stack_size(-max_locals());
a61af66fc99e Initial load
duke
parents:
diff changeset
394 if (!method()->is_static()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
395 state->push(method()->holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
396 assert(state->tos() == state->local(0), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
398 for (ciSignatureStream str(method()->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
399 !str.at_return_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
400 str.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
401 state->push_translate(str.type());
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // Set the rest of the locals to bottom.
a61af66fc99e Initial load
duke
parents:
diff changeset
404 Cell cell = state->next_cell(state->tos());
a61af66fc99e Initial load
duke
parents:
diff changeset
405 state->set_stack_size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 int limit = state->limit_cell();
a61af66fc99e Initial load
duke
parents:
diff changeset
407 for (; cell < limit; cell = state->next_cell(cell)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 state->set_type_at(cell, state->bottom_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
409 }
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // Lock an object, if necessary.
a61af66fc99e Initial load
duke
parents:
diff changeset
411 state->set_monitor_count(method()->is_synchronized() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 return state;
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 // ciTypeFlow::StateVector::copy_into
a61af66fc99e Initial load
duke
parents:
diff changeset
417 //
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // Copy our value into some other StateVector
a61af66fc99e Initial load
duke
parents:
diff changeset
419 void ciTypeFlow::StateVector::copy_into(ciTypeFlow::StateVector* copy)
a61af66fc99e Initial load
duke
parents:
diff changeset
420 const {
a61af66fc99e Initial load
duke
parents:
diff changeset
421 copy->set_stack_size(stack_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
422 copy->set_monitor_count(monitor_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
423 Cell limit = limit_cell();
a61af66fc99e Initial load
duke
parents:
diff changeset
424 for (Cell c = start_cell(); c < limit; c = next_cell(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 copy->set_type_at(c, type_at(c));
a61af66fc99e Initial load
duke
parents:
diff changeset
426 }
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 // ciTypeFlow::StateVector::meet
a61af66fc99e Initial load
duke
parents:
diff changeset
431 //
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // Meets this StateVector with another, destructively modifying this
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // one. Returns true if any modification takes place.
a61af66fc99e Initial load
duke
parents:
diff changeset
434 bool ciTypeFlow::StateVector::meet(const ciTypeFlow::StateVector* incoming) {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 if (monitor_count() == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
436 set_monitor_count(incoming->monitor_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
437 }
a61af66fc99e Initial load
duke
parents:
diff changeset
438 assert(monitor_count() == incoming->monitor_count(), "monitors must match");
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 if (stack_size() == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
441 set_stack_size(incoming->stack_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
442 Cell limit = limit_cell();
a61af66fc99e Initial load
duke
parents:
diff changeset
443 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
444 { for (Cell c = start_cell(); c < limit; c = next_cell(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 assert(type_at(c) == top_type(), "");
a61af66fc99e Initial load
duke
parents:
diff changeset
446 } }
a61af66fc99e Initial load
duke
parents:
diff changeset
447 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // Make a simple copy of the incoming state.
a61af66fc99e Initial load
duke
parents:
diff changeset
449 for (Cell c = start_cell(); c < limit; c = next_cell(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
450 set_type_at(c, incoming->type_at(c));
a61af66fc99e Initial load
duke
parents:
diff changeset
451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
452 return true; // it is always different the first time
a61af66fc99e Initial load
duke
parents:
diff changeset
453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
454 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
455 if (stack_size() != incoming->stack_size()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 _outer->method()->print_codes();
a61af66fc99e Initial load
duke
parents:
diff changeset
457 tty->print_cr("!!!! Stack size conflict");
a61af66fc99e Initial load
duke
parents:
diff changeset
458 tty->print_cr("Current state:");
a61af66fc99e Initial load
duke
parents:
diff changeset
459 print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 tty->print_cr("Incoming state:");
a61af66fc99e Initial load
duke
parents:
diff changeset
461 ((StateVector*)incoming)->print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
464 assert(stack_size() == incoming->stack_size(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 bool different = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
467 Cell limit = limit_cell();
a61af66fc99e Initial load
duke
parents:
diff changeset
468 for (Cell c = start_cell(); c < limit; c = next_cell(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
469 ciType* t1 = type_at(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 ciType* t2 = incoming->type_at(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
471 if (!t1->equals(t2)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
472 ciType* new_type = type_meet(t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
473 if (!t1->equals(new_type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 set_type_at(c, new_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
475 different = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
479 return different;
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // ciTypeFlow::StateVector::meet_exception
a61af66fc99e Initial load
duke
parents:
diff changeset
484 //
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // Meets this StateVector with another, destructively modifying this
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // one. The incoming state is coming via an exception. Returns true
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // if any modification takes place.
a61af66fc99e Initial load
duke
parents:
diff changeset
488 bool ciTypeFlow::StateVector::meet_exception(ciInstanceKlass* exc,
a61af66fc99e Initial load
duke
parents:
diff changeset
489 const ciTypeFlow::StateVector* incoming) {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 if (monitor_count() == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
491 set_monitor_count(incoming->monitor_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
493 assert(monitor_count() == incoming->monitor_count(), "monitors must match");
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 if (stack_size() == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 set_stack_size(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 assert(stack_size() == 1, "must have one-element stack");
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 bool different = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // Meet locals from incoming array.
a61af66fc99e Initial load
duke
parents:
diff changeset
504 Cell limit = local(_outer->max_locals()-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
505 for (Cell c = start_cell(); c <= limit; c = next_cell(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
506 ciType* t1 = type_at(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
507 ciType* t2 = incoming->type_at(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 if (!t1->equals(t2)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 ciType* new_type = type_meet(t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
510 if (!t1->equals(new_type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
511 set_type_at(c, new_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
512 different = true;
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
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // Handle stack separately. When an exception occurs, the
a61af66fc99e Initial load
duke
parents:
diff changeset
518 // only stack entry is the exception instance.
a61af66fc99e Initial load
duke
parents:
diff changeset
519 ciType* tos_type = type_at_tos();
a61af66fc99e Initial load
duke
parents:
diff changeset
520 if (!tos_type->equals(exc)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
521 ciType* new_type = type_meet(tos_type, exc);
a61af66fc99e Initial load
duke
parents:
diff changeset
522 if (!tos_type->equals(new_type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 set_type_at_tos(new_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
524 different = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
526 }
a61af66fc99e Initial load
duke
parents:
diff changeset
527
a61af66fc99e Initial load
duke
parents:
diff changeset
528 return different;
a61af66fc99e Initial load
duke
parents:
diff changeset
529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // ciTypeFlow::StateVector::push_translate
a61af66fc99e Initial load
duke
parents:
diff changeset
533 void ciTypeFlow::StateVector::push_translate(ciType* type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 BasicType basic_type = type->basic_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
535 if (basic_type == T_BOOLEAN || basic_type == T_CHAR ||
a61af66fc99e Initial load
duke
parents:
diff changeset
536 basic_type == T_BYTE || basic_type == T_SHORT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
537 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
538 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
539 push(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
540 if (type->is_two_word()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
541 push(half_type(type));
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 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // ciTypeFlow::StateVector::do_aaload
a61af66fc99e Initial load
duke
parents:
diff changeset
548 void ciTypeFlow::StateVector::do_aaload(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
549 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
550 ciObjArrayKlass* array_klass = pop_objArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
551 if (array_klass == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // Did aaload on a null reference; push a null and ignore the exception.
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // This instruction will never continue normally. All we have to do
a61af66fc99e Initial load
duke
parents:
diff changeset
554 // is report a value that will meet correctly with any downstream
a61af66fc99e Initial load
duke
parents:
diff changeset
555 // reference types on paths that will truly be executed. This null type
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // meets with any reference type to yield that same reference type.
605
98cb887364d3 6810672: Comment typos
twisti
parents: 470
diff changeset
557 // (The compiler will generate an unconditional exception here.)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
558 push(null_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
559 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 }
a61af66fc99e Initial load
duke
parents:
diff changeset
561 if (!array_klass->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // Only fails for some -Xcomp runs
a61af66fc99e Initial load
duke
parents:
diff changeset
563 trap(str, array_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
564 Deoptimization::make_trap_request
a61af66fc99e Initial load
duke
parents:
diff changeset
565 (Deoptimization::Reason_unloaded,
a61af66fc99e Initial load
duke
parents:
diff changeset
566 Deoptimization::Action_reinterpret));
a61af66fc99e Initial load
duke
parents:
diff changeset
567 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
569 ciKlass* element_klass = array_klass->element_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
570 if (!element_klass->is_loaded() && element_klass->is_instance_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
571 Untested("unloaded array element class in ciTypeFlow");
a61af66fc99e Initial load
duke
parents:
diff changeset
572 trap(str, element_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
573 Deoptimization::make_trap_request
a61af66fc99e Initial load
duke
parents:
diff changeset
574 (Deoptimization::Reason_unloaded,
a61af66fc99e Initial load
duke
parents:
diff changeset
575 Deoptimization::Action_reinterpret));
a61af66fc99e Initial load
duke
parents:
diff changeset
576 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
577 push_object(element_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581
a61af66fc99e Initial load
duke
parents:
diff changeset
582 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
583 // ciTypeFlow::StateVector::do_checkcast
a61af66fc99e Initial load
duke
parents:
diff changeset
584 void ciTypeFlow::StateVector::do_checkcast(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 bool will_link;
a61af66fc99e Initial load
duke
parents:
diff changeset
586 ciKlass* klass = str->get_klass(will_link);
a61af66fc99e Initial load
duke
parents:
diff changeset
587 if (!will_link) {
a61af66fc99e Initial load
duke
parents:
diff changeset
588 // VM's interpreter will not load 'klass' if object is NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
589 // Type flow after this block may still be needed in two situations:
a61af66fc99e Initial load
duke
parents:
diff changeset
590 // 1) C2 uses do_null_assert() and continues compilation for later blocks
a61af66fc99e Initial load
duke
parents:
diff changeset
591 // 2) C2 does an OSR compile in a later block (see bug 4778368).
a61af66fc99e Initial load
duke
parents:
diff changeset
592 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
593 do_null_assert(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
595 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
596 push_object(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
601 // ciTypeFlow::StateVector::do_getfield
a61af66fc99e Initial load
duke
parents:
diff changeset
602 void ciTypeFlow::StateVector::do_getfield(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 // could add assert here for type of object.
a61af66fc99e Initial load
duke
parents:
diff changeset
604 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
605 do_getstatic(str);
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
609 // ciTypeFlow::StateVector::do_getstatic
a61af66fc99e Initial load
duke
parents:
diff changeset
610 void ciTypeFlow::StateVector::do_getstatic(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
611 bool will_link;
a61af66fc99e Initial load
duke
parents:
diff changeset
612 ciField* field = str->get_field(will_link);
a61af66fc99e Initial load
duke
parents:
diff changeset
613 if (!will_link) {
a61af66fc99e Initial load
duke
parents:
diff changeset
614 trap(str, field->holder(), str->get_field_holder_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
615 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
616 ciType* field_type = field->type();
a61af66fc99e Initial load
duke
parents:
diff changeset
617 if (!field_type->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // Normally, we need the field's type to be loaded if we are to
a61af66fc99e Initial load
duke
parents:
diff changeset
619 // do anything interesting with its value.
a61af66fc99e Initial load
duke
parents:
diff changeset
620 // We used to do this: trap(str, str->get_field_signature_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
621 //
a61af66fc99e Initial load
duke
parents:
diff changeset
622 // There is one good reason not to trap here. Execution can
a61af66fc99e Initial load
duke
parents:
diff changeset
623 // get past this "getfield" or "getstatic" if the value of
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // the field is null. As long as the value is null, the class
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // does not need to be loaded! The compiler must assume that
a61af66fc99e Initial load
duke
parents:
diff changeset
626 // the value of the unloaded class reference is null; if the code
a61af66fc99e Initial load
duke
parents:
diff changeset
627 // ever sees a non-null value, loading has occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
628 //
a61af66fc99e Initial load
duke
parents:
diff changeset
629 // This actually happens often enough to be annoying. If the
a61af66fc99e Initial load
duke
parents:
diff changeset
630 // compiler throws an uncommon trap at this bytecode, you can
a61af66fc99e Initial load
duke
parents:
diff changeset
631 // get an endless loop of recompilations, when all the code
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // needs to do is load a series of null values. Also, a trap
a61af66fc99e Initial load
duke
parents:
diff changeset
633 // here can make an OSR entry point unreachable, triggering the
a61af66fc99e Initial load
duke
parents:
diff changeset
634 // assert on non_osr_block in ciTypeFlow::get_start_state.
a61af66fc99e Initial load
duke
parents:
diff changeset
635 // (See bug 4379915.)
a61af66fc99e Initial load
duke
parents:
diff changeset
636 do_null_assert(field_type->as_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
637 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 push_translate(field_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
640 }
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
644 // ciTypeFlow::StateVector::do_invoke
a61af66fc99e Initial load
duke
parents:
diff changeset
645 void ciTypeFlow::StateVector::do_invoke(ciBytecodeStream* str,
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
646 bool has_receiver_foo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
647 bool will_link;
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
648 ciMethod* callee = str->get_method(will_link);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
649 if (!will_link) {
a61af66fc99e Initial load
duke
parents:
diff changeset
650 // We weren't able to find the method.
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
651 if (str->cur_bc() == Bytecodes::_invokedynamic) {
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
652 trap(str, NULL,
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
653 Deoptimization::make_trap_request
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
654 (Deoptimization::Reason_uninitialized,
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
655 Deoptimization::Action_reinterpret));
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
656 } else {
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
657 ciKlass* unloaded_holder = callee->holder();
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
658 trap(str, unloaded_holder, str->get_method_holder_index());
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
659 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
660 } else {
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
661 // TODO Use Bytecode_invoke after metadata changes.
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
662 //Bytecode_invoke inv(str->method(), str->cur_bci());
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
663 //const bool has_receiver = callee->is_loaded() ? !callee->is_static() : inv.has_receiver();
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
664 Bytecode inv(str);
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
665 Bytecodes::Code code = inv.invoke_code();
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
666 const bool has_receiver = callee->is_loaded() ? !callee->is_static() : code != Bytecodes::_invokestatic && code != Bytecodes::_invokedynamic;
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
667
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
668 ciSignature* signature = callee->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
669 ciSignatureStream sigstr(signature);
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
670 // Push appendix argument, if one.
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
671 if (str->has_appendix()) {
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
672 ciObject* appendix = str->get_appendix();
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
673 push_object(appendix->klass());
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
674 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
675 int arg_size = signature->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
676 int stack_base = stack_size() - arg_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
677 int i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
678 for( ; !sigstr.at_return_type(); sigstr.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
679 ciType* type = sigstr.type();
a61af66fc99e Initial load
duke
parents:
diff changeset
680 ciType* stack_type = type_at(stack(stack_base + i++));
a61af66fc99e Initial load
duke
parents:
diff changeset
681 // Do I want to check this type?
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // assert(stack_type->is_subtype_of(type), "bad type for field value");
a61af66fc99e Initial load
duke
parents:
diff changeset
683 if (type->is_two_word()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
684 ciType* stack_type2 = type_at(stack(stack_base + i++));
a61af66fc99e Initial load
duke
parents:
diff changeset
685 assert(stack_type2->equals(half_type(type)), "must be 2nd half");
a61af66fc99e Initial load
duke
parents:
diff changeset
686 }
a61af66fc99e Initial load
duke
parents:
diff changeset
687 }
a61af66fc99e Initial load
duke
parents:
diff changeset
688 assert(arg_size == i, "must match");
a61af66fc99e Initial load
duke
parents:
diff changeset
689 for (int j = 0; j < arg_size; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
690 pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
691 }
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 4777
diff changeset
692 assert(!callee->is_loaded() || has_receiver == !callee->is_static(), "mismatch");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
693 if (has_receiver) {
a61af66fc99e Initial load
duke
parents:
diff changeset
694 // Check this?
a61af66fc99e Initial load
duke
parents:
diff changeset
695 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
696 }
a61af66fc99e Initial load
duke
parents:
diff changeset
697 assert(!sigstr.is_done(), "must have return type");
a61af66fc99e Initial load
duke
parents:
diff changeset
698 ciType* return_type = sigstr.type();
a61af66fc99e Initial load
duke
parents:
diff changeset
699 if (!return_type->is_void()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
700 if (!return_type->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
701 // As in do_getstatic(), generally speaking, we need the return type to
a61af66fc99e Initial load
duke
parents:
diff changeset
702 // be loaded if we are to do anything interesting with its value.
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // We used to do this: trap(str, str->get_method_signature_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
704 //
a61af66fc99e Initial load
duke
parents:
diff changeset
705 // We do not trap here since execution can get past this invoke if
a61af66fc99e Initial load
duke
parents:
diff changeset
706 // the return value is null. As long as the value is null, the class
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // does not need to be loaded! The compiler must assume that
a61af66fc99e Initial load
duke
parents:
diff changeset
708 // the value of the unloaded class reference is null; if the code
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // ever sees a non-null value, loading has occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
710 //
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // See do_getstatic() for similar explanation, as well as bug 4684993.
a61af66fc99e Initial load
duke
parents:
diff changeset
712 do_null_assert(return_type->as_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
713 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
714 push_translate(return_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
715 }
a61af66fc99e Initial load
duke
parents:
diff changeset
716 }
a61af66fc99e Initial load
duke
parents:
diff changeset
717 }
a61af66fc99e Initial load
duke
parents:
diff changeset
718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
719
a61af66fc99e Initial load
duke
parents:
diff changeset
720 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
721 // ciTypeFlow::StateVector::do_jsr
a61af66fc99e Initial load
duke
parents:
diff changeset
722 void ciTypeFlow::StateVector::do_jsr(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
723 push(ciReturnAddress::make(str->next_bci()));
a61af66fc99e Initial load
duke
parents:
diff changeset
724 }
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
727 // ciTypeFlow::StateVector::do_ldc
a61af66fc99e Initial load
duke
parents:
diff changeset
728 void ciTypeFlow::StateVector::do_ldc(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
729 ciConstant con = str->get_constant();
a61af66fc99e Initial load
duke
parents:
diff changeset
730 BasicType basic_type = con.basic_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
731 if (basic_type == T_ILLEGAL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // OutOfMemoryError in the CI while loading constant
a61af66fc99e Initial load
duke
parents:
diff changeset
733 push_null();
a61af66fc99e Initial load
duke
parents:
diff changeset
734 outer()->record_failure("ldc did not link");
a61af66fc99e Initial load
duke
parents:
diff changeset
735 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
737 if (basic_type == T_OBJECT || basic_type == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
738 ciObject* obj = con.as_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
739 if (obj->is_null_object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 push_null();
a61af66fc99e Initial load
duke
parents:
diff changeset
741 } else {
1604
b918d354830a 6960865: ldc of unloaded class throws an assert in ciTypeFlow
jrose
parents: 1579
diff changeset
742 assert(!obj->is_klass(), "must be java_mirror of klass");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
743 push_object(obj->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
744 }
a61af66fc99e Initial load
duke
parents:
diff changeset
745 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
746 push_translate(ciType::make(basic_type));
a61af66fc99e Initial load
duke
parents:
diff changeset
747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
748 }
a61af66fc99e Initial load
duke
parents:
diff changeset
749
a61af66fc99e Initial load
duke
parents:
diff changeset
750 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
751 // ciTypeFlow::StateVector::do_multianewarray
a61af66fc99e Initial load
duke
parents:
diff changeset
752 void ciTypeFlow::StateVector::do_multianewarray(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
753 int dimensions = str->get_dimensions();
a61af66fc99e Initial load
duke
parents:
diff changeset
754 bool will_link;
a61af66fc99e Initial load
duke
parents:
diff changeset
755 ciArrayKlass* array_klass = str->get_klass(will_link)->as_array_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
756 if (!will_link) {
a61af66fc99e Initial load
duke
parents:
diff changeset
757 trap(str, array_klass, str->get_klass_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
758 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
759 for (int i = 0; i < dimensions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
760 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
761 }
a61af66fc99e Initial load
duke
parents:
diff changeset
762 push_object(array_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
763 }
a61af66fc99e Initial load
duke
parents:
diff changeset
764 }
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // ciTypeFlow::StateVector::do_new
a61af66fc99e Initial load
duke
parents:
diff changeset
768 void ciTypeFlow::StateVector::do_new(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
769 bool will_link;
a61af66fc99e Initial load
duke
parents:
diff changeset
770 ciKlass* klass = str->get_klass(will_link);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
771 if (!will_link || str->is_unresolved_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
772 trap(str, klass, str->get_klass_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
773 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
774 push_object(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
775 }
a61af66fc99e Initial load
duke
parents:
diff changeset
776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
777
a61af66fc99e Initial load
duke
parents:
diff changeset
778 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
779 // ciTypeFlow::StateVector::do_newarray
a61af66fc99e Initial load
duke
parents:
diff changeset
780 void ciTypeFlow::StateVector::do_newarray(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
781 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
782 ciKlass* klass = ciTypeArrayKlass::make((BasicType)str->get_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
783 push_object(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
784 }
a61af66fc99e Initial load
duke
parents:
diff changeset
785
a61af66fc99e Initial load
duke
parents:
diff changeset
786 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
787 // ciTypeFlow::StateVector::do_putfield
a61af66fc99e Initial load
duke
parents:
diff changeset
788 void ciTypeFlow::StateVector::do_putfield(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
789 do_putstatic(str);
a61af66fc99e Initial load
duke
parents:
diff changeset
790 if (_trap_bci != -1) return; // unloaded field holder, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
791 // could add assert here for type of object.
a61af66fc99e Initial load
duke
parents:
diff changeset
792 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
793 }
a61af66fc99e Initial load
duke
parents:
diff changeset
794
a61af66fc99e Initial load
duke
parents:
diff changeset
795 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
796 // ciTypeFlow::StateVector::do_putstatic
a61af66fc99e Initial load
duke
parents:
diff changeset
797 void ciTypeFlow::StateVector::do_putstatic(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
798 bool will_link;
a61af66fc99e Initial load
duke
parents:
diff changeset
799 ciField* field = str->get_field(will_link);
a61af66fc99e Initial load
duke
parents:
diff changeset
800 if (!will_link) {
a61af66fc99e Initial load
duke
parents:
diff changeset
801 trap(str, field->holder(), str->get_field_holder_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
802 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
803 ciType* field_type = field->type();
a61af66fc99e Initial load
duke
parents:
diff changeset
804 ciType* type = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
805 // Do I want to check this type?
a61af66fc99e Initial load
duke
parents:
diff changeset
806 // assert(type->is_subtype_of(field_type), "bad type for field value");
a61af66fc99e Initial load
duke
parents:
diff changeset
807 if (field_type->is_two_word()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
808 ciType* type2 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
809 assert(type2->is_two_word(), "must be 2nd half");
a61af66fc99e Initial load
duke
parents:
diff changeset
810 assert(type == half_type(type2), "must be 2nd half");
a61af66fc99e Initial load
duke
parents:
diff changeset
811 }
a61af66fc99e Initial load
duke
parents:
diff changeset
812 }
a61af66fc99e Initial load
duke
parents:
diff changeset
813 }
a61af66fc99e Initial load
duke
parents:
diff changeset
814
a61af66fc99e Initial load
duke
parents:
diff changeset
815 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
816 // ciTypeFlow::StateVector::do_ret
a61af66fc99e Initial load
duke
parents:
diff changeset
817 void ciTypeFlow::StateVector::do_ret(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
818 Cell index = local(str->get_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
819
a61af66fc99e Initial load
duke
parents:
diff changeset
820 ciType* address = type_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
821 assert(address->is_return_address(), "bad return address");
a61af66fc99e Initial load
duke
parents:
diff changeset
822 set_type_at(index, bottom_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
824
a61af66fc99e Initial load
duke
parents:
diff changeset
825 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
826 // ciTypeFlow::StateVector::trap
a61af66fc99e Initial load
duke
parents:
diff changeset
827 //
a61af66fc99e Initial load
duke
parents:
diff changeset
828 // Stop interpretation of this path with a trap.
a61af66fc99e Initial load
duke
parents:
diff changeset
829 void ciTypeFlow::StateVector::trap(ciBytecodeStream* str, ciKlass* klass, int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
830 _trap_bci = str->cur_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
831 _trap_index = index;
a61af66fc99e Initial load
duke
parents:
diff changeset
832
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // Log information about this trap:
a61af66fc99e Initial load
duke
parents:
diff changeset
834 CompileLog* log = outer()->env()->log();
a61af66fc99e Initial load
duke
parents:
diff changeset
835 if (log != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
836 int mid = log->identify(outer()->method());
a61af66fc99e Initial load
duke
parents:
diff changeset
837 int kid = (klass == NULL)? -1: log->identify(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
838 log->begin_elem("uncommon_trap method='%d' bci='%d'", mid, str->cur_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
839 char buf[100];
a61af66fc99e Initial load
duke
parents:
diff changeset
840 log->print(" %s", Deoptimization::format_trap_request(buf, sizeof(buf),
a61af66fc99e Initial load
duke
parents:
diff changeset
841 index));
a61af66fc99e Initial load
duke
parents:
diff changeset
842 if (kid >= 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
843 log->print(" klass='%d'", kid);
a61af66fc99e Initial load
duke
parents:
diff changeset
844 log->end_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
845 }
a61af66fc99e Initial load
duke
parents:
diff changeset
846 }
a61af66fc99e Initial load
duke
parents:
diff changeset
847
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
849 // ciTypeFlow::StateVector::do_null_assert
a61af66fc99e Initial load
duke
parents:
diff changeset
850 // Corresponds to graphKit::do_null_assert.
a61af66fc99e Initial load
duke
parents:
diff changeset
851 void ciTypeFlow::StateVector::do_null_assert(ciKlass* unloaded_klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
852 if (unloaded_klass->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // We failed to link, but we can still compute with this class,
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // since it is loaded somewhere. The compiler will uncommon_trap
a61af66fc99e Initial load
duke
parents:
diff changeset
855 // if the object is not null, but the typeflow pass can not assume
a61af66fc99e Initial load
duke
parents:
diff changeset
856 // that the object will be null, otherwise it may incorrectly tell
a61af66fc99e Initial load
duke
parents:
diff changeset
857 // the parser that an object is known to be null. 4761344, 4807707
a61af66fc99e Initial load
duke
parents:
diff changeset
858 push_object(unloaded_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
859 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
860 // The class is not loaded anywhere. It is safe to model the
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // null in the typestates, because we can compile in a null check
a61af66fc99e Initial load
duke
parents:
diff changeset
862 // which will deoptimize us if someone manages to load the
a61af66fc99e Initial load
duke
parents:
diff changeset
863 // class later.
a61af66fc99e Initial load
duke
parents:
diff changeset
864 push_null();
a61af66fc99e Initial load
duke
parents:
diff changeset
865 }
a61af66fc99e Initial load
duke
parents:
diff changeset
866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // ciTypeFlow::StateVector::apply_one_bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
871 //
a61af66fc99e Initial load
duke
parents:
diff changeset
872 // Apply the effect of one bytecode to this StateVector
a61af66fc99e Initial load
duke
parents:
diff changeset
873 bool ciTypeFlow::StateVector::apply_one_bytecode(ciBytecodeStream* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
874 _trap_bci = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
875 _trap_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
876
a61af66fc99e Initial load
duke
parents:
diff changeset
877 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
878 tty->print_cr(">> Interpreting bytecode %d:%s", str->cur_bci(),
a61af66fc99e Initial load
duke
parents:
diff changeset
879 Bytecodes::name(str->cur_bc()));
a61af66fc99e Initial load
duke
parents:
diff changeset
880 }
a61af66fc99e Initial load
duke
parents:
diff changeset
881
a61af66fc99e Initial load
duke
parents:
diff changeset
882 switch(str->cur_bc()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
883 case Bytecodes::_aaload: do_aaload(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
884
a61af66fc99e Initial load
duke
parents:
diff changeset
885 case Bytecodes::_aastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
886 {
a61af66fc99e Initial load
duke
parents:
diff changeset
887 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
888 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
889 pop_objArray();
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 case Bytecodes::_aconst_null:
a61af66fc99e Initial load
duke
parents:
diff changeset
893 {
a61af66fc99e Initial load
duke
parents:
diff changeset
894 push_null();
a61af66fc99e Initial load
duke
parents:
diff changeset
895 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
896 }
a61af66fc99e Initial load
duke
parents:
diff changeset
897 case Bytecodes::_aload: load_local_object(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
898 case Bytecodes::_aload_0: load_local_object(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
899 case Bytecodes::_aload_1: load_local_object(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
900 case Bytecodes::_aload_2: load_local_object(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
901 case Bytecodes::_aload_3: load_local_object(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
902
a61af66fc99e Initial load
duke
parents:
diff changeset
903 case Bytecodes::_anewarray:
a61af66fc99e Initial load
duke
parents:
diff changeset
904 {
a61af66fc99e Initial load
duke
parents:
diff changeset
905 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
906 bool will_link;
a61af66fc99e Initial load
duke
parents:
diff changeset
907 ciKlass* element_klass = str->get_klass(will_link);
a61af66fc99e Initial load
duke
parents:
diff changeset
908 if (!will_link) {
a61af66fc99e Initial load
duke
parents:
diff changeset
909 trap(str, element_klass, str->get_klass_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
910 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
911 push_object(ciObjArrayKlass::make(element_klass));
a61af66fc99e Initial load
duke
parents:
diff changeset
912 }
a61af66fc99e Initial load
duke
parents:
diff changeset
913 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
914 }
a61af66fc99e Initial load
duke
parents:
diff changeset
915 case Bytecodes::_areturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
916 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
917 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
918 {
a61af66fc99e Initial load
duke
parents:
diff changeset
919 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
920 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
921 }
a61af66fc99e Initial load
duke
parents:
diff changeset
922 case Bytecodes::_monitorenter:
a61af66fc99e Initial load
duke
parents:
diff changeset
923 {
a61af66fc99e Initial load
duke
parents:
diff changeset
924 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
925 set_monitor_count(monitor_count() + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
926 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
928 case Bytecodes::_monitorexit:
a61af66fc99e Initial load
duke
parents:
diff changeset
929 {
a61af66fc99e Initial load
duke
parents:
diff changeset
930 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
931 assert(monitor_count() > 0, "must be a monitor to exit from");
a61af66fc99e Initial load
duke
parents:
diff changeset
932 set_monitor_count(monitor_count() - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
933 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
935 case Bytecodes::_arraylength:
a61af66fc99e Initial load
duke
parents:
diff changeset
936 {
a61af66fc99e Initial load
duke
parents:
diff changeset
937 pop_array();
a61af66fc99e Initial load
duke
parents:
diff changeset
938 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
939 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
941 case Bytecodes::_astore: store_local_object(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
942 case Bytecodes::_astore_0: store_local_object(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
943 case Bytecodes::_astore_1: store_local_object(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
944 case Bytecodes::_astore_2: store_local_object(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
945 case Bytecodes::_astore_3: store_local_object(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
946
a61af66fc99e Initial load
duke
parents:
diff changeset
947 case Bytecodes::_athrow:
a61af66fc99e Initial load
duke
parents:
diff changeset
948 {
a61af66fc99e Initial load
duke
parents:
diff changeset
949 NEEDS_CLEANUP;
a61af66fc99e Initial load
duke
parents:
diff changeset
950 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
951 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
953 case Bytecodes::_baload:
a61af66fc99e Initial load
duke
parents:
diff changeset
954 case Bytecodes::_caload:
a61af66fc99e Initial load
duke
parents:
diff changeset
955 case Bytecodes::_iaload:
a61af66fc99e Initial load
duke
parents:
diff changeset
956 case Bytecodes::_saload:
a61af66fc99e Initial load
duke
parents:
diff changeset
957 {
a61af66fc99e Initial load
duke
parents:
diff changeset
958 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
959 ciTypeArrayKlass* array_klass = pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // Put assert here for right type?
a61af66fc99e Initial load
duke
parents:
diff changeset
961 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
962 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
963 }
a61af66fc99e Initial load
duke
parents:
diff changeset
964 case Bytecodes::_bastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
965 case Bytecodes::_castore:
a61af66fc99e Initial load
duke
parents:
diff changeset
966 case Bytecodes::_iastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
967 case Bytecodes::_sastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
968 {
a61af66fc99e Initial load
duke
parents:
diff changeset
969 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
970 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
971 pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
972 // assert here?
a61af66fc99e Initial load
duke
parents:
diff changeset
973 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
974 }
a61af66fc99e Initial load
duke
parents:
diff changeset
975 case Bytecodes::_bipush:
a61af66fc99e Initial load
duke
parents:
diff changeset
976 case Bytecodes::_iconst_m1:
a61af66fc99e Initial load
duke
parents:
diff changeset
977 case Bytecodes::_iconst_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
978 case Bytecodes::_iconst_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
979 case Bytecodes::_iconst_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
980 case Bytecodes::_iconst_3:
a61af66fc99e Initial load
duke
parents:
diff changeset
981 case Bytecodes::_iconst_4:
a61af66fc99e Initial load
duke
parents:
diff changeset
982 case Bytecodes::_iconst_5:
a61af66fc99e Initial load
duke
parents:
diff changeset
983 case Bytecodes::_sipush:
a61af66fc99e Initial load
duke
parents:
diff changeset
984 {
a61af66fc99e Initial load
duke
parents:
diff changeset
985 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
986 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
987 }
a61af66fc99e Initial load
duke
parents:
diff changeset
988 case Bytecodes::_checkcast: do_checkcast(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
989
a61af66fc99e Initial load
duke
parents:
diff changeset
990 case Bytecodes::_d2f:
a61af66fc99e Initial load
duke
parents:
diff changeset
991 {
a61af66fc99e Initial load
duke
parents:
diff changeset
992 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
993 push_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
994 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
995 }
a61af66fc99e Initial load
duke
parents:
diff changeset
996 case Bytecodes::_d2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
997 {
a61af66fc99e Initial load
duke
parents:
diff changeset
998 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
999 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 case Bytecodes::_d2l:
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 case Bytecodes::_dadd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 case Bytecodes::_ddiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 case Bytecodes::_dmul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 case Bytecodes::_drem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 case Bytecodes::_dsub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 push_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 case Bytecodes::_daload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 ciTypeArrayKlass* array_klass = pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 // Put assert here for right type?
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 push_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 case Bytecodes::_dastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 // assert here?
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 case Bytecodes::_dcmpg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 case Bytecodes::_dcmpl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 case Bytecodes::_dconst_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 case Bytecodes::_dconst_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 push_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 case Bytecodes::_dload: load_local_double(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 case Bytecodes::_dload_0: load_local_double(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 case Bytecodes::_dload_1: load_local_double(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 case Bytecodes::_dload_2: load_local_double(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 case Bytecodes::_dload_3: load_local_double(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1054
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 case Bytecodes::_dneg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 push_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 case Bytecodes::_dreturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 pop_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 case Bytecodes::_dstore: store_local_double(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 case Bytecodes::_dstore_0: store_local_double(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 case Bytecodes::_dstore_1: store_local_double(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 case Bytecodes::_dstore_2: store_local_double(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 case Bytecodes::_dstore_3: store_local_double(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1071
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 case Bytecodes::_dup:
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 push(type_at_tos());
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 case Bytecodes::_dup_x1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 ciType* value1 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 ciType* value2 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 case Bytecodes::_dup_x2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 ciType* value1 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 ciType* value2 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 ciType* value3 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 push(value3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 case Bytecodes::_dup2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 ciType* value1 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 ciType* value2 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 case Bytecodes::_dup2_x1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 ciType* value1 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 ciType* value2 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 ciType* value3 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 push(value3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 case Bytecodes::_dup2_x2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 ciType* value1 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 ciType* value2 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 ciType* value3 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 ciType* value4 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 push(value4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 push(value3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 case Bytecodes::_f2d:
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 push_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 case Bytecodes::_f2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 case Bytecodes::_f2l:
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 case Bytecodes::_fadd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 case Bytecodes::_fdiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 case Bytecodes::_fmul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 case Bytecodes::_frem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 case Bytecodes::_fsub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 push_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 case Bytecodes::_faload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 ciTypeArrayKlass* array_klass = pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 // Put assert here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 push_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 case Bytecodes::_fastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 ciTypeArrayKlass* array_klass = pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 // Put assert here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 case Bytecodes::_fcmpg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 case Bytecodes::_fcmpl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 case Bytecodes::_fconst_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 case Bytecodes::_fconst_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 case Bytecodes::_fconst_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 push_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 case Bytecodes::_fload: load_local_float(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 case Bytecodes::_fload_0: load_local_float(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 case Bytecodes::_fload_1: load_local_float(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 case Bytecodes::_fload_2: load_local_float(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 case Bytecodes::_fload_3: load_local_float(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1198
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 case Bytecodes::_fneg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 push_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 case Bytecodes::_freturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 pop_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 case Bytecodes::_fstore: store_local_float(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 case Bytecodes::_fstore_0: store_local_float(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 case Bytecodes::_fstore_1: store_local_float(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 case Bytecodes::_fstore_2: store_local_float(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 case Bytecodes::_fstore_3: store_local_float(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1215
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 case Bytecodes::_getfield: do_getfield(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 case Bytecodes::_getstatic: do_getstatic(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1218
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 case Bytecodes::_nop:
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 case Bytecodes::_return:
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 // do nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 case Bytecodes::_i2b:
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 case Bytecodes::_i2c:
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 case Bytecodes::_i2s:
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 case Bytecodes::_ineg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 case Bytecodes::_i2d:
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 push_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 case Bytecodes::_i2f:
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 push_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 case Bytecodes::_i2l:
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 case Bytecodes::_iadd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 case Bytecodes::_iand:
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 case Bytecodes::_idiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 case Bytecodes::_imul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 case Bytecodes::_ior:
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 case Bytecodes::_irem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 case Bytecodes::_ishl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 case Bytecodes::_ishr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 case Bytecodes::_isub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 case Bytecodes::_iushr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 case Bytecodes::_ixor:
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 case Bytecodes::_ireturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 case Bytecodes::_iinc:
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 {
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1304 int lnum = str->get_index();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1305 check_int(local(lnum));
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1306 store_to_local(lnum);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 case Bytecodes::_iload: load_local_int(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 case Bytecodes::_iload_0: load_local_int(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 case Bytecodes::_iload_1: load_local_int(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 case Bytecodes::_iload_2: load_local_int(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 case Bytecodes::_iload_3: load_local_int(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1314
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 // Check for uncommon trap:
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 do_checkcast(str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 pop_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 case Bytecodes::_invokeinterface: do_invoke(str, true); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 case Bytecodes::_invokespecial: do_invoke(str, true); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 case Bytecodes::_invokestatic: do_invoke(str, false); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 case Bytecodes::_invokevirtual: do_invoke(str, true); break;
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 991
diff changeset
1327 case Bytecodes::_invokedynamic: do_invoke(str, false); break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1328
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 case Bytecodes::_istore: store_local_int(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 case Bytecodes::_istore_0: store_local_int(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 case Bytecodes::_istore_1: store_local_int(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 case Bytecodes::_istore_2: store_local_int(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 case Bytecodes::_istore_3: store_local_int(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1334
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 case Bytecodes::_jsr_w: do_jsr(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1337
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 case Bytecodes::_l2d:
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 push_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 case Bytecodes::_l2f:
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 push_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 case Bytecodes::_l2i:
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 case Bytecodes::_ladd:
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 case Bytecodes::_land:
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 case Bytecodes::_ldiv:
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 case Bytecodes::_lmul:
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 case Bytecodes::_lor:
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 case Bytecodes::_lrem:
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 case Bytecodes::_lsub:
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 case Bytecodes::_lxor:
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 case Bytecodes::_laload:
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 ciTypeArrayKlass* array_klass = pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 // Put assert here for right type?
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 case Bytecodes::_lastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 pop_typeArray();
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 // assert here?
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 case Bytecodes::_lcmp:
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 push_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 case Bytecodes::_lconst_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 case Bytecodes::_lconst_1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 case Bytecodes::_ldc:
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 case Bytecodes::_ldc_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 case Bytecodes::_ldc2_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 do_ldc(str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1406
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 case Bytecodes::_lload: load_local_long(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 case Bytecodes::_lload_0: load_local_long(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 case Bytecodes::_lload_1: load_local_long(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 case Bytecodes::_lload_2: load_local_long(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 case Bytecodes::_lload_3: load_local_long(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1412
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 case Bytecodes::_lneg:
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 case Bytecodes::_lreturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 case Bytecodes::_lshl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 case Bytecodes::_lshr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 case Bytecodes::_lushr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 pop_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 pop_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 push_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 case Bytecodes::_lstore: store_local_long(str->get_index()); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 case Bytecodes::_lstore_0: store_local_long(0); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 case Bytecodes::_lstore_1: store_local_long(1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 case Bytecodes::_lstore_2: store_local_long(2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 case Bytecodes::_lstore_3: store_local_long(3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1438
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 case Bytecodes::_multianewarray: do_multianewarray(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1440
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 case Bytecodes::_new: do_new(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1442
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 case Bytecodes::_newarray: do_newarray(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1444
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 case Bytecodes::_pop:
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 case Bytecodes::_pop2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1456
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 case Bytecodes::_putfield: do_putfield(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 case Bytecodes::_putstatic: do_putstatic(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1459
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 case Bytecodes::_ret: do_ret(str); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1461
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 case Bytecodes::_swap:
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 ciType* value1 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 ciType* value2 = pop_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 push(value1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 push(value2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 case Bytecodes::_wide:
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 // The iterator should skip this.
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1478
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1482
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 return (_trap_bci != -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1485
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 // ciTypeFlow::StateVector::print_cell_on
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 void ciTypeFlow::StateVector::print_cell_on(outputStream* st, Cell c) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 ciType* type = type_at(c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 if (type == top_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 st->print("top");
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 } else if (type == bottom_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 st->print("bottom");
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 } else if (type == null_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 st->print("null");
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 } else if (type == long2_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 st->print("long2");
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 } else if (type == double2_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 st->print("double2");
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 } else if (is_int(type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 st->print("int");
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 } else if (is_long(type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 st->print("long");
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 } else if (is_float(type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 st->print("float");
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 } else if (is_double(type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 st->print("double");
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 } else if (type->is_return_address()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 st->print("address(%d)", type->as_return_address()->bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 if (type->is_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 type->as_klass()->name()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 st->print("UNEXPECTED TYPE");
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 type->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1520
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 // ciTypeFlow::StateVector::print_on
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 void ciTypeFlow::StateVector::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 int num_locals = _outer->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 int num_stack = stack_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 int num_monitors = monitor_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 st->print_cr(" State : locals %d, stack %d, monitors %d", num_locals, num_stack, num_monitors);
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 if (num_stack >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 for (i = 0; i < num_locals; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 st->print(" local %2d : ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 print_cell_on(st, local(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 for (i = 0; i < num_stack; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 st->print(" stack %2d : ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 print_cell_on(st, stack(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1543
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1544
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1545 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1546 // ciTypeFlow::SuccIter::next
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1547 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1548 void ciTypeFlow::SuccIter::next() {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1549 int succ_ct = _pred->successors()->length();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1550 int next = _index + 1;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1551 if (next < succ_ct) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1552 _index = next;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1553 _succ = _pred->successors()->at(next);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1554 return;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1555 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1556 for (int i = next - succ_ct; i < _pred->exceptions()->length(); i++) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1557 // Do not compile any code for unloaded exception types.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1558 // Following compiler passes are responsible for doing this also.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1559 ciInstanceKlass* exception_klass = _pred->exc_klasses()->at(i);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1560 if (exception_klass->is_loaded()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1561 _index = next;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1562 _succ = _pred->exceptions()->at(i);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1563 return;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1564 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1565 next++;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1566 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1567 _index = -1;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1568 _succ = NULL;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1569 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1570
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1571 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1572 // ciTypeFlow::SuccIter::set_succ
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1573 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1574 void ciTypeFlow::SuccIter::set_succ(Block* succ) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1575 int succ_ct = _pred->successors()->length();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1576 if (_index < succ_ct) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1577 _pred->successors()->at_put(_index, succ);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1578 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1579 int idx = _index - succ_ct;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1580 _pred->exceptions()->at_put(idx, succ);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1581 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1582 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1583
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 // ciTypeFlow::Block
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 // A basic block.
a61af66fc99e Initial load
duke
parents:
diff changeset
1587
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 // ciTypeFlow::Block::Block
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 ciTypeFlow::Block::Block(ciTypeFlow* outer,
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 ciBlock *ciblk,
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 ciTypeFlow::JsrSet* jsrs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 _ciblock = ciblk;
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 _exceptions = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 _exc_klasses = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 _successors = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 _state = new (outer->arena()) StateVector(outer);
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 JsrSet* new_jsrs =
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 new (outer->arena()) JsrSet(outer->arena(), jsrs->size());
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 jsrs->copy_into(new_jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 _jsrs = new_jsrs;
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 _on_work_list = false;
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1604 _backedge_copy = false;
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
1605 _has_monitorenter = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 _trap_bci = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 _trap_index = 0;
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1608 df_init();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1609
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 tty->print_cr(">> Created new block");
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1614
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 assert(this->outer() == outer, "outer link set up");
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 assert(!outer->have_block_count(), "must not have mapped blocks yet");
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1618
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 // ------------------------------------------------------------------
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1620 // ciTypeFlow::Block::df_init
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1621 void ciTypeFlow::Block::df_init() {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1622 _pre_order = -1; assert(!has_pre_order(), "");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1623 _post_order = -1; assert(!has_post_order(), "");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1624 _loop = NULL;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1625 _irreducible_entry = false;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1626 _rpo_next = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1628
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 // ciTypeFlow::Block::successors
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 // Get the successors for this Block.
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 GrowableArray<ciTypeFlow::Block*>*
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 ciTypeFlow::Block::successors(ciBytecodeStream* str,
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 ciTypeFlow::StateVector* state,
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 ciTypeFlow::JsrSet* jsrs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 if (_successors == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 tty->print(">> Computing successors for block ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1643
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 ciTypeFlow* analyzer = outer();
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 Arena* arena = analyzer->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 Block* block = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 bool has_successor = !has_trap() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 (control() != ciBlock::fall_through_bci || limit() < analyzer->code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 if (!has_successor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 new (arena) GrowableArray<Block*>(arena, 1, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 // No successors
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 } else if (control() == ciBlock::fall_through_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 assert(str->cur_bci() == limit(), "bad block end");
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 // This block simply falls through to the next.
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 new (arena) GrowableArray<Block*>(arena, 1, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1658
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 Block* block = analyzer->block_at(limit(), _jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 assert(_successors->length() == FALL_THROUGH, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 _successors->append(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 int current_bci = str->cur_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 int next_bci = str->next_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 int branch_bci = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 Block* target = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 assert(str->next_bci() == limit(), "bad block end");
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 // This block is not a simple fall-though. Interpret
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 // the current bytecode to find our successors.
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 switch (str->cur_bc()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 case Bytecodes::_ifeq: case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 case Bytecodes::_iflt: case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 case Bytecodes::_ifgt: case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 case Bytecodes::_if_icmpeq: case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 case Bytecodes::_if_icmplt: case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 case Bytecodes::_if_icmpgt: case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 case Bytecodes::_if_acmpeq: case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 case Bytecodes::_ifnull: case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 // Our successors are the branch target and the next bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 branch_bci = str->get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 new (arena) GrowableArray<Block*>(arena, 2, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 assert(_successors->length() == IF_NOT_TAKEN, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 _successors->append(analyzer->block_at(next_bci, jsrs));
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 assert(_successors->length() == IF_TAKEN, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 _successors->append(analyzer->block_at(branch_bci, jsrs));
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1688
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 branch_bci = str->get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 new (arena) GrowableArray<Block*>(arena, 1, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 assert(_successors->length() == GOTO_TARGET, "");
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1694 _successors->append(analyzer->block_at(branch_bci, jsrs));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1696
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 branch_bci = str->get_dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 new (arena) GrowableArray<Block*>(arena, 1, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 assert(_successors->length() == GOTO_TARGET, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 _successors->append(analyzer->block_at(branch_bci, jsrs));
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1704
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 new (arena) GrowableArray<Block*>(arena, 1, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 assert(_successors->length() == GOTO_TARGET, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 _successors->append(analyzer->block_at(str->get_far_dest(), jsrs));
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1712
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 case Bytecodes::_tableswitch: {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1714 Bytecode_tableswitch tableswitch(str);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1715
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1716 int len = tableswitch.length();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 new (arena) GrowableArray<Block*>(arena, len+1, 0, NULL);
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1719 int bci = current_bci + tableswitch.default_offset();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 Block* block = analyzer->block_at(bci, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 assert(_successors->length() == SWITCH_DEFAULT, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 _successors->append(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 while (--len >= 0) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1724 int bci = current_bci + tableswitch.dest_offset_at(len);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 block = analyzer->block_at(bci, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 assert(_successors->length() >= SWITCH_CASES, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 _successors->append_if_missing(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1731
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 case Bytecodes::_lookupswitch: {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1733 Bytecode_lookupswitch lookupswitch(str);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1734
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1735 int npairs = lookupswitch.number_of_pairs();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 new (arena) GrowableArray<Block*>(arena, npairs+1, 0, NULL);
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1738 int bci = current_bci + lookupswitch.default_offset();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 Block* block = analyzer->block_at(bci, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 assert(_successors->length() == SWITCH_DEFAULT, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 _successors->append(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 while(--npairs >= 0) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1743 LookupswitchPair pair = lookupswitch.pair_at(npairs);
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
1744 int bci = current_bci + pair.offset();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 Block* block = analyzer->block_at(bci, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 assert(_successors->length() >= SWITCH_CASES, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 _successors->append_if_missing(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1751
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 case Bytecodes::_athrow: case Bytecodes::_ireturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 case Bytecodes::_lreturn: case Bytecodes::_freturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 case Bytecodes::_dreturn: case Bytecodes::_areturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 case Bytecodes::_return:
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 new (arena) GrowableArray<Block*>(arena, 1, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 // No successors
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1760
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 case Bytecodes::_ret: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 _successors =
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 new (arena) GrowableArray<Block*>(arena, 1, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1764
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 Cell local = state->local(str->get_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 ciType* return_address = state->type_at(local);
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 assert(return_address->is_return_address(), "verify: wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 int bci = return_address->as_return_address()->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 assert(_successors->length() == GOTO_TARGET, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 _successors->append(analyzer->block_at(bci, jsrs));
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1773
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 case Bytecodes::_wide:
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 return _successors;
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1783
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 // ciTypeFlow::Block:compute_exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 // Compute the exceptional successors and types for this Block.
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 void ciTypeFlow::Block::compute_exceptions() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 assert(_exceptions == NULL && _exc_klasses == NULL, "repeat");
a61af66fc99e Initial load
duke
parents:
diff changeset
1790
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 tty->print(">> Computing exceptions for block ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1796
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 ciTypeFlow* analyzer = outer();
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 Arena* arena = analyzer->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
1799
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 // Any bci in the block will do.
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 ciExceptionHandlerStream str(analyzer->method(), start());
a61af66fc99e Initial load
duke
parents:
diff changeset
1802
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 // Allocate our growable arrays.
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 int exc_count = str.count();
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 _exceptions = new (arena) GrowableArray<Block*>(arena, exc_count, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 _exc_klasses = new (arena) GrowableArray<ciInstanceKlass*>(arena, exc_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1808
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 for ( ; !str.is_done(); str.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 ciExceptionHandler* handler = str.handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 int bci = handler->handler_bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 ciInstanceKlass* klass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 if (bci == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 // There is no catch all. It is possible to exit the method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 if (handler->is_catch_all()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 klass = analyzer->env()->Throwable_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 klass = handler->catch_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 _exceptions->append(analyzer->block_at(bci, _jsrs));
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 _exc_klasses->append(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1826
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 // ------------------------------------------------------------------
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1828 // ciTypeFlow::Block::set_backedge_copy
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1829 // Use this only to make a pre-existing public block into a backedge copy.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1830 void ciTypeFlow::Block::set_backedge_copy(bool z) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1831 assert(z || (z == is_backedge_copy()), "cannot make a backedge copy public");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1832 _backedge_copy = z;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1834
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 // ------------------------------------------------------------------
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1836 // ciTypeFlow::Block::is_clonable_exit
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1837 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1838 // At most 2 normal successors, one of which continues looping,
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1839 // and all exceptional successors must exit.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1840 bool ciTypeFlow::Block::is_clonable_exit(ciTypeFlow::Loop* lp) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1841 int normal_cnt = 0;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1842 int in_loop_cnt = 0;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1843 for (SuccIter iter(this); !iter.done(); iter.next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1844 Block* succ = iter.succ();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1845 if (iter.is_normal_ctrl()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1846 if (++normal_cnt > 2) return false;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1847 if (lp->contains(succ->loop())) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1848 if (++in_loop_cnt > 1) return false;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1849 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1850 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1851 if (lp->contains(succ->loop())) return false;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1852 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1853 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1854 return in_loop_cnt == 1;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1855 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1856
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1857 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1858 // ciTypeFlow::Block::looping_succ
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1859 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1860 ciTypeFlow::Block* ciTypeFlow::Block::looping_succ(ciTypeFlow::Loop* lp) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1861 assert(successors()->length() <= 2, "at most 2 normal successors");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1862 for (SuccIter iter(this); !iter.done(); iter.next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1863 Block* succ = iter.succ();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1864 if (lp->contains(succ->loop())) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1865 return succ;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1866 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1867 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1868 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1870
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 // ciTypeFlow::Block::print_value_on
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 void ciTypeFlow::Block::print_value_on(outputStream* st) const {
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1875 if (has_pre_order()) st->print("#%-2d ", pre_order());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1876 if (has_rpo()) st->print("rpo#%-2d ", rpo());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 st->print("[%d - %d)", start(), limit());
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1878 if (is_loop_head()) st->print(" lphd");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1879 if (is_irreducible_entry()) st->print(" irred");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 if (_jsrs->size() > 0) { st->print("/"); _jsrs->print_on(st); }
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1881 if (is_backedge_copy()) st->print("/backedge_copy");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1883
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 // ciTypeFlow::Block::print_on
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 void ciTypeFlow::Block::print_on(outputStream* st) const {
2398
322a41ec766c 7025708: Assertion if using "-XX:+CITraceTypeFlow -XX:+Verbose" together
never
parents: 2142
diff changeset
1887 if ((Verbose || WizardMode) && (limit() >= 0)) {
322a41ec766c 7025708: Assertion if using "-XX:+CITraceTypeFlow -XX:+Verbose" together
never
parents: 2142
diff changeset
1888 // Don't print 'dummy' blocks (i.e. blocks with limit() '-1')
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 outer()->method()->print_codes_on(start(), limit(), st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 st->print_cr(" ==================================================== ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 st->print (" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 print_value_on(st);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1894 st->print(" Stored locals: "); def_locals()->print_on(st, outer()->method()->max_locals()); tty->cr();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1895 if (loop() && loop()->parent() != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1896 st->print(" loops:");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1897 Loop* lp = loop();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1898 do {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1899 st->print(" %d<-%d", lp->head()->pre_order(),lp->tail()->pre_order());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1900 if (lp->is_irreducible()) st->print("(ir)");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1901 lp = lp->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1902 } while (lp->parent() != NULL);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1903 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 _state->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 if (_successors == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 st->print_cr(" No successor information");
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 int num_successors = _successors->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 st->print_cr(" Successors : %d", num_successors);
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 for (int i = 0; i < num_successors; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 Block* successor = _successors->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 st->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 successor->print_value_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 if (_exceptions == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 st->print_cr(" No exception information");
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 int num_exceptions = _exceptions->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 st->print_cr(" Exceptions : %d", num_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 for (int i = 0; i < num_exceptions; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 Block* exc_succ = _exceptions->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 ciInstanceKlass* exc_klass = _exc_klasses->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 st->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 exc_succ->print_value_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 st->print(" -- ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 exc_klass->name()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 if (has_trap()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1934 st->print_cr(" Traps on %d with trap index %d", trap_bci(), trap_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 st->print_cr(" ==================================================== ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1939
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1940 #ifndef PRODUCT
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1941 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1942 // ciTypeFlow::LocalSet::print_on
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1943 void ciTypeFlow::LocalSet::print_on(outputStream* st, int limit) const {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1944 st->print("{");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1945 for (int i = 0; i < max; i++) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1946 if (test(i)) st->print(" %d", i);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1947 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1948 if (limit > max) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1949 st->print(" %d..%d ", max, limit);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1950 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1951 st->print(" }");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1952 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1953 #endif
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1954
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 // ciTypeFlow
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 // This is a pass over the bytecodes which computes the following:
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 // basic block structure
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 // interpreter type-states (a la the verifier)
a61af66fc99e Initial load
duke
parents:
diff changeset
1960
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 // ciTypeFlow::ciTypeFlow
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 ciTypeFlow::ciTypeFlow(ciEnv* env, ciMethod* method, int osr_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 _env = env;
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 _method = method;
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 _methodBlocks = method->get_method_blocks();
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 _max_locals = method->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 _max_stack = method->max_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 _code_size = method->code_size();
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
1970 _has_irreducible_entry = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 _osr_bci = osr_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 _failure_reason = NULL;
1846
d55217dc206f 6829194: JSR 292 needs to support compressed oops
twisti
parents: 1685
diff changeset
1973 assert(0 <= start_bci() && start_bci() < code_size() , err_msg("correct osr_bci argument: 0 <= %d < %d", start_bci(), code_size()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 _work_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1975
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 _ciblock_count = _methodBlocks->num_blocks();
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 _idx_to_blocklist = NEW_ARENA_ARRAY(arena(), GrowableArray<Block*>*, _ciblock_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 for (int i = 0; i < _ciblock_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 _idx_to_blocklist[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 _block_map = NULL; // until all blocks are seen
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 _jsr_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 _jsr_records = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1985
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 // ciTypeFlow::work_list_next
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 // Get the next basic block from our work list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 ciTypeFlow::Block* ciTypeFlow::work_list_next() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 assert(!work_list_empty(), "work list must not be empty");
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 Block* next_block = _work_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 _work_list = next_block->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 next_block->set_next(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 next_block->set_on_work_list(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 return next_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1998
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 // ciTypeFlow::add_to_work_list
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 // Add a basic block to our work list.
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2003 // List is sorted by decreasing postorder sort (same as increasing RPO)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 void ciTypeFlow::add_to_work_list(ciTypeFlow::Block* block) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 assert(!block->is_on_work_list(), "must not already be on work list");
a61af66fc99e Initial load
duke
parents:
diff changeset
2006
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 if (CITraceTypeFlow) {
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2008 tty->print(">> Adding block ");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 block->print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 tty->print_cr(" to the work list : ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2012
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 block->set_on_work_list(true);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2014
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2015 // decreasing post order sort
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2016
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2017 Block* prev = NULL;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2018 Block* current = _work_list;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2019 int po = block->post_order();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2020 while (current != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2021 if (!current->has_post_order() || po > current->post_order())
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2022 break;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2023 prev = current;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2024 current = current->next();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2025 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2026 if (prev == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 block->set_next(_work_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 _work_list = block;
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 } else {
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2030 block->set_next(current);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2031 prev->set_next(block);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 }
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2033
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2038
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 // ciTypeFlow::block_at
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 // Return the block beginning at bci which has a JsrSet compatible
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 // with jsrs.
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 ciTypeFlow::Block* ciTypeFlow::block_at(int bci, ciTypeFlow::JsrSet* jsrs, CreateOption option) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 // First find the right ciBlock.
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 tty->print(">> Requesting block for %d/", bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 jsrs->print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2051
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 ciBlock* ciblk = _methodBlocks->block_containing(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 assert(ciblk->start_bci() == bci, "bad ciBlock boundaries");
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 Block* block = get_block_for(ciblk->index(), jsrs, option);
a61af66fc99e Initial load
duke
parents:
diff changeset
2055
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2056 assert(block == NULL? (option == no_create): block->is_backedge_copy() == (option == create_backedge_copy), "create option consistent with result");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2057
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 if (block != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 tty->print(">> Found block ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 block->print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 tty->print_cr(">> No such block.");
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2067
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 return block;
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2070
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 // ciTypeFlow::make_jsr_record
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 // Make a JsrRecord for a given (entry, return) pair, if such a record
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 // does not already exist.
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 ciTypeFlow::JsrRecord* ciTypeFlow::make_jsr_record(int entry_address,
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 int return_address) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 if (_jsr_records == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 _jsr_records = new (arena()) GrowableArray<JsrRecord*>(arena(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 _jsr_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 JsrRecord* record = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 int len = _jsr_records->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 JsrRecord* record = _jsr_records->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 if (record->entry_address() == entry_address &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 record->return_address() == return_address) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 return record;
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2093
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 record = new (arena()) JsrRecord(entry_address, return_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 _jsr_records->append(record);
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 return record;
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2098
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 // ciTypeFlow::flow_exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 // Merge the current state into all exceptional successors at the
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 // current point in the code.
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 void ciTypeFlow::flow_exceptions(GrowableArray<ciTypeFlow::Block*>* exceptions,
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 GrowableArray<ciInstanceKlass*>* exc_klasses,
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 ciTypeFlow::StateVector* state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 int len = exceptions->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 assert(exc_klasses->length() == len, "must have same length");
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 Block* block = exceptions->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 ciInstanceKlass* exception_klass = exc_klasses->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2112
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 if (!exception_klass->is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 // Do not compile any code for unloaded exception types.
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 // Following compiler passes are responsible for doing this also.
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2118
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 if (block->meet_exception(exception_klass, state)) {
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2120 // Block was modified and has PO. Add it to the work list.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2121 if (block->has_post_order() &&
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2122 !block->is_on_work_list()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 add_to_work_list(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2128
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 // ciTypeFlow::flow_successors
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 // Merge the current state into all successors at the current point
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 // in the code.
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 void ciTypeFlow::flow_successors(GrowableArray<ciTypeFlow::Block*>* successors,
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 ciTypeFlow::StateVector* state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 int len = successors->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 Block* block = successors->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 if (block->meet(state)) {
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2140 // Block was modified and has PO. Add it to the work list.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2141 if (block->has_post_order() &&
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2142 !block->is_on_work_list()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 add_to_work_list(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2148
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 // ciTypeFlow::can_trap
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 // Tells if a given instruction is able to generate an exception edge.
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 bool ciTypeFlow::can_trap(ciBytecodeStream& str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 // Cf. GenerateOopMap::do_exception_edge.
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 if (!Bytecodes::can_trap(str.cur_bc())) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2156
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 switch (str.cur_bc()) {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1137
diff changeset
2158 // %%% FIXME: ldc of Class can generate an exception
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 case Bytecodes::_ldc:
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 case Bytecodes::_ldc_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 case Bytecodes::_ldc2_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 case Bytecodes::_aload_0:
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 // These bytecodes can trap for rewriting. We need to assume that
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 // they do not throw exceptions to make the monitor analysis work.
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2166
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 case Bytecodes::_ireturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 case Bytecodes::_lreturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 case Bytecodes::_freturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 case Bytecodes::_dreturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 case Bytecodes::_areturn:
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 case Bytecodes::_return:
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 // We can assume the monitor stack is empty in this analysis.
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2175
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 case Bytecodes::_monitorexit:
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 // We can assume monitors are matched in this analysis.
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2180
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2183
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2184 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2185 // ciTypeFlow::clone_loop_heads
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2186 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2187 // Clone the loop heads
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2188 bool ciTypeFlow::clone_loop_heads(Loop* lp, StateVector* temp_vector, JsrSet* temp_set) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2189 bool rslt = false;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2190 for (PreorderLoops iter(loop_tree_root()); !iter.done(); iter.next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2191 lp = iter.current();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2192 Block* head = lp->head();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2193 if (lp == loop_tree_root() ||
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2194 lp->is_irreducible() ||
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2195 !head->is_clonable_exit(lp))
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2196 continue;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2197
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2198 // Avoid BoxLock merge.
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2199 if (EliminateNestedLocks && head->has_monitorenter())
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2200 continue;
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2201
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2202 // check not already cloned
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2203 if (head->backedge_copy_count() != 0)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2204 continue;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2205
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2206 // check _no_ shared head below us
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2207 Loop* ch;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2208 for (ch = lp->child(); ch != NULL && ch->head() != head; ch = ch->sibling());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2209 if (ch != NULL)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2210 continue;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2211
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2212 // Clone head
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2213 Block* new_head = head->looping_succ(lp);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2214 Block* clone = clone_loop_head(lp, temp_vector, temp_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2215 // Update lp's info
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2216 clone->set_loop(lp);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2217 lp->set_head(new_head);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2218 lp->set_tail(clone);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2219 // And move original head into outer loop
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2220 head->set_loop(lp->parent());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2221
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2222 rslt = true;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2223 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2224 return rslt;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2225 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2226
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2227 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2228 // ciTypeFlow::clone_loop_head
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2229 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2230 // Clone lp's head and replace tail's successors with clone.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2231 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2232 // |
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2233 // v
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2234 // head <-> body
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2235 // |
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2236 // v
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2237 // exit
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2238 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2239 // new_head
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2240 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2241 // |
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2242 // v
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2243 // head ----------\
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2244 // | |
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2245 // | v
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2246 // | clone <-> body
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2247 // | |
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2248 // | /--/
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2249 // | |
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2250 // v v
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2251 // exit
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2252 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2253 ciTypeFlow::Block* ciTypeFlow::clone_loop_head(Loop* lp, StateVector* temp_vector, JsrSet* temp_set) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2254 Block* head = lp->head();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2255 Block* tail = lp->tail();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2256 if (CITraceTypeFlow) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2257 tty->print(">> Requesting clone of loop head "); head->print_value_on(tty);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2258 tty->print(" for predecessor "); tail->print_value_on(tty);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2259 tty->cr();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2260 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2261 Block* clone = block_at(head->start(), head->jsrs(), create_backedge_copy);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2262 assert(clone->backedge_copy_count() == 1, "one backedge copy for all back edges");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2263
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2264 assert(!clone->has_pre_order(), "just created");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2265 clone->set_next_pre_order();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2266
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2267 // Insert clone after (orig) tail in reverse post order
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2268 clone->set_rpo_next(tail->rpo_next());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2269 tail->set_rpo_next(clone);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2270
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2271 // tail->head becomes tail->clone
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2272 for (SuccIter iter(tail); !iter.done(); iter.next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2273 if (iter.succ() == head) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2274 iter.set_succ(clone);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2275 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2276 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2277 flow_block(tail, temp_vector, temp_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2278 if (head == tail) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2279 // For self-loops, clone->head becomes clone->clone
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2280 flow_block(clone, temp_vector, temp_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2281 for (SuccIter iter(clone); !iter.done(); iter.next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2282 if (iter.succ() == head) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2283 iter.set_succ(clone);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2284 break;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2285 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2286 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2287 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2288 flow_block(clone, temp_vector, temp_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2289
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2290 return clone;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2291 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2292
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 // ciTypeFlow::flow_block
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 // Interpret the effects of the bytecodes on the incoming state
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 // vector of a basic block. Push the changed state to succeeding
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 // basic blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 void ciTypeFlow::flow_block(ciTypeFlow::Block* block,
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 ciTypeFlow::StateVector* state,
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 ciTypeFlow::JsrSet* jsrs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 tty->print("\n>> ANALYZING BLOCK : ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 block->print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 assert(block->has_pre_order(), "pre-order is assigned before 1st flow");
a61af66fc99e Initial load
duke
parents:
diff changeset
2308
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 int start = block->start();
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 int limit = block->limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 int control = block->control();
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 if (control != ciBlock::fall_through_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 limit = control;
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2315
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 // Grab the state from the current block.
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 block->copy_state_into(state);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2318 state->def_locals()->clear();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2319
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 GrowableArray<Block*>* exceptions = block->exceptions();
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 GrowableArray<ciInstanceKlass*>* exc_klasses = block->exc_klasses();
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 bool has_exceptions = exceptions->length() > 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2323
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2324 bool exceptions_used = false;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2325
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 ciBytecodeStream str(method());
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 str.reset_to_bci(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 Bytecodes::Code code;
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 while ((code = str.next()) != ciBytecodeStream::EOBC() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 str.cur_bci() < limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 // Check for exceptional control flow from this point.
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 if (has_exceptions && can_trap(str)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 flow_exceptions(exceptions, exc_klasses, state);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2334 exceptions_used = true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 // Apply the effects of the current bytecode to our state.
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 bool res = state->apply_one_bytecode(&str);
a61af66fc99e Initial load
duke
parents:
diff changeset
2338
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 // Watch for bailouts.
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 if (failing()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2341
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2342 if (str.cur_bc() == Bytecodes::_monitorenter) {
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2343 block->set_has_monitorenter();
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2344 }
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 2398
diff changeset
2345
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 if (res) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2347
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 // We have encountered a trap. Record it in this block.
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 block->set_trap(state->trap_bci(), state->trap_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
2350
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 tty->print_cr(">> Found trap");
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 block->print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2355
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2356 // Save set of locals defined in this block
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2357 block->def_locals()->add(state->def_locals());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2358
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 // Record (no) successors.
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 block->successors(&str, state, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
2361
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2362 assert(!has_exceptions || exceptions_used, "Not removing exceptions");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2363
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 // Discontinue interpretation of this Block.
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2368
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 GrowableArray<Block*>* successors = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 if (control != ciBlock::fall_through_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 // Check for exceptional control flow from this point.
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 if (has_exceptions && can_trap(str)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 flow_exceptions(exceptions, exc_klasses, state);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2374 exceptions_used = true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2376
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 // Fix the JsrSet to reflect effect of the bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 block->copy_jsrs_into(jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
2379 jsrs->apply_control(this, &str, state);
a61af66fc99e Initial load
duke
parents:
diff changeset
2380
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 // Find successor edges based on old state and new JsrSet.
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 successors = block->successors(&str, state, jsrs);
a61af66fc99e Initial load
duke
parents:
diff changeset
2383
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 // Apply the control changes to the state.
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 state->apply_one_bytecode(&str);
a61af66fc99e Initial load
duke
parents:
diff changeset
2386 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 // Fall through control
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 successors = block->successors(&str, NULL, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2390
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2391 // Save set of locals defined in this block
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2392 block->def_locals()->add(state->def_locals());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2393
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2394 // Remove untaken exception paths
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2395 if (!exceptions_used)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2396 exceptions->clear();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2397
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 // Pass our state to successors.
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 flow_successors(successors, state);
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2401
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 // ------------------------------------------------------------------
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2403 // ciTypeFlow::PostOrderLoops::next
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2404 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2405 // Advance to next loop tree using a postorder, left-to-right traversal.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2406 void ciTypeFlow::PostorderLoops::next() {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2407 assert(!done(), "must not be done.");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2408 if (_current->sibling() != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2409 _current = _current->sibling();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2410 while (_current->child() != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2411 _current = _current->child();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2412 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2413 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2414 _current = _current->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2415 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2416 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2417
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2418 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2419 // ciTypeFlow::PreOrderLoops::next
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2420 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2421 // Advance to next loop tree using a preorder, left-to-right traversal.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2422 void ciTypeFlow::PreorderLoops::next() {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2423 assert(!done(), "must not be done.");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2424 if (_current->child() != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2425 _current = _current->child();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2426 } else if (_current->sibling() != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2427 _current = _current->sibling();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2428 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2429 while (_current != _root && _current->sibling() == NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2430 _current = _current->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2431 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2432 if (_current == _root) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2433 _current = NULL;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2434 assert(done(), "must be done.");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2435 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2436 assert(_current->sibling() != NULL, "must be more to do");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2437 _current = _current->sibling();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2438 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2439 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2440 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2441
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2442 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2443 // ciTypeFlow::Loop::sorted_merge
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2444 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2445 // Merge the branch lp into this branch, sorting on the loop head
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2446 // pre_orders. Returns the leaf of the merged branch.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2447 // Child and sibling pointers will be setup later.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2448 // Sort is (looking from leaf towards the root)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2449 // descending on primary key: loop head's pre_order, and
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2450 // ascending on secondary key: loop tail's pre_order.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2451 ciTypeFlow::Loop* ciTypeFlow::Loop::sorted_merge(Loop* lp) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2452 Loop* leaf = this;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2453 Loop* prev = NULL;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2454 Loop* current = leaf;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2455 while (lp != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2456 int lp_pre_order = lp->head()->pre_order();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2457 // Find insertion point for "lp"
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2458 while (current != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2459 if (current == lp)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2460 return leaf; // Already in list
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2461 if (current->head()->pre_order() < lp_pre_order)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2462 break;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2463 if (current->head()->pre_order() == lp_pre_order &&
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2464 current->tail()->pre_order() > lp->tail()->pre_order()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2465 break;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2466 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2467 prev = current;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2468 current = current->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2469 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2470 Loop* next_lp = lp->parent(); // Save future list of items to insert
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2471 // Insert lp before current
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2472 lp->set_parent(current);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2473 if (prev != NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2474 prev->set_parent(lp);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2475 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2476 leaf = lp;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2477 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2478 prev = lp; // Inserted item is new prev[ious]
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2479 lp = next_lp; // Next item to insert
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2480 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2481 return leaf;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2482 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2483
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2484 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2485 // ciTypeFlow::build_loop_tree
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2486 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2487 // Incrementally build loop tree.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2488 void ciTypeFlow::build_loop_tree(Block* blk) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2489 assert(!blk->is_post_visited(), "precondition");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2490 Loop* innermost = NULL; // merge of loop tree branches over all successors
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2491
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2492 for (SuccIter iter(blk); !iter.done(); iter.next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2493 Loop* lp = NULL;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2494 Block* succ = iter.succ();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2495 if (!succ->is_post_visited()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2496 // Found backedge since predecessor post visited, but successor is not
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2497 assert(succ->pre_order() <= blk->pre_order(), "should be backedge");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2498
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2499 // Create a LoopNode to mark this loop.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2500 lp = new (arena()) Loop(succ, blk);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2501 if (succ->loop() == NULL)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2502 succ->set_loop(lp);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2503 // succ->loop will be updated to innermost loop on a later call, when blk==succ
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2504
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2505 } else { // Nested loop
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2506 lp = succ->loop();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2507
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2508 // If succ is loop head, find outer loop.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2509 while (lp != NULL && lp->head() == succ) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2510 lp = lp->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2511 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2512 if (lp == NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2513 // Infinite loop, it's parent is the root
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2514 lp = loop_tree_root();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2515 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2516 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2517
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2518 // Check for irreducible loop.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2519 // Successor has already been visited. If the successor's loop head
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2520 // has already been post-visited, then this is another entry into the loop.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2521 while (lp->head()->is_post_visited() && lp != loop_tree_root()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2522 _has_irreducible_entry = true;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2523 lp->set_irreducible(succ);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2524 if (!succ->is_on_work_list()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2525 // Assume irreducible entries need more data flow
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2526 add_to_work_list(succ);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2527 }
991
3a2aa26bdc58 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 844
diff changeset
2528 Loop* plp = lp->parent();
3a2aa26bdc58 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 844
diff changeset
2529 if (plp == NULL) {
3a2aa26bdc58 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 844
diff changeset
2530 // This only happens for some irreducible cases. The parent
3a2aa26bdc58 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 844
diff changeset
2531 // will be updated during a later pass.
3a2aa26bdc58 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 844
diff changeset
2532 break;
3a2aa26bdc58 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 844
diff changeset
2533 }
3a2aa26bdc58 6854812: 6.0_14-b08 crashes with a SIGSEGV
never
parents: 844
diff changeset
2534 lp = plp;
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2535 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2536
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2537 // Merge loop tree branch for all successors.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2538 innermost = innermost == NULL ? lp : innermost->sorted_merge(lp);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2539
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2540 } // end loop
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2541
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2542 if (innermost == NULL) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2543 assert(blk->successors()->length() == 0, "CFG exit");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2544 blk->set_loop(loop_tree_root());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2545 } else if (innermost->head() == blk) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2546 // If loop header, complete the tree pointers
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2547 if (blk->loop() != innermost) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2548 #if ASSERT
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2549 assert(blk->loop()->head() == innermost->head(), "same head");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2550 Loop* dl;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2551 for (dl = innermost; dl != NULL && dl != blk->loop(); dl = dl->parent());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2552 assert(dl == blk->loop(), "blk->loop() already in innermost list");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2553 #endif
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2554 blk->set_loop(innermost);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2555 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2556 innermost->def_locals()->add(blk->def_locals());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2557 Loop* l = innermost;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2558 Loop* p = l->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2559 while (p && l->head() == blk) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2560 l->set_sibling(p->child()); // Put self on parents 'next child'
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2561 p->set_child(l); // Make self the first child of parent
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2562 p->def_locals()->add(l->def_locals());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2563 l = p; // Walk up the parent chain
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2564 p = l->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2565 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2566 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2567 blk->set_loop(innermost);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2568 innermost->def_locals()->add(blk->def_locals());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2569 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2570 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2571
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2572 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2573 // ciTypeFlow::Loop::contains
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2574 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2575 // Returns true if lp is nested loop.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2576 bool ciTypeFlow::Loop::contains(ciTypeFlow::Loop* lp) const {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2577 assert(lp != NULL, "");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2578 if (this == lp || head() == lp->head()) return true;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2579 int depth1 = depth();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2580 int depth2 = lp->depth();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2581 if (depth1 > depth2)
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2582 return false;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2583 while (depth1 < depth2) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2584 depth2--;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2585 lp = lp->parent();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2586 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2587 return this == lp;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2588 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2589
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2590 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2591 // ciTypeFlow::Loop::depth
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2592 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2593 // Loop depth
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2594 int ciTypeFlow::Loop::depth() const {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2595 int dp = 0;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2596 for (Loop* lp = this->parent(); lp != NULL; lp = lp->parent())
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2597 dp++;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2598 return dp;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2599 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2600
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2601 #ifndef PRODUCT
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2602 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2603 // ciTypeFlow::Loop::print
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2604 void ciTypeFlow::Loop::print(outputStream* st, int indent) const {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2605 for (int i = 0; i < indent; i++) st->print(" ");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2606 st->print("%d<-%d %s",
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2607 is_root() ? 0 : this->head()->pre_order(),
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2608 is_root() ? 0 : this->tail()->pre_order(),
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2609 is_irreducible()?" irr":"");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2610 st->print(" defs: ");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2611 def_locals()->print_on(st, _head->outer()->method()->max_locals());
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2612 st->cr();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2613 for (Loop* ch = child(); ch != NULL; ch = ch->sibling())
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2614 ch->print(st, indent+2);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2615 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2616 #endif
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2617
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2618 // ------------------------------------------------------------------
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2619 // ciTypeFlow::df_flow_types
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2620 //
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2621 // Perform the depth first type flow analysis. Helper for flow_types.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2622 void ciTypeFlow::df_flow_types(Block* start,
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2623 bool do_flow,
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2624 StateVector* temp_vector,
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2625 JsrSet* temp_set) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2626 int dft_len = 100;
1685
0e35fa8ebccd 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 1604
diff changeset
2627 GrowableArray<Block*> stk(dft_len);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2628
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2629 ciBlock* dummy = _methodBlocks->make_dummy_block();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2630 JsrSet* root_set = new JsrSet(NULL, 0);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2631 Block* root_head = new (arena()) Block(this, dummy, root_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2632 Block* root_tail = new (arena()) Block(this, dummy, root_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2633 root_head->set_pre_order(0);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2634 root_head->set_post_order(0);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2635 root_tail->set_pre_order(max_jint);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2636 root_tail->set_post_order(max_jint);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2637 set_loop_tree_root(new (arena()) Loop(root_head, root_tail));
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2638
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2639 stk.push(start);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2640
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2641 _next_pre_order = 0; // initialize pre_order counter
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2642 _rpo_list = NULL;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2643 int next_po = 0; // initialize post_order counter
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2644
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2645 // Compute RPO and the control flow graph
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2646 int size;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2647 while ((size = stk.length()) > 0) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2648 Block* blk = stk.top(); // Leave node on stack
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2649 if (!blk->is_visited()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2650 // forward arc in graph
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2651 assert (!blk->has_pre_order(), "");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2652 blk->set_next_pre_order();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2653
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2654 if (_next_pre_order >= MaxNodeLimit / 2) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2655 // Too many basic blocks. Bail out.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2656 // This can happen when try/finally constructs are nested to depth N,
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2657 // and there is O(2**N) cloning of jsr bodies. See bug 4697245!
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2658 // "MaxNodeLimit / 2" is used because probably the parser will
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2659 // generate at least twice that many nodes and bail out.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2660 record_failure("too many basic blocks");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2661 return;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2662 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2663 if (do_flow) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2664 flow_block(blk, temp_vector, temp_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2665 if (failing()) return; // Watch for bailouts.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2666 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2667 } else if (!blk->is_post_visited()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2668 // cross or back arc
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2669 for (SuccIter iter(blk); !iter.done(); iter.next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2670 Block* succ = iter.succ();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2671 if (!succ->is_visited()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2672 stk.push(succ);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2673 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2674 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2675 if (stk.length() == size) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2676 // There were no additional children, post visit node now
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2677 stk.pop(); // Remove node from stack
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2678
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2679 build_loop_tree(blk);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2680 blk->set_post_order(next_po++); // Assign post order
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2681 prepend_to_rpo_list(blk);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2682 assert(blk->is_post_visited(), "");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2683
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2684 if (blk->is_loop_head() && !blk->is_on_work_list()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2685 // Assume loop heads need more data flow
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2686 add_to_work_list(blk);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2687 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2688 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2689 } else {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2690 stk.pop(); // Remove post-visited node from stack
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2691 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2692 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2693 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2694
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2695 // ------------------------------------------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 // ciTypeFlow::flow_types
a61af66fc99e Initial load
duke
parents:
diff changeset
2697 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 // Perform the type flow analysis, creating and cloning Blocks as
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 // necessary.
a61af66fc99e Initial load
duke
parents:
diff changeset
2700 void ciTypeFlow::flow_types() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
2702 StateVector* temp_vector = new StateVector(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 JsrSet* temp_set = new JsrSet(NULL, 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
2704
a61af66fc99e Initial load
duke
parents:
diff changeset
2705 // Create the method entry block.
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2706 Block* start = block_at(start_bci(), temp_set);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2707
a61af66fc99e Initial load
duke
parents:
diff changeset
2708 // Load the initial state into it.
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 const StateVector* start_state = get_start_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2710 if (failing()) return;
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2711 start->meet(start_state);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2712
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2713 // Depth first visit
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2714 df_flow_types(start, true /*do flow*/, temp_vector, temp_set);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2715
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2716 if (failing()) return;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2717 assert(_rpo_list == start, "must be start");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2718
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2719 // Any loops found?
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2720 if (loop_tree_root()->child() != NULL &&
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2721 env()->comp_level() >= CompLevel_full_optimization) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2722 // Loop optimizations are not performed on Tier1 compiles.
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2723
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2724 bool changed = clone_loop_heads(loop_tree_root(), temp_vector, temp_set);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2725
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2726 // If some loop heads were cloned, recompute postorder and loop tree
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2727 if (changed) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2728 loop_tree_root()->set_child(NULL);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2729 for (Block* blk = _rpo_list; blk != NULL;) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2730 Block* next = blk->rpo_next();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2731 blk->df_init();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2732 blk = next;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2733 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2734 df_flow_types(start, false /*no flow*/, temp_vector, temp_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2735 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2736 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2737
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2738 if (CITraceTypeFlow) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2739 tty->print_cr("\nLoop tree");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2740 loop_tree_root()->print();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2741 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2742
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2743 // Continue flow analysis until fixed point reached
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2744
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2745 debug_only(int max_block = _next_pre_order;)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2746
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2747 while (!work_list_empty()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2748 Block* blk = work_list_next();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2749 assert (blk->has_post_order(), "post order assigned above");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2750
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2751 flow_block(blk, temp_vector, temp_set);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2752
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2753 assert (max_block == _next_pre_order, "no new blocks");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2754 assert (!failing(), "no more bailouts");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2757
a61af66fc99e Initial load
duke
parents:
diff changeset
2758 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 // ciTypeFlow::map_blocks
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 //
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2761 // Create the block map, which indexes blocks in reverse post-order.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2762 void ciTypeFlow::map_blocks() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 assert(_block_map == NULL, "single initialization");
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2764 int block_ct = _next_pre_order;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2765 _block_map = NEW_ARENA_ARRAY(arena(), Block*, block_ct);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2766 assert(block_ct == block_count(), "");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2767
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2768 Block* blk = _rpo_list;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2769 for (int m = 0; m < block_ct; m++) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2770 int rpo = blk->rpo();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2771 assert(rpo == m, "should be sequential");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2772 _block_map[rpo] = blk;
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2773 blk = blk->rpo_next();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2774 }
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2775 assert(blk == NULL, "should be done");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2776
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2777 for (int j = 0; j < block_ct; j++) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2778 assert(_block_map[j] != NULL, "must not drop any blocks");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2779 Block* block = _block_map[j];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2780 // Remove dead blocks from successor lists:
a61af66fc99e Initial load
duke
parents:
diff changeset
2781 for (int e = 0; e <= 1; e++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2782 GrowableArray<Block*>* l = e? block->exceptions(): block->successors();
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2783 for (int k = 0; k < l->length(); k++) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2784 Block* s = l->at(k);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2785 if (!s->has_post_order()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2787 tty->print("Removing dead %s successor of #%d: ", (e? "exceptional": "normal"), block->pre_order());
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 s->print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
2789 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 l->remove(s);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2792 --k;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2794 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2795 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2796 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2797 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2798
a61af66fc99e Initial load
duke
parents:
diff changeset
2799 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 // ciTypeFlow::get_block_for
a61af66fc99e Initial load
duke
parents:
diff changeset
2801 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2802 // Find a block with this ciBlock which has a compatible JsrSet.
a61af66fc99e Initial load
duke
parents:
diff changeset
2803 // If no such block exists, create it, unless the option is no_create.
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2804 // If the option is create_backedge_copy, always create a fresh backedge copy.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2805 ciTypeFlow::Block* ciTypeFlow::get_block_for(int ciBlockIndex, ciTypeFlow::JsrSet* jsrs, CreateOption option) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2806 Arena* a = arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 GrowableArray<Block*>* blocks = _idx_to_blocklist[ciBlockIndex];
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 if (blocks == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2809 // Query only?
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 if (option == no_create) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2811
a61af66fc99e Initial load
duke
parents:
diff changeset
2812 // Allocate the growable array.
a61af66fc99e Initial load
duke
parents:
diff changeset
2813 blocks = new (a) GrowableArray<Block*>(a, 4, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 _idx_to_blocklist[ciBlockIndex] = blocks;
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2816
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2817 if (option != create_backedge_copy) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 int len = blocks->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 Block* block = blocks->at(i);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2821 if (!block->is_backedge_copy() && block->is_compatible_with(jsrs)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 return block;
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2824 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2826
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 // Query only?
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 if (option == no_create) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2829
a61af66fc99e Initial load
duke
parents:
diff changeset
2830 // We did not find a compatible block. Create one.
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 Block* new_block = new (a) Block(this, _methodBlocks->block(ciBlockIndex), jsrs);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2832 if (option == create_backedge_copy) new_block->set_backedge_copy(true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2833 blocks->append(new_block);
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 return new_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2836
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 // ------------------------------------------------------------------
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2838 // ciTypeFlow::backedge_copy_count
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 //
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2840 int ciTypeFlow::backedge_copy_count(int ciBlockIndex, ciTypeFlow::JsrSet* jsrs) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2841 GrowableArray<Block*>* blocks = _idx_to_blocklist[ciBlockIndex];
a61af66fc99e Initial load
duke
parents:
diff changeset
2842
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 if (blocks == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2846
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2848 int len = blocks->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2849 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2850 Block* block = blocks->at(i);
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2851 if (block->is_backedge_copy() && block->is_compatible_with(jsrs)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2852 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
2853 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2854 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2855
a61af66fc99e Initial load
duke
parents:
diff changeset
2856 return count;
a61af66fc99e Initial load
duke
parents:
diff changeset
2857 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2858
a61af66fc99e Initial load
duke
parents:
diff changeset
2859 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2860 // ciTypeFlow::do_flow
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 // Perform type inference flow analysis.
a61af66fc99e Initial load
duke
parents:
diff changeset
2863 void ciTypeFlow::do_flow() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 tty->print_cr("\nPerforming flow analysis on method");
a61af66fc99e Initial load
duke
parents:
diff changeset
2866 method()->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
2867 if (is_osr_flow()) tty->print(" at OSR bci %d", start_bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
2868 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2869 method()->print_codes();
a61af66fc99e Initial load
duke
parents:
diff changeset
2870 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2871 if (CITraceTypeFlow) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2872 tty->print_cr("Initial CI Blocks");
a61af66fc99e Initial load
duke
parents:
diff changeset
2873 print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
2874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2875 flow_types();
a61af66fc99e Initial load
duke
parents:
diff changeset
2876 // Watch for bailouts.
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 if (failing()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2878 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 }
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2880
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2881 map_blocks();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2882
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2883 if (CIPrintTypeFlow || CITraceTypeFlow) {
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2884 rpo_print_on(tty);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2885 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2886 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2887
a61af66fc99e Initial load
duke
parents:
diff changeset
2888 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2889 // ciTypeFlow::record_failure()
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 // The ciTypeFlow object keeps track of failure reasons separately from the ciEnv.
a61af66fc99e Initial load
duke
parents:
diff changeset
2891 // This is required because there is not a 1-1 relation between the ciEnv and
a61af66fc99e Initial load
duke
parents:
diff changeset
2892 // the TypeFlow passes within a compilation task. For example, if the compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
2893 // is considering inlining a method, it will request a TypeFlow. If that fails,
a61af66fc99e Initial load
duke
parents:
diff changeset
2894 // the compilation as a whole may continue without the inlining. Some TypeFlow
a61af66fc99e Initial load
duke
parents:
diff changeset
2895 // requests are not optional; if they fail the requestor is responsible for
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 // copying the failure reason up to the ciEnv. (See Parse::Parse.)
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 void ciTypeFlow::record_failure(const char* reason) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 if (env()->log() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2899 env()->log()->elem("failure reason='%s' phase='typeflow'", reason);
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 if (_failure_reason == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2902 // Record the first failure reason.
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 _failure_reason = reason;
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2906
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
2908 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 // ciTypeFlow::print_on
a61af66fc99e Initial load
duke
parents:
diff changeset
2910 void ciTypeFlow::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2911 // Walk through CI blocks
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 st->print_cr("********************************************************");
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 st->print ("TypeFlow for ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2914 method()->name()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
2915 int limit_bci = code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 st->print_cr(" %d bytes", limit_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 ciMethodBlocks *mblks = _methodBlocks;
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 ciBlock* current = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 for (int bci = 0; bci < limit_bci; bci++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 ciBlock* blk = mblks->block_containing(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 if (blk != NULL && blk != current) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 current = blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
2923 current->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
2924
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 GrowableArray<Block*>* blocks = _idx_to_blocklist[blk->index()];
a61af66fc99e Initial load
duke
parents:
diff changeset
2926 int num_blocks = (blocks == NULL) ? 0 : blocks->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2927
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 if (num_blocks == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 st->print_cr(" No Blocks");
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 for (int i = 0; i < num_blocks; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 Block* block = blocks->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 block->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
2934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2936 st->print_cr("--------------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2939 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 st->print_cr("********************************************************");
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 }
367
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2943
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2944 void ciTypeFlow::rpo_print_on(outputStream* st) const {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2945 st->print_cr("********************************************************");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2946 st->print ("TypeFlow for ");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2947 method()->name()->print_symbol_on(st);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2948 int limit_bci = code_size();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2949 st->print_cr(" %d bytes", limit_bci);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2950 for (Block* blk = _rpo_list; blk != NULL; blk = blk->rpo_next()) {
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2951 blk->print_on(st);
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2952 st->print_cr("--------------------------------------------------------");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2953 st->cr();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2954 }
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2955 st->print_cr("********************************************************");
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2956 st->cr();
194b8e3a2fc4 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 0
diff changeset
2957 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 #endif