changeset 2762:ca31e84ff154

Javadoc clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Sat, 21 May 2011 17:56:11 +0200
parents d3398b21faf9
children 5e8a69041cd7
files graal/GraalCompiler/src/com/sun/c1x/ir/BlockEnd.java graal/GraalCompiler/src/com/sun/c1x/ir/Goto.java graal/GraalCompiler/src/com/sun/c1x/ir/If.java graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java graal/GraalCompiler/src/com/sun/c1x/ir/Return.java graal/GraalCompiler/src/com/sun/c1x/ir/Switch.java graal/GraalCompiler/src/com/sun/c1x/ir/TableSwitch.java graal/GraalCompiler/src/com/sun/c1x/ir/Throw.java
diffstat 8 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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<? extends Instruction> blockSuccessors, int inputCount, int successorCount, Graph graph) {
--- 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) {
--- 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) {
--- 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<? extends Instruction> successors, int[] keys, FrameState stateAfter, Graph graph) {
--- 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) {
--- 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<? extends Instruction> successors, FrameState stateAfter, int inputCount, int successorCount, Graph graph) {
--- 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<? extends Instruction> successors, int lowKey, FrameState stateAfter, Graph graph) {
--- 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) {