comparison graal/GraalCompiler/src/com/sun/c1x/ir/Switch.java @ 2712:a0dd2b907806

Removed implicit safepoints.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:09:37 +0200
parents 0c6564c254af
children a3cd5eb68837
comparison
equal deleted inserted replaced
2708:4272b7af2d17 2712:a0dd2b907806
65 * @param successors the list of successors of this switch 65 * @param successors the list of successors of this switch
66 * @param stateBefore the state before the switch 66 * @param stateBefore the state before the switch
67 * @param isSafepoint {@code true} if this switch is a safepoint 67 * @param isSafepoint {@code true} if this switch is a safepoint
68 * @param graph 68 * @param graph
69 */ 69 */
70 public Switch(Value value, List<BlockBegin> successors, FrameState stateBefore, boolean isSafepoint, int inputCount, int successorCount, Graph graph) { 70 public Switch(Value value, List<BlockBegin> successors, FrameState stateBefore, int inputCount, int successorCount, Graph graph) {
71 super(CiKind.Illegal, stateBefore, isSafepoint, successors, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph); 71 super(CiKind.Illegal, stateBefore, successors, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph);
72 setValue(value); 72 setValue(value);
73 } 73 }
74 74
75 /** 75 /**
76 * Gets the number of cases that this switch covers (excluding the default case). 76 * Gets the number of cases that this switch covers (excluding the default case).