|
30 | 30 | import com.sun.hotspot.igv.data.InputNode;
|
31 | 31 | import com.sun.hotspot.igv.data.services.Scheduler;
|
32 | 32 | import java.util.*;
|
| 33 | +import org.openide.ErrorManager; |
33 | 34 |
|
34 | 35 | /**
|
35 | 36 | *
|
@@ -213,6 +214,12 @@ public Collection<InputBlock> schedule(InputGraph graph) {
|
213 | 214 | inputNodeToNode = new HashMap<>(graph.getNodes().size());
|
214 | 215 |
|
215 | 216 | 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 | + } |
216 | 223 | buildUpGraph();
|
217 | 224 | markCFGNodes();
|
218 | 225 | connectOrphansAndWidows();
|
@@ -589,6 +596,15 @@ private Node findRoot() {
|
589 | 596 | }
|
590 | 597 | }
|
591 | 598 |
|
| 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 | + |
592 | 608 | public void buildUpGraph() {
|
593 | 609 |
|
594 | 610 | for (InputNode n : graph.getNodes()) {
|
@@ -640,9 +656,6 @@ public void buildUpGraph() {
|
640 | 656 | public void markCFGNodes() {
|
641 | 657 | for (Node n : nodes) {
|
642 | 658 | 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"; |
646 | 659 | if (category.equals("control") || category.equals("mixed")) {
|
647 | 660 | // Example: If, IfTrue, CallStaticJava.
|
648 | 661 | n.isCFG = true;
|
|
0 commit comments