aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Tree.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-03-05 18:14:28 +0100
committerMarvin Borner2022-03-05 18:14:28 +0100
commitcab564e400590cbd8a88e190fe381a74655005cf (patch)
treeded57f2ddc8d127d1e82ae999862ce169ef900ba /src/Fun/Tree.hs
parentc7d578ec4d9b87c36f504e5a0691007439d2a025 (diff)
Multiple file support for generating assembly
Diffstat (limited to 'src/Fun/Tree.hs')
-rw-r--r--src/Fun/Tree.hs16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/Fun/Tree.hs b/src/Fun/Tree.hs
index 26b415f..817a077 100644
--- a/src/Fun/Tree.hs
+++ b/src/Fun/Tree.hs
@@ -26,10 +26,12 @@ data Block = FunctionBlock
} -- | DataBlock .. TODO
deriving Show
+type FunctionSignature = [Type]
+
data FunctionDeclaration = FunctionDeclaration
{ dName :: String
, dVisibility :: Visibility
- , dTypes :: [Type]
+ , dTypes :: FunctionSignature
, dFlags :: [FunctionFlag]
}
deriving Show
@@ -55,3 +57,15 @@ data FunctionBody = FunctionBody
data FunctionBodyElement = Statement String | FunctionBodyIdentifier String | FunctionBodyParameter String | FunctionBodyString String | FunctionBodyNumber Integer
deriving Show
+
+----
+
+-- TODO: This can be optimized
+getFunction :: Tree -> String -> FunctionSignature -> Maybe Block
+getFunction (Tree ps) f sig =
+ let fromProgram (Program bs) =
+ filter (\b -> (dName . bDecl) b == f && (dTypes . bDecl) b == sig) bs
+ fromTree = filter (\b -> length b == 1) (map fromProgram ps)
+ in case fromTree of
+ [[f]] -> Just f
+ _ -> Nothing