classpool: refactor, refactor, ...
[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   clStaticMap  :: FieldMap,
53   clFieldMap :: FieldMap,
54   clInitDone :: Bool }
55
56 data MethodInfo = MethodInfo {
57   methName :: B.ByteString,
58   cName :: B.ByteString,
59   mSignature :: MethodSignature}
60
61 instance Eq MethodInfo where
62   (MethodInfo m_a c_a s_a) == (MethodInfo m_b c_b s_b) =
63     (m_a == m_b) && (c_a == c_b) && (s_a == s_b)
64
65 -- TODO(bernhard): not really efficient. also, outsource that to hs-java
66 instance Ord MethodSignature where
67   compare (MethodSignature args_a ret_a) (MethodSignature args_b ret_b)
68     | cmp_args /= EQ = cmp_args
69     | otherwise = (show ret_a) `compare` (show ret_b)
70     where
71     cmp_args = (show args_a) `compare` (show args_b)
72
73 instance Ord MethodInfo where
74   compare (MethodInfo m_a c_a s_a) (MethodInfo m_b c_b s_b)
75     | cmp_m /= EQ = cmp_m
76     | cmp_c /= EQ = cmp_c
77     | otherwise = s_a `compare` s_b
78     where
79     cmp_m = m_a `compare` m_b
80     cmp_c = c_a `compare` c_b
81
82 instance Show MethodInfo where
83   show (MethodInfo method c sig) =
84     (toString c) ++ "." ++ (toString method) ++ "." ++ (show sig)
85
86
87 toString :: B.ByteString -> String
88 toString bstr = decodeString $ map (chr . fromIntegral) $ B.unpack bstr
89
90
91 -- global map hax
92 foreign import ccall "get_trapmap"
93   get_trapmap :: IO (Ptr ())
94
95 foreign import ccall "set_trapmap"
96   set_trapmap :: Ptr () -> IO ()
97
98 foreign import ccall "get_methodmap"
99   get_methodmap :: IO (Ptr ())
100
101 foreign import ccall "set_methodmap"
102   set_methodmap :: Ptr () -> IO ()
103
104 foreign import ccall "get_classmap"
105   get_classmap :: IO (Ptr ())
106
107 foreign import ccall "set_classmap"
108   set_classmap :: Ptr () -> IO ()
109
110 -- TODO(bernhard): make some typeclass magic 'n stuff
111 mmap2ptr :: MMap -> IO (Ptr ())
112 mmap2ptr mmap = do
113   ptr_mmap <- newStablePtr mmap
114   return $ castStablePtrToPtr ptr_mmap
115
116 ptr2mmap :: Ptr () -> IO MMap
117 ptr2mmap vmap = deRefStablePtr $ ((castPtrToStablePtr vmap) :: StablePtr MMap)
118
119 tmap2ptr :: TMap -> IO (Ptr ())
120 tmap2ptr tmap = do
121   ptr_tmap <- newStablePtr tmap
122   return $ castStablePtrToPtr ptr_tmap
123
124 ptr2tmap :: Ptr () -> IO TMap
125 ptr2tmap vmap = deRefStablePtr $ ((castPtrToStablePtr vmap) :: StablePtr tmap)
126
127 classmap2ptr :: ClassMap -> IO (Ptr ())
128 classmap2ptr cmap = do
129   ptr_cmap <- newStablePtr cmap
130   return $ castStablePtrToPtr ptr_cmap
131
132 ptr2classmap :: Ptr () -> IO ClassMap
133 ptr2classmap vmap = deRefStablePtr $ ((castPtrToStablePtr vmap) :: StablePtr cmap)