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

Removed implicit safepoints.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:09:37 +0200
parents 7ed72769d51a
children 0fe79e7435c3
comparison
equal deleted inserted replaced
2708:4272b7af2d17 2712:a0dd2b907806
56 public Value setException(Value n) { 56 public Value setException(Value n) {
57 assert n == null || n.kind == CiKind.Object; 57 assert n == null || n.kind == CiKind.Object;
58 return (Value) inputs().set(super.inputCount() + INPUT_EXCEPTION, n); 58 return (Value) inputs().set(super.inputCount() + INPUT_EXCEPTION, n);
59 } 59 }
60 60
61 public Unwind(Value exception, boolean isSafepoint, Graph graph) { 61 public Unwind(Value exception, Graph graph) {
62 super(CiKind.Object, null, isSafepoint, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph); 62 super(CiKind.Object, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
63 setException(exception); 63 setException(exception);
64 } 64 }
65 65
66 @Override 66 @Override
67 public void accept(ValueVisitor v) { 67 public void accept(ValueVisitor v) {