# HG changeset patch # User Thomas Wuerthinger # Date 1305993371 -7200 # Node ID ca31e84ff154ed25820fe03734bddf48d1538a70 # Parent d3398b21faf9a5d1deeead903457141d2e70a47a Javadoc clean up. diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/BlockEnd.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/BlockEnd.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/BlockEnd.java Sat May 21 17:56:11 2011 +0200 @@ -91,7 +91,6 @@ * Constructs a new block end with the specified value type. * @param kind the type of the value produced by this instruction * @param stateAfter the frame state at the end of this block - * @param isSafepoint {@code true} if this instruction is a safepoint instruction * @param successors the list of successor blocks. If {@code null}, a new one will be created. */ public BlockEnd(CiKind kind, FrameState stateAfter, List blockSuccessors, int inputCount, int successorCount, Graph graph) { diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/Goto.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/Goto.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Goto.java Sat May 21 17:56:11 2011 +0200 @@ -39,7 +39,6 @@ * Constructs a new Goto instruction. * @param succ the successor block of the goto * @param stateAfter the frame state at the end of this block - * @param isSafepoint {@code true} if the goto should be considered a safepoint (e.g. backward branch) * @param graph */ public Goto(Instruction succ, FrameState stateAfter, Graph graph) { diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/If.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/If.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/If.java Sat May 21 17:56:11 2011 +0200 @@ -83,7 +83,6 @@ * @param trueSucc the block representing the true successor * @param falseSucc the block representing the false successor * @param stateAfter the state before the branch but after the input values have been popped - * @param isSafepoint {@code true} if this branch should be considered a safepoint * @param graph */ public If(Value x, Condition cond, Value y, Instruction trueSucc, Instruction falseSucc, FrameState stateAfter, Graph graph) { diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java Sat May 21 17:56:11 2011 +0200 @@ -47,7 +47,6 @@ * @param successors the list of successors * @param keys the list of keys, sorted * @param stateAfter the state after the switch - * @param isSafepoint {@code true} if this instruction is a safepoint * @param graph */ public LookupSwitch(Value value, List successors, int[] keys, FrameState stateAfter, Graph graph) { diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/Return.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/Return.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Return.java Sat May 21 17:56:11 2011 +0200 @@ -67,7 +67,6 @@ * Constructs a new Return instruction. * @param result the instruction producing the result for this return; {@code null} if this * is a void return - * @param isSafepoint {@code true} if this instruction is a safepoint instruction * @param graph */ public Return(Value result, Graph graph) { diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/Switch.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/Switch.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Switch.java Sat May 21 17:56:11 2011 +0200 @@ -64,7 +64,6 @@ * @param value the instruction that provides the value to be switched over * @param successors the list of successors of this switch * @param stateAfter the state after the switch - * @param isSafepoint {@code true} if this switch is a safepoint * @param graph */ public Switch(Value value, List successors, FrameState stateAfter, int inputCount, int successorCount, Graph graph) { diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/TableSwitch.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/TableSwitch.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/TableSwitch.java Sat May 21 17:56:11 2011 +0200 @@ -46,7 +46,6 @@ * @param successors the list of successors * @param lowKey the lowest integer key in the table * @param stateAfter the state after the switch - * @param isSafepoint {@code true} if this instruction is a safepoint * @param graph */ public TableSwitch(Value value, List successors, int lowKey, FrameState stateAfter, Graph graph) { diff -r d3398b21faf9 -r ca31e84ff154 graal/GraalCompiler/src/com/sun/c1x/ir/Throw.java --- a/graal/GraalCompiler/src/com/sun/c1x/ir/Throw.java Sat May 21 17:46:54 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Throw.java Sat May 21 17:56:11 2011 +0200 @@ -88,7 +88,6 @@ * Creates a new Throw instruction. * @param exception the instruction that generates the exception to throw * @param stateAfter the state before the exception is thrown but after the exception object has been popped - * @param isSafepoint {@code true} if this instruction is a safepoint instruction * @param graph */ public Throw(Value exception, Graph graph) {