field access: first primitive attempt
authorBernhard Urban <lewurm@gmail.com>
Tue, 24 Apr 2012 21:35:25 +0000 (23:35 +0200)
committerBernhard Urban <lewurm@gmail.com>
Tue, 24 Apr 2012 21:35:25 +0000 (23:35 +0200)
constantpool index is used as offset to access
fields of an object (which isn't correct)

TODO:
- proper table index setup
- allocate bytes according table size
- consider inheritance

Makefile
Mate/X86CodeGen.hs
tests/Instance1.java [new file with mode: 0644]

index bbfd256928eb30e87f552a8f30adcbe6a7c52a77..39300895ea245d08b303a8129d768184d5f3c2bf 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -48,6 +48,8 @@ test: mate $(CLASS_FILES)
        @printf "should be:  0x%08x\n" 0x1337
        ./$< tests/CallConv2 | grep mainresult
        @printf "should be:  0x%08x\n" 0x1337
+       ./$< tests/Instance1 | grep mainresult
+       @printf "should be:  0x%08x 0x%08x\n" 0x55 0x11
 
 %.class: %.java
        $(JAVAC) $<
index 572008473113eae4679d08a9ce1e5a0486ebfbcb..3f8e6f4f7ad963f1d1283d197856dd89cda857be 100644 (file)
@@ -6,6 +6,7 @@ import Data.Binary
 import Data.Int
 import Data.Maybe
 import qualified Data.Map as M
+import qualified Data.Set as S
 import qualified Data.ByteString.Lazy as B
 import Control.Monad
 
@@ -32,6 +33,9 @@ foreign import ccall "dynamic"
 foreign import ccall "getaddr"
   getaddr :: CUInt
 
+foreign import ccall "getMallocAddr"
+  getMallocAddr :: CUInt
+
 foreign import ccall "callertrap"
   callertrap :: IO ()
 
@@ -166,6 +170,7 @@ emitFromBB method cls hmap =  do
       return $ w32_ep + (fromIntegral offset)
 
     emit' :: J.Instruction -> CodeGen e s (Maybe (Word32, TrapInfo))
+    emit' (INVOKESPECIAL cpidx) = emit' (INVOKESTATIC cpidx)
     emit' (INVOKESTATIC cpidx) = do
         let l = buildMethodID cls cpidx
         calladdr <- getCurrentOffset
@@ -199,6 +204,18 @@ emitFromBB method cls hmap =  do
         let trapaddr = (fromIntegral getaddr :: Word32)
         call (trapaddr - w32_calladdr)
         add esp (4 :: Word32)
+    emit DUP = pop (Disp 0, esp)
+    emit (NEW objidx) = do
+        -- TODO(bernhard): determine right amount...
+        let amount = 0x20
+        push (amount :: Word32)
+        calladdr <- getCurrentOffset
+        let w32_calladdr = 5 + calladdr
+        let malloaddr = (fromIntegral getMallocAddr :: Word32)
+        call (malloaddr - w32_calladdr)
+        add esp (4 :: Word32)
+        push eax
+        -- TODO(bernhard): save reference somewhere for GC
     emit (BIPUSH val) = push ((fromIntegral val) :: Word32)
     emit (SIPUSH val) = push ((fromIntegral $ ((fromIntegral val) :: Int16)) :: Word32)
     emit (ICONST_0) = push (0 :: Word32)
@@ -206,16 +223,29 @@ emitFromBB method cls hmap =  do
     emit (ICONST_2) = push (2 :: Word32)
     emit (ICONST_4) = push (4 :: Word32)
     emit (ICONST_5) = push (5 :: Word32)
+    emit (ALOAD_ x) = emit (ILOAD_ x)
     emit (ILOAD_ x) = do
         push (Disp (cArgs_ x), ebp)
+    emit (ALOAD x) = emit (ILOAD x)
     emit (ILOAD x) = do
         push (Disp (cArgs x), ebp)
+    emit (ASTORE_ x) = emit (ISTORE_ x)
     emit (ISTORE_ x) = do
         pop eax
         mov (Disp (cArgs_ x), ebp) eax
+    emit (ASTORE x) = emit (ISTORE x)
     emit (ISTORE x) = do
         pop eax
         mov (Disp (cArgs x), ebp) eax
+
+    emit (GETFIELD x) = do
+        pop eax -- this pointer
+        push (Disp (fromIntegral x * 4), eax) -- get field
+    emit (PUTFIELD x) = do
+        pop ebx -- value to write
+        pop eax -- this pointer
+        mov (Disp (fromIntegral x * 4), eax) ebx -- set field
+
     emit IADD = do pop ebx; pop eax; add eax ebx; push eax
     emit ISUB = do pop ebx; pop eax; sub eax ebx; push eax
     emit IMUL = do pop ebx; pop eax; mul ebx; push eax
@@ -267,10 +297,14 @@ emitFromBB method cls hmap =  do
   cArgs_ x = cArgs $ case x of I0 -> 0; I1 -> 1; I2 -> 2; I3 -> 3
 
   thisMethodArgCnt :: Word32
-  thisMethodArgCnt = fromIntegral $ length args
+  thisMethodArgCnt = isNonStatic + (fromIntegral $ length args)
     where
     (Just m) = lookupMethod method cls
     (MethodSignature args _) = methodSignature m
+    isNonStatic = if S.member ACC_STATIC (methodAccessFlags m)
+        then 0
+        else 1 -- one argument for the this pointer
+
 
   -- sign extension from w8 to w32 (over s8)
   --   unfortunately, hs-java is using Word8 everywhere (while
diff --git a/tests/Instance1.java b/tests/Instance1.java
new file mode 100644 (file)
index 0000000..c9a90f9
--- /dev/null
@@ -0,0 +1,20 @@
+package tests;
+
+public class Instance1 {
+       public int x;
+
+       public Instance1() {
+               x = 0x55;
+       }
+
+       public static void main(String []args) {
+               Instance1 a = new Instance1();
+               id(a.x); // 0x55
+               a.x = 0x11;
+               id(a.x); // 0x11
+       }
+
+       public static int id(int a) {
+               return a;
+       }
+}