changeset 16635:d4fe35867b95

[SPARC] Reformatting some enum constants to match better to the SPARC 2011 Architecture manual
author Stefan Anzinger <stefan.anzinger@gmail.com>
date Mon, 21 Jul 2014 11:15:44 -0700
parents b0cf5908ae96
children cb416c08fe64
files graal/com.oracle.graal.asm.sparc/src/com/oracle/graal/asm/sparc/SPARCAssembler.java
diffstat 1 files changed, 25 insertions(+), 25 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.asm.sparc/src/com/oracle/graal/asm/sparc/SPARCAssembler.java	Mon Jul 21 10:45:43 2014 -0700
+++ b/graal/com.oracle.graal.asm.sparc/src/com/oracle/graal/asm/sparc/SPARCAssembler.java	Mon Jul 21 11:15:44 2014 -0700
@@ -1264,31 +1264,31 @@
         Prefetch(0b101101, "prefetch"),
         Prefetcha(0b111101, "prefetcha"),
 
-        Lduw(0b00000, "lduw"),
-        Ldub(0b00001, "ldub"),
-        Lduh(0b00010, "lduh"),
-        Stw(0b000100, "stw"),
-        Stb(0b000101, "stb"),
-        Sth(0b000110, "sth"),
-        Ldsw(0b001000, "ldsw"),
-        Ldsb(0b001001, "ldsb"),
-        Ldsh(0b001010, "ldsh"),
-        Ldx(0b001011, "ldx"),
-        Stx(0b001110, "stx"),
-
-        Ldf(0b100000, "ldf"),
-        Ldfsr(0x21, "ldfsr"),
-        Ldaf(0x22, "ldaf"),
-        Lddf(0b100011, "lddf"),
-        Stf(0b100100, "stf"),
-        Stfsr(0x25, "stfsr"),
-        Staf(0x26, "staf"),
-        Stdf(0b100111, "stdf"),
-
-        Fcmp(0b110101, "fcmp"),
-
-        Ldxa (0b01_1011, "ldxa"),
-        Lduwa(0b01_0000, "lduwa");
+        Lduw  (0b00_0000, "lduw"),
+        Ldub  (0b00_0001, "ldub"),
+        Lduh  (0b00_0010, "lduh"),
+        Stw   (0b00_0100, "stw"),
+        Stb   (0b00_0101, "stb"),
+        Sth   (0b00_0110, "sth"),
+        Ldsw  (0b00_1000, "ldsw"),
+        Ldsb  (0b00_1001, "ldsb"),
+        Ldsh  (0b00_1010, "ldsh"),
+        Ldx   (0b00_1011, "ldx"),
+        Stx   (0b00_1110, "stx"),
+
+        Ldf   (0b10_0000, "ldf"),
+        Ldfsr (0b10_0001, "ldfsr"),
+        Ldaf  (0b10_0010, "ldaf"),
+        Lddf  (0b10_0011, "lddf"),
+        Stf   (0b10_0100, "stf"),
+        Stfsr (0b10_0101, "stfsr"),
+        Staf  (0x10_0110, "staf"),
+        Stdf  (0b10_0111, "stdf"),
+
+        Fcmp  (0b11_0101, "fcmp"),
+
+        Ldxa  (0b01_1011, "ldxa"),
+        Lduwa (0b01_0000, "lduwa");
 
         // @formatter:on