Searched refs:succs (Results 1 - 6 of 6) sorted by relevance

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/
H A DExplodeLoopNode.java54 ArrayList<Node> succs = new ArrayList<>();
58 succs.add(n);
60 if (succs.size() == 1 && succs.get(0) != currentNext) {
61 currentNext = succs.get(0);
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DBlock.java56 Set<Block> succs = new HashSet<Block>();
58 succs.add(diagram.getBlock(b));
60 return succs;
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java94 public List<LayoutEdge> succs = new ArrayList<>(); field in class:HierarchicalLayoutManager.LayoutNode
211 for (LayoutEdge e : n.succs) {
218 e.from.succs.remove(e);
348 for (LayoutEdge e : n.succs) {
360 while (cur.vertex == null && !cur.succs.isEmpty()) {
369 if (cur.succs.isEmpty()) {
372 assert cur.succs.size() == 1;
373 curEdge = cur.succs.get(0);
383 if (cur.succs.isEmpty() && cur.vertex == null) {
473 edgeCount += n.succs
485 public HashSet<Segment> succs = new HashSet<>(); field in class:HierarchicalLayoutManager.Segment
502 public HashSet<Region> succs = new HashSet<>(4); field in class:HierarchicalLayoutManager.Region
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java43 public Set<Node> succs = new HashSet<>(); field in class:ServerCompilerScheduler.Node
94 if (proj != parent && proj.succs.size() == 1 && proj.succs.contains(root)) {
130 for (Node n : parent.succs) {
132 for (Node n2 : n.succs) {
268 for (Node s : n.succs) {
303 for (Node s : n.succs) {
323 for (Node s : cur.succs) {
619 fromNode.succs.add(toNode);
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DFigureWidget.java303 JMenu succs = new JMenu("Nodes Below");
304 succs.addMenuListener(figureWidget.new NeighborMenuListener(succs, f, true));
305 menu.add(succs);
/openjdk10/hotspot/src/share/vm/opto/
H A Dblock.cpp730 // Assert that proj0 and succs[0] match up. Similarly for proj1 and succs[1].
777 // TRUE branch target in succs[0] for both GOTOs and IFs.
820 // Flip targets in succs map
853 // Assert that proj0 and succs[0] match up. Similarly for proj1 and succs[1].
895 // Check for the next block being in succs[0]. We are going to branch
896 // to succs[0], so we want the fall-thru case as the next block in
897 // succs[1].
899 // Fall-thru case in succs[
[all...]

Completed in 55 milliseconds