955f4f51191d1eae16ebef98636f75d4a4a58a22
[mate.git] / Mate / BasicBlocks.hs
1 {-# LANGUAGE CPP #-}
2 {-# LANGUAGE OverloadedStrings #-}
3 #include "debug.h"
4 module Mate.BasicBlocks(
5   BlockID,
6   BasicBlock,
7   BBEnd,
8   MapBB,
9   Method,
10 #ifdef DBG_BB
11   printMapBB,
12 #endif
13   parseMethod,
14   testCFG -- added by hs to perform benches from outside
15   )where
16
17 import Data.Binary
18 import Data.Int
19 import Data.List
20 import qualified Data.Map as M
21 import qualified Data.ByteString.Lazy as B
22 import Data.Maybe
23
24 import JVM.ClassFile
25 import JVM.Converter
26 import JVM.Assembler
27
28 import Mate.Types
29 import Mate.Debug
30 import Mate.Utilities
31
32 #ifdef DEBUG
33 import Text.Printf
34 #endif
35
36 -- for immediate representation to determine BBs
37 type Offset = (Int, Maybe BBEnd) -- (offset in bytecode, offset to jump target)
38 type OffIns = (Offset, Instruction)
39
40
41 #ifdef DBG_BB
42 printMapBB :: MapBB -> IO ()
43 printMapBB hmap = do
44   putStr "BlockIDs: "
45   let keys = M.keys hmap
46   mapM_ (putStr . (flip (++)) ", " . show) keys
47   putStrLn "\n\nBasicBlocks:"
48   printMapBB' keys hmap
49     where
50       printMapBB' :: [BlockID] -> MapBB -> IO ()
51       printMapBB' [] _ = return ()
52       printMapBB' (i:is) hmap' = case M.lookup i hmap' of
53         Just bb -> do
54           putStrLn $ "Block " ++ (show i)
55           mapM_ putStrLn (map ((++) "\t" . show) $ code bb)
56           case successor bb of
57             Return -> putStrLn ""
58             FallThrough t1 -> putStrLn $ "Sucessor: " ++ (show t1) ++ "\n"
59             OneTarget t1 -> putStrLn $ "Sucessor: " ++ (show t1) ++ "\n"
60             TwoTarget t1 t2 -> putStrLn $ "Sucessor: " ++ (show t1) ++ ", " ++ (show t2) ++ "\n"
61           printMapBB' is hmap
62         Nothing -> error $ "BlockID " ++ show i ++ " not found."
63 #endif
64
65 #if 0
66 #ifdef DBG_BB
67 testInstance :: String -> B.ByteString -> MethodSignature -> IO ()
68 testInstance cf method sig = do
69   cls <- parseClassFile cf
70   hmap <- parseMethod cls method sig
71   printMapBB hmap
72 #endif
73
74 #ifdef DBG_BB
75 test_main :: IO ()
76 test_main = do
77   test_01
78   test_02
79   test_03
80   test_04
81
82 test_01, test_02, test_03, test_04 :: IO ()
83 test_01 = testInstance "./tests/Fib.class" "fib"
84 test_02 = testInstance "./tests/While.class" "f"
85 test_03 = testInstance "./tests/While.class" "g"
86 test_04 = testInstance "./tests/Fac.class" "fac"
87 #endif
88 #endif
89
90
91 parseMethod :: Class Direct -> B.ByteString -> MethodSignature -> IO RawMethod
92 parseMethod cls methodname sig = do
93   let method = fromMaybe
94                (error $ "method " ++ (show . toString) methodname ++ " not found")
95                (lookupMethodSig methodname sig cls)
96   let codeseg = fromMaybe
97                 (error $ "codeseg " ++ (show . toString) methodname ++ " not found")
98                 (attrByName method "Code")
99   let decoded = decodeMethod codeseg
100   let mapbb = testCFG decoded
101   let locals = fromIntegral (codeMaxLocals decoded)
102   let stacks = fromIntegral (codeStackSize decoded)
103   let codelen = fromIntegral (codeLength decoded)
104   let methoddirect = methodInfoToMethod (MethodInfo methodname "" sig) cls
105   let isStatic = methodIsStatic methoddirect
106   let nametype = methodNameType methoddirect
107   let argscount = methodGetArgsCount nametype + (if isStatic then 0 else 1)
108
109   let msig = methodSignature method
110   printfBb "BB: analysing \"%s\"\n" $ toString (methodname `B.append` ": " `B.append` encode msig)
111 #ifdef DBG_BB
112   printMapBB mapbb
113 #endif
114   -- small example how to get information about
115   -- exceptions of a method
116   -- TODO: remove ;-)
117   let (Just m) = lookupMethodSig methodname sig cls
118   case attrByName m "Code" of
119     Nothing ->
120       printfBb "exception: no handler for this method\n"
121     Just exceptionstream ->
122       printfBb "exception: \"%s\"\n" (show $ codeExceptions $ decodeMethod exceptionstream)
123   return $ RawMethod mapbb locals stacks argscount codelen
124
125
126 testCFG :: Code -> MapBB
127 testCFG = buildCFG . codeInstructions
128
129 buildCFG :: [Instruction] -> MapBB
130 buildCFG xs = buildCFG' M.empty xs' xs'
131   where
132   xs' :: [OffIns]
133   xs' = markBackwardTargets $ calculateInstructionOffset xs
134
135 -- get already calculated jmp-targets and mark the predecessor of the
136 -- target-instruction as "FallThrough". we just care about backwards
137 -- jumps here (forward jumps are handled in buildCFG')
138 markBackwardTargets :: [OffIns] -> [OffIns]
139 markBackwardTargets [] = []
140 markBackwardTargets (x:[]) = [x]
141 markBackwardTargets insns@(x@((x_off,x_bbend),x_ins):y@((y_off,_),_):xs) =
142   x_new:markBackwardTargets (y:xs)
143     where
144       x_new = if isTarget then checkX y_off else x
145       checkX w16 = case x_bbend of
146         Just _ -> x -- already marked, don't change
147         Nothing -> ((x_off, Just $ FallThrough w16), x_ins) -- mark previous insn
148
149       -- look through all remaining insns in the stream if there is a jmp to `y'
150       isTarget = case find cmpOffset insns of Just _ -> True; Nothing -> False
151       cmpOffset ((_,Just (OneTarget w16)),_) = w16 == y_off
152       cmpOffset ((_,Just (TwoTarget _ w16)),_) = w16 == y_off
153       cmpOffset _ = False
154
155
156 buildCFG' :: MapBB -> [OffIns] -> [OffIns] -> MapBB
157 buildCFG' hmap [] _ = hmap
158 buildCFG' hmap (((off, entry), _):xs) insns = buildCFG' (insertlist entryi hmap) xs insns
159   where
160     insertlist :: [BlockID] -> MapBB -> MapBB
161     insertlist [] hmap' = hmap'
162     insertlist (y:ys) hmap' = insertlist ys newhmap
163       where
164         newhmap = if M.member y hmap' then hmap' else M.insert y value hmap'
165         value = parseBasicBlock y insns
166     entryi :: [BlockID]
167     entryi = if off == 0 then 0:ys else ys -- also consider the entrypoint
168       where
169         ys = case entry of
170           Just (TwoTarget t1 t2) -> [t1, t2]
171           Just (OneTarget t) -> [t]
172           Just (FallThrough t) -> [t]
173           Just Return -> []
174           Nothing -> []
175
176
177 parseBasicBlock :: Int -> [OffIns] -> BasicBlock
178 parseBasicBlock i insns = BasicBlock insonly endblock
179   where
180     startlist = dropWhile (\((x,_),_) -> x < i) insns
181     (Just ((_, Just endblock),_), is) = takeWhilePlusOne validins startlist
182     insonly = snd $ unzip is
183
184     -- also take last (non-matched) element and return it
185     takeWhilePlusOne :: (a -> Bool) -> [a] -> (Maybe a,[a])
186     takeWhilePlusOne _ [] = (Nothing,[])
187     takeWhilePlusOne p (x:xs)
188       | p x       =  let (lastins, list) = takeWhilePlusOne p xs in (lastins, x:list)
189       | otherwise =  (Just x,[x])
190
191     validins :: ((Int, Maybe BBEnd), Instruction) -> Bool
192     validins ((_,x),_) = case x of Just _ -> False; Nothing -> True
193
194
195 calculateInstructionOffset :: [Instruction] -> [OffIns]
196 calculateInstructionOffset = cio' (0, Nothing)
197   where
198     newoffset :: Instruction -> Int -> Offset
199     newoffset x off = (off + fromIntegral (B.length $ encodeInstructions [x]), Nothing)
200
201     addW16Signed :: Int -> Word16 -> Int
202     addW16Signed i w16 = i + fromIntegral s16
203       where s16 = fromIntegral w16 :: Int16
204
205     cio' :: Offset -> [Instruction] -> [OffIns]
206     cio' _ [] = []
207     -- TODO(bernhard): add more instruction with offset (IF_ACMP, JSR, ...)
208     cio' (off,_) (x:xs) = case x of
209         IF _ w16 -> twotargets w16
210         IF_ICMP _ w16 -> twotargets w16
211         IF_ACMP _ w16 -> twotargets w16
212         IFNONNULL w16 -> twotargets w16
213         IFNULL w16 -> twotargets w16
214         GOTO w16 -> onetarget w16
215         IRETURN -> notarget
216         ARETURN -> notarget
217         RETURN -> notarget
218         _ -> ((off, Nothing), x):next
219       where
220         notarget = ((off, Just Return), x):next
221         onetarget w16 = ((off, Just $ OneTarget (off `addW16Signed` w16)), x):next
222         twotargets w16 = ((off, Just $ TwoTarget (off + 3) (off `addW16Signed` w16)), x):next
223         next = cio' (newoffset x off) xs