Skip to content

Commit 4390f2c

Browse files
author
Vladimir Ivanov
committedDec 4, 2020
8257630: C2: ReplacedNodes doesn't handle non-CFG multi nodes
Reviewed-by: neliasso, kvn, thartmann
1 parent d08c612 commit 4390f2c

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

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

+7-5
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ static void enqueue_use(Node* n, Node* use, Unique_Node_List& work) {
120120
}
121121
}
122122

123-
// Perfom node replacement following late inlining
123+
// Perform node replacement following late inlining.
124124
void ReplacedNodes::apply(Compile* C, Node* ctl) {
125125
// ctl is the control on exit of the method that was late inlined
126126
if (is_empty()) {
@@ -144,20 +144,22 @@ void ReplacedNodes::apply(Compile* C, Node* ctl) {
144144
work.clear();
145145
enqueue_use(initial, use, work);
146146
bool replace = true;
147-
// Check that this use is dominated by ctl. Go ahead with the
148-
// replacement if it is.
147+
// Check that this use is dominated by ctl. Go ahead with the replacement if it is.
149148
while (work.size() != 0 && replace) {
150149
Node* n = work.pop();
151150
if (use->outcnt() == 0) {
152151
continue;
153152
}
154153
if (n->is_CFG() || (n->in(0) != NULL && !n->in(0)->is_top())) {
155-
int depth = 0;
156-
Node *m = n;
154+
// Skip projections, since some of the multi nodes aren't CFG (e.g., LoadStore and SCMemProj).
155+
if (n->is_Proj()) {
156+
n = n->in(0);
157+
}
157158
if (!n->is_CFG()) {
158159
n = n->in(0);
159160
}
160161
assert(n->is_CFG(), "should be CFG now");
162+
int depth = 0;
161163
while(n != ctl) {
162164
n = IfNode::up_one_dom(n);
163165
depth++;

0 commit comments

Comments
 (0)
Please sign in to comment.