Skip to content

Commit 8ffd48b

Browse files
author
duke
committedMar 30, 2022
Automatic merge of jdk:master into master
2 parents c53f08e + edb42d7 commit 8ffd48b

File tree

70 files changed

+2091
-507
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+2091
-507
lines changed
 

‎src/utils/IdealGraphVisualizer/ControlFlow/src/main/java/com/sun/hotspot/igv/controlflow/BlockConnectionWidget.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,6 +26,7 @@
2626
import com.sun.hotspot.igv.data.InputBlockEdge;
2727
import com.sun.hotspot.igv.layout.Link;
2828
import com.sun.hotspot.igv.layout.Port;
29+
import com.sun.hotspot.igv.layout.Cluster;
2930
import java.awt.BasicStroke;
3031
import java.awt.Point;
3132
import java.awt.Stroke;
@@ -76,6 +77,14 @@ public Port getFrom() {
7677
return outputSlot;
7778
}
7879

80+
public Cluster getFromCluster() {
81+
return null;
82+
}
83+
84+
public Cluster getToCluster() {
85+
return null;
86+
}
87+
7988
public void setBold(boolean bold) {
8089
this.isBold = bold;
8190
updateStroke();

‎src/utils/IdealGraphVisualizer/ControlFlow/src/main/java/com/sun/hotspot/igv/controlflow/HierarchicalGraphLayout.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -69,6 +69,14 @@ public Port getTo() {
6969
return to.getSlot();
7070
}
7171

72+
public Cluster getFromCluster() {
73+
return null;
74+
}
75+
76+
public Cluster getToCluster() {
77+
return null;
78+
}
79+
7280
public List<Point> getControlPoints() {
7381
return new ArrayList<Point>();
7482
}

0 commit comments

Comments
 (0)
Please sign in to comment.