Skip to content

Commit 4023646

Browse files
Hui ShiDamonFool
Hui Shi
authored andcommittedMay 22, 2021
8266528: Optimize C2 VerifyIterativeGVN execution time
Reviewed-by: kvn, thartmann
1 parent 2462316 commit 4023646

File tree

4 files changed

+35
-24
lines changed

4 files changed

+35
-24
lines changed
 

‎src/hotspot/share/opto/node.cpp

+20-19
Original file line numberDiff line numberDiff line change
@@ -2212,22 +2212,16 @@ void Node::verify_edges(Unique_Node_List &visited) {
22122212
}
22132213

22142214
// 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) {
22162216
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);
22222217
Compile* C = Compile::current();
2223-
uint last_index_on_current_depth = 0;
2218+
uint last_index_on_current_depth = worklist.size() - 1;
22242219
verify_depth--; // Visiting the first node on depth 1
22252220
// Only add nodes to worklist if verify_depth is negative (visit all nodes) or greater than 0
22262221
bool add_to_worklist = verify_depth != 0;
22272222

2228-
22292223
for (uint list_index = 0; list_index < worklist.size(); list_index++) {
2230-
n = worklist[list_index];
2224+
Node* n = worklist[list_index];
22312225

22322226
if (n->is_Con() && n->bottom_type() == Type::TOP) {
22332227
if (C->cached_top_node() == NULL) {
@@ -2236,17 +2230,28 @@ void Node::verify(Node* n, int verify_depth) {
22362230
assert(C->cached_top_node() == n, "TOP node must be unique");
22372231
}
22382232

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];
22412236
if (!x || x->is_top()) {
22422237
continue;
22432238
}
22442239

22452240
// Verify my input has a def-use edge to me
22462241
// 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) {
22502255
cnt++;
22512256
}
22522257
}
@@ -2260,11 +2265,7 @@ void Node::verify(Node* n, int verify_depth) {
22602265
}
22612266
assert(cnt == 0, "mismatched def-use edge counts");
22622267

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)) {
22682269
worklist.push(x);
22692270
}
22702271
}

‎src/hotspot/share/opto/node.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ class Node {
12021202
void collect_nodes_out_all_ctrl_boundary(GrowableArray<Node*> *ns) const;
12031203

12041204
void verify_edges(Unique_Node_List &visited); // Verify bi-directional edges
1205-
static void verify(Node* n, int verify_depth);
1205+
static void verify(int verify_depth, VectorSet& visited, Node_List& worklist);
12061206

12071207
// This call defines a class-unique string used to identify class instances
12081208
virtual const char *Name() const;

‎src/hotspot/share/opto/phaseX.cpp

+12-3
Original file line numberDiff line numberDiff line change
@@ -1021,11 +1021,17 @@ void PhaseIterGVN::shuffle_worklist() {
10211021
#ifndef PRODUCT
10221022
void PhaseIterGVN::verify_step(Node* n) {
10231023
if (VerifyIterativeGVN) {
1024+
ResourceMark rm;
1025+
VectorSet visited;
1026+
Node_List worklist;
1027+
10241028
_verify_window[_verify_counter % _verify_window_size] = n;
10251029
++_verify_counter;
10261030
if (C->unique() < 1000 || 0 == _verify_counter % (C->unique() < 10000 ? 10 : 100)) {
10271031
++_verify_full_passes;
1028-
Node::verify(C->root(), -1);
1032+
worklist.push(C->root());
1033+
Node::verify(-1, visited, worklist);
1034+
return;
10291035
}
10301036
for (int i = 0; i < _verify_window_size; i++) {
10311037
Node* n = _verify_window[i];
@@ -1038,8 +1044,11 @@ void PhaseIterGVN::verify_step(Node* n) {
10381044
continue;
10391045
}
10401046
// Typical fanout is 1-2, so this call visits about 6 nodes.
1041-
Node::verify(n, 4);
1047+
if (!visited.test_set(n->_idx)) {
1048+
worklist.push(n);
1049+
}
10421050
}
1051+
Node::verify(4, visited, worklist);
10431052
}
10441053
}
10451054

@@ -1238,7 +1247,7 @@ Node *PhaseIterGVN::transform_old(Node* n) {
12381247
// Remove 'n' from hash table in case it gets modified
12391248
_table.hash_delete(n);
12401249
if (VerifyIterativeGVN) {
1241-
assert(!_table.find_index(n->_idx), "found duplicate entry in table");
1250+
assert(!_table.find_index(n->_idx), "found duplicate entry in table");
12421251
}
12431252

12441253
// Apply the Ideal call in a loop until it no longer applies

‎test/hotspot/jtreg/compiler/debug/TraceIterativeGVN.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
34
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
45
*
56
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +24,7 @@
2324

2425
/*
2526
* @test
26-
*
27+
* @requires vm.debug == true & vm.compiler2.enabled
2728
* @run main/othervm -Xbatch -XX:-TieredCompilation
2829
* -XX:+IgnoreUnrecognizedVMOptions -XX:+TraceIterativeGVN
2930
* compiler.debug.TraceIterativeGVN

0 commit comments

Comments
 (0)
Please sign in to comment.