codegen: {put,get}static for static field access
[mate.git] / Mate / Utilities.hs
1 {-# LANGUAGE OverloadedStrings #-}
2 module Mate.Utilities where
3
4 import Data.Word
5 import qualified Data.Map as M
6 import qualified Data.ByteString.Lazy as B
7
8 import JVM.ClassFile
9
10 import Mate.Types
11
12
13 -- TODO: actually this function already exists in hs-java-0.3!
14 lookupMethod :: B.ByteString -> Class Resolved -> Maybe (Method Resolved)
15 lookupMethod name cls = look (classMethods cls)
16   where
17     look [] = Nothing
18     look (f:fs)
19       | methodName f == name = Just f
20       | otherwise  = look fs
21
22 buildMethodID :: Class Resolved -> Word16 -> MethodInfo
23 buildMethodID cls idx = MethodInfo (ntName nt) rc (ntSignature nt)
24   where
25   (CMethod rc nt) = (constsPool cls) M.! idx
26
27 buildFieldID :: Class Resolved -> Word16 -> StaticFieldInfo
28 buildFieldID cls idx = StaticFieldInfo rc (ntName fnt)
29   where (CField rc fnt) = (constsPool cls) M.! idx
30
31 methodGetArgsCount :: Class Resolved -> Word16 -> Word32
32 methodGetArgsCount cls idx = fromIntegral $ length args
33   where
34   (CMethod _ nt) = (constsPool cls) M.! idx
35   (MethodSignature args _) = ntSignature nt
36
37 -- TODO(bernhard): Extend it to more than just int, and provide typeinformation
38 methodHaveReturnValue :: Class Resolved -> Word16 -> Bool
39 methodHaveReturnValue cls idx = case ret of
40     ReturnsVoid -> False;
41     (Returns IntType) -> True;
42     _ -> error "methodHaveReturnValue: todo"
43   where
44   (CMethod _ nt) = (constsPool cls) M.! idx
45   (MethodSignature _ ret) = ntSignature nt