We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea152dc commit 9549cd2Copy full SHA for 9549cd2
src/hotspot/share/opto/loopnode.cpp
@@ -2505,13 +2505,14 @@ uint IdealLoopTree::est_loop_flow_merge_sz() const {
2505
2506
for (uint k = 0; k < outcnt; k++) {
2507
Node* out = node->raw_out(k);
2508
-
+ if (out == NULL) continue;
2509
if (out->is_CFG()) {
2510
if (!is_member(_phase->get_loop(out))) {
2511
ctrl_edge_out_cnt++;
2512
}
2513
- } else {
+ } else if (_phase->has_ctrl(out)) {
2514
Node* ctrl = _phase->get_ctrl(out);
2515
+ assert(ctrl != NULL, "must be");
2516
assert(ctrl->is_CFG(), "must be");
2517
if (!is_member(_phase->get_loop(ctrl))) {
2518
data_edge_out_cnt++;
0 commit comments