Skip to content

Commit 273f8bd

Browse files
committedMar 11, 2021
8263248: IGV: accept graphs without node categories
If the input graph does not contain node category information, emit a warning message and proceed loading the graph, instead of failing. Reviewed-by: neliasso, chagedorn, thartmann
1 parent a9b4f03 commit 273f8bd

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed
 

‎src/utils/IdealGraphVisualizer/ServerCompiler/nbproject/project.xml

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@
2222
<specification-version>1.0</specification-version>
2323
</run-dependency>
2424
</dependency>
25+
<dependency>
26+
<code-name-base>org.openide.util</code-name-base>
27+
<build-prerequisite/>
28+
<compile-dependency/>
29+
<run-dependency>
30+
<specification-version>8.14.1</specification-version>
31+
</run-dependency>
32+
</dependency>
2533
</module-dependencies>
2634
<public-packages/>
2735
</data>

‎src/utils/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/ServerCompilerScheduler.java

+16-3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import com.sun.hotspot.igv.data.InputNode;
3131
import com.sun.hotspot.igv.data.services.Scheduler;
3232
import java.util.*;
33+
import org.openide.ErrorManager;
3334

3435
/**
3536
*
@@ -213,6 +214,12 @@ public Collection<InputBlock> schedule(InputGraph graph) {
213214
inputNodeToNode = new HashMap<>(graph.getNodes().size());
214215

215216
this.graph = graph;
217+
if (!hasCategoryInformation()) {
218+
ErrorManager.getDefault().log(ErrorManager.WARNING,
219+
"Cannot find node category information in the input graph. " +
220+
"The control-flow graph will not be approximated.");
221+
return null;
222+
}
216223
buildUpGraph();
217224
markCFGNodes();
218225
connectOrphansAndWidows();
@@ -589,6 +596,15 @@ private Node findRoot() {
589596
}
590597
}
591598

599+
public boolean hasCategoryInformation() {
600+
for (InputNode n : graph.getNodes()) {
601+
if (n.getProperties().get("category") == null) {
602+
return false;
603+
}
604+
}
605+
return true;
606+
}
607+
592608
public void buildUpGraph() {
593609

594610
for (InputNode n : graph.getNodes()) {
@@ -640,9 +656,6 @@ public void buildUpGraph() {
640656
public void markCFGNodes() {
641657
for (Node n : nodes) {
642658
String category = n.inputNode.getProperties().get("category");
643-
assert category != null :
644-
"Node category not found, please use input from a compatible " +
645-
"compiler version";
646659
if (category.equals("control") || category.equals("mixed")) {
647660
// Example: If, IfTrue, CallStaticJava.
648661
n.isCFG = true;

0 commit comments

Comments
 (0)
Please sign in to comment.