author | roland |
Thu, 27 Nov 2014 16:54:49 +0100 | |
changeset 27910 | 8653c71aea40 |
parent 27708 | 8a8710cb8fc4 |
child 30300 | 4b12a5b40064 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24016
diff
changeset
|
2 |
* Copyright (c) 1997, 2014, 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:
4020
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4020
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:
4020
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "memory/allocation.inline.hpp" |
|
27 |
#include "opto/block.hpp" |
|
28 |
#include "opto/callnode.hpp" |
|
29 |
#include "opto/cfgnode.hpp" |
|
30 |
#include "opto/idealGraphPrinter.hpp" |
|
31 |
#include "opto/loopnode.hpp" |
|
32 |
#include "opto/machnode.hpp" |
|
33 |
#include "opto/opcodes.hpp" |
|
34 |
#include "opto/phaseX.hpp" |
|
35 |
#include "opto/regalloc.hpp" |
|
36 |
#include "opto/rootnode.hpp" |
|
1 | 37 |
|
38 |
//============================================================================= |
|
39 |
#define NODE_HASH_MINIMUM_SIZE 255 |
|
40 |
//------------------------------NodeHash--------------------------------------- |
|
41 |
NodeHash::NodeHash(uint est_max_size) : |
|
42 |
_max( round_up(est_max_size < NODE_HASH_MINIMUM_SIZE ? NODE_HASH_MINIMUM_SIZE : est_max_size) ), |
|
43 |
_a(Thread::current()->resource_area()), |
|
44 |
_table( NEW_ARENA_ARRAY( _a , Node* , _max ) ), // (Node**)_a->Amalloc(_max * sizeof(Node*)) ), |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
45 |
_inserts(0), _insert_limit( insert_limit() ) |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
46 |
#ifndef PRODUCT |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
47 |
,_look_probes(0), _lookup_hits(0), _lookup_misses(0), |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
48 |
_delete_probes(0), _delete_hits(0), _delete_misses(0), |
1 | 49 |
_total_insert_probes(0), _total_inserts(0), |
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
50 |
_insert_probes(0), _grows(0) |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
51 |
#endif |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
52 |
{ |
1 | 53 |
// _sentinel must be in the current node space |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
54 |
_sentinel = new ProjNode(NULL, TypeFunc::Control); |
1 | 55 |
memset(_table,0,sizeof(Node*)*_max); |
56 |
} |
|
57 |
||
58 |
//------------------------------NodeHash--------------------------------------- |
|
59 |
NodeHash::NodeHash(Arena *arena, uint est_max_size) : |
|
60 |
_max( round_up(est_max_size < NODE_HASH_MINIMUM_SIZE ? NODE_HASH_MINIMUM_SIZE : est_max_size) ), |
|
61 |
_a(arena), |
|
62 |
_table( NEW_ARENA_ARRAY( _a , Node* , _max ) ), |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
63 |
_inserts(0), _insert_limit( insert_limit() ) |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
64 |
#ifndef PRODUCT |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
65 |
,_look_probes(0), _lookup_hits(0), _lookup_misses(0), |
1 | 66 |
_delete_probes(0), _delete_hits(0), _delete_misses(0), |
67 |
_total_insert_probes(0), _total_inserts(0), |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
68 |
_insert_probes(0), _grows(0) |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
69 |
#endif |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
70 |
{ |
1 | 71 |
// _sentinel must be in the current node space |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
72 |
_sentinel = new ProjNode(NULL, TypeFunc::Control); |
1 | 73 |
memset(_table,0,sizeof(Node*)*_max); |
74 |
} |
|
75 |
||
76 |
//------------------------------NodeHash--------------------------------------- |
|
77 |
NodeHash::NodeHash(NodeHash *nh) { |
|
78 |
debug_only(_table = (Node**)badAddress); // interact correctly w/ operator= |
|
79 |
// just copy in all the fields |
|
80 |
*this = *nh; |
|
81 |
// nh->_sentinel must be in the current node space |
|
82 |
} |
|
83 |
||
15113 | 84 |
void NodeHash::replace_with(NodeHash *nh) { |
85 |
debug_only(_table = (Node**)badAddress); // interact correctly w/ operator= |
|
86 |
// just copy in all the fields |
|
87 |
*this = *nh; |
|
88 |
// nh->_sentinel must be in the current node space |
|
89 |
} |
|
90 |
||
1 | 91 |
//------------------------------hash_find-------------------------------------- |
92 |
// Find in hash table |
|
93 |
Node *NodeHash::hash_find( const Node *n ) { |
|
94 |
// ((Node*)n)->set_hash( n->hash() ); |
|
95 |
uint hash = n->hash(); |
|
96 |
if (hash == Node::NO_HASH) { |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
97 |
NOT_PRODUCT( _lookup_misses++ ); |
1 | 98 |
return NULL; |
99 |
} |
|
100 |
uint key = hash & (_max-1); |
|
101 |
uint stride = key | 0x01; |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
102 |
NOT_PRODUCT( _look_probes++ ); |
1 | 103 |
Node *k = _table[key]; // Get hashed value |
104 |
if( !k ) { // ?Miss? |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
105 |
NOT_PRODUCT( _lookup_misses++ ); |
1 | 106 |
return NULL; // Miss! |
107 |
} |
|
108 |
||
109 |
int op = n->Opcode(); |
|
110 |
uint req = n->req(); |
|
111 |
while( 1 ) { // While probing hash table |
|
112 |
if( k->req() == req && // Same count of inputs |
|
113 |
k->Opcode() == op ) { // Same Opcode |
|
114 |
for( uint i=0; i<req; i++ ) |
|
115 |
if( n->in(i)!=k->in(i)) // Different inputs? |
|
116 |
goto collision; // "goto" is a speed hack... |
|
117 |
if( n->cmp(*k) ) { // Check for any special bits |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
118 |
NOT_PRODUCT( _lookup_hits++ ); |
1 | 119 |
return k; // Hit! |
120 |
} |
|
121 |
} |
|
122 |
collision: |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
123 |
NOT_PRODUCT( _look_probes++ ); |
1 | 124 |
key = (key + stride/*7*/) & (_max-1); // Stride through table with relative prime |
125 |
k = _table[key]; // Get hashed value |
|
126 |
if( !k ) { // ?Miss? |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
127 |
NOT_PRODUCT( _lookup_misses++ ); |
1 | 128 |
return NULL; // Miss! |
129 |
} |
|
130 |
} |
|
131 |
ShouldNotReachHere(); |
|
132 |
return NULL; |
|
133 |
} |
|
134 |
||
135 |
//------------------------------hash_find_insert------------------------------- |
|
136 |
// Find in hash table, insert if not already present |
|
137 |
// Used to preserve unique entries in hash table |
|
138 |
Node *NodeHash::hash_find_insert( Node *n ) { |
|
139 |
// n->set_hash( ); |
|
140 |
uint hash = n->hash(); |
|
141 |
if (hash == Node::NO_HASH) { |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
142 |
NOT_PRODUCT( _lookup_misses++ ); |
1 | 143 |
return NULL; |
144 |
} |
|
145 |
uint key = hash & (_max-1); |
|
146 |
uint stride = key | 0x01; // stride must be relatively prime to table siz |
|
147 |
uint first_sentinel = 0; // replace a sentinel if seen. |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
148 |
NOT_PRODUCT( _look_probes++ ); |
1 | 149 |
Node *k = _table[key]; // Get hashed value |
150 |
if( !k ) { // ?Miss? |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
151 |
NOT_PRODUCT( _lookup_misses++ ); |
1 | 152 |
_table[key] = n; // Insert into table! |
153 |
debug_only(n->enter_hash_lock()); // Lock down the node while in the table. |
|
154 |
check_grow(); // Grow table if insert hit limit |
|
155 |
return NULL; // Miss! |
|
156 |
} |
|
157 |
else if( k == _sentinel ) { |
|
158 |
first_sentinel = key; // Can insert here |
|
159 |
} |
|
160 |
||
161 |
int op = n->Opcode(); |
|
162 |
uint req = n->req(); |
|
163 |
while( 1 ) { // While probing hash table |
|
164 |
if( k->req() == req && // Same count of inputs |
|
165 |
k->Opcode() == op ) { // Same Opcode |
|
166 |
for( uint i=0; i<req; i++ ) |
|
167 |
if( n->in(i)!=k->in(i)) // Different inputs? |
|
168 |
goto collision; // "goto" is a speed hack... |
|
169 |
if( n->cmp(*k) ) { // Check for any special bits |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
170 |
NOT_PRODUCT( _lookup_hits++ ); |
1 | 171 |
return k; // Hit! |
172 |
} |
|
173 |
} |
|
174 |
collision: |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
175 |
NOT_PRODUCT( _look_probes++ ); |
1 | 176 |
key = (key + stride) & (_max-1); // Stride through table w/ relative prime |
177 |
k = _table[key]; // Get hashed value |
|
178 |
if( !k ) { // ?Miss? |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
179 |
NOT_PRODUCT( _lookup_misses++ ); |
1 | 180 |
key = (first_sentinel == 0) ? key : first_sentinel; // ?saw sentinel? |
181 |
_table[key] = n; // Insert into table! |
|
182 |
debug_only(n->enter_hash_lock()); // Lock down the node while in the table. |
|
183 |
check_grow(); // Grow table if insert hit limit |
|
184 |
return NULL; // Miss! |
|
185 |
} |
|
186 |
else if( first_sentinel == 0 && k == _sentinel ) { |
|
187 |
first_sentinel = key; // Can insert here |
|
188 |
} |
|
189 |
||
190 |
} |
|
191 |
ShouldNotReachHere(); |
|
192 |
return NULL; |
|
193 |
} |
|
194 |
||
195 |
//------------------------------hash_insert------------------------------------ |
|
196 |
// Insert into hash table |
|
197 |
void NodeHash::hash_insert( Node *n ) { |
|
198 |
// // "conflict" comments -- print nodes that conflict |
|
199 |
// bool conflict = false; |
|
200 |
// n->set_hash(); |
|
201 |
uint hash = n->hash(); |
|
202 |
if (hash == Node::NO_HASH) { |
|
203 |
return; |
|
204 |
} |
|
205 |
check_grow(); |
|
206 |
uint key = hash & (_max-1); |
|
207 |
uint stride = key | 0x01; |
|
208 |
||
209 |
while( 1 ) { // While probing hash table |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
210 |
NOT_PRODUCT( _insert_probes++ ); |
1 | 211 |
Node *k = _table[key]; // Get hashed value |
212 |
if( !k || (k == _sentinel) ) break; // Found a slot |
|
213 |
assert( k != n, "already inserted" ); |
|
214 |
// if( PrintCompilation && PrintOptoStatistics && Verbose ) { tty->print(" conflict: "); k->dump(); conflict = true; } |
|
215 |
key = (key + stride) & (_max-1); // Stride through table w/ relative prime |
|
216 |
} |
|
217 |
_table[key] = n; // Insert into table! |
|
218 |
debug_only(n->enter_hash_lock()); // Lock down the node while in the table. |
|
219 |
// if( conflict ) { n->dump(); } |
|
220 |
} |
|
221 |
||
222 |
//------------------------------hash_delete------------------------------------ |
|
2131 | 223 |
// Replace in hash table with sentinel |
1 | 224 |
bool NodeHash::hash_delete( const Node *n ) { |
225 |
Node *k; |
|
226 |
uint hash = n->hash(); |
|
227 |
if (hash == Node::NO_HASH) { |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
228 |
NOT_PRODUCT( _delete_misses++ ); |
1 | 229 |
return false; |
230 |
} |
|
231 |
uint key = hash & (_max-1); |
|
232 |
uint stride = key | 0x01; |
|
233 |
debug_only( uint counter = 0; ); |
|
2131 | 234 |
for( ; /* (k != NULL) && (k != _sentinel) */; ) { |
1 | 235 |
debug_only( counter++ ); |
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
236 |
NOT_PRODUCT( _delete_probes++ ); |
1 | 237 |
k = _table[key]; // Get hashed value |
238 |
if( !k ) { // Miss? |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
239 |
NOT_PRODUCT( _delete_misses++ ); |
1 | 240 |
#ifdef ASSERT |
241 |
if( VerifyOpto ) { |
|
242 |
for( uint i=0; i < _max; i++ ) |
|
243 |
assert( _table[i] != n, "changed edges with rehashing" ); |
|
244 |
} |
|
245 |
#endif |
|
246 |
return false; // Miss! Not in chain |
|
247 |
} |
|
248 |
else if( n == k ) { |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
249 |
NOT_PRODUCT( _delete_hits++ ); |
1 | 250 |
_table[key] = _sentinel; // Hit! Label as deleted entry |
251 |
debug_only(((Node*)n)->exit_hash_lock()); // Unlock the node upon removal from table. |
|
252 |
return true; |
|
253 |
} |
|
254 |
else { |
|
255 |
// collision: move through table with prime offset |
|
256 |
key = (key + stride/*7*/) & (_max-1); |
|
257 |
assert( counter <= _insert_limit, "Cycle in hash-table"); |
|
258 |
} |
|
259 |
} |
|
260 |
ShouldNotReachHere(); |
|
261 |
return false; |
|
262 |
} |
|
263 |
||
264 |
//------------------------------round_up--------------------------------------- |
|
265 |
// Round up to nearest power of 2 |
|
266 |
uint NodeHash::round_up( uint x ) { |
|
267 |
x += (x>>2); // Add 25% slop |
|
268 |
if( x <16 ) return 16; // Small stuff |
|
269 |
uint i=16; |
|
270 |
while( i < x ) i <<= 1; // Double to fit |
|
271 |
return i; // Return hash table size |
|
272 |
} |
|
273 |
||
274 |
//------------------------------grow------------------------------------------- |
|
275 |
// Grow _table to next power of 2 and insert old entries |
|
276 |
void NodeHash::grow() { |
|
277 |
// Record old state |
|
278 |
uint old_max = _max; |
|
279 |
Node **old_table = _table; |
|
280 |
// Construct new table with twice the space |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
281 |
#ifndef PRODUCT |
1 | 282 |
_grows++; |
283 |
_total_inserts += _inserts; |
|
284 |
_total_insert_probes += _insert_probes; |
|
26429
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
285 |
_insert_probes = 0; |
c5ca44ee3ce2
8056067: NodeHash debug variables are available in product build
thartmann
parents:
25930
diff
changeset
|
286 |
#endif |
1 | 287 |
_inserts = 0; |
288 |
_max = _max << 1; |
|
289 |
_table = NEW_ARENA_ARRAY( _a , Node* , _max ); // (Node**)_a->Amalloc( _max * sizeof(Node*) ); |
|
290 |
memset(_table,0,sizeof(Node*)*_max); |
|
291 |
_insert_limit = insert_limit(); |
|
292 |
// Insert old entries into the new table |
|
293 |
for( uint i = 0; i < old_max; i++ ) { |
|
294 |
Node *m = *old_table++; |
|
295 |
if( !m || m == _sentinel ) continue; |
|
296 |
debug_only(m->exit_hash_lock()); // Unlock the node upon removal from old table. |
|
297 |
hash_insert(m); |
|
298 |
} |
|
299 |
} |
|
300 |
||
301 |
//------------------------------clear------------------------------------------ |
|
302 |
// Clear all entries in _table to NULL but keep storage |
|
303 |
void NodeHash::clear() { |
|
304 |
#ifdef ASSERT |
|
305 |
// Unlock all nodes upon removal from table. |
|
306 |
for (uint i = 0; i < _max; i++) { |
|
307 |
Node* n = _table[i]; |
|
308 |
if (!n || n == _sentinel) continue; |
|
309 |
n->exit_hash_lock(); |
|
310 |
} |
|
311 |
#endif |
|
312 |
||
313 |
memset( _table, 0, _max * sizeof(Node*) ); |
|
314 |
} |
|
315 |
||
316 |
//-----------------------remove_useless_nodes---------------------------------- |
|
317 |
// Remove useless nodes from value table, |
|
318 |
// implementation does not depend on hash function |
|
319 |
void NodeHash::remove_useless_nodes(VectorSet &useful) { |
|
320 |
||
321 |
// Dead nodes in the hash table inherited from GVN should not replace |
|
322 |
// existing nodes, remove dead nodes. |
|
323 |
uint max = size(); |
|
324 |
Node *sentinel_node = sentinel(); |
|
325 |
for( uint i = 0; i < max; ++i ) { |
|
326 |
Node *n = at(i); |
|
327 |
if(n != NULL && n != sentinel_node && !useful.test(n->_idx)) { |
|
328 |
debug_only(n->exit_hash_lock()); // Unlock the node when removed |
|
329 |
_table[i] = sentinel_node; // Replace with placeholder |
|
330 |
} |
|
331 |
} |
|
332 |
} |
|
333 |
||
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
334 |
|
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
335 |
void NodeHash::check_no_speculative_types() { |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
336 |
#ifdef ASSERT |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
337 |
uint max = size(); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
338 |
Node *sentinel_node = sentinel(); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
339 |
for (uint i = 0; i < max; ++i) { |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
340 |
Node *n = at(i); |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
22799
diff
changeset
|
341 |
if(n != NULL && n != sentinel_node && n->is_Type() && n->outcnt() > 0) { |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
342 |
TypeNode* tn = n->as_Type(); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
343 |
const Type* t = tn->type(); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
344 |
const Type* t_no_spec = t->remove_speculative(); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
345 |
assert(t == t_no_spec, "dead node in hash table or missed node during speculative cleanup"); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
346 |
} |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
347 |
} |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
348 |
#endif |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
349 |
} |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
350 |
|
1 | 351 |
#ifndef PRODUCT |
352 |
//------------------------------dump------------------------------------------- |
|
353 |
// Dump statistics for the hash table |
|
354 |
void NodeHash::dump() { |
|
355 |
_total_inserts += _inserts; |
|
356 |
_total_insert_probes += _insert_probes; |
|
10988
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10563
diff
changeset
|
357 |
if (PrintCompilation && PrintOptoStatistics && Verbose && (_inserts > 0)) { |
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10563
diff
changeset
|
358 |
if (WizardMode) { |
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10563
diff
changeset
|
359 |
for (uint i=0; i<_max; i++) { |
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10563
diff
changeset
|
360 |
if (_table[i]) |
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10563
diff
changeset
|
361 |
tty->print("%d/%d/%d ",i,_table[i]->hash()&(_max-1),_table[i]->_idx); |
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10563
diff
changeset
|
362 |
} |
1 | 363 |
} |
364 |
tty->print("\nGVN Hash stats: %d grows to %d max_size\n", _grows, _max); |
|
365 |
tty->print(" %d/%d (%8.1f%% full)\n", _inserts, _max, (double)_inserts/_max*100.0); |
|
366 |
tty->print(" %dp/(%dh+%dm) (%8.2f probes/lookup)\n", _look_probes, _lookup_hits, _lookup_misses, (double)_look_probes/(_lookup_hits+_lookup_misses)); |
|
367 |
tty->print(" %dp/%di (%8.2f probes/insert)\n", _total_insert_probes, _total_inserts, (double)_total_insert_probes/_total_inserts); |
|
368 |
// sentinels increase lookup cost, but not insert cost |
|
369 |
assert((_lookup_misses+_lookup_hits)*4+100 >= _look_probes, "bad hash function"); |
|
370 |
assert( _inserts+(_inserts>>3) < _max, "table too full" ); |
|
371 |
assert( _inserts*3+100 >= _insert_probes, "bad hash function" ); |
|
372 |
} |
|
373 |
} |
|
374 |
||
375 |
Node *NodeHash::find_index(uint idx) { // For debugging |
|
376 |
// Find an entry by its index value |
|
377 |
for( uint i = 0; i < _max; i++ ) { |
|
378 |
Node *m = _table[i]; |
|
379 |
if( !m || m == _sentinel ) continue; |
|
380 |
if( m->_idx == (uint)idx ) return m; |
|
381 |
} |
|
382 |
return NULL; |
|
383 |
} |
|
384 |
#endif |
|
385 |
||
386 |
#ifdef ASSERT |
|
387 |
NodeHash::~NodeHash() { |
|
388 |
// Unlock all nodes upon destruction of table. |
|
389 |
if (_table != (Node**)badAddress) clear(); |
|
390 |
} |
|
391 |
||
392 |
void NodeHash::operator=(const NodeHash& nh) { |
|
393 |
// Unlock all nodes upon replacement of table. |
|
394 |
if (&nh == this) return; |
|
395 |
if (_table != (Node**)badAddress) clear(); |
|
396 |
memcpy(this, &nh, sizeof(*this)); |
|
397 |
// Do not increment hash_lock counts again. |
|
398 |
// Instead, be sure we never again use the source table. |
|
399 |
((NodeHash*)&nh)->_table = (Node**)badAddress; |
|
400 |
} |
|
401 |
||
402 |
||
403 |
#endif |
|
404 |
||
405 |
||
406 |
//============================================================================= |
|
407 |
//------------------------------PhaseRemoveUseless----------------------------- |
|
408 |
// 1) Use a breadthfirst walk to collect useful nodes reachable from root. |
|
409 |
PhaseRemoveUseless::PhaseRemoveUseless( PhaseGVN *gvn, Unique_Node_List *worklist ) : Phase(Remove_Useless), |
|
410 |
_useful(Thread::current()->resource_area()) { |
|
411 |
||
412 |
// Implementation requires 'UseLoopSafepoints == true' and an edge from root |
|
413 |
// to each SafePointNode at a backward branch. Inserted in add_safepoint(). |
|
414 |
if( !UseLoopSafepoints || !OptoRemoveUseless ) return; |
|
415 |
||
416 |
// Identify nodes that are reachable from below, useful. |
|
417 |
C->identify_useful_nodes(_useful); |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
13963
diff
changeset
|
418 |
// Update dead node list |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
13963
diff
changeset
|
419 |
C->update_dead_node_list(_useful); |
1 | 420 |
|
421 |
// Remove all useless nodes from PhaseValues' recorded types |
|
422 |
// Must be done before disconnecting nodes to preserve hash-table-invariant |
|
423 |
gvn->remove_useless_nodes(_useful.member_set()); |
|
424 |
||
425 |
// Remove all useless nodes from future worklist |
|
426 |
worklist->remove_useless_nodes(_useful.member_set()); |
|
427 |
||
428 |
// Disconnect 'useless' nodes that are adjacent to useful nodes |
|
429 |
C->remove_useless_nodes(_useful); |
|
430 |
||
431 |
// Remove edges from "root" to each SafePoint at a backward branch. |
|
432 |
// They were inserted during parsing (see add_safepoint()) to make infinite |
|
433 |
// loops without calls or exceptions visible to root, i.e., useful. |
|
434 |
Node *root = C->root(); |
|
435 |
if( root != NULL ) { |
|
436 |
for( uint i = root->req(); i < root->len(); ++i ) { |
|
437 |
Node *n = root->in(i); |
|
438 |
if( n != NULL && n->is_SafePoint() ) { |
|
439 |
root->rm_prec(i); |
|
440 |
--i; |
|
441 |
} |
|
442 |
} |
|
443 |
} |
|
444 |
} |
|
445 |
||
446 |
||
447 |
//============================================================================= |
|
448 |
//------------------------------PhaseTransform--------------------------------- |
|
449 |
PhaseTransform::PhaseTransform( PhaseNumber pnum ) : Phase(pnum), |
|
450 |
_arena(Thread::current()->resource_area()), |
|
451 |
_nodes(_arena), |
|
452 |
_types(_arena) |
|
453 |
{ |
|
454 |
init_con_caches(); |
|
455 |
#ifndef PRODUCT |
|
456 |
clear_progress(); |
|
457 |
clear_transforms(); |
|
458 |
set_allow_progress(true); |
|
459 |
#endif |
|
460 |
// Force allocation for currently existing nodes |
|
461 |
_types.map(C->unique(), NULL); |
|
462 |
} |
|
463 |
||
464 |
//------------------------------PhaseTransform--------------------------------- |
|
465 |
PhaseTransform::PhaseTransform( Arena *arena, PhaseNumber pnum ) : Phase(pnum), |
|
466 |
_arena(arena), |
|
467 |
_nodes(arena), |
|
468 |
_types(arena) |
|
469 |
{ |
|
470 |
init_con_caches(); |
|
471 |
#ifndef PRODUCT |
|
472 |
clear_progress(); |
|
473 |
clear_transforms(); |
|
474 |
set_allow_progress(true); |
|
475 |
#endif |
|
476 |
// Force allocation for currently existing nodes |
|
477 |
_types.map(C->unique(), NULL); |
|
478 |
} |
|
479 |
||
480 |
//------------------------------PhaseTransform--------------------------------- |
|
481 |
// Initialize with previously generated type information |
|
482 |
PhaseTransform::PhaseTransform( PhaseTransform *pt, PhaseNumber pnum ) : Phase(pnum), |
|
483 |
_arena(pt->_arena), |
|
484 |
_nodes(pt->_nodes), |
|
485 |
_types(pt->_types) |
|
486 |
{ |
|
487 |
init_con_caches(); |
|
488 |
#ifndef PRODUCT |
|
489 |
clear_progress(); |
|
490 |
clear_transforms(); |
|
491 |
set_allow_progress(true); |
|
492 |
#endif |
|
493 |
} |
|
494 |
||
495 |
void PhaseTransform::init_con_caches() { |
|
496 |
memset(_icons,0,sizeof(_icons)); |
|
497 |
memset(_lcons,0,sizeof(_lcons)); |
|
498 |
memset(_zcons,0,sizeof(_zcons)); |
|
499 |
} |
|
500 |
||
501 |
||
502 |
//--------------------------------find_int_type-------------------------------- |
|
503 |
const TypeInt* PhaseTransform::find_int_type(Node* n) { |
|
504 |
if (n == NULL) return NULL; |
|
505 |
// Call type_or_null(n) to determine node's type since we might be in |
|
506 |
// parse phase and call n->Value() may return wrong type. |
|
507 |
// (For example, a phi node at the beginning of loop parsing is not ready.) |
|
508 |
const Type* t = type_or_null(n); |
|
509 |
if (t == NULL) return NULL; |
|
510 |
return t->isa_int(); |
|
511 |
} |
|
512 |
||
513 |
||
514 |
//-------------------------------find_long_type-------------------------------- |
|
515 |
const TypeLong* PhaseTransform::find_long_type(Node* n) { |
|
516 |
if (n == NULL) return NULL; |
|
517 |
// (See comment above on type_or_null.) |
|
518 |
const Type* t = type_or_null(n); |
|
519 |
if (t == NULL) return NULL; |
|
520 |
return t->isa_long(); |
|
521 |
} |
|
522 |
||
523 |
||
524 |
#ifndef PRODUCT |
|
525 |
void PhaseTransform::dump_old2new_map() const { |
|
526 |
_nodes.dump(); |
|
527 |
} |
|
528 |
||
529 |
void PhaseTransform::dump_new( uint nidx ) const { |
|
530 |
for( uint i=0; i<_nodes.Size(); i++ ) |
|
531 |
if( _nodes[i] && _nodes[i]->_idx == nidx ) { |
|
532 |
_nodes[i]->dump(); |
|
533 |
tty->cr(); |
|
534 |
tty->print_cr("Old index= %d",i); |
|
535 |
return; |
|
536 |
} |
|
537 |
tty->print_cr("Node %d not found in the new indices", nidx); |
|
538 |
} |
|
539 |
||
540 |
//------------------------------dump_types------------------------------------- |
|
541 |
void PhaseTransform::dump_types( ) const { |
|
542 |
_types.dump(); |
|
543 |
} |
|
544 |
||
545 |
//------------------------------dump_nodes_and_types--------------------------- |
|
546 |
void PhaseTransform::dump_nodes_and_types(const Node *root, uint depth, bool only_ctrl) { |
|
547 |
VectorSet visited(Thread::current()->resource_area()); |
|
548 |
dump_nodes_and_types_recur( root, depth, only_ctrl, visited ); |
|
549 |
} |
|
550 |
||
551 |
//------------------------------dump_nodes_and_types_recur--------------------- |
|
552 |
void PhaseTransform::dump_nodes_and_types_recur( const Node *n, uint depth, bool only_ctrl, VectorSet &visited) { |
|
553 |
if( !n ) return; |
|
554 |
if( depth == 0 ) return; |
|
555 |
if( visited.test_set(n->_idx) ) return; |
|
556 |
for( uint i=0; i<n->len(); i++ ) { |
|
557 |
if( only_ctrl && !(n->is_Region()) && i != TypeFunc::Control ) continue; |
|
558 |
dump_nodes_and_types_recur( n->in(i), depth-1, only_ctrl, visited ); |
|
559 |
} |
|
560 |
n->dump(); |
|
561 |
if (type_or_null(n) != NULL) { |
|
562 |
tty->print(" "); type(n)->dump(); tty->cr(); |
|
563 |
} |
|
564 |
} |
|
565 |
||
566 |
#endif |
|
567 |
||
568 |
||
569 |
//============================================================================= |
|
570 |
//------------------------------PhaseValues------------------------------------ |
|
571 |
// Set minimum table size to "255" |
|
572 |
PhaseValues::PhaseValues( Arena *arena, uint est_max_size ) : PhaseTransform(arena, GVN), _table(arena, est_max_size) { |
|
573 |
NOT_PRODUCT( clear_new_values(); ) |
|
574 |
} |
|
575 |
||
576 |
//------------------------------PhaseValues------------------------------------ |
|
577 |
// Set minimum table size to "255" |
|
578 |
PhaseValues::PhaseValues( PhaseValues *ptv ) : PhaseTransform( ptv, GVN ), |
|
579 |
_table(&ptv->_table) { |
|
580 |
NOT_PRODUCT( clear_new_values(); ) |
|
581 |
} |
|
582 |
||
583 |
//------------------------------PhaseValues------------------------------------ |
|
584 |
// Used by +VerifyOpto. Clear out hash table but copy _types array. |
|
585 |
PhaseValues::PhaseValues( PhaseValues *ptv, const char *dummy ) : PhaseTransform( ptv, GVN ), |
|
586 |
_table(ptv->arena(),ptv->_table.size()) { |
|
587 |
NOT_PRODUCT( clear_new_values(); ) |
|
588 |
} |
|
589 |
||
590 |
//------------------------------~PhaseValues----------------------------------- |
|
591 |
#ifndef PRODUCT |
|
592 |
PhaseValues::~PhaseValues() { |
|
593 |
_table.dump(); |
|
594 |
||
595 |
// Statistics for value progress and efficiency |
|
596 |
if( PrintCompilation && Verbose && WizardMode ) { |
|
597 |
tty->print("\n%sValues: %d nodes ---> %d/%d (%d)", |
|
598 |
is_IterGVN() ? "Iter" : " ", C->unique(), made_progress(), made_transforms(), made_new_values()); |
|
599 |
if( made_transforms() != 0 ) { |
|
600 |
tty->print_cr(" ratio %f", made_progress()/(float)made_transforms() ); |
|
601 |
} else { |
|
602 |
tty->cr(); |
|
603 |
} |
|
604 |
} |
|
605 |
} |
|
606 |
#endif |
|
607 |
||
608 |
//------------------------------makecon---------------------------------------- |
|
609 |
ConNode* PhaseTransform::makecon(const Type *t) { |
|
610 |
assert(t->singleton(), "must be a constant"); |
|
611 |
assert(!t->empty() || t == Type::TOP, "must not be vacuous range"); |
|
612 |
switch (t->base()) { // fast paths |
|
613 |
case Type::Half: |
|
614 |
case Type::Top: return (ConNode*) C->top(); |
|
615 |
case Type::Int: return intcon( t->is_int()->get_con() ); |
|
616 |
case Type::Long: return longcon( t->is_long()->get_con() ); |
|
617 |
} |
|
618 |
if (t->is_zero_type()) |
|
619 |
return zerocon(t->basic_type()); |
|
620 |
return uncached_makecon(t); |
|
621 |
} |
|
622 |
||
623 |
//--------------------------uncached_makecon----------------------------------- |
|
624 |
// Make an idealized constant - one of ConINode, ConPNode, etc. |
|
625 |
ConNode* PhaseValues::uncached_makecon(const Type *t) { |
|
626 |
assert(t->singleton(), "must be a constant"); |
|
25930 | 627 |
ConNode* x = ConNode::make(t); |
1 | 628 |
ConNode* k = (ConNode*)hash_find_insert(x); // Value numbering |
629 |
if (k == NULL) { |
|
630 |
set_type(x, t); // Missed, provide type mapping |
|
631 |
GrowableArray<Node_Notes*>* nna = C->node_note_array(); |
|
632 |
if (nna != NULL) { |
|
633 |
Node_Notes* loc = C->locate_node_notes(nna, x->_idx, true); |
|
634 |
loc->clear(); // do not put debug info on constants |
|
635 |
} |
|
636 |
} else { |
|
637 |
x->destruct(); // Hit, destroy duplicate constant |
|
638 |
x = k; // use existing constant |
|
639 |
} |
|
640 |
return x; |
|
641 |
} |
|
642 |
||
643 |
//------------------------------intcon----------------------------------------- |
|
644 |
// Fast integer constant. Same as "transform(new ConINode(TypeInt::make(i)))" |
|
645 |
ConINode* PhaseTransform::intcon(int i) { |
|
646 |
// Small integer? Check cache! Check that cached node is not dead |
|
647 |
if (i >= _icon_min && i <= _icon_max) { |
|
648 |
ConINode* icon = _icons[i-_icon_min]; |
|
649 |
if (icon != NULL && icon->in(TypeFunc::Control) != NULL) |
|
650 |
return icon; |
|
651 |
} |
|
652 |
ConINode* icon = (ConINode*) uncached_makecon(TypeInt::make(i)); |
|
653 |
assert(icon->is_Con(), ""); |
|
654 |
if (i >= _icon_min && i <= _icon_max) |
|
655 |
_icons[i-_icon_min] = icon; // Cache small integers |
|
656 |
return icon; |
|
657 |
} |
|
658 |
||
659 |
//------------------------------longcon---------------------------------------- |
|
660 |
// Fast long constant. |
|
661 |
ConLNode* PhaseTransform::longcon(jlong l) { |
|
662 |
// Small integer? Check cache! Check that cached node is not dead |
|
663 |
if (l >= _lcon_min && l <= _lcon_max) { |
|
664 |
ConLNode* lcon = _lcons[l-_lcon_min]; |
|
665 |
if (lcon != NULL && lcon->in(TypeFunc::Control) != NULL) |
|
666 |
return lcon; |
|
667 |
} |
|
668 |
ConLNode* lcon = (ConLNode*) uncached_makecon(TypeLong::make(l)); |
|
669 |
assert(lcon->is_Con(), ""); |
|
670 |
if (l >= _lcon_min && l <= _lcon_max) |
|
671 |
_lcons[l-_lcon_min] = lcon; // Cache small integers |
|
672 |
return lcon; |
|
673 |
} |
|
674 |
||
675 |
//------------------------------zerocon----------------------------------------- |
|
676 |
// Fast zero or null constant. Same as "transform(ConNode::make(Type::get_zero_type(bt)))" |
|
677 |
ConNode* PhaseTransform::zerocon(BasicType bt) { |
|
678 |
assert((uint)bt <= _zcon_max, "domain check"); |
|
679 |
ConNode* zcon = _zcons[bt]; |
|
680 |
if (zcon != NULL && zcon->in(TypeFunc::Control) != NULL) |
|
681 |
return zcon; |
|
682 |
zcon = (ConNode*) uncached_makecon(Type::get_zero_type(bt)); |
|
683 |
_zcons[bt] = zcon; |
|
684 |
return zcon; |
|
685 |
} |
|
686 |
||
687 |
||
688 |
||
689 |
//============================================================================= |
|
690 |
//------------------------------transform-------------------------------------- |
|
691 |
// Return a node which computes the same function as this node, but in a |
|
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
692 |
// faster or cheaper fashion. |
1 | 693 |
Node *PhaseGVN::transform( Node *n ) { |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
694 |
return transform_no_reclaim(n); |
1 | 695 |
} |
696 |
||
697 |
//------------------------------transform-------------------------------------- |
|
698 |
// Return a node which computes the same function as this node, but |
|
699 |
// in a faster or cheaper fashion. |
|
700 |
Node *PhaseGVN::transform_no_reclaim( Node *n ) { |
|
701 |
NOT_PRODUCT( set_transforms(); ) |
|
702 |
||
703 |
// Apply the Ideal call in a loop until it no longer applies |
|
704 |
Node *k = n; |
|
705 |
NOT_PRODUCT( uint loop_count = 0; ) |
|
706 |
while( 1 ) { |
|
707 |
Node *i = k->Ideal(this, /*can_reshape=*/false); |
|
708 |
if( !i ) break; |
|
709 |
assert( i->_idx >= k->_idx, "Idealize should return new nodes, use Identity to return old nodes" ); |
|
710 |
k = i; |
|
711 |
assert(loop_count++ < K, "infinite loop in PhaseGVN::transform"); |
|
712 |
} |
|
713 |
NOT_PRODUCT( if( loop_count != 0 ) { set_progress(); } ) |
|
714 |
||
715 |
||
716 |
// If brand new node, make space in type array. |
|
717 |
ensure_type_or_null(k); |
|
718 |
||
719 |
// Since I just called 'Value' to compute the set of run-time values |
|
720 |
// for this Node, and 'Value' is non-local (and therefore expensive) I'll |
|
721 |
// cache Value. Later requests for the local phase->type of this Node can |
|
722 |
// use the cached Value instead of suffering with 'bottom_type'. |
|
723 |
const Type *t = k->Value(this); // Get runtime Value set |
|
724 |
assert(t != NULL, "value sanity"); |
|
725 |
if (type_or_null(k) != t) { |
|
726 |
#ifndef PRODUCT |
|
727 |
// Do not count initial visit to node as a transformation |
|
728 |
if (type_or_null(k) == NULL) { |
|
729 |
inc_new_values(); |
|
730 |
set_progress(); |
|
731 |
} |
|
732 |
#endif |
|
733 |
set_type(k, t); |
|
734 |
// If k is a TypeNode, capture any more-precise type permanently into Node |
|
735 |
k->raise_bottom_type(t); |
|
736 |
} |
|
737 |
||
738 |
if( t->singleton() && !k->is_Con() ) { |
|
739 |
NOT_PRODUCT( set_progress(); ) |
|
740 |
return makecon(t); // Turn into a constant |
|
741 |
} |
|
742 |
||
743 |
// Now check for Identities |
|
744 |
Node *i = k->Identity(this); // Look for a nearby replacement |
|
745 |
if( i != k ) { // Found? Return replacement! |
|
746 |
NOT_PRODUCT( set_progress(); ) |
|
747 |
return i; |
|
748 |
} |
|
749 |
||
750 |
// Global Value Numbering |
|
751 |
i = hash_find_insert(k); // Insert if new |
|
752 |
if( i && (i != k) ) { |
|
753 |
// Return the pre-existing node |
|
754 |
NOT_PRODUCT( set_progress(); ) |
|
755 |
return i; |
|
756 |
} |
|
757 |
||
758 |
// Return Idealized original |
|
759 |
return k; |
|
760 |
} |
|
761 |
||
762 |
#ifdef ASSERT |
|
763 |
//------------------------------dead_loop_check-------------------------------- |
|
2131 | 764 |
// Check for a simple dead loop when a data node references itself directly |
1 | 765 |
// or through an other data node excluding cons and phis. |
766 |
void PhaseGVN::dead_loop_check( Node *n ) { |
|
767 |
// Phi may reference itself in a loop |
|
768 |
if (n != NULL && !n->is_dead_loop_safe() && !n->is_CFG()) { |
|
769 |
// Do 2 levels check and only data inputs. |
|
770 |
bool no_dead_loop = true; |
|
771 |
uint cnt = n->req(); |
|
772 |
for (uint i = 1; i < cnt && no_dead_loop; i++) { |
|
773 |
Node *in = n->in(i); |
|
774 |
if (in == n) { |
|
775 |
no_dead_loop = false; |
|
776 |
} else if (in != NULL && !in->is_dead_loop_safe()) { |
|
777 |
uint icnt = in->req(); |
|
778 |
for (uint j = 1; j < icnt && no_dead_loop; j++) { |
|
779 |
if (in->in(j) == n || in->in(j) == in) |
|
780 |
no_dead_loop = false; |
|
781 |
} |
|
782 |
} |
|
783 |
} |
|
784 |
if (!no_dead_loop) n->dump(3); |
|
785 |
assert(no_dead_loop, "dead loop detected"); |
|
786 |
} |
|
787 |
} |
|
788 |
#endif |
|
789 |
||
790 |
//============================================================================= |
|
791 |
//------------------------------PhaseIterGVN----------------------------------- |
|
792 |
// Initialize hash table to fresh and clean for +VerifyOpto |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
793 |
PhaseIterGVN::PhaseIterGVN( PhaseIterGVN *igvn, const char *dummy ) : PhaseGVN(igvn,dummy), _worklist( ), |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
794 |
_stack(C->unique() >> 1), |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
795 |
_delay_transform(false) { |
1 | 796 |
} |
797 |
||
798 |
//------------------------------PhaseIterGVN----------------------------------- |
|
799 |
// Initialize with previous PhaseIterGVN info; used by PhaseCCP |
|
800 |
PhaseIterGVN::PhaseIterGVN( PhaseIterGVN *igvn ) : PhaseGVN(igvn), |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
801 |
_worklist( igvn->_worklist ), |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
802 |
_stack( igvn->_stack ), |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
803 |
_delay_transform(igvn->_delay_transform) |
1 | 804 |
{ |
805 |
} |
|
806 |
||
807 |
//------------------------------PhaseIterGVN----------------------------------- |
|
808 |
// Initialize with previous PhaseGVN info from Parser |
|
809 |
PhaseIterGVN::PhaseIterGVN( PhaseGVN *gvn ) : PhaseGVN(gvn), |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
810 |
_worklist(*C->for_igvn()), |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
811 |
_stack(C->unique() >> 1), |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
812 |
_delay_transform(false) |
1 | 813 |
{ |
814 |
uint max; |
|
815 |
||
816 |
// Dead nodes in the hash table inherited from GVN were not treated as |
|
817 |
// roots during def-use info creation; hence they represent an invisible |
|
818 |
// use. Clear them out. |
|
819 |
max = _table.size(); |
|
820 |
for( uint i = 0; i < max; ++i ) { |
|
821 |
Node *n = _table.at(i); |
|
822 |
if(n != NULL && n != _table.sentinel() && n->outcnt() == 0) { |
|
823 |
if( n->is_top() ) continue; |
|
824 |
assert( false, "Parse::remove_useless_nodes missed this node"); |
|
825 |
hash_delete(n); |
|
826 |
} |
|
827 |
} |
|
828 |
||
829 |
// Any Phis or Regions on the worklist probably had uses that could not |
|
830 |
// make more progress because the uses were made while the Phis and Regions |
|
831 |
// were in half-built states. Put all uses of Phis and Regions on worklist. |
|
832 |
max = _worklist.size(); |
|
833 |
for( uint j = 0; j < max; j++ ) { |
|
834 |
Node *n = _worklist.at(j); |
|
835 |
uint uop = n->Opcode(); |
|
836 |
if( uop == Op_Phi || uop == Op_Region || |
|
837 |
n->is_Type() || |
|
838 |
n->is_Mem() ) |
|
839 |
add_users_to_worklist(n); |
|
840 |
} |
|
841 |
} |
|
842 |
||
24015 | 843 |
/** |
844 |
* Initialize worklist for each node. |
|
845 |
*/ |
|
846 |
void PhaseIterGVN::init_worklist(Node* first) { |
|
847 |
Unique_Node_List to_process; |
|
848 |
to_process.push(first); |
|
849 |
||
850 |
while (to_process.size() > 0) { |
|
851 |
Node* n = to_process.pop(); |
|
852 |
if (!_worklist.member(n)) { |
|
853 |
_worklist.push(n); |
|
854 |
||
855 |
uint cnt = n->req(); |
|
856 |
for(uint i = 0; i < cnt; i++) { |
|
857 |
Node* m = n->in(i); |
|
858 |
if (m != NULL) { |
|
859 |
to_process.push(m); |
|
860 |
} |
|
861 |
} |
|
862 |
} |
|
863 |
} |
|
864 |
} |
|
1 | 865 |
|
866 |
#ifndef PRODUCT |
|
867 |
void PhaseIterGVN::verify_step(Node* n) { |
|
24015 | 868 |
if (VerifyIterativeGVN) { |
869 |
_verify_window[_verify_counter % _verify_window_size] = n; |
|
870 |
++_verify_counter; |
|
871 |
ResourceMark rm; |
|
872 |
ResourceArea* area = Thread::current()->resource_area(); |
|
873 |
VectorSet old_space(area), new_space(area); |
|
874 |
if (C->unique() < 1000 || |
|
875 |
0 == _verify_counter % (C->unique() < 10000 ? 10 : 100)) { |
|
876 |
++_verify_full_passes; |
|
877 |
Node::verify_recur(C->root(), -1, old_space, new_space); |
|
1 | 878 |
} |
24015 | 879 |
const int verify_depth = 4; |
880 |
for ( int i = 0; i < _verify_window_size; i++ ) { |
|
881 |
Node* n = _verify_window[i]; |
|
882 |
if ( n == NULL ) continue; |
|
883 |
if( n->in(0) == NodeSentinel ) { // xform_idom |
|
884 |
_verify_window[i] = n->in(1); |
|
885 |
--i; continue; |
|
886 |
} |
|
887 |
// Typical fanout is 1-2, so this call visits about 6 nodes. |
|
888 |
Node::verify_recur(n, verify_depth, old_space, new_space); |
|
889 |
} |
|
1 | 890 |
} |
891 |
} |
|
892 |
||
24015 | 893 |
void PhaseIterGVN::trace_PhaseIterGVN(Node* n, Node* nn, const Type* oldtype) { |
894 |
if (TraceIterativeGVN) { |
|
895 |
uint wlsize = _worklist.size(); |
|
896 |
const Type* newtype = type_or_null(n); |
|
897 |
if (nn != n) { |
|
898 |
// print old node |
|
899 |
tty->print("< "); |
|
900 |
if (oldtype != newtype && oldtype != NULL) { |
|
901 |
oldtype->dump(); |
|
902 |
} |
|
903 |
do { tty->print("\t"); } while (tty->position() < 16); |
|
904 |
tty->print("<"); |
|
905 |
n->dump(); |
|
906 |
} |
|
907 |
if (oldtype != newtype || nn != n) { |
|
908 |
// print new node and/or new type |
|
909 |
if (oldtype == NULL) { |
|
910 |
tty->print("* "); |
|
911 |
} else if (nn != n) { |
|
912 |
tty->print("> "); |
|
913 |
} else { |
|
914 |
tty->print("= "); |
|
915 |
} |
|
916 |
if (newtype == NULL) { |
|
917 |
tty->print("null"); |
|
918 |
} else { |
|
919 |
newtype->dump(); |
|
920 |
} |
|
921 |
do { tty->print("\t"); } while (tty->position() < 16); |
|
922 |
nn->dump(); |
|
923 |
} |
|
924 |
if (Verbose && wlsize < _worklist.size()) { |
|
925 |
tty->print(" Push {"); |
|
926 |
while (wlsize != _worklist.size()) { |
|
927 |
Node* pushed = _worklist.at(wlsize++); |
|
928 |
tty->print(" %d", pushed->_idx); |
|
929 |
} |
|
930 |
tty->print_cr(" }"); |
|
931 |
} |
|
932 |
if (nn != n) { |
|
933 |
// ignore n, it might be subsumed |
|
934 |
verify_step((Node*) NULL); |
|
1 | 935 |
} |
936 |
} |
|
24015 | 937 |
} |
1 | 938 |
|
24015 | 939 |
void PhaseIterGVN::init_verifyPhaseIterGVN() { |
940 |
_verify_counter = 0; |
|
941 |
_verify_full_passes = 0; |
|
942 |
for (int i = 0; i < _verify_window_size; i++) { |
|
943 |
_verify_window[i] = NULL; |
|
1 | 944 |
} |
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
945 |
#ifdef ASSERT |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
946 |
// Verify that all modified nodes are on _worklist |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
947 |
Unique_Node_List* modified_list = C->modified_nodes(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
948 |
while (modified_list != NULL && modified_list->size()) { |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
949 |
Node* n = modified_list->pop(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
950 |
if (n->outcnt() != 0 && !n->is_Con() && !_worklist.member(n)) { |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
951 |
n->dump(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
952 |
assert(false, "modified node is not on IGVN._worklist"); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
953 |
} |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
954 |
} |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
955 |
#endif |
24015 | 956 |
} |
1 | 957 |
|
24015 | 958 |
void PhaseIterGVN::verify_PhaseIterGVN() { |
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
959 |
#ifdef ASSERT |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
960 |
// Verify nodes with changed inputs. |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
961 |
Unique_Node_List* modified_list = C->modified_nodes(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
962 |
while (modified_list != NULL && modified_list->size()) { |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
963 |
Node* n = modified_list->pop(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
964 |
if (n->outcnt() != 0 && !n->is_Con()) { // skip dead and Con nodes |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
965 |
n->dump(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
966 |
assert(false, "modified node was not processed by IGVN.transform_old()"); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
967 |
} |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
968 |
} |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
969 |
#endif |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
970 |
|
1 | 971 |
C->verify_graph_edges(); |
972 |
if( VerifyOpto && allow_progress() ) { |
|
973 |
// Must turn off allow_progress to enable assert and break recursion |
|
974 |
C->root()->verify(); |
|
975 |
{ // Check if any progress was missed using IterGVN |
|
976 |
// Def-Use info enables transformations not attempted in wash-pass |
|
977 |
// e.g. Region/Phi cleanup, ... |
|
978 |
// Null-check elision -- may not have reached fixpoint |
|
979 |
// do not propagate to dominated nodes |
|
980 |
ResourceMark rm; |
|
981 |
PhaseIterGVN igvn2(this,"Verify"); // Fresh and clean! |
|
982 |
// Fill worklist completely |
|
983 |
igvn2.init_worklist(C->root()); |
|
984 |
||
985 |
igvn2.set_allow_progress(false); |
|
986 |
igvn2.optimize(); |
|
987 |
igvn2.set_allow_progress(true); |
|
988 |
} |
|
989 |
} |
|
24015 | 990 |
if (VerifyIterativeGVN && PrintOpto) { |
991 |
if (_verify_counter == _verify_full_passes) { |
|
1 | 992 |
tty->print_cr("VerifyIterativeGVN: %d transforms and verify passes", |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24016
diff
changeset
|
993 |
(int) _verify_full_passes); |
24015 | 994 |
} else { |
1 | 995 |
tty->print_cr("VerifyIterativeGVN: %d transforms, %d full verify passes", |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24016
diff
changeset
|
996 |
(int) _verify_counter, (int) _verify_full_passes); |
24015 | 997 |
} |
1 | 998 |
} |
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
999 |
|
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1000 |
#ifdef ASSERT |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1001 |
while (modified_list->size()) { |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1002 |
Node* n = modified_list->pop(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1003 |
n->dump(); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1004 |
assert(false, "VerifyIterativeGVN: new modified node was added"); |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1005 |
} |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1006 |
#endif |
24015 | 1007 |
} |
1008 |
#endif /* PRODUCT */ |
|
1009 |
||
1010 |
#ifdef ASSERT |
|
1011 |
/** |
|
1012 |
* Dumps information that can help to debug the problem. A debug |
|
1013 |
* build fails with an assert. |
|
1014 |
*/ |
|
1015 |
void PhaseIterGVN::dump_infinite_loop_info(Node* n) { |
|
1016 |
n->dump(4); |
|
1017 |
_worklist.dump(); |
|
1018 |
assert(false, "infinite loop in PhaseIterGVN::optimize"); |
|
1019 |
} |
|
1020 |
||
1021 |
/** |
|
1022 |
* Prints out information about IGVN if the 'verbose' option is used. |
|
1023 |
*/ |
|
1024 |
void PhaseIterGVN::trace_PhaseIterGVN_verbose(Node* n, int num_processed) { |
|
1025 |
if (TraceIterativeGVN && Verbose) { |
|
1026 |
tty->print(" Pop "); |
|
1027 |
n->dump(); |
|
1028 |
if ((num_processed % 100) == 0) { |
|
1029 |
_worklist.print_set(); |
|
1030 |
} |
|
1031 |
} |
|
1032 |
} |
|
1033 |
#endif /* ASSERT */ |
|
1034 |
||
1035 |
void PhaseIterGVN::optimize() { |
|
1036 |
DEBUG_ONLY(uint num_processed = 0;) |
|
1037 |
NOT_PRODUCT(init_verifyPhaseIterGVN();) |
|
1038 |
||
1039 |
uint loop_count = 0; |
|
1040 |
// Pull from worklist and transform the node. If the node has changed, |
|
1041 |
// update edge info and put uses on worklist. |
|
1042 |
while(_worklist.size()) { |
|
1043 |
if (C->check_node_count(NodeLimitFudgeFactor * 2, "Out of nodes")) { |
|
1044 |
return; |
|
1045 |
} |
|
1046 |
Node* n = _worklist.pop(); |
|
1047 |
if (++loop_count >= K * C->live_nodes()) { |
|
1048 |
DEBUG_ONLY(dump_infinite_loop_info(n);) |
|
1049 |
C->record_method_not_compilable("infinite loop in PhaseIterGVN::optimize"); |
|
1050 |
return; |
|
1051 |
} |
|
1052 |
DEBUG_ONLY(trace_PhaseIterGVN_verbose(n, num_processed++);) |
|
1053 |
if (n->outcnt() != 0) { |
|
1054 |
NOT_PRODUCT(const Type* oldtype = type_or_null(n)); |
|
1055 |
// Do the transformation |
|
1056 |
Node* nn = transform_old(n); |
|
1057 |
NOT_PRODUCT(trace_PhaseIterGVN(n, nn, oldtype);) |
|
1058 |
} else if (!n->is_top()) { |
|
1059 |
remove_dead_node(n); |
|
1060 |
} |
|
1061 |
} |
|
1062 |
NOT_PRODUCT(verify_PhaseIterGVN();) |
|
1 | 1063 |
} |
1064 |
||
1065 |
||
24015 | 1066 |
/** |
1067 |
* Register a new node with the optimizer. Update the types array, the def-use |
|
1068 |
* info. Put on worklist. |
|
1069 |
*/ |
|
1 | 1070 |
Node* PhaseIterGVN::register_new_node_with_optimizer(Node* n, Node* orig) { |
1071 |
set_type_bottom(n); |
|
1072 |
_worklist.push(n); |
|
1073 |
if (orig != NULL) C->copy_node_notes_to(n, orig); |
|
1074 |
return n; |
|
1075 |
} |
|
1076 |
||
1077 |
//------------------------------transform-------------------------------------- |
|
1078 |
// Non-recursive: idealize Node 'n' with respect to its inputs and its value |
|
1079 |
Node *PhaseIterGVN::transform( Node *n ) { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
1080 |
if (_delay_transform) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
1081 |
// Register the node but don't optimize for now |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
1082 |
register_new_node_with_optimizer(n); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
1083 |
return n; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
1084 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
238
diff
changeset
|
1085 |
|
1 | 1086 |
// If brand new node, make space in type array, and give it a type. |
1087 |
ensure_type_or_null(n); |
|
1088 |
if (type_or_null(n) == NULL) { |
|
1089 |
set_type_bottom(n); |
|
1090 |
} |
|
1091 |
||
1092 |
return transform_old(n); |
|
1093 |
} |
|
1094 |
||
24015 | 1095 |
Node *PhaseIterGVN::transform_old(Node* n) { |
1096 |
DEBUG_ONLY(uint loop_count = 0;); |
|
1097 |
NOT_PRODUCT(set_transforms()); |
|
1098 |
||
1 | 1099 |
// Remove 'n' from hash table in case it gets modified |
1100 |
_table.hash_delete(n); |
|
24015 | 1101 |
if (VerifyIterativeGVN) { |
1102 |
assert(!_table.find_index(n->_idx), "found duplicate entry in table"); |
|
1 | 1103 |
} |
1104 |
||
1105 |
// Apply the Ideal call in a loop until it no longer applies |
|
24015 | 1106 |
Node* k = n; |
1 | 1107 |
DEBUG_ONLY(dead_loop_check(k);) |
1067 | 1108 |
DEBUG_ONLY(bool is_new = (k->outcnt() == 0);) |
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1109 |
C->remove_modified_node(k); |
24015 | 1110 |
Node* i = k->Ideal(this, /*can_reshape=*/true); |
1067 | 1111 |
assert(i != k || is_new || i->outcnt() > 0, "don't return dead nodes"); |
1 | 1112 |
#ifndef PRODUCT |
24015 | 1113 |
verify_step(k); |
1114 |
if (i && VerifyOpto ) { |
|
1115 |
if (!allow_progress()) { |
|
1116 |
if (i->is_Add() && (i->outcnt() == 1)) { |
|
1 | 1117 |
// Switched input to left side because this is the only use |
24015 | 1118 |
} else if (i->is_If() && (i->in(0) == NULL)) { |
1 | 1119 |
// This IF is dead because it is dominated by an equivalent IF When |
1120 |
// dominating if changed, info is not propagated sparsely to 'this' |
|
1121 |
// Propagating this info further will spuriously identify other |
|
1122 |
// progress. |
|
1123 |
return i; |
|
1124 |
} else |
|
1125 |
set_progress(); |
|
24015 | 1126 |
} else { |
1 | 1127 |
set_progress(); |
24015 | 1128 |
} |
1 | 1129 |
} |
1130 |
#endif |
|
1131 |
||
24015 | 1132 |
while (i != NULL) { |
25739 | 1133 |
#ifdef ASSERT |
24015 | 1134 |
if (loop_count >= K) { |
1135 |
dump_infinite_loop_info(i); |
|
1136 |
} |
|
1137 |
loop_count++; |
|
1 | 1138 |
#endif |
1139 |
assert((i->_idx >= k->_idx) || i->is_top(), "Idealize should return new nodes, use Identity to return old nodes"); |
|
1140 |
// Made a change; put users of original Node on worklist |
|
24015 | 1141 |
add_users_to_worklist(k); |
1 | 1142 |
// Replacing root of transform tree? |
24015 | 1143 |
if (k != i) { |
1 | 1144 |
// Make users of old Node now use new. |
24015 | 1145 |
subsume_node(k, i); |
1 | 1146 |
k = i; |
1147 |
} |
|
1148 |
DEBUG_ONLY(dead_loop_check(k);) |
|
1149 |
// Try idealizing again |
|
1067 | 1150 |
DEBUG_ONLY(is_new = (k->outcnt() == 0);) |
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1151 |
C->remove_modified_node(k); |
1 | 1152 |
i = k->Ideal(this, /*can_reshape=*/true); |
24015 | 1153 |
assert(i != k || is_new || (i->outcnt() > 0), "don't return dead nodes"); |
1 | 1154 |
#ifndef PRODUCT |
24015 | 1155 |
verify_step(k); |
1156 |
if (i && VerifyOpto) { |
|
1157 |
set_progress(); |
|
1158 |
} |
|
1 | 1159 |
#endif |
1160 |
} |
|
1161 |
||
1162 |
// If brand new node, make space in type array. |
|
1163 |
ensure_type_or_null(k); |
|
1164 |
||
1165 |
// See what kind of values 'k' takes on at runtime |
|
24015 | 1166 |
const Type* t = k->Value(this); |
1 | 1167 |
assert(t != NULL, "value sanity"); |
1168 |
||
1169 |
// Since I just called 'Value' to compute the set of run-time values |
|
1170 |
// for this Node, and 'Value' is non-local (and therefore expensive) I'll |
|
1171 |
// cache Value. Later requests for the local phase->type of this Node can |
|
1172 |
// use the cached Value instead of suffering with 'bottom_type'. |
|
24015 | 1173 |
if (type_or_null(k) != t) { |
1174 |
#ifndef PRODUCT |
|
1175 |
inc_new_values(); |
|
1176 |
set_progress(); |
|
1177 |
#endif |
|
1 | 1178 |
set_type(k, t); |
1179 |
// If k is a TypeNode, capture any more-precise type permanently into Node |
|
1180 |
k->raise_bottom_type(t); |
|
1181 |
// Move users of node to worklist |
|
24015 | 1182 |
add_users_to_worklist(k); |
1 | 1183 |
} |
1184 |
// If 'k' computes a constant, replace it with a constant |
|
24015 | 1185 |
if (t->singleton() && !k->is_Con()) { |
1186 |
NOT_PRODUCT(set_progress();) |
|
1187 |
Node* con = makecon(t); // Make a constant |
|
1188 |
add_users_to_worklist(k); |
|
1189 |
subsume_node(k, con); // Everybody using k now uses con |
|
1 | 1190 |
return con; |
1191 |
} |
|
1192 |
||
1193 |
// Now check for Identities |
|
24015 | 1194 |
i = k->Identity(this); // Look for a nearby replacement |
1195 |
if (i != k) { // Found? Return replacement! |
|
1196 |
NOT_PRODUCT(set_progress();) |
|
1197 |
add_users_to_worklist(k); |
|
1198 |
subsume_node(k, i); // Everybody using k now uses i |
|
1 | 1199 |
return i; |
1200 |
} |
|
1201 |
||
1202 |
// Global Value Numbering |
|
1203 |
i = hash_find_insert(k); // Check for pre-existing node |
|
24015 | 1204 |
if (i && (i != k)) { |
1 | 1205 |
// Return the pre-existing node if it isn't dead |
24015 | 1206 |
NOT_PRODUCT(set_progress();) |
1207 |
add_users_to_worklist(k); |
|
1208 |
subsume_node(k, i); // Everybody using k now uses i |
|
1 | 1209 |
return i; |
1210 |
} |
|
1211 |
||
1212 |
// Return Idealized original |
|
1213 |
return k; |
|
1214 |
} |
|
1215 |
||
1216 |
//---------------------------------saturate------------------------------------ |
|
1217 |
const Type* PhaseIterGVN::saturate(const Type* new_type, const Type* old_type, |
|
1218 |
const Type* limit_type) const { |
|
1219 |
return new_type->narrow(old_type); |
|
1220 |
} |
|
1221 |
||
1222 |
//------------------------------remove_globally_dead_node---------------------- |
|
1223 |
// Kill a globally dead Node. All uses are also globally dead and are |
|
1224 |
// aggressively trimmed. |
|
1225 |
void PhaseIterGVN::remove_globally_dead_node( Node *dead ) { |
|
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1226 |
enum DeleteProgress { |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1227 |
PROCESS_INPUTS, |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1228 |
PROCESS_OUTPUTS |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1229 |
}; |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1230 |
assert(_stack.is_empty(), "not empty"); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1231 |
_stack.push(dead, PROCESS_INPUTS); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1232 |
|
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1233 |
while (_stack.is_nonempty()) { |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1234 |
dead = _stack.node(); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1235 |
uint progress_state = _stack.index(); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1236 |
assert(dead != C->root(), "killing root, eh?"); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1237 |
assert(!dead->is_top(), "add check for top when pushing"); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1238 |
NOT_PRODUCT( set_progress(); ) |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1239 |
if (progress_state == PROCESS_INPUTS) { |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1240 |
// After following inputs, continue to outputs |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1241 |
_stack.set_index(PROCESS_OUTPUTS); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1242 |
if (!dead->is_Con()) { // Don't kill cons but uses |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1243 |
bool recurse = false; |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1244 |
// Remove from hash table |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1245 |
_table.hash_delete( dead ); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1246 |
// Smash all inputs to 'dead', isolating him completely |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1247 |
for (uint i = 0; i < dead->req(); i++) { |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1248 |
Node *in = dead->in(i); |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1249 |
if (in != NULL && in != C->top()) { // Points to something? |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1250 |
int nrep = dead->replace_edge(in, NULL); // Kill edges |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1251 |
assert((nrep > 0), "sanity"); |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1252 |
if (in->outcnt() == 0) { // Made input go dead? |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1253 |
_stack.push(in, PROCESS_INPUTS); // Recursively remove |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1254 |
recurse = true; |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1255 |
} else if (in->outcnt() == 1 && |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1256 |
in->has_special_unique_user()) { |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1257 |
_worklist.push(in->unique_out()); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1258 |
} else if (in->outcnt() <= 2 && dead->is_Phi()) { |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1259 |
if (in->Opcode() == Op_Region) { |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1260 |
_worklist.push(in); |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1261 |
} else if (in->is_Store()) { |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1262 |
DUIterator_Fast imax, i = in->fast_outs(imax); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1263 |
_worklist.push(in->fast_out(i)); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1264 |
i++; |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1265 |
if (in->outcnt() == 2) { |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1266 |
_worklist.push(in->fast_out(i)); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1267 |
i++; |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1268 |
} |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1269 |
assert(!(i < imax), "sanity"); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1270 |
} |
1 | 1271 |
} |
15813
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1272 |
if (ReduceFieldZeroing && dead->is_Load() && i == MemNode::Memory && |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1273 |
in->is_Proj() && in->in(0) != NULL && in->in(0)->is_Initialize()) { |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1274 |
// A Load that directly follows an InitializeNode is |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1275 |
// going away. The Stores that follow are candidates |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1276 |
// again to be captured by the InitializeNode. |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1277 |
for (DUIterator_Fast jmax, j = in->fast_outs(jmax); j < jmax; j++) { |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1278 |
Node *n = in->fast_out(j); |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1279 |
if (n->is_Store()) { |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1280 |
_worklist.push(n); |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1281 |
} |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1282 |
} |
6efd4c793e47
8007294: ReduceFieldZeroing doesn't check for dependent load and can lead to incorrect execution
roland
parents:
15618
diff
changeset
|
1283 |
} |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1284 |
} // if (in != NULL && in != C->top()) |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1285 |
} // for (uint i = 0; i < dead->req(); i++) |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1286 |
if (recurse) { |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1287 |
continue; |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1288 |
} |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1289 |
} // if (!dead->is_Con()) |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1290 |
} // if (progress_state == PROCESS_INPUTS) |
1 | 1291 |
|
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1292 |
// Aggressively kill globally dead uses |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1293 |
// (Rather than pushing all the outs at once, we push one at a time, |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1294 |
// plus the parent to resume later, because of the indefinite number |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1295 |
// of edge deletions per loop trip.) |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1296 |
if (dead->outcnt() > 0) { |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1297 |
// Recursively remove output edges |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1298 |
_stack.push(dead->raw_out(0), PROCESS_INPUTS); |
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1299 |
} else { |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1300 |
// Finished disconnecting all input and output edges. |
13312
a8e45429e01e
7147464: Java crashed while executing method with over 8k of dneg operations
dlong
parents:
10988
diff
changeset
|
1301 |
_stack.pop(); |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1302 |
// Remove dead node from iterative worklist |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1303 |
_worklist.remove(dead); |
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1304 |
C->remove_modified_node(dead); |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1305 |
// Constant node that has no out-edges and has only one in-edge from |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1306 |
// root is usually dead. However, sometimes reshaping walk makes |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1307 |
// it reachable by adding use edges. So, we will NOT count Con nodes |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1308 |
// as dead to be conservative about the dead node count at any |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1309 |
// given time. |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1310 |
if (!dead->is_Con()) { |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1311 |
C->record_dead_node(dead->_idx); |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1312 |
} |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1313 |
if (dead->is_macro()) { |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1314 |
C->remove_macro_node(dead); |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1315 |
} |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1316 |
if (dead->is_expensive()) { |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1317 |
C->remove_expensive_node(dead); |
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1318 |
} |
1 | 1319 |
} |
16619
a0e531dcc9e9
8004640: C2 assert failure in memnode.cpp: NULL+offs not RAW address
kvn
parents:
15813
diff
changeset
|
1320 |
} // while (_stack.is_nonempty()) |
1 | 1321 |
} |
1322 |
||
1323 |
//------------------------------subsume_node----------------------------------- |
|
1324 |
// Remove users from node 'old' and add them to node 'nn'. |
|
1325 |
void PhaseIterGVN::subsume_node( Node *old, Node *nn ) { |
|
1326 |
assert( old != hash_find(old), "should already been removed" ); |
|
1327 |
assert( old != C->top(), "cannot subsume top node"); |
|
1328 |
// Copy debug or profile information to the new version: |
|
1329 |
C->copy_node_notes_to(nn, old); |
|
1330 |
// Move users of node 'old' to node 'nn' |
|
1331 |
for (DUIterator_Last imin, i = old->last_outs(imin); i >= imin; ) { |
|
1332 |
Node* use = old->last_out(i); // for each use... |
|
1333 |
// use might need re-hashing (but it won't if it's a new node) |
|
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25739
diff
changeset
|
1334 |
rehash_node_delayed(use); |
1 | 1335 |
// Update use-def info as well |
1336 |
// We remove all occurrences of old within use->in, |
|
1337 |
// so as to avoid rehashing any node more than once. |
|
1338 |
// The hash table probe swamps any outer loop overhead. |
|
1339 |
uint num_edges = 0; |
|
1340 |
for (uint jmax = use->len(), j = 0; j < jmax; j++) { |
|
1341 |
if (use->in(j) == old) { |
|
1342 |
use->set_req(j, nn); |
|
1343 |
++num_edges; |
|
1344 |
} |
|
1345 |
} |
|
1346 |
i -= num_edges; // we deleted 1 or more copies of this edge |
|
1347 |
} |
|
1348 |
||
1349 |
// Smash all inputs to 'old', isolating him completely |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
1350 |
Node *temp = new Node(1); |
1 | 1351 |
temp->init_req(0,nn); // Add a use to nn to prevent him from dying |
1352 |
remove_dead_node( old ); |
|
1353 |
temp->del_req(0); // Yank bogus edge |
|
1354 |
#ifndef PRODUCT |
|
1355 |
if( VerifyIterativeGVN ) { |
|
1356 |
for ( int i = 0; i < _verify_window_size; i++ ) { |
|
1357 |
if ( _verify_window[i] == old ) |
|
1358 |
_verify_window[i] = nn; |
|
1359 |
} |
|
1360 |
} |
|
1361 |
#endif |
|
1362 |
_worklist.remove(temp); // this can be necessary |
|
1363 |
temp->destruct(); // reuse the _idx of this little guy |
|
1364 |
} |
|
1365 |
||
1366 |
//------------------------------add_users_to_worklist-------------------------- |
|
1367 |
void PhaseIterGVN::add_users_to_worklist0( Node *n ) { |
|
1368 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
1369 |
_worklist.push(n->fast_out(i)); // Push on worklist |
|
1370 |
} |
|
1371 |
} |
|
1372 |
||
1373 |
void PhaseIterGVN::add_users_to_worklist( Node *n ) { |
|
1374 |
add_users_to_worklist0(n); |
|
1375 |
||
1376 |
// Move users of node to worklist |
|
1377 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
1378 |
Node* use = n->fast_out(i); // Get use |
|
1379 |
||
1380 |
if( use->is_Multi() || // Multi-definer? Push projs on worklist |
|
1381 |
use->is_Store() ) // Enable store/load same address |
|
1382 |
add_users_to_worklist0(use); |
|
1383 |
||
1384 |
// If we changed the receiver type to a call, we need to revisit |
|
1385 |
// the Catch following the call. It's looking for a non-NULL |
|
1386 |
// receiver to know when to enable the regular fall-through path |
|
1387 |
// in addition to the NullPtrException path. |
|
1388 |
if (use->is_CallDynamicJava() && n == use->in(TypeFunc::Parms)) { |
|
1389 |
Node* p = use->as_CallDynamicJava()->proj_out(TypeFunc::Control); |
|
1390 |
if (p != NULL) { |
|
1391 |
add_users_to_worklist0(p); |
|
1392 |
} |
|
1393 |
} |
|
1394 |
||
27708
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1395 |
uint use_op = use->Opcode(); |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1396 |
if(use->is_Cmp()) { // Enable CMP/BOOL optimization |
1 | 1397 |
add_users_to_worklist(use); // Put Bool on worklist |
1398 |
if (use->outcnt() > 0) { |
|
1399 |
Node* bol = use->raw_out(0); |
|
1400 |
if (bol->outcnt() > 0) { |
|
1401 |
Node* iff = bol->raw_out(0); |
|
27708
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1402 |
if (use_op == Op_CmpI && |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1403 |
iff->is_CountedLoopEnd()) { |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1404 |
CountedLoopEndNode* cle = iff->as_CountedLoopEnd(); |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1405 |
if (cle->limit() == n && cle->phi() != NULL) { |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1406 |
// If an opaque node feeds into the limit condition of a |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1407 |
// CountedLoop, we need to process the Phi node for the |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1408 |
// induction variable when the opaque node is removed: |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1409 |
// the range of values taken by the Phi is now known and |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1410 |
// so its type is also known. |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1411 |
_worklist.push(cle->phi()); |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1412 |
} |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1413 |
} else if (iff->outcnt() == 2) { |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1414 |
// Look for the 'is_x2logic' pattern: "x ? : 0 : 1" and put the |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1415 |
// phi merging either 0 or 1 onto the worklist |
1 | 1416 |
Node* ifproj0 = iff->raw_out(0); |
1417 |
Node* ifproj1 = iff->raw_out(1); |
|
1418 |
if (ifproj0->outcnt() > 0 && ifproj1->outcnt() > 0) { |
|
1419 |
Node* region0 = ifproj0->raw_out(0); |
|
1420 |
Node* region1 = ifproj1->raw_out(0); |
|
1421 |
if( region0 == region1 ) |
|
1422 |
add_users_to_worklist0(region0); |
|
1423 |
} |
|
1424 |
} |
|
1425 |
} |
|
1426 |
} |
|
27708
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1427 |
if (use_op == Op_CmpI) { |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1428 |
Node* in1 = use->in(1); |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1429 |
for (uint i = 0; i < in1->outcnt(); i++) { |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1430 |
if (in1->raw_out(i)->Opcode() == Op_CastII) { |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1431 |
Node* castii = in1->raw_out(i); |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1432 |
if (castii->in(0) != NULL && castii->in(0)->in(0) != NULL && castii->in(0)->in(0)->is_If()) { |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1433 |
Node* ifnode = castii->in(0)->in(0); |
27910
8653c71aea40
8066045: opto/node.hpp:355, assert(i < _max) failed: oob: i=1, _max=1
roland
parents:
27708
diff
changeset
|
1434 |
if (ifnode->in(1) != NULL && ifnode->in(1)->is_Bool() && ifnode->in(1)->in(1) == use) { |
27708
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1435 |
// Reprocess a CastII node that may depend on an |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1436 |
// opaque node value when the opaque node is |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1437 |
// removed. In case it carries a dependency we can do |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1438 |
// a better job of computing its type. |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1439 |
_worklist.push(castii); |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1440 |
} |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1441 |
} |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1442 |
} |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1443 |
} |
8a8710cb8fc4
8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents:
26429
diff
changeset
|
1444 |
} |
1 | 1445 |
} |
1446 |
||
1447 |
// If changed Cast input, check Phi users for simple cycles |
|
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
214
diff
changeset
|
1448 |
if( use->is_ConstraintCast() || use->is_CheckCastPP() ) { |
1 | 1449 |
for (DUIterator_Fast i2max, i2 = use->fast_outs(i2max); i2 < i2max; i2++) { |
1450 |
Node* u = use->fast_out(i2); |
|
1451 |
if (u->is_Phi()) |
|
1452 |
_worklist.push(u); |
|
1453 |
} |
|
1454 |
} |
|
1455 |
// If changed LShift inputs, check RShift users for useless sign-ext |
|
1456 |
if( use_op == Op_LShiftI ) { |
|
1457 |
for (DUIterator_Fast i2max, i2 = use->fast_outs(i2max); i2 < i2max; i2++) { |
|
1458 |
Node* u = use->fast_out(i2); |
|
1459 |
if (u->Opcode() == Op_RShiftI) |
|
1460 |
_worklist.push(u); |
|
1461 |
} |
|
1462 |
} |
|
24479 | 1463 |
// If changed AddI/SubI inputs, check CmpU for range check optimization. |
1464 |
if (use_op == Op_AddI || use_op == Op_SubI) { |
|
1465 |
for (DUIterator_Fast i2max, i2 = use->fast_outs(i2max); i2 < i2max; i2++) { |
|
1466 |
Node* u = use->fast_out(i2); |
|
1467 |
if (u->is_Cmp() && (u->Opcode() == Op_CmpU)) { |
|
1468 |
_worklist.push(u); |
|
1469 |
} |
|
1470 |
} |
|
1471 |
} |
|
1 | 1472 |
// If changed AddP inputs, check Stores for loop invariant |
1473 |
if( use_op == Op_AddP ) { |
|
1474 |
for (DUIterator_Fast i2max, i2 = use->fast_outs(i2max); i2 < i2max; i2++) { |
|
1475 |
Node* u = use->fast_out(i2); |
|
1476 |
if (u->is_Mem()) |
|
1477 |
_worklist.push(u); |
|
1478 |
} |
|
1479 |
} |
|
1480 |
// If changed initialization activity, check dependent Stores |
|
1481 |
if (use_op == Op_Allocate || use_op == Op_AllocateArray) { |
|
1482 |
InitializeNode* init = use->as_Allocate()->initialization(); |
|
1483 |
if (init != NULL) { |
|
1484 |
Node* imem = init->proj_out(TypeFunc::Memory); |
|
1485 |
if (imem != NULL) add_users_to_worklist0(imem); |
|
1486 |
} |
|
1487 |
} |
|
1488 |
if (use_op == Op_Initialize) { |
|
1489 |
Node* imem = use->as_Initialize()->proj_out(TypeFunc::Memory); |
|
1490 |
if (imem != NULL) add_users_to_worklist0(imem); |
|
1491 |
} |
|
1492 |
} |
|
1493 |
} |
|
1494 |
||
21099 | 1495 |
/** |
1496 |
* Remove the speculative part of all types that we know of |
|
1497 |
*/ |
|
1498 |
void PhaseIterGVN::remove_speculative_types() { |
|
1499 |
assert(UseTypeSpeculation, "speculation is off"); |
|
1500 |
for (uint i = 0; i < _types.Size(); i++) { |
|
1501 |
const Type* t = _types.fast_lookup(i); |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
1502 |
if (t != NULL) { |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
1503 |
_types.map(i, t->remove_speculative()); |
21099 | 1504 |
} |
1505 |
} |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
1506 |
_table.check_no_speculative_types(); |
21099 | 1507 |
} |
1508 |
||
1 | 1509 |
//============================================================================= |
1510 |
#ifndef PRODUCT |
|
1511 |
uint PhaseCCP::_total_invokes = 0; |
|
1512 |
uint PhaseCCP::_total_constants = 0; |
|
1513 |
#endif |
|
1514 |
//------------------------------PhaseCCP--------------------------------------- |
|
1515 |
// Conditional Constant Propagation, ala Wegman & Zadeck |
|
1516 |
PhaseCCP::PhaseCCP( PhaseIterGVN *igvn ) : PhaseIterGVN(igvn) { |
|
1517 |
NOT_PRODUCT( clear_constants(); ) |
|
1518 |
assert( _worklist.size() == 0, "" ); |
|
1519 |
// Clear out _nodes from IterGVN. Must be clear to transform call. |
|
1520 |
_nodes.clear(); // Clear out from IterGVN |
|
1521 |
analyze(); |
|
1522 |
} |
|
1523 |
||
1524 |
#ifndef PRODUCT |
|
1525 |
//------------------------------~PhaseCCP-------------------------------------- |
|
1526 |
PhaseCCP::~PhaseCCP() { |
|
1527 |
inc_invokes(); |
|
1528 |
_total_constants += count_constants(); |
|
1529 |
} |
|
1530 |
#endif |
|
1531 |
||
1532 |
||
1533 |
#ifdef ASSERT |
|
1534 |
static bool ccp_type_widens(const Type* t, const Type* t0) { |
|
1535 |
assert(t->meet(t0) == t, "Not monotonic"); |
|
1536 |
switch (t->base() == t0->base() ? t->base() : Type::Top) { |
|
1537 |
case Type::Int: |
|
1538 |
assert(t0->isa_int()->_widen <= t->isa_int()->_widen, "widen increases"); |
|
1539 |
break; |
|
1540 |
case Type::Long: |
|
1541 |
assert(t0->isa_long()->_widen <= t->isa_long()->_widen, "widen increases"); |
|
1542 |
break; |
|
1543 |
} |
|
1544 |
return true; |
|
1545 |
} |
|
1546 |
#endif //ASSERT |
|
1547 |
||
1548 |
//------------------------------analyze---------------------------------------- |
|
1549 |
void PhaseCCP::analyze() { |
|
1550 |
// Initialize all types to TOP, optimistic analysis |
|
1551 |
for (int i = C->unique() - 1; i >= 0; i--) { |
|
1552 |
_types.map(i,Type::TOP); |
|
1553 |
} |
|
1554 |
||
1555 |
// Push root onto worklist |
|
1556 |
Unique_Node_List worklist; |
|
1557 |
worklist.push(C->root()); |
|
1558 |
||
1559 |
// Pull from worklist; compute new value; push changes out. |
|
1560 |
// This loop is the meat of CCP. |
|
1561 |
while( worklist.size() ) { |
|
1562 |
Node *n = worklist.pop(); |
|
1563 |
const Type *t = n->Value(this); |
|
1564 |
if (t != type(n)) { |
|
1565 |
assert(ccp_type_widens(t, type(n)), "ccp type must widen"); |
|
1566 |
#ifndef PRODUCT |
|
1567 |
if( TracePhaseCCP ) { |
|
1568 |
t->dump(); |
|
1569 |
do { tty->print("\t"); } while (tty->position() < 16); |
|
1570 |
n->dump(); |
|
1571 |
} |
|
1572 |
#endif |
|
1573 |
set_type(n, t); |
|
1574 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
1575 |
Node* m = n->fast_out(i); // Get user |
|
1576 |
if( m->is_Region() ) { // New path to Region? Must recheck Phis too |
|
1577 |
for (DUIterator_Fast i2max, i2 = m->fast_outs(i2max); i2 < i2max; i2++) { |
|
1578 |
Node* p = m->fast_out(i2); // Propagate changes to uses |
|
1579 |
if( p->bottom_type() != type(p) ) // If not already bottomed out |
|
1580 |
worklist.push(p); // Propagate change to user |
|
1581 |
} |
|
1582 |
} |
|
2131 | 1583 |
// If we changed the receiver type to a call, we need to revisit |
1 | 1584 |
// the Catch following the call. It's looking for a non-NULL |
1585 |
// receiver to know when to enable the regular fall-through path |
|
1586 |
// in addition to the NullPtrException path |
|
1587 |
if (m->is_Call()) { |
|
1588 |
for (DUIterator_Fast i2max, i2 = m->fast_outs(i2max); i2 < i2max; i2++) { |
|
1589 |
Node* p = m->fast_out(i2); // Propagate changes to uses |
|
1590 |
if (p->is_Proj() && p->as_Proj()->_con == TypeFunc::Control && p->outcnt() == 1) |
|
1591 |
worklist.push(p->unique_out()); |
|
1592 |
} |
|
1593 |
} |
|
1594 |
if( m->bottom_type() != type(m) ) // If not already bottomed out |
|
1595 |
worklist.push(m); // Propagate change to user |
|
1596 |
} |
|
1597 |
} |
|
1598 |
} |
|
1599 |
} |
|
1600 |
||
1601 |
//------------------------------do_transform----------------------------------- |
|
1602 |
// Top level driver for the recursive transformer |
|
1603 |
void PhaseCCP::do_transform() { |
|
1604 |
// Correct leaves of new-space Nodes; they point to old-space. |
|
1605 |
C->set_root( transform(C->root())->as_Root() ); |
|
1606 |
assert( C->top(), "missing TOP node" ); |
|
1607 |
assert( C->root(), "missing root" ); |
|
24009
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1608 |
|
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1609 |
// Eagerly remove castPP nodes here. CastPP nodes might not be |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1610 |
// removed in the subsequent IGVN phase if a node that changes |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1611 |
// in(1) of a castPP is processed prior to the castPP node. |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1612 |
for (uint i = 0; i < _worklist.size(); i++) { |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1613 |
Node* n = _worklist.at(i); |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1614 |
|
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1615 |
if (n->is_ConstraintCast()) { |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1616 |
Node* nn = n->Identity(this); |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1617 |
if (nn != n) { |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1618 |
replace_node(n, nn); |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1619 |
--i; |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1620 |
} |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1621 |
} |
ec494183af7e
8034216: assert(false) failed: infinite loop in PhaseIterGVN::optimize
anoll
parents:
23528
diff
changeset
|
1622 |
} |
1 | 1623 |
} |
1624 |
||
1625 |
//------------------------------transform-------------------------------------- |
|
1626 |
// Given a Node in old-space, clone him into new-space. |
|
1627 |
// Convert any of his old-space children into new-space children. |
|
1628 |
Node *PhaseCCP::transform( Node *n ) { |
|
1629 |
Node *new_node = _nodes[n->_idx]; // Check for transformed node |
|
1630 |
if( new_node != NULL ) |
|
1631 |
return new_node; // Been there, done that, return old answer |
|
1632 |
new_node = transform_once(n); // Check for constant |
|
1633 |
_nodes.map( n->_idx, new_node ); // Flag as having been cloned |
|
1634 |
||
1635 |
// Allocate stack of size _nodes.Size()/2 to avoid frequent realloc |
|
1636 |
GrowableArray <Node *> trstack(C->unique() >> 1); |
|
1637 |
||
1638 |
trstack.push(new_node); // Process children of cloned node |
|
1639 |
while ( trstack.is_nonempty() ) { |
|
1640 |
Node *clone = trstack.pop(); |
|
1641 |
uint cnt = clone->req(); |
|
1642 |
for( uint i = 0; i < cnt; i++ ) { // For all inputs do |
|
1643 |
Node *input = clone->in(i); |
|
1644 |
if( input != NULL ) { // Ignore NULLs |
|
1645 |
Node *new_input = _nodes[input->_idx]; // Check for cloned input node |
|
1646 |
if( new_input == NULL ) { |
|
1647 |
new_input = transform_once(input); // Check for constant |
|
1648 |
_nodes.map( input->_idx, new_input );// Flag as having been cloned |
|
1649 |
trstack.push(new_input); |
|
1650 |
} |
|
1651 |
assert( new_input == clone->in(i), "insanity check"); |
|
1652 |
} |
|
1653 |
} |
|
1654 |
} |
|
1655 |
return new_node; |
|
1656 |
} |
|
1657 |
||
1658 |
||
1659 |
//------------------------------transform_once--------------------------------- |
|
1660 |
// For PhaseCCP, transformation is IDENTITY unless Node computed a constant. |
|
1661 |
Node *PhaseCCP::transform_once( Node *n ) { |
|
1662 |
const Type *t = type(n); |
|
1663 |
// Constant? Use constant Node instead |
|
1664 |
if( t->singleton() ) { |
|
1665 |
Node *nn = n; // Default is to return the original constant |
|
1666 |
if( t == Type::TOP ) { |
|
1667 |
// cache my top node on the Compile instance |
|
1668 |
if( C->cached_top_node() == NULL || C->cached_top_node()->in(0) == NULL ) { |
|
25930 | 1669 |
C->set_cached_top_node(ConNode::make(Type::TOP)); |
1 | 1670 |
set_type(C->top(), Type::TOP); |
1671 |
} |
|
1672 |
nn = C->top(); |
|
1673 |
} |
|
1674 |
if( !n->is_Con() ) { |
|
1675 |
if( t != Type::TOP ) { |
|
1676 |
nn = makecon(t); // ConNode::make(t); |
|
1677 |
NOT_PRODUCT( inc_constants(); ) |
|
1678 |
} else if( n->is_Region() ) { // Unreachable region |
|
1679 |
// Note: nn == C->top() |
|
1680 |
n->set_req(0, NULL); // Cut selfreference |
|
1681 |
// Eagerly remove dead phis to avoid phis copies creation. |
|
1682 |
for (DUIterator i = n->outs(); n->has_out(i); i++) { |
|
1683 |
Node* m = n->out(i); |
|
1684 |
if( m->is_Phi() ) { |
|
1685 |
assert(type(m) == Type::TOP, "Unreachable region should not have live phis."); |
|
5901
c046f8e9c52b
6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents:
5547
diff
changeset
|
1686 |
replace_node(m, nn); |
1 | 1687 |
--i; // deleted this phi; rescan starting with next position |
1688 |
} |
|
1689 |
} |
|
1690 |
} |
|
5901
c046f8e9c52b
6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents:
5547
diff
changeset
|
1691 |
replace_node(n,nn); // Update DefUse edges for new constant |
1 | 1692 |
} |
1693 |
return nn; |
|
1694 |
} |
|
1695 |
||
1696 |
// If x is a TypeNode, capture any more-precise type permanently into Node |
|
1697 |
if (t != n->bottom_type()) { |
|
1698 |
hash_delete(n); // changing bottom type may force a rehash |
|
1699 |
n->raise_bottom_type(t); |
|
1700 |
_worklist.push(n); // n re-enters the hash table via the worklist |
|
1701 |
} |
|
1702 |
||
1703 |
// Idealize graph using DU info. Must clone() into new-space. |
|
1704 |
// DU info is generally used to show profitability, progress or safety |
|
1705 |
// (but generally not needed for correctness). |
|
1706 |
Node *nn = n->Ideal_DU_postCCP(this); |
|
1707 |
||
1708 |
// TEMPORARY fix to ensure that 2nd GVN pass eliminates NULL checks |
|
1709 |
switch( n->Opcode() ) { |
|
1710 |
case Op_FastLock: // Revisit FastLocks for lock coarsening |
|
1711 |
case Op_If: |
|
1712 |
case Op_CountedLoopEnd: |
|
1713 |
case Op_Region: |
|
1714 |
case Op_Loop: |
|
1715 |
case Op_CountedLoop: |
|
1716 |
case Op_Conv2B: |
|
1717 |
case Op_Opaque1: |
|
1718 |
case Op_Opaque2: |
|
1719 |
_worklist.push(n); |
|
1720 |
break; |
|
1721 |
default: |
|
1722 |
break; |
|
1723 |
} |
|
1724 |
if( nn ) { |
|
1725 |
_worklist.push(n); |
|
1726 |
// Put users of 'n' onto worklist for second igvn transform |
|
1727 |
add_users_to_worklist(n); |
|
1728 |
return nn; |
|
1729 |
} |
|
1730 |
||
1731 |
return n; |
|
1732 |
} |
|
1733 |
||
1734 |
//---------------------------------saturate------------------------------------ |
|
1735 |
const Type* PhaseCCP::saturate(const Type* new_type, const Type* old_type, |
|
1736 |
const Type* limit_type) const { |
|
4012
579b7bad9983
6885584: A particular class structure causes large allocation spike for jit
never
parents:
3682
diff
changeset
|
1737 |
const Type* wide_type = new_type->widen(old_type, limit_type); |
1 | 1738 |
if (wide_type != new_type) { // did we widen? |
1739 |
// If so, we may have widened beyond the limit type. Clip it back down. |
|
1740 |
new_type = wide_type->filter(limit_type); |
|
1741 |
} |
|
1742 |
return new_type; |
|
1743 |
} |
|
1744 |
||
1745 |
//------------------------------print_statistics------------------------------- |
|
1746 |
#ifndef PRODUCT |
|
1747 |
void PhaseCCP::print_statistics() { |
|
1748 |
tty->print_cr("CCP: %d constants found: %d", _total_invokes, _total_constants); |
|
1749 |
} |
|
1750 |
#endif |
|
1751 |
||
1752 |
||
1753 |
//============================================================================= |
|
1754 |
#ifndef PRODUCT |
|
1755 |
uint PhasePeephole::_total_peepholes = 0; |
|
1756 |
#endif |
|
1757 |
//------------------------------PhasePeephole---------------------------------- |
|
1758 |
// Conditional Constant Propagation, ala Wegman & Zadeck |
|
1759 |
PhasePeephole::PhasePeephole( PhaseRegAlloc *regalloc, PhaseCFG &cfg ) |
|
1760 |
: PhaseTransform(Peephole), _regalloc(regalloc), _cfg(cfg) { |
|
1761 |
NOT_PRODUCT( clear_peepholes(); ) |
|
1762 |
} |
|
1763 |
||
1764 |
#ifndef PRODUCT |
|
1765 |
//------------------------------~PhasePeephole--------------------------------- |
|
1766 |
PhasePeephole::~PhasePeephole() { |
|
1767 |
_total_peepholes += count_peepholes(); |
|
1768 |
} |
|
1769 |
#endif |
|
1770 |
||
1771 |
//------------------------------transform-------------------------------------- |
|
1772 |
Node *PhasePeephole::transform( Node *n ) { |
|
1773 |
ShouldNotCallThis(); |
|
1774 |
return NULL; |
|
1775 |
} |
|
1776 |
||
1777 |
//------------------------------do_transform----------------------------------- |
|
1778 |
void PhasePeephole::do_transform() { |
|
1779 |
bool method_name_not_printed = true; |
|
1780 |
||
1781 |
// Examine each basic block |
|
19330
49d6711171e6
8023003: Cleanup the public interface to PhaseCFG
adlertz
parents:
17383
diff
changeset
|
1782 |
for (uint block_number = 1; block_number < _cfg.number_of_blocks(); ++block_number) { |
49d6711171e6
8023003: Cleanup the public interface to PhaseCFG
adlertz
parents:
17383
diff
changeset
|
1783 |
Block* block = _cfg.get_block(block_number); |
1 | 1784 |
bool block_not_printed = true; |
1785 |
||
1786 |
// and each instruction within a block |
|
19717
7819ffdaf0ff
8023691: Create interface for nodes in class Block
adlertz
parents:
19330
diff
changeset
|
1787 |
uint end_index = block->number_of_nodes(); |
1 | 1788 |
// block->end_idx() not valid after PhaseRegAlloc |
1789 |
for( uint instruction_index = 1; instruction_index < end_index; ++instruction_index ) { |
|
19717
7819ffdaf0ff
8023691: Create interface for nodes in class Block
adlertz
parents:
19330
diff
changeset
|
1790 |
Node *n = block->get_node(instruction_index); |
1 | 1791 |
if( n->is_Mach() ) { |
1792 |
MachNode *m = n->as_Mach(); |
|
1793 |
int deleted_count = 0; |
|
1794 |
// check for peephole opportunities |
|
25930 | 1795 |
MachNode *m2 = m->peephole(block, instruction_index, _regalloc, deleted_count); |
1 | 1796 |
if( m2 != NULL ) { |
1797 |
#ifndef PRODUCT |
|
1798 |
if( PrintOptoPeephole ) { |
|
1799 |
// Print method, first time only |
|
1800 |
if( C->method() && method_name_not_printed ) { |
|
1801 |
C->method()->print_short_name(); tty->cr(); |
|
1802 |
method_name_not_printed = false; |
|
1803 |
} |
|
1804 |
// Print this block |
|
1805 |
if( Verbose && block_not_printed) { |
|
1806 |
tty->print_cr("in block"); |
|
1807 |
block->dump(); |
|
1808 |
block_not_printed = false; |
|
1809 |
} |
|
1810 |
// Print instructions being deleted |
|
1811 |
for( int i = (deleted_count - 1); i >= 0; --i ) { |
|
19717
7819ffdaf0ff
8023691: Create interface for nodes in class Block
adlertz
parents:
19330
diff
changeset
|
1812 |
block->get_node(instruction_index-i)->as_Mach()->format(_regalloc); tty->cr(); |
1 | 1813 |
} |
1814 |
tty->print_cr("replaced with"); |
|
1815 |
// Print new instruction |
|
1816 |
m2->format(_regalloc); |
|
1817 |
tty->print("\n\n"); |
|
1818 |
} |
|
1819 |
#endif |
|
1820 |
// Remove old nodes from basic block and update instruction_index |
|
1821 |
// (old nodes still exist and may have edges pointing to them |
|
1822 |
// as register allocation info is stored in the allocator using |
|
1823 |
// the node index to live range mappings.) |
|
1824 |
uint safe_instruction_index = (instruction_index - deleted_count); |
|
1825 |
for( ; (instruction_index > safe_instruction_index); --instruction_index ) { |
|
19717
7819ffdaf0ff
8023691: Create interface for nodes in class Block
adlertz
parents:
19330
diff
changeset
|
1826 |
block->remove_node( instruction_index ); |
1 | 1827 |
} |
1828 |
// install new node after safe_instruction_index |
|
19717
7819ffdaf0ff
8023691: Create interface for nodes in class Block
adlertz
parents:
19330
diff
changeset
|
1829 |
block->insert_node(m2, safe_instruction_index + 1); |
7819ffdaf0ff
8023691: Create interface for nodes in class Block
adlertz
parents:
19330
diff
changeset
|
1830 |
end_index = block->number_of_nodes() - 1; // Recompute new block size |
1 | 1831 |
NOT_PRODUCT( inc_peepholes(); ) |
1832 |
} |
|
1833 |
} |
|
1834 |
} |
|
1835 |
} |
|
1836 |
} |
|
1837 |
||
1838 |
//------------------------------print_statistics------------------------------- |
|
1839 |
#ifndef PRODUCT |
|
1840 |
void PhasePeephole::print_statistics() { |
|
1841 |
tty->print_cr("Peephole: peephole rules applied: %d", _total_peepholes); |
|
1842 |
} |
|
1843 |
#endif |
|
1844 |
||
1845 |
||
1846 |
//============================================================================= |
|
1847 |
//------------------------------set_req_X-------------------------------------- |
|
1848 |
void Node::set_req_X( uint i, Node *n, PhaseIterGVN *igvn ) { |
|
1849 |
assert( is_not_dead(n), "can not use dead node"); |
|
1850 |
assert( igvn->hash_find(this) != this, "Need to remove from hash before changing edges" ); |
|
1851 |
Node *old = in(i); |
|
1852 |
set_req(i, n); |
|
1853 |
||
1854 |
// old goes dead? |
|
1855 |
if( old ) { |
|
1856 |
switch (old->outcnt()) { |
|
3682
42de755d7d6e
6866651: Regression: simple int sum crashes jvm (build 1.6.0_14-b08 and 1.7.0-ea-b59)
cfang
parents:
2131
diff
changeset
|
1857 |
case 0: |
42de755d7d6e
6866651: Regression: simple int sum crashes jvm (build 1.6.0_14-b08 and 1.7.0-ea-b59)
cfang
parents:
2131
diff
changeset
|
1858 |
// Put into the worklist to kill later. We do not kill it now because the |
42de755d7d6e
6866651: Regression: simple int sum crashes jvm (build 1.6.0_14-b08 and 1.7.0-ea-b59)
cfang
parents:
2131
diff
changeset
|
1859 |
// recursive kill will delete the current node (this) if dead-loop exists |
1 | 1860 |
if (!old->is_top()) |
3682
42de755d7d6e
6866651: Regression: simple int sum crashes jvm (build 1.6.0_14-b08 and 1.7.0-ea-b59)
cfang
parents:
2131
diff
changeset
|
1861 |
igvn->_worklist.push( old ); |
1 | 1862 |
break; |
1863 |
case 1: |
|
1864 |
if( old->is_Store() || old->has_special_unique_user() ) |
|
1865 |
igvn->add_users_to_worklist( old ); |
|
1866 |
break; |
|
1867 |
case 2: |
|
1868 |
if( old->is_Store() ) |
|
1869 |
igvn->add_users_to_worklist( old ); |
|
1870 |
if( old->Opcode() == Op_Region ) |
|
1871 |
igvn->_worklist.push(old); |
|
1872 |
break; |
|
1873 |
case 3: |
|
1874 |
if( old->Opcode() == Op_Region ) { |
|
1875 |
igvn->_worklist.push(old); |
|
1876 |
igvn->add_users_to_worklist( old ); |
|
1877 |
} |
|
1878 |
break; |
|
1879 |
default: |
|
1880 |
break; |
|
1881 |
} |
|
1882 |
} |
|
1883 |
||
1884 |
} |
|
1885 |
||
1886 |
//-------------------------------replace_by----------------------------------- |
|
1887 |
// Using def-use info, replace one node for another. Follow the def-use info |
|
1888 |
// to all users of the OLD node. Then make all uses point to the NEW node. |
|
1889 |
void Node::replace_by(Node *new_node) { |
|
1890 |
assert(!is_top(), "top node has no DU info"); |
|
1891 |
for (DUIterator_Last imin, i = last_outs(imin); i >= imin; ) { |
|
1892 |
Node* use = last_out(i); |
|
1893 |
uint uses_found = 0; |
|
1894 |
for (uint j = 0; j < use->len(); j++) { |
|
1895 |
if (use->in(j) == this) { |
|
1896 |
if (j < use->req()) |
|
1897 |
use->set_req(j, new_node); |
|
1898 |
else use->set_prec(j, new_node); |
|
1899 |
uses_found++; |
|
1900 |
} |
|
1901 |
} |
|
1902 |
i -= uses_found; // we deleted 1 or more copies of this edge |
|
1903 |
} |
|
1904 |
} |
|
1905 |
||
1906 |
//============================================================================= |
|
1907 |
//----------------------------------------------------------------------------- |
|
1908 |
void Type_Array::grow( uint i ) { |
|
1909 |
if( !_max ) { |
|
1910 |
_max = 1; |
|
1911 |
_types = (const Type**)_a->Amalloc( _max * sizeof(Type*) ); |
|
1912 |
_types[0] = NULL; |
|
1913 |
} |
|
1914 |
uint old = _max; |
|
1915 |
while( i >= _max ) _max <<= 1; // Double to fit |
|
1916 |
_types = (const Type**)_a->Arealloc( _types, old*sizeof(Type*),_max*sizeof(Type*)); |
|
1917 |
memset( &_types[old], 0, (_max-old)*sizeof(Type*) ); |
|
1918 |
} |
|
1919 |
||
1920 |
//------------------------------dump------------------------------------------- |
|
1921 |
#ifndef PRODUCT |
|
1922 |
void Type_Array::dump() const { |
|
1923 |
uint max = Size(); |
|
1924 |
for( uint i = 0; i < max; i++ ) { |
|
1925 |
if( _types[i] != NULL ) { |
|
1926 |
tty->print(" %d\t== ", i); _types[i]->dump(); tty->cr(); |
|
1927 |
} |
|
1928 |
} |
|
1929 |
} |
|
1930 |
#endif |