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