# HG changeset patch # User Doug Simon # Date 1358873200 -3600 # Node ID 6bf569d509890c359f7b529d6346fa2870f4a452 # Parent 9b2262afcb0dce60747148eab6226ac400759ef4 disabled auto-formatting of some code sections that use manual alignment diff -r 9b2262afcb0d -r 6bf569d50989 graal/com.oracle.graal.amd64/src/com/oracle/graal/amd64/AMD64.java --- a/graal/com.oracle.graal.amd64/src/com/oracle/graal/amd64/AMD64.java Tue Jan 22 16:54:50 2013 +0100 +++ b/graal/com.oracle.graal.amd64/src/com/oracle/graal/amd64/AMD64.java Tue Jan 22 17:46:40 2013 +0100 @@ -34,6 +34,8 @@ */ public class AMD64 extends Architecture { + // @formatter:off + // General purpose CPU registers public static final Register rax = new Register(0, 0, 8, "rax", CPU, RegisterFlag.Byte); public static final Register rcx = new Register(1, 1, 8, "rcx", CPU, RegisterFlag.Byte); @@ -114,4 +116,5 @@ r15.encoding + 1, 8); } + // @formatter:on } diff -r 9b2262afcb0d -r 6bf569d50989 graal/com.oracle.graal.bytecode/src/com/oracle/graal/bytecode/Bytecodes.java --- a/graal/com.oracle.graal.bytecode/src/com/oracle/graal/bytecode/Bytecodes.java Tue Jan 22 16:54:50 2013 +0100 +++ b/graal/com.oracle.graal.bytecode/src/com/oracle/graal/bytecode/Bytecodes.java Tue Jan 22 17:46:40 2013 +0100 @@ -40,6 +40,7 @@ * information in the second and third bytes. */ public class Bytecodes { + // @formatter:off public static final int NOP = 0; // 0x00 public static final int ACONST_NULL = 1; // 0x01 public static final int ICONST_M1 = 2; // 0x02 @@ -246,6 +247,7 @@ public static final int ILLEGAL = 255; public static final int END = 256; + // @formatter:on /** * The last opcode defined by the JVM specification. To iterate over all JVM bytecodes: @@ -356,6 +358,7 @@ private static final int[] compilationComplexityArray = new int[256]; // Checkstyle: stop + // @formatter:off static { def(NOP , "nop" , "b" , 0); def(ACONST_NULL , "aconst_null" , "b" , 0); @@ -561,6 +564,7 @@ def(JSR_W , "jsr_w" , "boooo", 0, STOP | BRANCH); def(BREAKPOINT , "breakpoint" , "b" , 0, TRAP); } + // @formatter:on // Checkstyle: resume /**