diff graal/com.oracle.max.asm/src/com/oracle/max/asm/AbstractAssembler.java @ 4522:cf13124efdd9

Restructure phi functions in LIR; Re-enabled C1Visualizer output
author Christian Wimmer <Christian.Wimmer@Oracle.com>
date Wed, 08 Feb 2012 15:35:21 -0800
parents aaac4894175c
children efbb1e33e2f3
line wrap: on
line diff
--- a/graal/com.oracle.max.asm/src/com/oracle/max/asm/AbstractAssembler.java	Wed Feb 08 17:40:55 2012 +0100
+++ b/graal/com.oracle.max.asm/src/com/oracle/max/asm/AbstractAssembler.java	Wed Feb 08 15:35:21 2012 -0800
@@ -48,6 +48,10 @@
         l.patchInstructions(this);
     }
 
+    public abstract void align(int modulus);
+
+    public abstract void jmp(Label l);
+
     protected abstract void patchJumpTarget(int branch, int jumpTarget);
 
     protected final void emitByte(int x) {