We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c417c47 commit d7ca08aCopy full SHA for d7ca08a
src/hotspot/share/opto/escape.cpp
@@ -2178,6 +2178,9 @@ bool ConnectionGraph::not_global_escape(Node *n) {
2178
return false;
2179
}
2180
PointsToNode* ptn = ptnode_adr(idx);
2181
+ if (ptn == NULL) {
2182
+ return false; // not in congraph (e.g. ConI)
2183
+ }
2184
PointsToNode::EscapeState es = ptn->escape_state();
2185
// If we have already computed a value, return it.
2186
if (es >= PointsToNode::GlobalEscape)
0 commit comments