diff graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/DebugInfo.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents a1db0ea58b53
children dce9cefed571
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/DebugInfo.java	Wed Jan 23 16:34:38 2013 +0100
+++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/DebugInfo.java	Wed Jan 23 16:34:57 2013 +0100
@@ -26,8 +26,8 @@
 import java.util.*;
 
 /**
- * Represents the debugging information for a particular place in the code,
- * which includes the code position, a reference map, and deoptimization information.
+ * Represents the debugging information for a particular place in the code, which includes the code
+ * position, a reference map, and deoptimization information.
  */
 public class DebugInfo implements Serializable {
 
@@ -39,8 +39,9 @@
 
     /**
      * Creates a new {@link DebugInfo} from the given values.
-     *
-     * @param codePos the {@linkplain BytecodePosition code position} or {@linkplain BytecodeFrame frame} info
+     * 
+     * @param codePos the {@linkplain BytecodePosition code position} or {@linkplain BytecodeFrame
+     *            frame} info
      * @param registerRefMap the register map
      * @param frameRefMap the reference map for {@code frame}, which may be {@code null}
      */
@@ -71,10 +72,9 @@
         return getFrameRefMap() != null && getFrameRefMap().size() > 0;
     }
 
-
     /**
      * Gets the deoptimization information for each inlined frame (if available).
-     *
+     * 
      * @return {@code null} if no frame de-opt info is {@linkplain #hasFrame() available}
      */
     public BytecodeFrame frame() {
@@ -90,25 +90,26 @@
     }
 
     /**
-     * @return The code position (including all inlined methods) of this debug info.
-     * If this is a {@link BytecodeFrame} instance, then it is also the deoptimization information for each inlined frame.
+     * @return The code position (including all inlined methods) of this debug info. If this is a
+     *         {@link BytecodeFrame} instance, then it is also the deoptimization information for
+     *         each inlined frame.
      */
     public BytecodePosition getBytecodePosition() {
         return bytecodePosition;
     }
 
     /**
-     * @return The reference map for the registers at this point. The reference map is <i>packed</i> in that
-     * for bit {@code k} in byte {@code n}, it refers to the register whose
-     * {@linkplain Register#number number} is {@code (k + n * 8)}.
+     * @return The reference map for the registers at this point. The reference map is <i>packed</i>
+     *         in that for bit {@code k} in byte {@code n}, it refers to the register whose
+     *         {@linkplain Register#number number} is {@code (k + n * 8)}.
      */
     public BitSet getRegisterRefMap() {
         return registerRefMap;
     }
 
     /**
-     * @return The reference map for the stack frame at this point. A set bit at {@code k} in the map
-     * represents stack slot number {@code k}.
+     * @return The reference map for the stack frame at this point. A set bit at {@code k} in the
+     *         map represents stack slot number {@code k}.
      */
     public BitSet getFrameRefMap() {
         return frameRefMap;