author | mhorie |
Tue, 11 Dec 2018 20:31:18 -0500 | |
changeset 52979 | 7384e00d5860 |
parent 52604 | 6548ad72dff8 |
child 54653 | 332f28c3a105 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48595
5d699d81c10c
8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents:
48145
diff
changeset
|
2 |
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4582
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4582
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4582
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
34151
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
26 |
#include "ci/ciTypeFlow.hpp" |
7397 | 27 |
#include "memory/allocation.inline.hpp" |
37248 | 28 |
#include "memory/resourceArea.hpp" |
7397 | 29 |
#include "opto/addnode.hpp" |
30183 | 30 |
#include "opto/castnode.hpp" |
7397 | 31 |
#include "opto/cfgnode.hpp" |
32 |
#include "opto/connode.hpp" |
|
9101 | 33 |
#include "opto/loopnode.hpp" |
7397 | 34 |
#include "opto/phaseX.hpp" |
35 |
#include "opto/runtime.hpp" |
|
30183 | 36 |
#include "opto/rootnode.hpp" |
7397 | 37 |
#include "opto/subnode.hpp" |
38 |
||
1 | 39 |
// Portions of code courtesy of Clifford Click |
40 |
||
41 |
// Optimization - Graph Style |
|
42 |
||
43 |
||
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
44 |
#ifndef PRODUCT |
1 | 45 |
extern int explicit_null_checks_elided; |
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
46 |
#endif |
1 | 47 |
|
48 |
//============================================================================= |
|
49 |
//------------------------------Value------------------------------------------ |
|
50 |
// Return a tuple for whichever arm of the IF is reachable |
|
35551
36ef3841fb34
8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents:
34181
diff
changeset
|
51 |
const Type* IfNode::Value(PhaseGVN* phase) const { |
1 | 52 |
if( !in(0) ) return Type::TOP; |
53 |
if( phase->type(in(0)) == Type::TOP ) |
|
54 |
return Type::TOP; |
|
55 |
const Type *t = phase->type(in(1)); |
|
56 |
if( t == Type::TOP ) // data is undefined |
|
57 |
return TypeTuple::IFNEITHER; // unreachable altogether |
|
58 |
if( t == TypeInt::ZERO ) // zero, or false |
|
59 |
return TypeTuple::IFFALSE; // only false branch is reachable |
|
60 |
if( t == TypeInt::ONE ) // 1, or true |
|
61 |
return TypeTuple::IFTRUE; // only true branch is reachable |
|
62 |
assert( t == TypeInt::BOOL, "expected boolean type" ); |
|
63 |
||
64 |
return TypeTuple::IFBOTH; // No progress |
|
65 |
} |
|
66 |
||
67 |
const RegMask &IfNode::out_RegMask() const { |
|
68 |
return RegMask::Empty; |
|
69 |
} |
|
70 |
||
71 |
//------------------------------split_if--------------------------------------- |
|
72 |
// Look for places where we merge constants, then test on the merged value. |
|
73 |
// If the IF test will be constant folded on the path with the constant, we |
|
74 |
// win by splitting the IF to before the merge point. |
|
75 |
static Node* split_if(IfNode *iff, PhaseIterGVN *igvn) { |
|
76 |
// I could be a lot more general here, but I'm trying to squeeze this |
|
77 |
// in before the Christmas '98 break so I'm gonna be kinda restrictive |
|
78 |
// on the patterns I accept. CNC |
|
79 |
||
80 |
// Look for a compare of a constant and a merged value |
|
81 |
Node *i1 = iff->in(1); |
|
82 |
if( !i1->is_Bool() ) return NULL; |
|
83 |
BoolNode *b = i1->as_Bool(); |
|
84 |
Node *cmp = b->in(1); |
|
85 |
if( !cmp->is_Cmp() ) return NULL; |
|
86 |
i1 = cmp->in(1); |
|
87 |
if( i1 == NULL || !i1->is_Phi() ) return NULL; |
|
88 |
PhiNode *phi = i1->as_Phi(); |
|
89 |
if( phi->is_copy() ) return NULL; |
|
90 |
Node *con2 = cmp->in(2); |
|
91 |
if( !con2->is_Con() ) return NULL; |
|
92 |
// See that the merge point contains some constants |
|
93 |
Node *con1=NULL; |
|
94 |
uint i4; |
|
95 |
for( i4 = 1; i4 < phi->req(); i4++ ) { |
|
96 |
con1 = phi->in(i4); |
|
2131 | 97 |
if( !con1 ) return NULL; // Do not optimize partially collapsed merges |
1 | 98 |
if( con1->is_Con() ) break; // Found a constant |
99 |
// Also allow null-vs-not-null checks |
|
100 |
const TypePtr *tp = igvn->type(con1)->isa_ptr(); |
|
101 |
if( tp && tp->_ptr == TypePtr::NotNull ) |
|
102 |
break; |
|
103 |
} |
|
104 |
if( i4 >= phi->req() ) return NULL; // Found no constants |
|
105 |
||
106 |
igvn->C->set_has_split_ifs(true); // Has chance for split-if |
|
107 |
||
108 |
// Make sure that the compare can be constant folded away |
|
109 |
Node *cmp2 = cmp->clone(); |
|
110 |
cmp2->set_req(1,con1); |
|
111 |
cmp2->set_req(2,con2); |
|
112 |
const Type *t = cmp2->Value(igvn); |
|
113 |
// This compare is dead, so whack it! |
|
114 |
igvn->remove_dead_node(cmp2); |
|
115 |
if( !t->singleton() ) return NULL; |
|
116 |
||
117 |
// No intervening control, like a simple Call |
|
118 |
Node *r = iff->in(0); |
|
119 |
if( !r->is_Region() ) return NULL; |
|
48145 | 120 |
if (r->is_Loop() && r->in(LoopNode::LoopBackControl)->is_top()) return NULL; // going away anyway |
1 | 121 |
if( phi->region() != r ) return NULL; |
122 |
// No other users of the cmp/bool |
|
123 |
if (b->outcnt() != 1 || cmp->outcnt() != 1) { |
|
124 |
//tty->print_cr("many users of cmp/bool"); |
|
125 |
return NULL; |
|
126 |
} |
|
127 |
||
128 |
// Make sure we can determine where all the uses of merged values go |
|
129 |
for (DUIterator_Fast jmax, j = r->fast_outs(jmax); j < jmax; j++) { |
|
130 |
Node* u = r->fast_out(j); |
|
131 |
if( u == r ) continue; |
|
132 |
if( u == iff ) continue; |
|
133 |
if( u->outcnt() == 0 ) continue; // use is dead & ignorable |
|
134 |
if( !u->is_Phi() ) { |
|
135 |
/* |
|
136 |
if( u->is_Start() ) { |
|
137 |
tty->print_cr("Region has inlined start use"); |
|
138 |
} else { |
|
139 |
tty->print_cr("Region has odd use"); |
|
140 |
u->dump(2); |
|
141 |
}*/ |
|
142 |
return NULL; |
|
143 |
} |
|
144 |
if( u != phi ) { |
|
145 |
// CNC - do not allow any other merged value |
|
146 |
//tty->print_cr("Merging another value"); |
|
147 |
//u->dump(2); |
|
148 |
return NULL; |
|
149 |
} |
|
150 |
// Make sure we can account for all Phi uses |
|
151 |
for (DUIterator_Fast kmax, k = u->fast_outs(kmax); k < kmax; k++) { |
|
152 |
Node* v = u->fast_out(k); // User of the phi |
|
153 |
// CNC - Allow only really simple patterns. |
|
154 |
// In particular I disallow AddP of the Phi, a fairly common pattern |
|
28927
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
155 |
if (v == cmp) continue; // The compare is OK |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
156 |
if (v->is_ConstraintCast()) { |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
157 |
// If the cast is derived from data flow edges, it may not have a control edge. |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
158 |
// If so, it should be safe to split. But follow-up code can not deal with |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
159 |
// this (l. 359). So skip. |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
160 |
if (v->in(0) == NULL) { |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
161 |
return NULL; |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
162 |
} |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
163 |
if (v->in(0)->in(0) == iff) { |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
164 |
continue; // CastPP/II of the IfNode is OK |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
165 |
} |
48e4a707e777
8071996: split_if accesses NULL region of ConstraintCast
goetz
parents:
28486
diff
changeset
|
166 |
} |
1 | 167 |
// Disabled following code because I cannot tell if exactly one |
168 |
// path dominates without a real dominator check. CNC 9/9/1999 |
|
169 |
//uint vop = v->Opcode(); |
|
170 |
//if( vop == Op_Phi ) { // Phi from another merge point might be OK |
|
171 |
// Node *r = v->in(0); // Get controlling point |
|
172 |
// if( !r ) return NULL; // Degraded to a copy |
|
173 |
// // Find exactly one path in (either True or False doms, but not IFF) |
|
174 |
// int cnt = 0; |
|
175 |
// for( uint i = 1; i < r->req(); i++ ) |
|
176 |
// if( r->in(i) && r->in(i)->in(0) == iff ) |
|
177 |
// cnt++; |
|
178 |
// if( cnt == 1 ) continue; // Exactly one of True or False guards Phi |
|
179 |
//} |
|
180 |
if( !v->is_Call() ) { |
|
181 |
/* |
|
182 |
if( v->Opcode() == Op_AddP ) { |
|
183 |
tty->print_cr("Phi has AddP use"); |
|
184 |
} else if( v->Opcode() == Op_CastPP ) { |
|
185 |
tty->print_cr("Phi has CastPP use"); |
|
186 |
} else if( v->Opcode() == Op_CastII ) { |
|
187 |
tty->print_cr("Phi has CastII use"); |
|
188 |
} else { |
|
189 |
tty->print_cr("Phi has use I cant be bothered with"); |
|
190 |
} |
|
191 |
*/ |
|
192 |
} |
|
193 |
return NULL; |
|
194 |
||
195 |
/* CNC - Cut out all the fancy acceptance tests |
|
196 |
// Can we clone this use when doing the transformation? |
|
197 |
// If all uses are from Phis at this merge or constants, then YES. |
|
198 |
if( !v->in(0) && v != cmp ) { |
|
199 |
tty->print_cr("Phi has free-floating use"); |
|
200 |
v->dump(2); |
|
201 |
return NULL; |
|
202 |
} |
|
203 |
for( uint l = 1; l < v->req(); l++ ) { |
|
204 |
if( (!v->in(l)->is_Phi() || v->in(l)->in(0) != r) && |
|
205 |
!v->in(l)->is_Con() ) { |
|
206 |
tty->print_cr("Phi has use"); |
|
207 |
v->dump(2); |
|
208 |
return NULL; |
|
209 |
} // End of if Phi-use input is neither Phi nor Constant |
|
210 |
} // End of for all inputs to Phi-use |
|
211 |
*/ |
|
212 |
} // End of for all uses of Phi |
|
213 |
} // End of for all uses of Region |
|
214 |
||
215 |
// Only do this if the IF node is in a sane state |
|
216 |
if (iff->outcnt() != 2) |
|
217 |
return NULL; |
|
218 |
||
219 |
// Got a hit! Do the Mondo Hack! |
|
220 |
// |
|
221 |
//ABC a1c def ghi B 1 e h A C a c d f g i |
|
222 |
// R - Phi - Phi - Phi Rc - Phi - Phi - Phi Rx - Phi - Phi - Phi |
|
223 |
// cmp - 2 cmp - 2 cmp - 2 |
|
224 |
// bool bool_c bool_x |
|
225 |
// if if_c if_x |
|
226 |
// T F T F T F |
|
227 |
// ..s.. ..t .. ..s.. ..t.. ..s.. ..t.. |
|
228 |
// |
|
2131 | 229 |
// Split the paths coming into the merge point into 2 separate groups of |
1 | 230 |
// merges. On the left will be all the paths feeding constants into the |
231 |
// Cmp's Phi. On the right will be the remaining paths. The Cmp's Phi |
|
232 |
// will fold up into a constant; this will let the Cmp fold up as well as |
|
233 |
// all the control flow. Below the original IF we have 2 control |
|
234 |
// dependent regions, 's' and 't'. Now we will merge the two paths |
|
235 |
// just prior to 's' and 't' from the two IFs. At least 1 path (and quite |
|
236 |
// likely 2 or more) will promptly constant fold away. |
|
237 |
PhaseGVN *phase = igvn; |
|
238 |
||
239 |
// Make a region merging constants and a region merging the rest |
|
240 |
uint req_c = 0; |
|
9101 | 241 |
Node* predicate_proj = NULL; |
30309
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
242 |
int nb_predicate_proj = 0; |
1 | 243 |
for (uint ii = 1; ii < r->req(); ii++) { |
9101 | 244 |
if (phi->in(ii) == con1) { |
1 | 245 |
req_c++; |
246 |
} |
|
9101 | 247 |
Node* proj = PhaseIdealLoop::find_predicate(r->in(ii)); |
248 |
if (proj != NULL) { |
|
30309
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
249 |
nb_predicate_proj++; |
9101 | 250 |
predicate_proj = proj; |
251 |
} |
|
1 | 252 |
} |
44241
99010d3fcc97
8164954: split_if creates empty phi and region nodes
neliasso
parents:
37248
diff
changeset
|
253 |
|
99010d3fcc97
8164954: split_if creates empty phi and region nodes
neliasso
parents:
37248
diff
changeset
|
254 |
// If all the defs of the phi are the same constant, we already have the desired end state. |
99010d3fcc97
8164954: split_if creates empty phi and region nodes
neliasso
parents:
37248
diff
changeset
|
255 |
// Skip the split that would create empty phi and region nodes. |
99010d3fcc97
8164954: split_if creates empty phi and region nodes
neliasso
parents:
37248
diff
changeset
|
256 |
if((r->req() - req_c) == 1) { |
99010d3fcc97
8164954: split_if creates empty phi and region nodes
neliasso
parents:
37248
diff
changeset
|
257 |
return NULL; |
99010d3fcc97
8164954: split_if creates empty phi and region nodes
neliasso
parents:
37248
diff
changeset
|
258 |
} |
99010d3fcc97
8164954: split_if creates empty phi and region nodes
neliasso
parents:
37248
diff
changeset
|
259 |
|
30309
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
260 |
if (nb_predicate_proj > 1) { |
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
261 |
// Can happen in case of loop unswitching and when the loop is |
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
262 |
// optimized out: it's not a loop anymore so we don't care about |
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
263 |
// predicates. |
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
264 |
assert(!r->is_Loop(), "this must not be a loop anymore"); |
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
265 |
predicate_proj = NULL; |
da3efc8ed2cb
8078426: mb/jvm/compiler/InterfaceCalls/testAC2 - assert(predicate_proj == 0L) failed: only one predicate entry expected
roland
parents:
30183
diff
changeset
|
266 |
} |
9101 | 267 |
Node* predicate_c = NULL; |
268 |
Node* predicate_x = NULL; |
|
9446 | 269 |
bool counted_loop = r->is_CountedLoop(); |
51430 | 270 |
if (counted_loop) { |
271 |
// Ignore counted loops for now because the split-if logic does not work |
|
272 |
// in all the cases (for example, with strip mined loops). Also, above |
|
273 |
// checks only pass for already degraded loops without a tripcount phi |
|
274 |
// and these are essentially dead and will go away during igvn. |
|
275 |
return NULL; |
|
276 |
} |
|
9101 | 277 |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
278 |
Node *region_c = new RegionNode(req_c + 1); |
1 | 279 |
Node *phi_c = con1; |
280 |
uint len = r->req(); |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
281 |
Node *region_x = new RegionNode(len - req_c); |
1 | 282 |
Node *phi_x = PhiNode::make_blank(region_x, phi); |
283 |
for (uint i = 1, i_c = 1, i_x = 1; i < len; i++) { |
|
9101 | 284 |
if (phi->in(i) == con1) { |
1 | 285 |
region_c->init_req( i_c++, r ->in(i) ); |
9101 | 286 |
if (r->in(i) == predicate_proj) |
287 |
predicate_c = predicate_proj; |
|
1 | 288 |
} else { |
289 |
region_x->init_req( i_x, r ->in(i) ); |
|
290 |
phi_x ->init_req( i_x++, phi->in(i) ); |
|
9101 | 291 |
if (r->in(i) == predicate_proj) |
292 |
predicate_x = predicate_proj; |
|
1 | 293 |
} |
294 |
} |
|
10258
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
295 |
if (predicate_c != NULL && (req_c > 1)) { |
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
296 |
assert(predicate_x == NULL, "only one predicate entry expected"); |
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
297 |
predicate_c = NULL; // Do not clone predicate below merge point |
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
298 |
} |
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
299 |
if (predicate_x != NULL && ((len - req_c) > 2)) { |
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
300 |
assert(predicate_c == NULL, "only one predicate entry expected"); |
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
301 |
predicate_x = NULL; // Do not clone predicate below merge point |
10c77b8c8d3e
7068051: SIGSEGV in PhaseIdealLoop::build_loop_late_post
kvn
parents:
10253
diff
changeset
|
302 |
} |
1 | 303 |
|
304 |
// Register the new RegionNodes but do not transform them. Cannot |
|
2131 | 305 |
// transform until the entire Region/Phi conglomerate has been hacked |
1 | 306 |
// as a single huge transform. |
307 |
igvn->register_new_node_with_optimizer( region_c ); |
|
308 |
igvn->register_new_node_with_optimizer( region_x ); |
|
309 |
// Prevent the untimely death of phi_x. Currently he has no uses. He is |
|
310 |
// about to get one. If this only use goes away, then phi_x will look dead. |
|
311 |
// However, he will be picking up some more uses down below. |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
312 |
Node *hook = new Node(4); |
1 | 313 |
hook->init_req(0, phi_x); |
314 |
hook->init_req(1, phi_c); |
|
4016
9c11d6d519f7
6889300: assert(i != k || is_new || i->outcnt() > 0, "don't return dead nodes")
kvn
parents:
3268
diff
changeset
|
315 |
phi_x = phase->transform( phi_x ); |
1 | 316 |
|
317 |
// Make the compare |
|
318 |
Node *cmp_c = phase->makecon(t); |
|
319 |
Node *cmp_x = cmp->clone(); |
|
320 |
cmp_x->set_req(1,phi_x); |
|
321 |
cmp_x->set_req(2,con2); |
|
322 |
cmp_x = phase->transform(cmp_x); |
|
323 |
// Make the bool |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
324 |
Node *b_c = phase->transform(new BoolNode(cmp_c,b->_test._test)); |
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
325 |
Node *b_x = phase->transform(new BoolNode(cmp_x,b->_test._test)); |
1 | 326 |
// Make the IfNode |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
327 |
IfNode* iff_c = iff->clone()->as_If(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
328 |
iff_c->set_req(0, region_c); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
329 |
iff_c->set_req(1, b_c); |
1 | 330 |
igvn->set_type_bottom(iff_c); |
331 |
igvn->_worklist.push(iff_c); |
|
332 |
hook->init_req(2, iff_c); |
|
333 |
||
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
334 |
IfNode* iff_x = iff->clone()->as_If(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
335 |
iff_x->set_req(0, region_x); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
336 |
iff_x->set_req(1, b_x); |
1 | 337 |
igvn->set_type_bottom(iff_x); |
338 |
igvn->_worklist.push(iff_x); |
|
339 |
hook->init_req(3, iff_x); |
|
340 |
||
341 |
// Make the true/false arms |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
342 |
Node *iff_c_t = phase->transform(new IfTrueNode (iff_c)); |
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
343 |
Node *iff_c_f = phase->transform(new IfFalseNode(iff_c)); |
9101 | 344 |
if (predicate_c != NULL) { |
345 |
assert(predicate_x == NULL, "only one predicate entry expected"); |
|
346 |
// Clone loop predicates to each path |
|
9446 | 347 |
iff_c_t = igvn->clone_loop_predicates(predicate_c, iff_c_t, !counted_loop); |
348 |
iff_c_f = igvn->clone_loop_predicates(predicate_c, iff_c_f, !counted_loop); |
|
9101 | 349 |
} |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
350 |
Node *iff_x_t = phase->transform(new IfTrueNode (iff_x)); |
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
351 |
Node *iff_x_f = phase->transform(new IfFalseNode(iff_x)); |
9101 | 352 |
if (predicate_x != NULL) { |
353 |
assert(predicate_c == NULL, "only one predicate entry expected"); |
|
354 |
// Clone loop predicates to each path |
|
9446 | 355 |
iff_x_t = igvn->clone_loop_predicates(predicate_x, iff_x_t, !counted_loop); |
356 |
iff_x_f = igvn->clone_loop_predicates(predicate_x, iff_x_f, !counted_loop); |
|
9101 | 357 |
} |
1 | 358 |
|
359 |
// Merge the TRUE paths |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
360 |
Node *region_s = new RegionNode(3); |
1 | 361 |
igvn->_worklist.push(region_s); |
362 |
region_s->init_req(1, iff_c_t); |
|
363 |
region_s->init_req(2, iff_x_t); |
|
364 |
igvn->register_new_node_with_optimizer( region_s ); |
|
365 |
||
366 |
// Merge the FALSE paths |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
367 |
Node *region_f = new RegionNode(3); |
1 | 368 |
igvn->_worklist.push(region_f); |
369 |
region_f->init_req(1, iff_c_f); |
|
370 |
region_f->init_req(2, iff_x_f); |
|
371 |
igvn->register_new_node_with_optimizer( region_f ); |
|
372 |
||
373 |
igvn->hash_delete(cmp);// Remove soon-to-be-dead node from hash table. |
|
374 |
cmp->set_req(1,NULL); // Whack the inputs to cmp because it will be dead |
|
375 |
cmp->set_req(2,NULL); |
|
376 |
// Check for all uses of the Phi and give them a new home. |
|
377 |
// The 'cmp' got cloned, but CastPP/IIs need to be moved. |
|
378 |
Node *phi_s = NULL; // do not construct unless needed |
|
379 |
Node *phi_f = NULL; // do not construct unless needed |
|
380 |
for (DUIterator_Last i2min, i2 = phi->last_outs(i2min); i2 >= i2min; --i2) { |
|
381 |
Node* v = phi->last_out(i2);// User of the phi |
|
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
10258
diff
changeset
|
382 |
igvn->rehash_node_delayed(v); // Have to fixup other Phi users |
1 | 383 |
uint vop = v->Opcode(); |
384 |
Node *proj = NULL; |
|
385 |
if( vop == Op_Phi ) { // Remote merge point |
|
386 |
Node *r = v->in(0); |
|
387 |
for (uint i3 = 1; i3 < r->req(); i3++) |
|
388 |
if (r->in(i3) && r->in(i3)->in(0) == iff) { |
|
389 |
proj = r->in(i3); |
|
390 |
break; |
|
391 |
} |
|
392 |
} else if( v->is_ConstraintCast() ) { |
|
393 |
proj = v->in(0); // Controlling projection |
|
394 |
} else { |
|
395 |
assert( 0, "do not know how to handle this guy" ); |
|
396 |
} |
|
51078 | 397 |
guarantee(proj != NULL, "sanity"); |
1 | 398 |
|
399 |
Node *proj_path_data, *proj_path_ctrl; |
|
400 |
if( proj->Opcode() == Op_IfTrue ) { |
|
401 |
if( phi_s == NULL ) { |
|
402 |
// Only construct phi_s if needed, otherwise provides |
|
403 |
// interfering use. |
|
404 |
phi_s = PhiNode::make_blank(region_s,phi); |
|
405 |
phi_s->init_req( 1, phi_c ); |
|
406 |
phi_s->init_req( 2, phi_x ); |
|
4016
9c11d6d519f7
6889300: assert(i != k || is_new || i->outcnt() > 0, "don't return dead nodes")
kvn
parents:
3268
diff
changeset
|
407 |
hook->add_req(phi_s); |
1 | 408 |
phi_s = phase->transform(phi_s); |
409 |
} |
|
410 |
proj_path_data = phi_s; |
|
411 |
proj_path_ctrl = region_s; |
|
412 |
} else { |
|
413 |
if( phi_f == NULL ) { |
|
414 |
// Only construct phi_f if needed, otherwise provides |
|
415 |
// interfering use. |
|
416 |
phi_f = PhiNode::make_blank(region_f,phi); |
|
417 |
phi_f->init_req( 1, phi_c ); |
|
418 |
phi_f->init_req( 2, phi_x ); |
|
4016
9c11d6d519f7
6889300: assert(i != k || is_new || i->outcnt() > 0, "don't return dead nodes")
kvn
parents:
3268
diff
changeset
|
419 |
hook->add_req(phi_f); |
1 | 420 |
phi_f = phase->transform(phi_f); |
421 |
} |
|
422 |
proj_path_data = phi_f; |
|
423 |
proj_path_ctrl = region_f; |
|
424 |
} |
|
425 |
||
426 |
// Fixup 'v' for for the split |
|
427 |
if( vop == Op_Phi ) { // Remote merge point |
|
428 |
uint i; |
|
429 |
for( i = 1; i < v->req(); i++ ) |
|
430 |
if( v->in(i) == phi ) |
|
431 |
break; |
|
432 |
v->set_req(i, proj_path_data ); |
|
433 |
} else if( v->is_ConstraintCast() ) { |
|
434 |
v->set_req(0, proj_path_ctrl ); |
|
435 |
v->set_req(1, proj_path_data ); |
|
436 |
} else |
|
437 |
ShouldNotReachHere(); |
|
438 |
} |
|
439 |
||
440 |
// Now replace the original iff's True/False with region_s/region_t. |
|
441 |
// This makes the original iff go dead. |
|
442 |
for (DUIterator_Last i3min, i3 = iff->last_outs(i3min); i3 >= i3min; --i3) { |
|
443 |
Node* p = iff->last_out(i3); |
|
444 |
assert( p->Opcode() == Op_IfTrue || p->Opcode() == Op_IfFalse, "" ); |
|
445 |
Node *u = (p->Opcode() == Op_IfTrue) ? region_s : region_f; |
|
446 |
// Replace p with u |
|
447 |
igvn->add_users_to_worklist(p); |
|
448 |
for (DUIterator_Last lmin, l = p->last_outs(lmin); l >= lmin;) { |
|
449 |
Node* x = p->last_out(l); |
|
450 |
igvn->hash_delete(x); |
|
451 |
uint uses_found = 0; |
|
452 |
for( uint j = 0; j < x->req(); j++ ) { |
|
453 |
if( x->in(j) == p ) { |
|
454 |
x->set_req(j, u); |
|
455 |
uses_found++; |
|
456 |
} |
|
457 |
} |
|
458 |
l -= uses_found; // we deleted 1 or more copies of this edge |
|
459 |
} |
|
460 |
igvn->remove_dead_node(p); |
|
461 |
} |
|
462 |
||
463 |
// Force the original merge dead |
|
464 |
igvn->hash_delete(r); |
|
3268
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
465 |
// First, remove region's dead users. |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
466 |
for (DUIterator_Last lmin, l = r->last_outs(lmin); l >= lmin;) { |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
467 |
Node* u = r->last_out(l); |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
468 |
if( u == r ) { |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
469 |
r->set_req(0, NULL); |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
470 |
} else { |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
471 |
assert(u->outcnt() == 0, "only dead users"); |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
472 |
igvn->remove_dead_node(u); |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
473 |
} |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
474 |
l -= 1; |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
475 |
} |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
2131
diff
changeset
|
476 |
igvn->remove_dead_node(r); |
1 | 477 |
|
478 |
// Now remove the bogus extra edges used to keep things alive |
|
479 |
igvn->remove_dead_node( hook ); |
|
480 |
||
481 |
// Must return either the original node (now dead) or a new node |
|
482 |
// (Do not return a top here, since that would break the uniqueness of top.) |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
483 |
return new ConINode(TypeInt::ZERO); |
1 | 484 |
} |
485 |
||
30183 | 486 |
// if this IfNode follows a range check pattern return the projection |
487 |
// for the failed path |
|
488 |
ProjNode* IfNode::range_check_trap_proj(int& flip_test, Node*& l, Node*& r) { |
|
47686
24ebaf9d7198
8188223: IfNode::range_check_trap_proj() should handler dying subgraph with single if proj
roland
parents:
47216
diff
changeset
|
489 |
if (outcnt() != 2) { |
24ebaf9d7198
8188223: IfNode::range_check_trap_proj() should handler dying subgraph with single if proj
roland
parents:
47216
diff
changeset
|
490 |
return NULL; |
24ebaf9d7198
8188223: IfNode::range_check_trap_proj() should handler dying subgraph with single if proj
roland
parents:
47216
diff
changeset
|
491 |
} |
1 | 492 |
Node* b = in(1); |
30183 | 493 |
if (b == NULL || !b->is_Bool()) return NULL; |
1 | 494 |
BoolNode* bn = b->as_Bool(); |
495 |
Node* cmp = bn->in(1); |
|
30183 | 496 |
if (cmp == NULL) return NULL; |
497 |
if (cmp->Opcode() != Op_CmpU) return NULL; |
|
1 | 498 |
|
30183 | 499 |
l = cmp->in(1); |
500 |
r = cmp->in(2); |
|
501 |
flip_test = 1; |
|
1 | 502 |
if (bn->_test._test == BoolTest::le) { |
503 |
l = cmp->in(2); |
|
504 |
r = cmp->in(1); |
|
505 |
flip_test = 2; |
|
506 |
} else if (bn->_test._test != BoolTest::lt) { |
|
30183 | 507 |
return NULL; |
1 | 508 |
} |
30183 | 509 |
if (l->is_top()) return NULL; // Top input means dead test |
34180
f0ec91019db2
8042997: Make intrinsic some or all check index/range methods
roland
parents:
34164
diff
changeset
|
510 |
if (r->Opcode() != Op_LoadRange && !is_RangeCheck()) return NULL; |
1 | 511 |
|
512 |
// We have recognized one of these forms: |
|
513 |
// Flip 1: If (Bool[<] CmpU(l, LoadRange)) ... |
|
514 |
// Flip 2: If (Bool[<=] CmpU(LoadRange, l)) ... |
|
515 |
||
48595
5d699d81c10c
8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents:
48145
diff
changeset
|
516 |
ProjNode* iftrap = proj_out_or_null(flip_test == 2 ? true : false); |
30183 | 517 |
return iftrap; |
518 |
} |
|
519 |
||
520 |
||
521 |
//------------------------------is_range_check--------------------------------- |
|
522 |
// Return 0 if not a range check. Return 1 if a range check and set index and |
|
523 |
// offset. Return 2 if we had to negate the test. Index is NULL if the check |
|
524 |
// is versus a constant. |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
525 |
int RangeCheckNode::is_range_check(Node* &range, Node* &index, jint &offset) { |
30183 | 526 |
int flip_test = 0; |
527 |
Node* l = NULL; |
|
528 |
Node* r = NULL; |
|
529 |
ProjNode* iftrap = range_check_trap_proj(flip_test, l, r); |
|
530 |
||
531 |
if (iftrap == NULL) { |
|
532 |
return 0; |
|
533 |
} |
|
534 |
||
1 | 535 |
// Make sure it's a real range check by requiring an uncommon trap |
536 |
// along the OOB path. Otherwise, it's possible that the user wrote |
|
537 |
// something which optimized to look like a range check but behaves |
|
538 |
// in some other way. |
|
30183 | 539 |
if (iftrap->is_uncommon_trap_proj(Deoptimization::Reason_range_check) == NULL) { |
540 |
return 0; |
|
1 | 541 |
} |
542 |
||
543 |
// Look for index+offset form |
|
544 |
Node* ind = l; |
|
545 |
jint off = 0; |
|
546 |
if (l->is_top()) { |
|
547 |
return 0; |
|
26173
4275dfc46177
8054883: Segmentation error while running program
iveresov
parents:
24923
diff
changeset
|
548 |
} else if (l->Opcode() == Op_AddI) { |
1 | 549 |
if ((off = l->in(1)->find_int_con(0)) != 0) { |
34180
f0ec91019db2
8042997: Make intrinsic some or all check index/range methods
roland
parents:
34164
diff
changeset
|
550 |
ind = l->in(2)->uncast(); |
1 | 551 |
} else if ((off = l->in(2)->find_int_con(0)) != 0) { |
34180
f0ec91019db2
8042997: Make intrinsic some or all check index/range methods
roland
parents:
34164
diff
changeset
|
552 |
ind = l->in(1)->uncast(); |
1 | 553 |
} |
554 |
} else if ((off = l->find_int_con(-1)) >= 0) { |
|
555 |
// constant offset with no variable index |
|
556 |
ind = NULL; |
|
557 |
} else { |
|
558 |
// variable index with no constant offset (or dead negative index) |
|
559 |
off = 0; |
|
560 |
} |
|
561 |
||
562 |
// Return all the values: |
|
563 |
index = ind; |
|
564 |
offset = off; |
|
565 |
range = r; |
|
566 |
return flip_test; |
|
567 |
} |
|
568 |
||
569 |
//------------------------------adjust_check----------------------------------- |
|
570 |
// Adjust (widen) a prior range check |
|
571 |
static void adjust_check(Node* proj, Node* range, Node* index, |
|
572 |
int flip, jint off_lo, PhaseIterGVN* igvn) { |
|
573 |
PhaseGVN *gvn = igvn; |
|
574 |
// Break apart the old check |
|
575 |
Node *iff = proj->in(0); |
|
576 |
Node *bol = iff->in(1); |
|
577 |
if( bol->is_top() ) return; // In case a partially dead range check appears |
|
578 |
// bail (or bomb[ASSERT/DEBUG]) if NOT projection-->IfNode-->BoolNode |
|
579 |
DEBUG_ONLY( if( !bol->is_Bool() ) { proj->dump(3); fatal("Expect projection-->IfNode-->BoolNode"); } ) |
|
580 |
if( !bol->is_Bool() ) return; |
|
581 |
||
582 |
Node *cmp = bol->in(1); |
|
583 |
// Compute a new check |
|
584 |
Node *new_add = gvn->intcon(off_lo); |
|
585 |
if( index ) { |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
586 |
new_add = off_lo ? gvn->transform(new AddINode( index, new_add )) : index; |
1 | 587 |
} |
588 |
Node *new_cmp = (flip == 1) |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
589 |
? new CmpUNode( new_add, range ) |
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
590 |
: new CmpUNode( range, new_add ); |
1 | 591 |
new_cmp = gvn->transform(new_cmp); |
592 |
// See if no need to adjust the existing check |
|
593 |
if( new_cmp == cmp ) return; |
|
594 |
// Else, adjust existing check |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
595 |
Node *new_bol = gvn->transform( new BoolNode( new_cmp, bol->as_Bool()->_test._test ) ); |
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
10258
diff
changeset
|
596 |
igvn->rehash_node_delayed( iff ); |
1 | 597 |
iff->set_req_X( 1, new_bol, igvn ); |
598 |
} |
|
599 |
||
600 |
//------------------------------up_one_dom------------------------------------- |
|
601 |
// Walk up the dominator tree one step. Return NULL at root or true |
|
602 |
// complex merges. Skips through small diamonds. |
|
603 |
Node* IfNode::up_one_dom(Node *curr, bool linear_only) { |
|
604 |
Node *dom = curr->in(0); |
|
605 |
if( !dom ) // Found a Region degraded to a copy? |
|
606 |
return curr->nonnull_req(); // Skip thru it |
|
607 |
||
608 |
if( curr != dom ) // Normal walk up one step? |
|
609 |
return dom; |
|
610 |
||
611 |
// Use linear_only if we are still parsing, since we cannot |
|
612 |
// trust the regions to be fully filled in. |
|
613 |
if (linear_only) |
|
614 |
return NULL; |
|
615 |
||
4582
1a6662d11385
6915110: IfNode::up_one_dom moves beyond RootNode bug in src/share/vm/opto/ifnode.cpp
kvn
parents:
4020
diff
changeset
|
616 |
if( dom->is_Root() ) |
1a6662d11385
6915110: IfNode::up_one_dom moves beyond RootNode bug in src/share/vm/opto/ifnode.cpp
kvn
parents:
4020
diff
changeset
|
617 |
return NULL; |
1a6662d11385
6915110: IfNode::up_one_dom moves beyond RootNode bug in src/share/vm/opto/ifnode.cpp
kvn
parents:
4020
diff
changeset
|
618 |
|
1 | 619 |
// Else hit a Region. Check for a loop header |
620 |
if( dom->is_Loop() ) |
|
621 |
return dom->in(1); // Skip up thru loops |
|
622 |
||
623 |
// Check for small diamonds |
|
624 |
Node *din1, *din2, *din3, *din4; |
|
625 |
if( dom->req() == 3 && // 2-path merge point |
|
626 |
(din1 = dom ->in(1)) && // Left path exists |
|
627 |
(din2 = dom ->in(2)) && // Right path exists |
|
628 |
(din3 = din1->in(0)) && // Left path up one |
|
629 |
(din4 = din2->in(0)) ) { // Right path up one |
|
630 |
if( din3->is_Call() && // Handle a slow-path call on either arm |
|
631 |
(din3 = din3->in(0)) ) |
|
632 |
din3 = din3->in(0); |
|
633 |
if( din4->is_Call() && // Handle a slow-path call on either arm |
|
634 |
(din4 = din4->in(0)) ) |
|
635 |
din4 = din4->in(0); |
|
636 |
if( din3 == din4 && din3->is_If() ) |
|
637 |
return din3; // Skip around diamonds |
|
638 |
} |
|
639 |
||
640 |
// Give up the search at true merges |
|
641 |
return NULL; // Dead loop? Or hit root? |
|
642 |
} |
|
643 |
||
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
644 |
|
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
645 |
//------------------------------filtered_int_type-------------------------------- |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
646 |
// Return a possibly more restrictive type for val based on condition control flow for an if |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
647 |
const TypeInt* IfNode::filtered_int_type(PhaseGVN* gvn, Node *val, Node* if_proj) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
648 |
assert(if_proj && |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
649 |
(if_proj->Opcode() == Op_IfTrue || if_proj->Opcode() == Op_IfFalse), "expecting an if projection"); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
650 |
if (if_proj->in(0) && if_proj->in(0)->is_If()) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
651 |
IfNode* iff = if_proj->in(0)->as_If(); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
652 |
if (iff->in(1) && iff->in(1)->is_Bool()) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
653 |
BoolNode* bol = iff->in(1)->as_Bool(); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
654 |
if (bol->in(1) && bol->in(1)->is_Cmp()) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
655 |
const CmpNode* cmp = bol->in(1)->as_Cmp(); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
656 |
if (cmp->in(1) == val) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
657 |
const TypeInt* cmp2_t = gvn->type(cmp->in(2))->isa_int(); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
658 |
if (cmp2_t != NULL) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
659 |
jint lo = cmp2_t->_lo; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
660 |
jint hi = cmp2_t->_hi; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
661 |
BoolTest::mask msk = if_proj->Opcode() == Op_IfTrue ? bol->_test._test : bol->_test.negate(); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
662 |
switch (msk) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
663 |
case BoolTest::ne: |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
664 |
// Can't refine type |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
665 |
return NULL; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
666 |
case BoolTest::eq: |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
667 |
return cmp2_t; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
668 |
case BoolTest::lt: |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
669 |
lo = TypeInt::INT->_lo; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
670 |
if (hi - 1 < hi) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
671 |
hi = hi - 1; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
672 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
673 |
break; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
674 |
case BoolTest::le: |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
675 |
lo = TypeInt::INT->_lo; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
676 |
break; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
677 |
case BoolTest::gt: |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
678 |
if (lo + 1 > lo) { |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
679 |
lo = lo + 1; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
680 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
681 |
hi = TypeInt::INT->_hi; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
682 |
break; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
683 |
case BoolTest::ge: |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
684 |
// lo unchanged |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
685 |
hi = TypeInt::INT->_hi; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
686 |
break; |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
44314
diff
changeset
|
687 |
default: |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
44314
diff
changeset
|
688 |
break; |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
689 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
690 |
const TypeInt* rtn_t = TypeInt::make(lo, hi, cmp2_t->_widen); |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
691 |
return rtn_t; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
692 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
693 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
694 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
695 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
696 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
697 |
return NULL; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
698 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
699 |
|
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
700 |
//------------------------------fold_compares---------------------------- |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
701 |
// See if a pair of CmpIs can be converted into a CmpU. In some cases |
2131 | 702 |
// the direction of this if is determined by the preceding if so it |
30183 | 703 |
// can be eliminate entirely. |
704 |
// |
|
705 |
// Given an if testing (CmpI n v) check for an immediately control |
|
706 |
// dependent if that is testing (CmpI n v2) and has one projection |
|
707 |
// leading to this if and the other projection leading to a region |
|
708 |
// that merges one of this ifs control projections. |
|
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
709 |
// |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
710 |
// If |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
711 |
// / | |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
712 |
// / | |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
713 |
// / | |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
714 |
// If | |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
715 |
// /\ | |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
716 |
// / \ | |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
717 |
// / \ | |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
718 |
// / Region |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
719 |
// |
30183 | 720 |
// Or given an if testing (CmpI n v) check for a dominating if that is |
721 |
// testing (CmpI n v2), both having one projection leading to an |
|
722 |
// uncommon trap. Allow Another independent guard in between to cover |
|
723 |
// an explicit range check: |
|
724 |
// if (index < 0 || index >= array.length) { |
|
725 |
// which may need a null check to guard the LoadRange |
|
726 |
// |
|
727 |
// If |
|
728 |
// / \ |
|
729 |
// / \ |
|
730 |
// / \ |
|
731 |
// If unc |
|
732 |
// /\ |
|
733 |
// / \ |
|
734 |
// / \ |
|
735 |
// / unc |
|
736 |
// |
|
737 |
||
738 |
// Is the comparison for this If suitable for folding? |
|
739 |
bool IfNode::cmpi_folds(PhaseIterGVN* igvn) { |
|
740 |
return in(1) != NULL && |
|
741 |
in(1)->is_Bool() && |
|
742 |
in(1)->in(1) != NULL && |
|
743 |
in(1)->in(1)->Opcode() == Op_CmpI && |
|
744 |
in(1)->in(1)->in(2) != NULL && |
|
745 |
in(1)->in(1)->in(2) != igvn->C->top() && |
|
746 |
(in(1)->as_Bool()->_test.is_less() || |
|
747 |
in(1)->as_Bool()->_test.is_greater()); |
|
748 |
} |
|
749 |
||
750 |
// Is a dominating control suitable for folding with this if? |
|
751 |
bool IfNode::is_ctrl_folds(Node* ctrl, PhaseIterGVN* igvn) { |
|
752 |
return ctrl != NULL && |
|
753 |
ctrl->is_Proj() && |
|
754 |
ctrl->in(0) != NULL && |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
755 |
ctrl->in(0)->Opcode() == Op_If && |
30183 | 756 |
ctrl->in(0)->outcnt() == 2 && |
757 |
ctrl->in(0)->as_If()->cmpi_folds(igvn) && |
|
758 |
// Must compare same value |
|
759 |
ctrl->in(0)->in(1)->in(1)->in(1) != NULL && |
|
760 |
ctrl->in(0)->in(1)->in(1)->in(1) == in(1)->in(1)->in(1); |
|
761 |
} |
|
762 |
||
763 |
// Do this If and the dominating If share a region? |
|
764 |
bool IfNode::has_shared_region(ProjNode* proj, ProjNode*& success, ProjNode*& fail) { |
|
765 |
ProjNode* otherproj = proj->other_if_proj(); |
|
766 |
Node* otherproj_ctrl_use = otherproj->unique_ctrl_out(); |
|
767 |
RegionNode* region = (otherproj_ctrl_use != NULL && otherproj_ctrl_use->is_Region()) ? otherproj_ctrl_use->as_Region() : NULL; |
|
768 |
success = NULL; |
|
769 |
fail = NULL; |
|
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
770 |
|
30183 | 771 |
if (otherproj->outcnt() == 1 && region != NULL && !region->has_phi()) { |
772 |
for (int i = 0; i < 2; i++) { |
|
773 |
ProjNode* proj = proj_out(i); |
|
774 |
if (success == NULL && proj->outcnt() == 1 && proj->unique_out() == region) { |
|
775 |
success = proj; |
|
776 |
} else if (fail == NULL) { |
|
777 |
fail = proj; |
|
778 |
} else { |
|
779 |
success = fail = NULL; |
|
780 |
} |
|
781 |
} |
|
782 |
} |
|
783 |
return success != NULL && fail != NULL; |
|
784 |
} |
|
785 |
||
49875
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
786 |
bool IfNode::is_dominator_unc(CallStaticJavaNode* dom_unc, CallStaticJavaNode* unc) { |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
787 |
// Different methods and methods containing jsrs are not supported. |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
788 |
ciMethod* method = unc->jvms()->method(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
789 |
ciMethod* dom_method = dom_unc->jvms()->method(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
790 |
if (method != dom_method || method->has_jsrs()) { |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
791 |
return false; |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
792 |
} |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
793 |
// Check that both traps are in the same activation of the method (instead |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
794 |
// of two activations being inlined through different call sites) by verifying |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
795 |
// that the call stacks are equal for both JVMStates. |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
796 |
JVMState* dom_caller = dom_unc->jvms()->caller(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
797 |
JVMState* caller = unc->jvms()->caller(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
798 |
if ((dom_caller == NULL) != (caller == NULL)) { |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
799 |
// The current method must either be inlined into both dom_caller and |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
800 |
// caller or must not be inlined at all (top method). Bail out otherwise. |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
801 |
return false; |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
802 |
} else if (dom_caller != NULL && !dom_caller->same_calls_as(caller)) { |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
803 |
return false; |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
804 |
} |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
805 |
// Check that the bci of the dominating uncommon trap dominates the bci |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
806 |
// of the dominated uncommon trap. Otherwise we may not re-execute |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
807 |
// the dominated check after deoptimization from the merged uncommon trap. |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
808 |
ciTypeFlow* flow = dom_method->get_flow_analysis(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
809 |
int bci = unc->jvms()->bci(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
810 |
int dom_bci = dom_unc->jvms()->bci(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
811 |
if (!flow->is_dominated_by(bci, dom_bci)) { |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
812 |
return false; |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
813 |
} |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
814 |
|
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
815 |
return true; |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
816 |
} |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
817 |
|
30183 | 818 |
// Return projection that leads to an uncommon trap if any |
819 |
ProjNode* IfNode::uncommon_trap_proj(CallStaticJavaNode*& call) const { |
|
820 |
for (int i = 0; i < 2; i++) { |
|
821 |
call = proj_out(i)->is_uncommon_trap_proj(Deoptimization::Reason_none); |
|
822 |
if (call != NULL) { |
|
823 |
return proj_out(i); |
|
824 |
} |
|
825 |
} |
|
826 |
return NULL; |
|
827 |
} |
|
828 |
||
829 |
// Do this If and the dominating If both branch out to an uncommon trap |
|
830 |
bool IfNode::has_only_uncommon_traps(ProjNode* proj, ProjNode*& success, ProjNode*& fail, PhaseIterGVN* igvn) { |
|
831 |
ProjNode* otherproj = proj->other_if_proj(); |
|
832 |
CallStaticJavaNode* dom_unc = otherproj->is_uncommon_trap_proj(Deoptimization::Reason_none); |
|
833 |
||
834 |
if (otherproj->outcnt() == 1 && dom_unc != NULL) { |
|
34151
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
835 |
// We need to re-execute the folded Ifs after deoptimization from the merged traps |
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
836 |
if (!dom_unc->jvms()->should_reexecute()) { |
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
837 |
return false; |
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
838 |
} |
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
839 |
|
30183 | 840 |
CallStaticJavaNode* unc = NULL; |
841 |
ProjNode* unc_proj = uncommon_trap_proj(unc); |
|
842 |
if (unc_proj != NULL && unc_proj->outcnt() == 1) { |
|
843 |
if (dom_unc == unc) { |
|
844 |
// Allow the uncommon trap to be shared through a region |
|
845 |
RegionNode* r = unc->in(0)->as_Region(); |
|
846 |
if (r->outcnt() != 2 || r->req() != 3 || r->find_edge(otherproj) == -1 || r->find_edge(unc_proj) == -1) { |
|
847 |
return false; |
|
848 |
} |
|
849 |
assert(r->has_phi() == NULL, "simple region shouldn't have a phi"); |
|
850 |
} else if (dom_unc->in(0) != otherproj || unc->in(0) != unc_proj) { |
|
851 |
return false; |
|
852 |
} |
|
34151
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
853 |
|
49875
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
854 |
if (!is_dominator_unc(dom_unc, unc)) { |
34151
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
855 |
return false; |
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
856 |
} |
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
857 |
|
30183 | 858 |
// See merge_uncommon_traps: the reason of the uncommon trap |
859 |
// will be changed and the state of the dominating If will be |
|
860 |
// used. Checked that we didn't apply this transformation in a |
|
861 |
// previous compilation and it didn't cause too many traps |
|
49875
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
862 |
ciMethod* dom_method = dom_unc->jvms()->method(); |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
863 |
int dom_bci = dom_unc->jvms()->bci(); |
34151
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
864 |
if (!igvn->C->too_many_traps(dom_method, dom_bci, Deoptimization::Reason_unstable_fused_if) && |
8e0bebdbc29e
8140574: C2 must re-execute checks after deoptimizing from merged uncommon traps
thartmann
parents:
32732
diff
changeset
|
865 |
!igvn->C->too_many_traps(dom_method, dom_bci, Deoptimization::Reason_range_check)) { |
30183 | 866 |
success = unc_proj; |
867 |
fail = unc_proj->other_if_proj(); |
|
868 |
return true; |
|
869 |
} |
|
870 |
} |
|
871 |
} |
|
872 |
return false; |
|
873 |
} |
|
874 |
||
875 |
// Check that the 2 CmpI can be folded into as single CmpU and proceed with the folding |
|
876 |
bool IfNode::fold_compares_helper(ProjNode* proj, ProjNode* success, ProjNode* fail, PhaseIterGVN* igvn) { |
|
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
877 |
Node* this_cmp = in(1)->in(1); |
30183 | 878 |
BoolNode* this_bool = in(1)->as_Bool(); |
879 |
IfNode* dom_iff = proj->in(0)->as_If(); |
|
880 |
BoolNode* dom_bool = dom_iff->in(1)->as_Bool(); |
|
881 |
Node* lo = dom_iff->in(1)->in(1)->in(2); |
|
882 |
Node* hi = this_cmp->in(2); |
|
883 |
Node* n = this_cmp->in(1); |
|
884 |
ProjNode* otherproj = proj->other_if_proj(); |
|
885 |
||
886 |
const TypeInt* lo_type = IfNode::filtered_int_type(igvn, n, otherproj); |
|
887 |
const TypeInt* hi_type = IfNode::filtered_int_type(igvn, n, success); |
|
888 |
||
889 |
BoolTest::mask lo_test = dom_bool->_test._test; |
|
890 |
BoolTest::mask hi_test = this_bool->_test._test; |
|
891 |
BoolTest::mask cond = hi_test; |
|
892 |
||
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
893 |
// convert: |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
894 |
// |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
895 |
// dom_bool = x {<,<=,>,>=} a |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
896 |
// / \ |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
897 |
// proj = {True,False} / \ otherproj = {False,True} |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
898 |
// / |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
899 |
// this_bool = x {<,<=} b |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
900 |
// / \ |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
901 |
// fail = {True,False} / \ success = {False,True} |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
902 |
// / |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
903 |
// |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
904 |
// (Second test guaranteed canonicalized, first one may not have |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
905 |
// been canonicalized yet) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
906 |
// |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
907 |
// into: |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
908 |
// |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
909 |
// cond = (x - lo) {<u,<=u,>u,>=u} adjusted_lim |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
910 |
// / \ |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
911 |
// fail / \ success |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
912 |
// / |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
913 |
// |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
914 |
|
30183 | 915 |
// Figure out which of the two tests sets the upper bound and which |
916 |
// sets the lower bound if any. |
|
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
917 |
Node* adjusted_lim = NULL; |
49187
f7b73f9ae38f
8198252: Null pointer dereference in fold_compares_helper
rraghavan
parents:
48606
diff
changeset
|
918 |
if (lo_type != NULL && hi_type != NULL && hi_type->_lo > lo_type->_hi && |
f7b73f9ae38f
8198252: Null pointer dereference in fold_compares_helper
rraghavan
parents:
48606
diff
changeset
|
919 |
hi_type->_hi == max_jint && lo_type->_lo == min_jint) { |
30183 | 920 |
assert((dom_bool->_test.is_less() && !proj->_con) || |
921 |
(dom_bool->_test.is_greater() && proj->_con), "incorrect test"); |
|
922 |
// this test was canonicalized |
|
923 |
assert(this_bool->_test.is_less() && fail->_con, "incorrect test"); |
|
924 |
||
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
925 |
// this_bool = < |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
926 |
// dom_bool = >= (proj = True) or dom_bool = < (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
927 |
// x in [a, b[ on the fail (= True) projection, b > a-1 (because of hi_type->_lo > lo_type->_hi test above): |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
928 |
// lo = a, hi = b, adjusted_lim = b-a, cond = <u |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
929 |
// dom_bool = > (proj = True) or dom_bool = <= (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
930 |
// x in ]a, b[ on the fail (= True) projection, b > a: |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
931 |
// lo = a+1, hi = b, adjusted_lim = b-a-1, cond = <u |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
932 |
// this_bool = <= |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
933 |
// dom_bool = >= (proj = True) or dom_bool = < (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
934 |
// x in [a, b] on the fail (= True) projection, b+1 > a-1: |
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
935 |
// lo = a, hi = b, adjusted_lim = b-a+1, cond = <u |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
936 |
// lo = a, hi = b, adjusted_lim = b-a, cond = <=u doesn't work because b = a - 1 is possible, then b-a = -1 |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
937 |
// dom_bool = > (proj = True) or dom_bool = <= (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
938 |
// x in ]a, b] on the fail (= True) projection b+1 > a: |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
939 |
// lo = a+1, hi = b, adjusted_lim = b-a, cond = <u |
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
940 |
// lo = a+1, hi = b, adjusted_lim = b-a-1, cond = <=u doesn't work because a = b is possible, then b-a-1 = -1 |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
941 |
|
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
942 |
if (hi_test == BoolTest::lt) { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
943 |
if (lo_test == BoolTest::gt || lo_test == BoolTest::le) { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
944 |
lo = igvn->transform(new AddINode(lo, igvn->intcon(1))); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
945 |
} |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
946 |
} else { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
947 |
assert(hi_test == BoolTest::le, "bad test"); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
948 |
if (lo_test == BoolTest::ge || lo_test == BoolTest::lt) { |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
949 |
adjusted_lim = igvn->transform(new SubINode(hi, lo)); |
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
950 |
adjusted_lim = igvn->transform(new AddINode(adjusted_lim, igvn->intcon(1))); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
951 |
cond = BoolTest::lt; |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
952 |
} else { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
953 |
assert(lo_test == BoolTest::gt || lo_test == BoolTest::le, "bad test"); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
954 |
adjusted_lim = igvn->transform(new SubINode(hi, lo)); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
955 |
lo = igvn->transform(new AddINode(lo, igvn->intcon(1))); |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
956 |
cond = BoolTest::lt; |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
957 |
} |
30183 | 958 |
} |
49187
f7b73f9ae38f
8198252: Null pointer dereference in fold_compares_helper
rraghavan
parents:
48606
diff
changeset
|
959 |
} else if (lo_type != NULL && hi_type != NULL && lo_type->_lo > hi_type->_hi && |
f7b73f9ae38f
8198252: Null pointer dereference in fold_compares_helper
rraghavan
parents:
48606
diff
changeset
|
960 |
lo_type->_hi == max_jint && hi_type->_lo == min_jint) { |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
961 |
|
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
962 |
// this_bool = < |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
963 |
// dom_bool = < (proj = True) or dom_bool = >= (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
964 |
// x in [b, a[ on the fail (= False) projection, a > b-1 (because of lo_type->_lo > hi_type->_hi above): |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
965 |
// lo = b, hi = a, adjusted_lim = a-b, cond = >=u |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
966 |
// dom_bool = <= (proj = True) or dom_bool = > (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
967 |
// x in [b, a] on the fail (= False) projection, a+1 > b-1: |
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
968 |
// lo = b, hi = a, adjusted_lim = a-b+1, cond = >=u |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
969 |
// lo = b, hi = a, adjusted_lim = a-b, cond = >u doesn't work because a = b - 1 is possible, then b-a = -1 |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
970 |
// this_bool = <= |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
971 |
// dom_bool = < (proj = True) or dom_bool = >= (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
972 |
// x in ]b, a[ on the fail (= False) projection, a > b: |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
973 |
// lo = b+1, hi = a, adjusted_lim = a-b-1, cond = >=u |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
974 |
// dom_bool = <= (proj = True) or dom_bool = > (proj = False) |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
975 |
// x in ]b, a] on the fail (= False) projection, a+1 > b: |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
976 |
// lo = b+1, hi = a, adjusted_lim = a-b, cond = >=u |
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
977 |
// lo = b+1, hi = a, adjusted_lim = a-b-1, cond = >u doesn't work because a = b is possible, then b-a-1 = -1 |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
978 |
|
30183 | 979 |
swap(lo, hi); |
980 |
swap(lo_type, hi_type); |
|
981 |
swap(lo_test, hi_test); |
|
982 |
||
30631
483c444f36f4
8078436: java/util/stream/boottest/java/util/stream/UnorderedTest.java crashed with an assert in ifnode.cpp
roland
parents:
30629
diff
changeset
|
983 |
assert((dom_bool->_test.is_less() && proj->_con) || |
483c444f36f4
8078436: java/util/stream/boottest/java/util/stream/UnorderedTest.java crashed with an assert in ifnode.cpp
roland
parents:
30629
diff
changeset
|
984 |
(dom_bool->_test.is_greater() && !proj->_con), "incorrect test"); |
30183 | 985 |
// this test was canonicalized |
30631
483c444f36f4
8078436: java/util/stream/boottest/java/util/stream/UnorderedTest.java crashed with an assert in ifnode.cpp
roland
parents:
30629
diff
changeset
|
986 |
assert(this_bool->_test.is_less() && !fail->_con, "incorrect test"); |
30183 | 987 |
|
988 |
cond = (hi_test == BoolTest::le || hi_test == BoolTest::gt) ? BoolTest::gt : BoolTest::ge; |
|
989 |
||
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
990 |
if (lo_test == BoolTest::lt) { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
991 |
if (hi_test == BoolTest::lt || hi_test == BoolTest::ge) { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
992 |
cond = BoolTest::ge; |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
993 |
} else { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
994 |
assert(hi_test == BoolTest::le || hi_test == BoolTest::gt, "bad test"); |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
995 |
adjusted_lim = igvn->transform(new SubINode(hi, lo)); |
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
996 |
adjusted_lim = igvn->transform(new AddINode(adjusted_lim, igvn->intcon(1))); |
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
997 |
cond = BoolTest::ge; |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
998 |
} |
32732
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
999 |
} else if (lo_test == BoolTest::le) { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1000 |
if (hi_test == BoolTest::lt || hi_test == BoolTest::ge) { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1001 |
lo = igvn->transform(new AddINode(lo, igvn->intcon(1))); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1002 |
cond = BoolTest::ge; |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1003 |
} else { |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1004 |
assert(hi_test == BoolTest::le || hi_test == BoolTest::gt, "bad test"); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1005 |
adjusted_lim = igvn->transform(new SubINode(hi, lo)); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1006 |
lo = igvn->transform(new AddINode(lo, igvn->intcon(1))); |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1007 |
cond = BoolTest::ge; |
9f4cf1523072
8135069: C2 replaces range checks by unsigned comparison with -1
roland
parents:
32084
diff
changeset
|
1008 |
} |
30183 | 1009 |
} |
1010 |
} else { |
|
1011 |
const TypeInt* failtype = filtered_int_type(igvn, n, proj); |
|
1012 |
if (failtype != NULL) { |
|
1013 |
const TypeInt* type2 = filtered_int_type(igvn, n, fail); |
|
1014 |
if (type2 != NULL) { |
|
1015 |
failtype = failtype->join(type2)->is_int(); |
|
1016 |
if (failtype->_lo > failtype->_hi) { |
|
1017 |
// previous if determines the result of this if so |
|
1018 |
// replace Bool with constant |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1019 |
igvn->_worklist.push(in(1)); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1020 |
igvn->replace_input_of(this, 1, igvn->intcon(success->_con)); |
30183 | 1021 |
return true; |
1022 |
} |
|
1023 |
} |
|
1024 |
} |
|
1025 |
lo = NULL; |
|
1026 |
hi = NULL; |
|
1027 |
} |
|
1028 |
||
1029 |
if (lo && hi) { |
|
1030 |
// Merge the two compares into a single unsigned compare by building (CmpU (n - lo) (hi - lo)) |
|
1031 |
Node* adjusted_val = igvn->transform(new SubINode(n, lo)); |
|
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
1032 |
if (adjusted_lim == NULL) { |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
1033 |
adjusted_lim = igvn->transform(new SubINode(hi, lo)); |
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
1034 |
} |
30183 | 1035 |
Node* newcmp = igvn->transform(new CmpUNode(adjusted_val, adjusted_lim)); |
1036 |
Node* newbool = igvn->transform(new BoolNode(newcmp, cond)); |
|
1037 |
||
31132
328ac96a30d6
8081823: C2 performs unsigned comparison against -1
roland
parents:
30631
diff
changeset
|
1038 |
igvn->replace_input_of(dom_iff, 1, igvn->intcon(proj->_con)); |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1039 |
igvn->_worklist.push(in(1)); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1040 |
igvn->replace_input_of(this, 1, newbool); |
30183 | 1041 |
|
1042 |
return true; |
|
1043 |
} |
|
1044 |
return false; |
|
1045 |
} |
|
1046 |
||
1047 |
// Merge the branches that trap for this If and the dominating If into |
|
1048 |
// a single region that branches to the uncommon trap for the |
|
1049 |
// dominating If |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1050 |
Node* IfNode::merge_uncommon_traps(ProjNode* proj, ProjNode* success, ProjNode* fail, PhaseIterGVN* igvn) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1051 |
Node* res = this; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1052 |
assert(success->in(0) == this, "bad projection"); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1053 |
|
30183 | 1054 |
ProjNode* otherproj = proj->other_if_proj(); |
1055 |
||
1056 |
CallStaticJavaNode* unc = success->is_uncommon_trap_proj(Deoptimization::Reason_none); |
|
1057 |
CallStaticJavaNode* dom_unc = otherproj->is_uncommon_trap_proj(Deoptimization::Reason_none); |
|
1058 |
||
1059 |
if (unc != dom_unc) { |
|
1060 |
Node* r = new RegionNode(3); |
|
1061 |
||
1062 |
r->set_req(1, otherproj); |
|
1063 |
r->set_req(2, success); |
|
1064 |
r = igvn->transform(r); |
|
1065 |
assert(r->is_Region(), "can't go away"); |
|
1066 |
||
1067 |
// Make both If trap at the state of the first If: once the CmpI |
|
1068 |
// nodes are merged, if we trap we don't know which of the CmpI |
|
1069 |
// nodes would have caused the trap so we have to restart |
|
1070 |
// execution at the first one |
|
1071 |
igvn->replace_input_of(dom_unc, 0, r); |
|
1072 |
igvn->replace_input_of(unc, 0, igvn->C->top()); |
|
1073 |
} |
|
1074 |
int trap_request = dom_unc->uncommon_trap_request(); |
|
1075 |
Deoptimization::DeoptReason reason = Deoptimization::trap_request_reason(trap_request); |
|
1076 |
Deoptimization::DeoptAction action = Deoptimization::trap_request_action(trap_request); |
|
1077 |
||
1078 |
int flip_test = 0; |
|
1079 |
Node* l = NULL; |
|
1080 |
Node* r = NULL; |
|
1081 |
||
1082 |
if (success->in(0)->as_If()->range_check_trap_proj(flip_test, l, r) != NULL) { |
|
1083 |
// If this looks like a range check, change the trap to |
|
1084 |
// Reason_range_check so the compiler recognizes it as a range |
|
1085 |
// check and applies the corresponding optimizations |
|
1086 |
trap_request = Deoptimization::make_trap_request(Deoptimization::Reason_range_check, action); |
|
1087 |
||
1088 |
improve_address_types(l, r, fail, igvn); |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1089 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1090 |
res = igvn->transform(new RangeCheckNode(in(0), in(1), _prob, _fcnt)); |
30183 | 1091 |
} else if (unc != dom_unc) { |
1092 |
// If we trap we won't know what CmpI would have caused the trap |
|
1093 |
// so use a special trap reason to mark this pair of CmpI nodes as |
|
1094 |
// bad candidate for folding. On recompilation we won't fold them |
|
1095 |
// and we may trap again but this time we'll know what branch |
|
1096 |
// traps |
|
1097 |
trap_request = Deoptimization::make_trap_request(Deoptimization::Reason_unstable_fused_if, action); |
|
1098 |
} |
|
1099 |
igvn->replace_input_of(dom_unc, TypeFunc::Parms, igvn->intcon(trap_request)); |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1100 |
return res; |
30183 | 1101 |
} |
1102 |
||
1103 |
// If we are turning 2 CmpI nodes into a CmpU that follows the pattern |
|
1104 |
// of a rangecheck on index i, on 64 bit the compares may be followed |
|
1105 |
// by memory accesses using i as index. In that case, the CmpU tells |
|
1106 |
// us something about the values taken by i that can help the compiler |
|
1107 |
// (see Compile::conv_I2X_index()) |
|
1108 |
void IfNode::improve_address_types(Node* l, Node* r, ProjNode* fail, PhaseIterGVN* igvn) { |
|
1109 |
#ifdef _LP64 |
|
1110 |
ResourceMark rm; |
|
1111 |
Node_Stack stack(2); |
|
1112 |
||
1113 |
assert(r->Opcode() == Op_LoadRange, "unexpected range check"); |
|
1114 |
const TypeInt* array_size = igvn->type(r)->is_int(); |
|
1115 |
||
1116 |
stack.push(l, 0); |
|
1117 |
||
1118 |
while(stack.size() > 0) { |
|
1119 |
Node* n = stack.node(); |
|
1120 |
uint start = stack.index(); |
|
1121 |
||
1122 |
uint i = start; |
|
1123 |
for (; i < n->outcnt(); i++) { |
|
1124 |
Node* use = n->raw_out(i); |
|
1125 |
if (stack.size() == 1) { |
|
1126 |
if (use->Opcode() == Op_ConvI2L) { |
|
1127 |
const TypeLong* bounds = use->as_Type()->type()->is_long(); |
|
1128 |
if (bounds->_lo <= array_size->_lo && bounds->_hi >= array_size->_hi && |
|
1129 |
(bounds->_lo != array_size->_lo || bounds->_hi != array_size->_hi)) { |
|
1130 |
stack.set_index(i+1); |
|
1131 |
stack.push(use, 0); |
|
1132 |
break; |
|
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1133 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1134 |
} |
30183 | 1135 |
} else if (use->is_Mem()) { |
1136 |
Node* ctrl = use->in(0); |
|
1137 |
for (int i = 0; i < 10 && ctrl != NULL && ctrl != fail; i++) { |
|
1138 |
ctrl = up_one_dom(ctrl); |
|
1139 |
} |
|
1140 |
if (ctrl == fail) { |
|
1141 |
Node* init_n = stack.node_at(1); |
|
1142 |
assert(init_n->Opcode() == Op_ConvI2L, "unexpected first node"); |
|
35574
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35552
diff
changeset
|
1143 |
// Create a new narrow ConvI2L node that is dependent on the range check |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35552
diff
changeset
|
1144 |
Node* new_n = igvn->C->conv_I2X_index(igvn, l, array_size, fail); |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1145 |
|
30629
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1146 |
// The type of the ConvI2L may be widen and so the new |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1147 |
// ConvI2L may not be better than an existing ConvI2L |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1148 |
if (new_n != init_n) { |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1149 |
for (uint j = 2; j < stack.size(); j++) { |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1150 |
Node* n = stack.node_at(j); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1151 |
Node* clone = n->clone(); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1152 |
int rep = clone->replace_edge(init_n, new_n); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1153 |
assert(rep > 0, "can't find expected node?"); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1154 |
clone = igvn->transform(clone); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1155 |
init_n = n; |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1156 |
new_n = clone; |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1157 |
} |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1158 |
igvn->hash_delete(use); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1159 |
int rep = use->replace_edge(init_n, new_n); |
30183 | 1160 |
assert(rep > 0, "can't find expected node?"); |
30629
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1161 |
igvn->transform(use); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1162 |
if (init_n->outcnt() == 0) { |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1163 |
igvn->_worklist.push(init_n); |
b6e5ad2f18d5
8076188: Optimize arraycopy out for non escaping destination
roland
parents:
30309
diff
changeset
|
1164 |
} |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1165 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1166 |
} |
30183 | 1167 |
} else if (use->in(0) == NULL && (igvn->type(use)->isa_long() || |
1168 |
igvn->type(use)->isa_ptr())) { |
|
1169 |
stack.set_index(i+1); |
|
1170 |
stack.push(use, 0); |
|
1171 |
break; |
|
1172 |
} |
|
1173 |
} |
|
1174 |
if (i == n->outcnt()) { |
|
1175 |
stack.pop(); |
|
1176 |
} |
|
1177 |
} |
|
1178 |
#endif |
|
1179 |
} |
|
1180 |
||
1181 |
bool IfNode::is_cmp_with_loadrange(ProjNode* proj) { |
|
1182 |
if (in(1) != NULL && |
|
1183 |
in(1)->in(1) != NULL && |
|
1184 |
in(1)->in(1)->in(2) != NULL) { |
|
1185 |
Node* other = in(1)->in(1)->in(2); |
|
1186 |
if (other->Opcode() == Op_LoadRange && |
|
1187 |
((other->in(0) != NULL && other->in(0) == proj) || |
|
1188 |
(other->in(0) == NULL && |
|
1189 |
other->in(2) != NULL && |
|
1190 |
other->in(2)->is_AddP() && |
|
1191 |
other->in(2)->in(1) != NULL && |
|
1192 |
other->in(2)->in(1)->Opcode() == Op_CastPP && |
|
1193 |
other->in(2)->in(1)->in(0) == proj))) { |
|
1194 |
return true; |
|
1195 |
} |
|
1196 |
} |
|
1197 |
return false; |
|
1198 |
} |
|
1199 |
||
1200 |
bool IfNode::is_null_check(ProjNode* proj, PhaseIterGVN* igvn) { |
|
1201 |
Node* other = in(1)->in(1)->in(2); |
|
1202 |
if (other->in(MemNode::Address) != NULL && |
|
1203 |
proj->in(0)->in(1) != NULL && |
|
1204 |
proj->in(0)->in(1)->is_Bool() && |
|
1205 |
proj->in(0)->in(1)->in(1) != NULL && |
|
1206 |
proj->in(0)->in(1)->in(1)->Opcode() == Op_CmpP && |
|
1207 |
proj->in(0)->in(1)->in(1)->in(2) != NULL && |
|
1208 |
proj->in(0)->in(1)->in(1)->in(1) == other->in(MemNode::Address)->in(AddPNode::Address)->uncast() && |
|
1209 |
igvn->type(proj->in(0)->in(1)->in(1)->in(2)) == TypePtr::NULL_PTR) { |
|
1210 |
return true; |
|
1211 |
} |
|
1212 |
return false; |
|
1213 |
} |
|
1214 |
||
1215 |
// Check that the If that is in between the 2 integer comparisons has |
|
1216 |
// no side effect |
|
1217 |
bool IfNode::is_side_effect_free_test(ProjNode* proj, PhaseIterGVN* igvn) { |
|
48606
be259687afab
8194982: 2 Null pointer dereference defect groups related to ProjNode::is_uncommon_trap_if_pattern()
dlong
parents:
48595
diff
changeset
|
1218 |
if (proj == NULL) { |
be259687afab
8194982: 2 Null pointer dereference defect groups related to ProjNode::is_uncommon_trap_if_pattern()
dlong
parents:
48595
diff
changeset
|
1219 |
return false; |
be259687afab
8194982: 2 Null pointer dereference defect groups related to ProjNode::is_uncommon_trap_if_pattern()
dlong
parents:
48595
diff
changeset
|
1220 |
} |
be259687afab
8194982: 2 Null pointer dereference defect groups related to ProjNode::is_uncommon_trap_if_pattern()
dlong
parents:
48595
diff
changeset
|
1221 |
CallStaticJavaNode* unc = proj->is_uncommon_trap_if_pattern(Deoptimization::Reason_none); |
be259687afab
8194982: 2 Null pointer dereference defect groups related to ProjNode::is_uncommon_trap_if_pattern()
dlong
parents:
48595
diff
changeset
|
1222 |
if (unc != NULL && proj->outcnt() <= 2) { |
30183 | 1223 |
if (proj->outcnt() == 1 || |
1224 |
// Allow simple null check from LoadRange |
|
1225 |
(is_cmp_with_loadrange(proj) && is_null_check(proj, igvn))) { |
|
1226 |
CallStaticJavaNode* unc = proj->is_uncommon_trap_if_pattern(Deoptimization::Reason_none); |
|
1227 |
CallStaticJavaNode* dom_unc = proj->in(0)->in(0)->as_Proj()->is_uncommon_trap_if_pattern(Deoptimization::Reason_none); |
|
48606
be259687afab
8194982: 2 Null pointer dereference defect groups related to ProjNode::is_uncommon_trap_if_pattern()
dlong
parents:
48595
diff
changeset
|
1228 |
assert(dom_unc != NULL, "is_uncommon_trap_if_pattern returned NULL"); |
30183 | 1229 |
|
1230 |
// reroute_side_effect_free_unc changes the state of this |
|
1231 |
// uncommon trap to restart execution at the previous |
|
1232 |
// CmpI. Check that this change in a previous compilation didn't |
|
1233 |
// cause too many traps. |
|
1234 |
int trap_request = unc->uncommon_trap_request(); |
|
1235 |
Deoptimization::DeoptReason reason = Deoptimization::trap_request_reason(trap_request); |
|
1236 |
||
1237 |
if (igvn->C->too_many_traps(dom_unc->jvms()->method(), dom_unc->jvms()->bci(), reason)) { |
|
1238 |
return false; |
|
1239 |
} |
|
1240 |
||
49875
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
1241 |
if (!is_dominator_unc(dom_unc, unc)) { |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
1242 |
return false; |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
1243 |
} |
6d1f26b1ddfd
8201368: IfNode::fold_compares() may lead to incorrect execution
roland
parents:
49187
diff
changeset
|
1244 |
|
30183 | 1245 |
return true; |
1246 |
} |
|
1247 |
} |
|
1248 |
return false; |
|
1249 |
} |
|
1250 |
||
1251 |
// Make the If between the 2 integer comparisons trap at the state of |
|
1252 |
// the first If: the last CmpI is the one replaced by a CmpU and the |
|
1253 |
// first CmpI is eliminated, so the test between the 2 CmpI nodes |
|
1254 |
// won't be guarded by the first CmpI anymore. It can trap in cases |
|
1255 |
// where the first CmpI would have prevented it from executing: on a |
|
1256 |
// trap, we need to restart execution at the state of the first CmpI |
|
1257 |
void IfNode::reroute_side_effect_free_unc(ProjNode* proj, ProjNode* dom_proj, PhaseIterGVN* igvn) { |
|
1258 |
CallStaticJavaNode* dom_unc = dom_proj->is_uncommon_trap_if_pattern(Deoptimization::Reason_none); |
|
1259 |
ProjNode* otherproj = proj->other_if_proj(); |
|
1260 |
CallStaticJavaNode* unc = proj->is_uncommon_trap_if_pattern(Deoptimization::Reason_none); |
|
1261 |
Node* call_proj = dom_unc->unique_ctrl_out(); |
|
1262 |
Node* halt = call_proj->unique_ctrl_out(); |
|
1263 |
||
1264 |
Node* new_unc = dom_unc->clone(); |
|
1265 |
call_proj = call_proj->clone(); |
|
1266 |
halt = halt->clone(); |
|
1267 |
Node* c = otherproj->clone(); |
|
1268 |
||
1269 |
c = igvn->transform(c); |
|
1270 |
new_unc->set_req(TypeFunc::Parms, unc->in(TypeFunc::Parms)); |
|
1271 |
new_unc->set_req(0, c); |
|
1272 |
new_unc = igvn->transform(new_unc); |
|
1273 |
call_proj->set_req(0, new_unc); |
|
1274 |
call_proj = igvn->transform(call_proj); |
|
1275 |
halt->set_req(0, call_proj); |
|
1276 |
halt = igvn->transform(halt); |
|
1277 |
||
1278 |
igvn->replace_node(otherproj, igvn->C->top()); |
|
1279 |
igvn->C->root()->add_req(halt); |
|
1280 |
} |
|
1281 |
||
1282 |
Node* IfNode::fold_compares(PhaseIterGVN* igvn) { |
|
1283 |
if (Opcode() != Op_If) return NULL; |
|
1284 |
||
1285 |
if (cmpi_folds(igvn)) { |
|
1286 |
Node* ctrl = in(0); |
|
1287 |
if (is_ctrl_folds(ctrl, igvn) && |
|
1288 |
ctrl->outcnt() == 1) { |
|
1289 |
// A integer comparison immediately dominated by another integer |
|
1290 |
// comparison |
|
1291 |
ProjNode* success = NULL; |
|
1292 |
ProjNode* fail = NULL; |
|
1293 |
ProjNode* dom_cmp = ctrl->as_Proj(); |
|
1294 |
if (has_shared_region(dom_cmp, success, fail) && |
|
1295 |
// Next call modifies graph so must be last |
|
1296 |
fold_compares_helper(dom_cmp, success, fail, igvn)) { |
|
1297 |
return this; |
|
1298 |
} |
|
1299 |
if (has_only_uncommon_traps(dom_cmp, success, fail, igvn) && |
|
1300 |
// Next call modifies graph so must be last |
|
1301 |
fold_compares_helper(dom_cmp, success, fail, igvn)) { |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1302 |
return merge_uncommon_traps(dom_cmp, success, fail, igvn); |
30183 | 1303 |
} |
1304 |
return NULL; |
|
1305 |
} else if (ctrl->in(0) != NULL && |
|
1306 |
ctrl->in(0)->in(0) != NULL) { |
|
1307 |
ProjNode* success = NULL; |
|
1308 |
ProjNode* fail = NULL; |
|
1309 |
Node* dom = ctrl->in(0)->in(0); |
|
1310 |
ProjNode* dom_cmp = dom->isa_Proj(); |
|
1311 |
ProjNode* other_cmp = ctrl->isa_Proj(); |
|
1312 |
||
1313 |
// Check if it's an integer comparison dominated by another |
|
1314 |
// integer comparison with another test in between |
|
1315 |
if (is_ctrl_folds(dom, igvn) && |
|
1316 |
has_only_uncommon_traps(dom_cmp, success, fail, igvn) && |
|
1317 |
is_side_effect_free_test(other_cmp, igvn) && |
|
1318 |
// Next call modifies graph so must be last |
|
1319 |
fold_compares_helper(dom_cmp, success, fail, igvn)) { |
|
1320 |
reroute_side_effect_free_unc(other_cmp, dom_cmp, igvn); |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1321 |
return merge_uncommon_traps(dom_cmp, success, fail, igvn); |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1322 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1323 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1324 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1325 |
return NULL; |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1326 |
} |
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1327 |
|
1 | 1328 |
//------------------------------remove_useless_bool---------------------------- |
1329 |
// Check for people making a useless boolean: things like |
|
1330 |
// if( (x < y ? true : false) ) { ... } |
|
1331 |
// Replace with if( x < y ) { ... } |
|
1332 |
static Node *remove_useless_bool(IfNode *iff, PhaseGVN *phase) { |
|
1333 |
Node *i1 = iff->in(1); |
|
1334 |
if( !i1->is_Bool() ) return NULL; |
|
1335 |
BoolNode *bol = i1->as_Bool(); |
|
1336 |
||
1337 |
Node *cmp = bol->in(1); |
|
1338 |
if( cmp->Opcode() != Op_CmpI ) return NULL; |
|
1339 |
||
1340 |
// Must be comparing against a bool |
|
1341 |
const Type *cmp2_t = phase->type( cmp->in(2) ); |
|
1342 |
if( cmp2_t != TypeInt::ZERO && |
|
1343 |
cmp2_t != TypeInt::ONE ) |
|
1344 |
return NULL; |
|
1345 |
||
1346 |
// Find a prior merge point merging the boolean |
|
1347 |
i1 = cmp->in(1); |
|
1348 |
if( !i1->is_Phi() ) return NULL; |
|
1349 |
PhiNode *phi = i1->as_Phi(); |
|
1350 |
if( phase->type( phi ) != TypeInt::BOOL ) |
|
1351 |
return NULL; |
|
1352 |
||
1353 |
// Check for diamond pattern |
|
1354 |
int true_path = phi->is_diamond_phi(); |
|
1355 |
if( true_path == 0 ) return NULL; |
|
1356 |
||
958
4c4709e8b7ee
6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform")
never
parents:
190
diff
changeset
|
1357 |
// Make sure that iff and the control of the phi are different. This |
4c4709e8b7ee
6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform")
never
parents:
190
diff
changeset
|
1358 |
// should really only happen for dead control flow since it requires |
4c4709e8b7ee
6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform")
never
parents:
190
diff
changeset
|
1359 |
// an illegal cycle. |
4c4709e8b7ee
6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform")
never
parents:
190
diff
changeset
|
1360 |
if (phi->in(0)->in(1)->in(0) == iff) return NULL; |
4c4709e8b7ee
6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform")
never
parents:
190
diff
changeset
|
1361 |
|
1 | 1362 |
// phi->region->if_proj->ifnode->bool->cmp |
1363 |
BoolNode *bol2 = phi->in(0)->in(1)->in(0)->in(1)->as_Bool(); |
|
1364 |
||
1365 |
// Now get the 'sense' of the test correct so we can plug in |
|
1366 |
// either iff2->in(1) or its complement. |
|
1367 |
int flip = 0; |
|
1368 |
if( bol->_test._test == BoolTest::ne ) flip = 1-flip; |
|
1369 |
else if( bol->_test._test != BoolTest::eq ) return NULL; |
|
1370 |
if( cmp2_t == TypeInt::ZERO ) flip = 1-flip; |
|
1371 |
||
1372 |
const Type *phi1_t = phase->type( phi->in(1) ); |
|
1373 |
const Type *phi2_t = phase->type( phi->in(2) ); |
|
1374 |
// Check for Phi(0,1) and flip |
|
1375 |
if( phi1_t == TypeInt::ZERO ) { |
|
1376 |
if( phi2_t != TypeInt::ONE ) return NULL; |
|
1377 |
flip = 1-flip; |
|
1378 |
} else { |
|
1379 |
// Check for Phi(1,0) |
|
1380 |
if( phi1_t != TypeInt::ONE ) return NULL; |
|
1381 |
if( phi2_t != TypeInt::ZERO ) return NULL; |
|
1382 |
} |
|
1383 |
if( true_path == 2 ) { |
|
1384 |
flip = 1-flip; |
|
1385 |
} |
|
1386 |
||
1387 |
Node* new_bol = (flip ? phase->transform( bol2->negate(phase) ) : bol2); |
|
958
4c4709e8b7ee
6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform")
never
parents:
190
diff
changeset
|
1388 |
assert(new_bol != iff->in(1), "must make progress"); |
1 | 1389 |
iff->set_req(1, new_bol); |
1390 |
// Intervening diamond probably goes dead |
|
1391 |
phase->C->set_major_progress(); |
|
1392 |
return iff; |
|
1393 |
} |
|
1394 |
||
1395 |
static IfNode* idealize_test(PhaseGVN* phase, IfNode* iff); |
|
1396 |
||
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1397 |
struct RangeCheck { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1398 |
Node* ctl; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1399 |
jint off; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1400 |
}; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1401 |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1402 |
Node* IfNode::Ideal_common(PhaseGVN *phase, bool can_reshape) { |
1 | 1403 |
if (remove_dead_region(phase, can_reshape)) return this; |
1404 |
// No Def-Use info? |
|
1405 |
if (!can_reshape) return NULL; |
|
1406 |
||
1407 |
// Don't bother trying to transform a dead if |
|
1408 |
if (in(0)->is_top()) return NULL; |
|
1409 |
// Don't bother trying to transform an if with a dead test |
|
1410 |
if (in(1)->is_top()) return NULL; |
|
1411 |
// Another variation of a dead test |
|
1412 |
if (in(1)->is_Con()) return NULL; |
|
1413 |
// Another variation of a dead if |
|
1414 |
if (outcnt() < 2) return NULL; |
|
1415 |
||
1416 |
// Canonicalize the test. |
|
1417 |
Node* idt_if = idealize_test(phase, this); |
|
1418 |
if (idt_if != NULL) return idt_if; |
|
1419 |
||
1420 |
// Try to split the IF |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1421 |
PhaseIterGVN *igvn = phase->is_IterGVN(); |
1 | 1422 |
Node *s = split_if(this, igvn); |
1423 |
if (s != NULL) return s; |
|
1424 |
||
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1425 |
return NodeSentinel; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1426 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1427 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1428 |
//------------------------------Ideal------------------------------------------ |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1429 |
// Return a node which is more "ideal" than the current node. Strip out |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1430 |
// control copies |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1431 |
Node* IfNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1432 |
Node* res = Ideal_common(phase, can_reshape); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1433 |
if (res != NodeSentinel) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1434 |
return res; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1435 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1436 |
|
1 | 1437 |
// Check for people making a useless boolean: things like |
1438 |
// if( (x < y ? true : false) ) { ... } |
|
1439 |
// Replace with if( x < y ) { ... } |
|
1440 |
Node *bol2 = remove_useless_bool(this, phase); |
|
1441 |
if( bol2 ) return bol2; |
|
1442 |
||
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1443 |
if (in(0) == NULL) return NULL; // Dead loop? |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1444 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1445 |
PhaseIterGVN *igvn = phase->is_IterGVN(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1446 |
Node* result = fold_compares(igvn); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1447 |
if (result != NULL) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1448 |
return result; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1449 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1450 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1451 |
// Scan for an equivalent test |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1452 |
Node *cmp; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1453 |
int dist = 0; // Cutoff limit for search |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1454 |
int op = Opcode(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1455 |
if( op == Op_If && |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1456 |
(cmp=in(1)->in(1))->Opcode() == Op_CmpP ) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1457 |
if( cmp->in(2) != NULL && // make sure cmp is not already dead |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1458 |
cmp->in(2)->bottom_type() == TypePtr::NULL_PTR ) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1459 |
dist = 64; // Limit for null-pointer scans |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1460 |
} else { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1461 |
dist = 4; // Do not bother for random pointer tests |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1462 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1463 |
} else { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1464 |
dist = 4; // Limit for random junky scans |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1465 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1466 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1467 |
Node* prev_dom = search_identical(dist); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1468 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1469 |
if (prev_dom == NULL) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1470 |
return NULL; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1471 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1472 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1473 |
// Replace dominated IfNode |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1474 |
return dominated_by(prev_dom, igvn); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1475 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1476 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1477 |
//------------------------------dominated_by----------------------------------- |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1478 |
Node* IfNode::dominated_by(Node* prev_dom, PhaseIterGVN *igvn) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1479 |
#ifndef PRODUCT |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1480 |
if (TraceIterativeGVN) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1481 |
tty->print(" Removing IfNode: "); this->dump(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1482 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1483 |
if (VerifyOpto && !igvn->allow_progress()) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1484 |
// Found an equivalent dominating test, |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1485 |
// we can not guarantee reaching a fix-point for these during iterativeGVN |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1486 |
// since intervening nodes may not change. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1487 |
return NULL; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1488 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1489 |
#endif |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1490 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1491 |
igvn->hash_delete(this); // Remove self to prevent spurious V-N |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1492 |
Node *idom = in(0); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1493 |
// Need opcode to decide which way 'this' test goes |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1494 |
int prev_op = prev_dom->Opcode(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1495 |
Node *top = igvn->C->top(); // Shortcut to top |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1496 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1497 |
// Loop predicates may have depending checks which should not |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1498 |
// be skipped. For example, range check predicate has two checks |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1499 |
// for lower and upper bounds. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1500 |
ProjNode* unc_proj = proj_out(1 - prev_dom->as_Proj()->_con)->as_Proj(); |
50923
c98bf5aa35c5
8205515: assert(opcode == Op_RangeCheck) failed: no other if variant here
roland
parents:
49875
diff
changeset
|
1501 |
if (unc_proj->is_uncommon_trap_proj(Deoptimization::Reason_predicate) != NULL || |
c98bf5aa35c5
8205515: assert(opcode == Op_RangeCheck) failed: no other if variant here
roland
parents:
49875
diff
changeset
|
1502 |
unc_proj->is_uncommon_trap_proj(Deoptimization::Reason_profile_predicate) != NULL) { |
44314
30ae899b9eca
8175345: Reported null pointer dereference defect groups
rraghavan
parents:
44241
diff
changeset
|
1503 |
prev_dom = idom; |
30ae899b9eca
8175345: Reported null pointer dereference defect groups
rraghavan
parents:
44241
diff
changeset
|
1504 |
} |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1505 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1506 |
// Now walk the current IfNode's projections. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1507 |
// Loop ends when 'this' has no more uses. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1508 |
for (DUIterator_Last imin, i = last_outs(imin); i >= imin; --i) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1509 |
Node *ifp = last_out(i); // Get IfTrue/IfFalse |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1510 |
igvn->add_users_to_worklist(ifp); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1511 |
// Check which projection it is and set target. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1512 |
// Data-target is either the dominating projection of the same type |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1513 |
// or TOP if the dominating projection is of opposite type. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1514 |
// Data-target will be used as the new control edge for the non-CFG |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1515 |
// nodes like Casts and Loads. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1516 |
Node *data_target = (ifp->Opcode() == prev_op) ? prev_dom : top; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1517 |
// Control-target is just the If's immediate dominator or TOP. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1518 |
Node *ctrl_target = (ifp->Opcode() == prev_op) ? idom : top; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1519 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1520 |
// For each child of an IfTrue/IfFalse projection, reroute. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1521 |
// Loop ends when projection has no more uses. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1522 |
for (DUIterator_Last jmin, j = ifp->last_outs(jmin); j >= jmin; --j) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1523 |
Node* s = ifp->last_out(j); // Get child of IfTrue/IfFalse |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1524 |
if( !s->depends_only_on_test() ) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1525 |
// Find the control input matching this def-use edge. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1526 |
// For Regions it may not be in slot 0. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1527 |
uint l; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1528 |
for( l = 0; s->in(l) != ifp; l++ ) { } |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1529 |
igvn->replace_input_of(s, l, ctrl_target); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1530 |
} else { // Else, for control producers, |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1531 |
igvn->replace_input_of(s, 0, data_target); // Move child to data-target |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1532 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1533 |
} // End for each child of a projection |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1534 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1535 |
igvn->remove_dead_node(ifp); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1536 |
} // End for each IfTrue/IfFalse child of If |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1537 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1538 |
// Kill the IfNode |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1539 |
igvn->remove_dead_node(this); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1540 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1541 |
// Must return either the original node (now dead) or a new node |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1542 |
// (Do not return a top here, since that would break the uniqueness of top.) |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1543 |
return new ConINode(TypeInt::ZERO); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1544 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1545 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1546 |
Node* IfNode::search_identical(int dist) { |
1 | 1547 |
// Setup to scan up the CFG looking for a dominating test |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1548 |
Node* dom = in(0); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1549 |
Node* prev_dom = this; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1550 |
int op = Opcode(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1551 |
// Search up the dominator tree for an If with an identical test |
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1552 |
while (dom->Opcode() != op || // Not same opcode? |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1553 |
dom->in(1) != in(1) || // Not same input 1? |
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1554 |
prev_dom->in(0) != dom) { // One path of test does not dominate? |
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1555 |
if (dist < 0) return NULL; |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1556 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1557 |
dist--; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1558 |
prev_dom = dom; |
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1559 |
dom = up_one_dom(dom); |
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1560 |
if (!dom) return NULL; |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1561 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1562 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1563 |
// Check that we did not follow a loop back to ourselves |
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1564 |
if (this == dom) { |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1565 |
return NULL; |
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1566 |
} |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1567 |
|
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1568 |
#ifndef PRODUCT |
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1569 |
if (dist > 2) { // Add to count of NULL checks elided |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1570 |
explicit_null_checks_elided++; |
36336
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1571 |
} |
7006dd73b206
8150720: Cleanup code around PrintOptoStatistics
redestad
parents:
35574
diff
changeset
|
1572 |
#endif |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1573 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1574 |
return prev_dom; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1575 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1576 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1577 |
//------------------------------Identity--------------------------------------- |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1578 |
// If the test is constant & we match, then we are the input Control |
35551
36ef3841fb34
8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents:
34181
diff
changeset
|
1579 |
Node* IfProjNode::Identity(PhaseGVN* phase) { |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1580 |
// Can only optimize if cannot go the other way |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1581 |
const TypeTuple *t = phase->type(in(0))->is_tuple(); |
35552
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1582 |
if (t == TypeTuple::IFNEITHER || (always_taken(t) && |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1583 |
// During parsing (GVN) we don't remove dead code aggressively. |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1584 |
// Cut off dead branch and let PhaseRemoveUseless take care of it. |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1585 |
(!phase->is_IterGVN() || |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1586 |
// During IGVN, first wait for the dead branch to be killed. |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1587 |
// Otherwise, the IfNode's control will have two control uses (the IfNode |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1588 |
// that doesn't go away because it still has uses and this branch of the |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1589 |
// If) which breaks other optimizations. Node::has_special_unique_user() |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1590 |
// will cause this node to be reprocessed once the dead branch is killed. |
be1bff8945dc
8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents:
35551
diff
changeset
|
1591 |
in(0)->outcnt() == 1))) { |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1592 |
// IfNode control |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1593 |
return in(0)->in(0); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1594 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1595 |
// no progress |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1596 |
return this; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1597 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1598 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1599 |
#ifndef PRODUCT |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1600 |
//-------------------------------related--------------------------------------- |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1601 |
// An IfProjNode's related node set consists of its input (an IfNode) including |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1602 |
// the IfNode's condition, plus all of its outputs at level 1. In compact mode, |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1603 |
// the restrictions for IfNode apply (see IfNode::rel). |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1604 |
void IfProjNode::related(GrowableArray<Node*> *in_rel, GrowableArray<Node*> *out_rel, bool compact) const { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1605 |
Node* ifNode = this->in(0); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1606 |
in_rel->append(ifNode); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1607 |
if (compact) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1608 |
ifNode->collect_nodes(in_rel, 3, false, true); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1609 |
} else { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1610 |
ifNode->collect_nodes_in_all_data(in_rel, false); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1611 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1612 |
this->collect_nodes(out_rel, -1, false, false); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1613 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1614 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1615 |
//------------------------------dump_spec-------------------------------------- |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1616 |
void IfNode::dump_spec(outputStream *st) const { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1617 |
st->print("P=%f, C=%f",_prob,_fcnt); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1618 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1619 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1620 |
//-------------------------------related--------------------------------------- |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1621 |
// For an IfNode, the set of related output nodes is just the output nodes till |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1622 |
// depth 2, i.e, the IfTrue/IfFalse projection nodes plus the nodes they refer. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1623 |
// The related input nodes contain no control nodes, but all data nodes |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1624 |
// pertaining to the condition. In compact mode, the input nodes are collected |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1625 |
// up to a depth of 3. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1626 |
void IfNode::related(GrowableArray <Node *> *in_rel, GrowableArray <Node *> *out_rel, bool compact) const { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1627 |
if (compact) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1628 |
this->collect_nodes(in_rel, 3, false, true); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1629 |
} else { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1630 |
this->collect_nodes_in_all_data(in_rel, false); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1631 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1632 |
this->collect_nodes(out_rel, -2, false, false); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1633 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1634 |
#endif |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1635 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1636 |
//------------------------------idealize_test---------------------------------- |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1637 |
// Try to canonicalize tests better. Peek at the Cmp/Bool/If sequence and |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1638 |
// come up with a canonical sequence. Bools getting 'eq', 'gt' and 'ge' forms |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1639 |
// converted to 'ne', 'le' and 'lt' forms. IfTrue/IfFalse get swapped as |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1640 |
// needed. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1641 |
static IfNode* idealize_test(PhaseGVN* phase, IfNode* iff) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1642 |
assert(iff->in(0) != NULL, "If must be live"); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1643 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1644 |
if (iff->outcnt() != 2) return NULL; // Malformed projections. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1645 |
Node* old_if_f = iff->proj_out(false); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1646 |
Node* old_if_t = iff->proj_out(true); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1647 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1648 |
// CountedLoopEnds want the back-control test to be TRUE, irregardless of |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1649 |
// whether they are testing a 'gt' or 'lt' condition. The 'gt' condition |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1650 |
// happens in count-down loops |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1651 |
if (iff->is_CountedLoopEnd()) return NULL; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1652 |
if (!iff->in(1)->is_Bool()) return NULL; // Happens for partially optimized IF tests |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1653 |
BoolNode *b = iff->in(1)->as_Bool(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1654 |
BoolTest bt = b->_test; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1655 |
// Test already in good order? |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1656 |
if( bt.is_canonical() ) |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1657 |
return NULL; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1658 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1659 |
// Flip test to be canonical. Requires flipping the IfFalse/IfTrue and |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1660 |
// cloning the IfNode. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1661 |
Node* new_b = phase->transform( new BoolNode(b->in(1), bt.negate()) ); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1662 |
if( !new_b->is_Bool() ) return NULL; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1663 |
b = new_b->as_Bool(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1664 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1665 |
PhaseIterGVN *igvn = phase->is_IterGVN(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1666 |
assert( igvn, "Test is not canonical in parser?" ); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1667 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1668 |
// The IF node never really changes, but it needs to be cloned |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1669 |
iff = iff->clone()->as_If(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1670 |
iff->set_req(1, b); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1671 |
iff->_prob = 1.0-iff->_prob; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1672 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1673 |
Node *prior = igvn->hash_find_insert(iff); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1674 |
if( prior ) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1675 |
igvn->remove_dead_node(iff); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1676 |
iff = (IfNode*)prior; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1677 |
} else { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1678 |
// Cannot call transform on it just yet |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1679 |
igvn->set_type_bottom(iff); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1680 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1681 |
igvn->_worklist.push(iff); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1682 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1683 |
// Now handle projections. Cloning not required. |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1684 |
Node* new_if_f = (Node*)(new IfFalseNode( iff )); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1685 |
Node* new_if_t = (Node*)(new IfTrueNode ( iff )); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1686 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1687 |
igvn->register_new_node_with_optimizer(new_if_f); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1688 |
igvn->register_new_node_with_optimizer(new_if_t); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1689 |
// Flip test, so flip trailing control |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1690 |
igvn->replace_node(old_if_f, new_if_t); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1691 |
igvn->replace_node(old_if_t, new_if_f); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1692 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1693 |
// Progress |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1694 |
return iff; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1695 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1696 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1697 |
Node* RangeCheckNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1698 |
Node* res = Ideal_common(phase, can_reshape); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1699 |
if (res != NodeSentinel) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1700 |
return res; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1701 |
} |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1702 |
|
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1703 |
PhaseIterGVN *igvn = phase->is_IterGVN(); |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1704 |
// Setup to scan up the CFG looking for a dominating test |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1705 |
Node* prev_dom = this; |
1 | 1706 |
|
1707 |
// Check for range-check vs other kinds of tests |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1708 |
Node* index1; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1709 |
Node* range1; |
1 | 1710 |
jint offset1; |
1711 |
int flip1 = is_range_check(range1, index1, offset1); |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1712 |
if (flip1) { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1713 |
Node* dom = in(0); |
1 | 1714 |
// Try to remove extra range checks. All 'up_one_dom' gives up at merges |
1715 |
// so all checks we inspect post-dominate the top-most check we find. |
|
1716 |
// If we are going to fail the current check and we reach the top check |
|
2131 | 1717 |
// then we are guaranteed to fail, so just start interpreting there. |
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1718 |
// We 'expand' the top 3 range checks to include all post-dominating |
1 | 1719 |
// checks. |
1720 |
||
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1721 |
// The top 3 range checks seen |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1722 |
const int NRC =3; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1723 |
RangeCheck prev_checks[NRC]; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1724 |
int nb_checks = 0; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1725 |
|
1 | 1726 |
// Low and high offsets seen so far |
1727 |
jint off_lo = offset1; |
|
1728 |
jint off_hi = offset1; |
|
1729 |
||
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1730 |
bool found_immediate_dominator = false; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1731 |
|
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1732 |
// Scan for the top checks and collect range of offsets |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1733 |
for (int dist = 0; dist < 999; dist++) { // Range-Check scan limit |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1734 |
if (dom->Opcode() == Op_RangeCheck && // Not same opcode? |
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1735 |
prev_dom->in(0) == dom) { // One path of test does dominate? |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1736 |
if (dom == this) return NULL; // dead loop |
1 | 1737 |
// See if this is a range check |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1738 |
Node* index2; |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1739 |
Node* range2; |
1 | 1740 |
jint offset2; |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1741 |
int flip2 = dom->as_RangeCheck()->is_range_check(range2, index2, offset2); |
1 | 1742 |
// See if this is a _matching_ range check, checking against |
1743 |
// the same array bounds. |
|
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1744 |
if (flip2 == flip1 && range2 == range1 && index2 == index1 && |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1745 |
dom->outcnt() == 2) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1746 |
if (nb_checks == 0 && dom->in(1) == in(1)) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1747 |
// Found an immediately dominating test at the same offset. |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1748 |
// This kind of back-to-back test can be eliminated locally, |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1749 |
// and there is no need to search further for dominating tests. |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1750 |
assert(offset2 == offset1, "Same test but different offsets"); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1751 |
found_immediate_dominator = true; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1752 |
break; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1753 |
} |
1 | 1754 |
// Gather expanded bounds |
1755 |
off_lo = MIN2(off_lo,offset2); |
|
1756 |
off_hi = MAX2(off_hi,offset2); |
|
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1757 |
// Record top NRC range checks |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1758 |
prev_checks[nb_checks%NRC].ctl = prev_dom; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1759 |
prev_checks[nb_checks%NRC].off = offset2; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1760 |
nb_checks++; |
1 | 1761 |
} |
1762 |
} |
|
1763 |
prev_dom = dom; |
|
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1764 |
dom = up_one_dom(dom); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1765 |
if (!dom) break; |
1 | 1766 |
} |
1767 |
||
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1768 |
if (!found_immediate_dominator) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1769 |
// Attempt to widen the dominating range check to cover some later |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1770 |
// ones. Since range checks "fail" by uncommon-trapping to the |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1771 |
// interpreter, widening a check can make us speculatively enter |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1772 |
// the interpreter. If we see range-check deopt's, do not widen! |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1773 |
if (!phase->C->allow_range_check_smearing()) return NULL; |
1 | 1774 |
|
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1775 |
// Didn't find prior covering check, so cannot remove anything. |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1776 |
if (nb_checks == 0) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1777 |
return NULL; |
1 | 1778 |
} |
28044
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1779 |
// Constant indices only need to check the upper bound. |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1780 |
// Non-constant indices must check both low and high. |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1781 |
int chk0 = (nb_checks - 1) % NRC; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1782 |
if (index1) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1783 |
if (nb_checks == 1) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1784 |
return NULL; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1785 |
} else { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1786 |
// If the top range check's constant is the min or max of |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1787 |
// all constants we widen the next one to cover the whole |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1788 |
// range of constants. |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1789 |
RangeCheck rc0 = prev_checks[chk0]; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1790 |
int chk1 = (nb_checks - 2) % NRC; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1791 |
RangeCheck rc1 = prev_checks[chk1]; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1792 |
if (rc0.off == off_lo) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1793 |
adjust_check(rc1.ctl, range1, index1, flip1, off_hi, igvn); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1794 |
prev_dom = rc1.ctl; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1795 |
} else if (rc0.off == off_hi) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1796 |
adjust_check(rc1.ctl, range1, index1, flip1, off_lo, igvn); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1797 |
prev_dom = rc1.ctl; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1798 |
} else { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1799 |
// If the top test's constant is not the min or max of all |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1800 |
// constants, we need 3 range checks. We must leave the |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1801 |
// top test unchanged because widening it would allow the |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1802 |
// accesses it protects to successfully read/write out of |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1803 |
// bounds. |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1804 |
if (nb_checks == 2) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1805 |
return NULL; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1806 |
} |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1807 |
int chk2 = (nb_checks - 3) % NRC; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1808 |
RangeCheck rc2 = prev_checks[chk2]; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1809 |
// The top range check a+i covers interval: -a <= i < length-a |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1810 |
// The second range check b+i covers interval: -b <= i < length-b |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1811 |
if (rc1.off <= rc0.off) { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1812 |
// if b <= a, we change the second range check to: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1813 |
// -min_of_all_constants <= i < length-min_of_all_constants |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1814 |
// Together top and second range checks now cover: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1815 |
// -min_of_all_constants <= i < length-a |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1816 |
// which is more restrictive than -b <= i < length-b: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1817 |
// -b <= -min_of_all_constants <= i < length-a <= length-b |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1818 |
// The third check is then changed to: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1819 |
// -max_of_all_constants <= i < length-max_of_all_constants |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1820 |
// so 2nd and 3rd checks restrict allowed values of i to: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1821 |
// -min_of_all_constants <= i < length-max_of_all_constants |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1822 |
adjust_check(rc1.ctl, range1, index1, flip1, off_lo, igvn); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1823 |
adjust_check(rc2.ctl, range1, index1, flip1, off_hi, igvn); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1824 |
} else { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1825 |
// if b > a, we change the second range check to: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1826 |
// -max_of_all_constants <= i < length-max_of_all_constants |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1827 |
// Together top and second range checks now cover: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1828 |
// -a <= i < length-max_of_all_constants |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1829 |
// which is more restrictive than -b <= i < length-b: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1830 |
// -b < -a <= i < length-max_of_all_constants <= length-b |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1831 |
// The third check is then changed to: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1832 |
// -max_of_all_constants <= i < length-max_of_all_constants |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1833 |
// so 2nd and 3rd checks restrict allowed values of i to: |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1834 |
// -min_of_all_constants <= i < length-max_of_all_constants |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1835 |
adjust_check(rc1.ctl, range1, index1, flip1, off_hi, igvn); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1836 |
adjust_check(rc2.ctl, range1, index1, flip1, off_lo, igvn); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1837 |
} |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1838 |
prev_dom = rc2.ctl; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1839 |
} |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1840 |
} |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1841 |
} else { |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1842 |
RangeCheck rc0 = prev_checks[chk0]; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1843 |
// 'Widen' the offset of the 1st and only covering check |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1844 |
adjust_check(rc0.ctl, range1, index1, flip1, off_hi, igvn); |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1845 |
// Test is now covered by prior checks, dominate it out |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1846 |
prev_dom = rc0.ctl; |
ede40159fd3b
8066103: C2's range check smearing allows out of bound array accesses
roland
parents:
26173
diff
changeset
|
1847 |
} |
1 | 1848 |
} |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1849 |
} else { |
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1850 |
prev_dom = search_identical(4); |
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1851 |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1852 |
if (prev_dom == NULL) { |
1 | 1853 |
return NULL; |
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1854 |
} |
1 | 1855 |
} |
1856 |
||
1857 |
// Replace dominated IfNode |
|
34164
a9e6034d7707
8137168: Replace IfNode with a new RangeCheckNode for range checks
roland
parents:
34151
diff
changeset
|
1858 |
return dominated_by(prev_dom, igvn); |
1 | 1859 |
} |