@@ -2212,22 +2212,16 @@ void Node::verify_edges(Unique_Node_List &visited) {
2212
2212
}
2213
2213
2214
2214
// Verify all nodes if verify_depth is negative
2215
- void Node::verify (Node* n, int verify_depth ) {
2215
+ void Node::verify (int verify_depth, VectorSet& visited, Node_List& worklist ) {
2216
2216
assert (verify_depth != 0 , " depth should not be 0" );
2217
- ResourceMark rm;
2218
- VectorSet old_space;
2219
- VectorSet new_space;
2220
- Node_List worklist;
2221
- worklist.push (n);
2222
2217
Compile* C = Compile::current ();
2223
- uint last_index_on_current_depth = 0 ;
2218
+ uint last_index_on_current_depth = worklist. size () - 1 ;
2224
2219
verify_depth--; // Visiting the first node on depth 1
2225
2220
// Only add nodes to worklist if verify_depth is negative (visit all nodes) or greater than 0
2226
2221
bool add_to_worklist = verify_depth != 0 ;
2227
2222
2228
-
2229
2223
for (uint list_index = 0 ; list_index < worklist.size (); list_index++) {
2230
- n = worklist[list_index];
2224
+ Node* n = worklist[list_index];
2231
2225
2232
2226
if (n->is_Con () && n->bottom_type () == Type::TOP) {
2233
2227
if (C->cached_top_node () == NULL ) {
@@ -2236,17 +2230,28 @@ void Node::verify(Node* n, int verify_depth) {
2236
2230
assert (C->cached_top_node () == n, " TOP node must be unique" );
2237
2231
}
2238
2232
2239
- for (uint i = 0 ; i < n->len (); i++) {
2240
- Node* x = n->in (i);
2233
+ uint in_len = n->len ();
2234
+ for (uint i = 0 ; i < in_len; i++) {
2235
+ Node* x = n->_in [i];
2241
2236
if (!x || x->is_top ()) {
2242
2237
continue ;
2243
2238
}
2244
2239
2245
2240
// Verify my input has a def-use edge to me
2246
2241
// Count use-def edges from n to x
2247
- int cnt = 0 ;
2248
- for (uint j = 0 ; j < n->len (); j++) {
2249
- if (n->in (j) == x) {
2242
+ int cnt = 1 ;
2243
+ for (uint j = 0 ; j < i; j++) {
2244
+ if (n->_in [j] == x) {
2245
+ cnt++;
2246
+ break ;
2247
+ }
2248
+ }
2249
+ if (cnt == 2 ) {
2250
+ // x is already checked as n's previous input, skip its duplicated def-use count checking
2251
+ continue ;
2252
+ }
2253
+ for (uint j = i + 1 ; j < in_len; j++) {
2254
+ if (n->_in [j] == x) {
2250
2255
cnt++;
2251
2256
}
2252
2257
}
@@ -2260,11 +2265,7 @@ void Node::verify(Node* n, int verify_depth) {
2260
2265
}
2261
2266
assert (cnt == 0 , " mismatched def-use edge counts" );
2262
2267
2263
- // Contained in new_space or old_space?
2264
- VectorSet* v = C->node_arena ()->contains (x) ? &new_space : &old_space;
2265
- // Check for visited in the proper space. Numberings are not unique
2266
- // across spaces so we need a separate VectorSet for each space.
2267
- if (add_to_worklist && !v->test_set (x->_idx )) {
2268
+ if (add_to_worklist && !visited.test_set (x->_idx )) {
2268
2269
worklist.push (x);
2269
2270
}
2270
2271
}
0 commit comments