classpool: copy field members refs from superclass
[mate.git] / Mate / Types.hs
1 {-# LANGUAGE OverloadedStrings #-}
2 {-# LANGUAGE ForeignFunctionInterface #-}
3 module Mate.Types where
4
5 import Data.Char
6 import Data.Word
7 import Data.Int
8 import qualified Data.Map as M
9 import qualified Data.ByteString.Lazy as B
10 import Codec.Binary.UTF8.String hiding (encode,decode)
11
12 import Foreign.Ptr
13 import Foreign.StablePtr
14
15 import JVM.ClassFile
16 import JVM.Assembler
17
18
19 type BlockID = Int
20 -- Represents a CFG node
21 data BasicBlock = BasicBlock {
22                      code    :: [Instruction],
23                      successor :: BBEnd }
24
25 -- describes (leaving) edges of a CFG node
26 data BBEnd = Return | FallThrough BlockID | OneTarget BlockID | TwoTarget BlockID BlockID deriving Show
27
28 type MapBB = M.Map BlockID BasicBlock
29
30
31 -- Word32 = point of method call in generated code
32 -- MethodInfo = relevant information about callee
33 type TMap = M.Map Word32 TrapInfo
34
35 data TrapInfo = MI MethodInfo | SFI StaticFieldInfo
36
37 data StaticFieldInfo = StaticFieldInfo {
38   sfiClassName :: B.ByteString,
39   sfiFieldName :: B.ByteString }
40
41 -- B.ByteString = name of method
42 -- Word32 = entrypoint of method
43 type MMap = M.Map MethodInfo Word32
44
45 type ClassMap = M.Map B.ByteString ClassInfo
46
47 type FieldMap = M.Map B.ByteString Int32
48
49 data ClassInfo = ClassInfo {
50   clName :: B.ByteString,
51   clFile :: Class Resolved,
52   clFieldBase :: Ptr Int32,
53   clFieldMap :: FieldMap }
54
55 data MethodInfo = MethodInfo {
56   methName :: B.ByteString,
57   cName :: B.ByteString,
58   mSignature :: MethodSignature}
59
60 instance Eq MethodInfo where
61   (MethodInfo m_a c_a s_a) == (MethodInfo m_b c_b s_b) =
62     (m_a == m_b) && (c_a == c_b) && (s_a == s_b)
63
64 -- TODO(bernhard): not really efficient. also, outsource that to hs-java
65 instance Ord MethodSignature where
66   compare (MethodSignature args_a ret_a) (MethodSignature args_b ret_b)
67     | cmp_args /= EQ = cmp_args
68     | otherwise = (show ret_a) `compare` (show ret_b)
69     where
70     cmp_args = (show args_a) `compare` (show args_b)
71
72 instance Ord MethodInfo where
73   compare (MethodInfo m_a c_a s_a) (MethodInfo m_b c_b s_b)
74     | cmp_m /= EQ = cmp_m
75     | cmp_c /= EQ = cmp_c
76     | otherwise = s_a `compare` s_b
77     where
78     cmp_m = m_a `compare` m_b
79     cmp_c = c_a `compare` c_b
80
81 instance Show MethodInfo where
82   show (MethodInfo method c sig) =
83     (toString c) ++ "." ++ (toString method) ++ "." ++ (show sig)
84
85
86 toString :: B.ByteString -> String
87 toString bstr = decodeString $ map (chr . fromIntegral) $ B.unpack bstr
88
89
90 -- global map hax
91 foreign import ccall "get_trapmap"
92   get_trapmap :: IO (Ptr ())
93
94 foreign import ccall "set_trapmap"
95   set_trapmap :: Ptr () -> IO ()
96
97 foreign import ccall "get_methodmap"
98   get_methodmap :: IO (Ptr ())
99
100 foreign import ccall "set_methodmap"
101   set_methodmap :: Ptr () -> IO ()
102
103 foreign import ccall "get_classmap"
104   get_classmap :: IO (Ptr ())
105
106 foreign import ccall "set_classmap"
107   set_classmap :: Ptr () -> IO ()
108
109 -- TODO(bernhard): make some typeclass magic 'n stuff
110 mmap2ptr :: MMap -> IO (Ptr ())
111 mmap2ptr mmap = do
112   ptr_mmap <- newStablePtr mmap
113   return $ castStablePtrToPtr ptr_mmap
114
115 ptr2mmap :: Ptr () -> IO MMap
116 ptr2mmap vmap = deRefStablePtr $ ((castPtrToStablePtr vmap) :: StablePtr MMap)
117
118 tmap2ptr :: TMap -> IO (Ptr ())
119 tmap2ptr tmap = do
120   ptr_tmap <- newStablePtr tmap
121   return $ castStablePtrToPtr ptr_tmap
122
123 ptr2tmap :: Ptr () -> IO TMap
124 ptr2tmap vmap = deRefStablePtr $ ((castPtrToStablePtr vmap) :: StablePtr tmap)
125
126 classmap2ptr :: ClassMap -> IO (Ptr ())
127 classmap2ptr cmap = do
128   ptr_cmap <- newStablePtr cmap
129   return $ castStablePtrToPtr ptr_cmap
130
131 ptr2classmap :: Ptr () -> IO ClassMap
132 ptr2classmap vmap = deRefStablePtr $ ((castPtrToStablePtr vmap) :: StablePtr cmap)