author | unc0rr |
Thu, 29 Mar 2012 17:27:01 +0400 | |
changeset 6836 | 42382794b73f |
parent 6835 | 00b2fd32305d |
child 6837 | a137733c5776 |
permissions | -rw-r--r-- |
6273 | 1 |
module Pas2C where |
2 |
||
3 |
import Text.PrettyPrint.HughesPJ |
|
4 |
import Data.Maybe |
|
6277 | 5 |
import Data.Char |
6511 | 6 |
import Text.Parsec.Prim hiding (State) |
6417
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
7 |
import Control.Monad.State |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
8 |
import System.IO |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
9 |
import System.Directory |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
10 |
import Control.Monad.IO.Class |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
11 |
import PascalPreprocessor |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
12 |
import Control.Exception |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
13 |
import System.IO.Error |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
14 |
import qualified Data.Map as Map |
6512 | 15 |
import Data.List (find) |
6273 | 16 |
|
6467 | 17 |
import PascalParser |
18 |
import PascalUnitSyntaxTree |
|
6273 | 19 |
|
6618 | 20 |
|
6663 | 21 |
data InsertOption = |
22 |
IOInsert |
|
23 |
| IOLookup |
|
24 |
| IODeferred |
|
25 |
||
6618 | 26 |
type Record = (String, (String, BaseType)) |
6516 | 27 |
data RenderState = RenderState |
28 |
{ |
|
6618 | 29 |
currentScope :: [Record], |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
30 |
lastIdentifier :: String, |
6618 | 31 |
lastType :: BaseType, |
32 |
namespaces :: Map.Map String [Record] |
|
6516 | 33 |
} |
6836 | 34 |
|
35 |
docToLower :: Doc -> Doc |
|
36 |
docToLower = text . map toLower . render |
|
6512 | 37 |
|
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
38 |
pas2C :: String -> IO () |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
39 |
pas2C fn = do |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
40 |
setCurrentDirectory "../hedgewars/" |
6455 | 41 |
s <- flip execStateT initState $ f fn |
6514 | 42 |
renderCFiles s |
6417
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
43 |
where |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
44 |
printLn = liftIO . hPutStrLn stderr |
6455 | 45 |
print = liftIO . hPutStr stderr |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
46 |
initState = Map.empty |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
47 |
f :: String -> StateT (Map.Map String PascalUnit) IO () |
6417
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
48 |
f fileName = do |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
49 |
processed <- gets $ Map.member fileName |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
50 |
unless processed $ do |
6455 | 51 |
print ("Preprocessing '" ++ fileName ++ ".pas'... ") |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
52 |
fc' <- liftIO |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
53 |
$ tryJust (guard . isDoesNotExistError) |
6455 | 54 |
$ preprocess (fileName ++ ".pas") |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
55 |
case fc' of |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
56 |
(Left a) -> do |
6512 | 57 |
modify (Map.insert fileName (System [])) |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
58 |
printLn "doesn't exist" |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
59 |
(Right fc) -> do |
6455 | 60 |
print "ok, parsing... " |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
61 |
let ptree = parse pascalUnit fileName fc |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
62 |
case ptree of |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
63 |
(Left a) -> do |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
64 |
liftIO $ writeFile "preprocess.out" fc |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
65 |
printLn $ show a ++ "\nsee preprocess.out for preprocessed source" |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
66 |
fail "stop" |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
67 |
(Right a) -> do |
6455 | 68 |
printLn "ok" |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
69 |
modify (Map.insert fileName a) |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
70 |
mapM_ f (usesFiles a) |
6455 | 71 |
|
6514 | 72 |
|
73 |
renderCFiles :: Map.Map String PascalUnit -> IO () |
|
74 |
renderCFiles units = do |
|
75 |
let u = Map.toList units |
|
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
76 |
let nss = Map.map (toNamespace nss) units |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
77 |
mapM_ (toCFiles nss) u |
6516 | 78 |
where |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
79 |
toNamespace :: Map.Map String [Record] -> PascalUnit -> [Record] |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
80 |
toNamespace nss (System tvs) = |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
81 |
currentScope $ execState (mapM_ (tvar2C True) tvs) (RenderState [] "" BTUnknown nss) |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
82 |
toNamespace _ (Program {}) = [] |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
83 |
toNamespace nss (Unit _ interface _ _ _) = |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
84 |
currentScope $ execState (interface2C interface) (RenderState [] "" BTUnknown nss) |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
85 |
|
6827 | 86 |
|
87 |
withState' :: (a -> a) -> State a b -> State a b |
|
88 |
withState' f s = do |
|
89 |
st <- gets id |
|
90 |
return $ evalState s (f st) |
|
91 |
||
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
92 |
withLastIdNamespace :: State RenderState Doc -> State RenderState Doc |
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
93 |
withLastIdNamespace f = do |
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
94 |
li <- gets lastIdentifier |
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
95 |
nss <- gets namespaces |
6827 | 96 |
withState' (\st -> st{currentScope = fromMaybe [] $ Map.lookup li (namespaces st)}) f |
97 |
||
98 |
withRecordNamespace :: [(String, BaseType)] -> State RenderState Doc -> State RenderState Doc |
|
99 |
withRecordNamespace recs = withState' f |
|
100 |
where |
|
101 |
f st = st{currentScope = records ++ currentScope st} |
|
102 |
records = map (\(a, b) -> (map toLower a, (a, b))) recs |
|
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
103 |
|
6618 | 104 |
toCFiles :: Map.Map String [Record] -> (String, PascalUnit) -> IO () |
6516 | 105 |
toCFiles _ (_, System _) = return () |
106 |
toCFiles ns p@(fn, pu) = do |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
107 |
hPutStrLn stderr $ "Rendering '" ++ fn ++ "'..." |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
108 |
toCFiles' p |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
109 |
where |
6618 | 110 |
toCFiles' (fn, p@(Program {})) = writeFile (fn ++ ".c") $ (render2C initialState . pascal2C) p |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
111 |
toCFiles' (fn, (Unit _ interface implementation _ _)) = do |
6618 | 112 |
let (a, s) = runState (interface2C interface) initialState |
6516 | 113 |
writeFile (fn ++ ".h") $ "#pragma once\n" ++ (render a) |
114 |
writeFile (fn ++ ".c") $ (render2C s . implementation2C) implementation |
|
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
115 |
initialState = RenderState [] "" BTUnknown ns |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
116 |
|
6516 | 117 |
render2C :: RenderState -> State RenderState Doc -> String |
118 |
render2C a = render . flip evalState a |
|
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
119 |
|
6467 | 120 |
usesFiles :: PascalUnit -> [String] |
6512 | 121 |
usesFiles (Program _ (Implementation uses _) _) = "pas2cSystem" : uses2List uses |
122 |
usesFiles (Unit _ (Interface uses1 _) (Implementation uses2 _) _ _) = "pas2cSystem" : uses2List uses1 ++ uses2List uses2 |
|
123 |
usesFiles (System {}) = [] |
|
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
124 |
|
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
125 |
|
6512 | 126 |
pascal2C :: PascalUnit -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
127 |
pascal2C (Unit _ interface implementation init fin) = |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
128 |
liftM2 ($+$) (interface2C interface) (implementation2C implementation) |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
129 |
|
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
130 |
pascal2C (Program _ implementation mainFunction) = do |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
131 |
impl <- implementation2C implementation |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
132 |
main <- tvar2C True |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
133 |
(FunctionDeclaration (Identifier "main" BTInt) (SimpleType $ Identifier "int" BTInt) [] (Just (TypesAndVars [], mainFunction))) |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
134 |
return $ impl $+$ main |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
135 |
|
6467 | 136 |
|
137 |
||
6512 | 138 |
interface2C :: Interface -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
139 |
interface2C (Interface uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 140 |
|
6512 | 141 |
implementation2C :: Implementation -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
142 |
implementation2C (Implementation uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 143 |
|
144 |
||
6512 | 145 |
typesAndVars2C :: Bool -> TypesAndVars -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
146 |
typesAndVars2C b (TypesAndVars ts) = liftM vcat $ mapM (tvar2C b) ts |
6273 | 147 |
|
6816 | 148 |
setBaseType :: BaseType -> Identifier -> Identifier |
149 |
setBaseType bt (Identifier i _) = Identifier i bt |
|
150 |
||
6512 | 151 |
uses2C :: Uses -> State RenderState Doc |
6516 | 152 |
uses2C uses@(Uses unitIds) = do |
153 |
mapM_ injectNamespace (Identifier "pas2cSystem" undefined : unitIds) |
|
6816 | 154 |
mapM_ (id2C IOInsert . setBaseType BTUnit) unitIds |
6516 | 155 |
return $ vcat . map (\i -> text $ "#include \"" ++ i ++ ".h\"") $ uses2List uses |
156 |
where |
|
6517 | 157 |
injectNamespace (Identifier i _) = do |
6516 | 158 |
getNS <- gets (flip Map.lookup . namespaces) |
159 |
let f = flip (foldl (\a b -> b:a)) (fromMaybe [] (getNS i)) |
|
160 |
modify (\s -> s{currentScope = f $ currentScope s}) |
|
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
161 |
|
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
162 |
uses2List :: Uses -> [String] |
6489 | 163 |
uses2List (Uses ids) = map (\(Identifier i _) -> i) ids |
6273 | 164 |
|
6509 | 165 |
|
6663 | 166 |
id2C :: InsertOption -> Identifier -> State RenderState Doc |
167 |
id2C IOInsert (Identifier i t) = do |
|
6618 | 168 |
modify (\s -> s{currentScope = (map toLower i, (i, t)) : currentScope s}) |
6512 | 169 |
return $ text i |
6663 | 170 |
id2C IOLookup (Identifier i t) = do |
6512 | 171 |
let i' = map toLower i |
6516 | 172 |
v <- gets $ find (\(a, _) -> a == i') . currentScope |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
173 |
ns <- gets currentScope |
6512 | 174 |
if isNothing v then |
6663 | 175 |
error $ "Not defined: '" ++ i' ++ "'\n" -- ++ show ns |
6512 | 176 |
else |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
177 |
let vv = snd $ fromJust v in modify (\s -> s{lastType = snd vv, lastIdentifier = fst vv}) >> (return . text . fst $ vv) |
6663 | 178 |
id2C IODeferred (Identifier i t) = do |
179 |
let i' = map toLower i |
|
180 |
v <- gets $ find (\(a, _) -> a == i') . currentScope |
|
181 |
if (isNothing v) then |
|
182 |
do |
|
183 |
modify (\s -> s{currentScope = (i', (i, t)) : currentScope s}) |
|
184 |
return $ text i |
|
185 |
else |
|
186 |
return . text . fst . snd . fromJust $ v |
|
6512 | 187 |
|
6653 | 188 |
id2CTyped :: TypeDecl -> Identifier -> State RenderState Doc |
189 |
id2CTyped t (Identifier i _) = do |
|
190 |
tb <- resolveType t |
|
6835 | 191 |
ns <- gets currentScope |
6663 | 192 |
case tb of |
193 |
BTUnknown -> do |
|
194 |
ns <- gets currentScope |
|
6835 | 195 |
error $ "id2CTyped: type BTUnknown for " ++ show i ++ "\ntype: " ++ show t ++ "\nnamespace: " ++ show (take 100 ns) |
6663 | 196 |
_ -> id2C IOInsert (Identifier i tb) |
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
197 |
|
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
198 |
|
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
199 |
resolveType :: TypeDecl -> State RenderState BaseType |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
200 |
resolveType st@(SimpleType (Identifier i _)) = do |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
201 |
let i' = map toLower i |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
202 |
v <- gets $ find (\(a, _) -> a == i') . currentScope |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
203 |
if isJust v then return . snd . snd $ fromJust v else return $ f i' |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
204 |
where |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
205 |
f "integer" = BTInt |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
206 |
f "pointer" = BTPointerTo BTVoid |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
207 |
f "boolean" = BTBool |
6649
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
208 |
f "float" = BTFloat |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
209 |
f "char" = BTChar |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
210 |
f "string" = BTString |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
211 |
f _ = error $ "Unknown system type: " ++ show st |
6827 | 212 |
resolveType (PointerTo (SimpleType (Identifier i _))) = return . BTPointerTo $ BTUnresolved (map toLower i) |
213 |
resolveType (PointerTo t) = liftM BTPointerTo $ resolveType t |
|
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
214 |
resolveType (RecordType tv mtvs) = do |
6827 | 215 |
tvs <- mapM f (concat $ tv : fromMaybe [] mtvs) |
216 |
return . BTRecord . concat $ tvs |
|
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
217 |
where |
6827 | 218 |
f :: TypeVarDeclaration -> State RenderState [(String, BaseType)] |
219 |
f (VarDeclaration _ (ids, td) _) = mapM (\(Identifier i _) -> liftM ((,) i) $ resolveType td) ids |
|
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
220 |
resolveType (ArrayDecl (Just _) t) = liftM (BTArray BTInt) $ resolveType t |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
221 |
resolveType (ArrayDecl Nothing t) = liftM (BTArray BTInt) $ resolveType t |
6826 | 222 |
resolveType (FunctionType t _) = liftM BTFunction $ resolveType t |
6835 | 223 |
resolveType (DeriveType (InitHexNumber _)) = return BTInt |
224 |
resolveType (DeriveType (InitNumber _)) = return BTInt |
|
225 |
resolveType (DeriveType (InitFloat _)) = return BTFloat |
|
226 |
resolveType (DeriveType (InitString _)) = return BTString |
|
227 |
resolveType (DeriveType (InitBinOp {})) = return BTInt |
|
228 |
resolveType (DeriveType (InitPrefixOp {})) = return BTInt |
|
229 |
resolveType (DeriveType (BuiltInFunction{})) = return BTInt |
|
230 |
resolveType (DeriveType (InitReference (Identifier{}))) = return BTBool -- TODO: derive from actual type |
|
231 |
resolveType (DeriveType _) = return BTUnknown |
|
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
232 |
resolveType (String _) = return BTString |
6826 | 233 |
resolveType VoidType = return BTVoid |
6653 | 234 |
resolveType (Sequence ids) = return $ BTEnum $ map (\(Identifier i _) -> map toLower i) ids |
6835 | 235 |
resolveType (RangeType _) = return $ BTUnknown |
6653 | 236 |
resolveType (Set t) = liftM BTSet $ resolveType t |
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
237 |
--resolveType UnknownType = return BTUnknown |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
238 |
resolveType a = error $ "resolveType: " ++ show a |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
239 |
|
6834 | 240 |
|
241 |
fromPointer :: BaseType -> State RenderState BaseType |
|
242 |
fromPointer (BTPointerTo t) = f t |
|
243 |
where |
|
244 |
f (BTUnresolved s) = do |
|
245 |
v <- gets $ find (\(a, _) -> a == s) . currentScope |
|
246 |
if isJust v then |
|
247 |
f . snd . snd . fromJust $ v |
|
248 |
else |
|
249 |
error $ "Unknown type " ++ show t |
|
250 |
f t = return t |
|
251 |
fromPointer t = error $ "Dereferencing from non-pointer type " ++ show t |
|
252 |
||
253 |
||
6512 | 254 |
tvar2C :: Bool -> TypeVarDeclaration -> State RenderState Doc |
6509 | 255 |
tvar2C _ (FunctionDeclaration name returnType params Nothing) = do |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
256 |
t <- type2C returnType |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
257 |
p <- liftM hcat $ mapM (tvar2C False) params |
6663 | 258 |
n <- id2C IOInsert name |
6509 | 259 |
return $ t <+> n <> parens p <> text ";" |
6517 | 260 |
|
6509 | 261 |
tvar2C True (FunctionDeclaration name returnType params (Just (tvars, phrase))) = do |
6836 | 262 |
t <- type2C returnType |
6827 | 263 |
(p, ph) <- withState' id $ do |
264 |
p <- liftM hcat $ mapM (tvar2C False) params |
|
265 |
ph <- liftM2 ($+$) (typesAndVars2C False tvars) (phrase2C' phrase) |
|
266 |
return (p, ph) |
|
6663 | 267 |
n <- id2C IOInsert name |
6836 | 268 |
let res = docToLower $ n <> text "_result" |
269 |
let phrasesBlock = case returnType of |
|
270 |
VoidType -> ph |
|
271 |
_ -> t <+> res <> semi $+$ ph $+$ text "return" <+> res <> semi |
|
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
272 |
return $ |
6509 | 273 |
t <+> n <> parens p |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
274 |
$+$ |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
275 |
text "{" |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
276 |
$+$ |
6836 | 277 |
nest 4 phrasesBlock |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
278 |
$+$ |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
279 |
text "}" |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
280 |
where |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
281 |
phrase2C' (Phrases p) = liftM vcat $ mapM phrase2C p |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
282 |
phrase2C' p = phrase2C p |
6517 | 283 |
|
6489 | 284 |
tvar2C False (FunctionDeclaration (Identifier name _) _ _ _) = error $ "nested functions not allowed: " ++ name |
6618 | 285 |
|
286 |
tvar2C _ td@(TypeDeclaration i' t) = do |
|
6653 | 287 |
i <- id2CTyped t i' |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
288 |
tp <- type2C t |
6836 | 289 |
return $ text "type" <+> i <+> tp <> semi |
6517 | 290 |
|
6509 | 291 |
tvar2C _ (VarDeclaration isConst (ids, t) mInitExpr) = do |
292 |
t' <- type2C t |
|
6653 | 293 |
i <- mapM (id2CTyped t) ids |
6509 | 294 |
ie <- initExpr mInitExpr |
295 |
return $ if isConst then text "const" else empty |
|
296 |
<+> t' |
|
297 |
<+> (hsep . punctuate (char ',') $ i) |
|
298 |
<+> ie |
|
299 |
<> text ";" |
|
6355 | 300 |
where |
6509 | 301 |
initExpr Nothing = return $ empty |
302 |
initExpr (Just e) = liftM (text "=" <+>) (initExpr2C e) |
|
6517 | 303 |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
304 |
tvar2C f (OperatorDeclaration op _ ret params body) = |
6618 | 305 |
tvar2C f (FunctionDeclaration (Identifier ("<op " ++ op ++ ">") BTUnknown) ret params body) |
6355 | 306 |
|
6517 | 307 |
|
6512 | 308 |
initExpr2C :: InitExpression -> State RenderState Doc |
6509 | 309 |
initExpr2C (InitBinOp op expr1 expr2) = do |
310 |
e1 <- initExpr2C expr1 |
|
311 |
e2 <- initExpr2C expr2 |
|
312 |
o <- op2C op |
|
313 |
return $ parens $ e1 <+> o <+> e2 |
|
314 |
initExpr2C (InitNumber s) = return $ text s |
|
315 |
initExpr2C (InitFloat s) = return $ text s |
|
316 |
initExpr2C (InitHexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
317 |
initExpr2C (InitString s) = return $ doubleQuotes $ text s |
|
6663 | 318 |
initExpr2C (InitReference i) = id2C IOLookup i |
6509 | 319 |
initExpr2C _ = return $ text "<<expression>>" |
6391 | 320 |
|
321 |
||
6512 | 322 |
type2C :: TypeDecl -> State RenderState Doc |
6836 | 323 |
type2C VoidType = return $ text "void" |
6509 | 324 |
type2C (String l) = return $ text $ "string" ++ show l |
6663 | 325 |
type2C (SimpleType i) = id2C IOLookup i |
326 |
type2C (PointerTo (SimpleType i)) = liftM (<> text "*") $ id2C IODeferred i |
|
6509 | 327 |
type2C (PointerTo t) = liftM (<> text "*") $ type2C t |
328 |
type2C (RecordType tvs union) = do |
|
329 |
t <- mapM (tvar2C False) tvs |
|
330 |
return $ text "{" $+$ (nest 4 . vcat $ t) $+$ text "}" |
|
331 |
type2C (RangeType r) = return $ text "<<range type>>" |
|
6520 | 332 |
type2C (Sequence ids) = do |
6663 | 333 |
mapM_ (id2C IOInsert) ids |
6520 | 334 |
return $ text "<<sequence type>>" |
6509 | 335 |
type2C (ArrayDecl r t) = return $ text "<<array type>>" |
336 |
type2C (Set t) = return $ text "<<set>>" |
|
337 |
type2C (FunctionType returnType params) = return $ text "<<function>>" |
|
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
338 |
type2C (DeriveType _) = return $ text "<<type derived from constant literal>>" |
6273 | 339 |
|
6512 | 340 |
phrase2C :: Phrase -> State RenderState Doc |
6509 | 341 |
phrase2C (Phrases p) = do |
342 |
ps <- mapM phrase2C p |
|
343 |
return $ text "{" $+$ (nest 4 . vcat $ ps) $+$ text "}" |
|
344 |
phrase2C (ProcCall f@(FunCall {}) []) = liftM (<> semi) $ ref2C f |
|
345 |
phrase2C (ProcCall ref params) = do |
|
346 |
r <- ref2C ref |
|
347 |
ps <- mapM expr2C params |
|
348 |
return $ r <> parens (hsep . punctuate (char ',') $ ps) <> semi |
|
349 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = do |
|
350 |
e <- expr2C expr |
|
351 |
p1 <- (phrase2C . wrapPhrase) phrase1 |
|
352 |
el <- elsePart |
|
353 |
return $ |
|
354 |
text "if" <> parens e $+$ p1 $+$ el |
|
6273 | 355 |
where |
6509 | 356 |
elsePart | isNothing mphrase2 = return $ empty |
357 |
| otherwise = liftM (text "else" $$) $ (phrase2C . wrapPhrase) (fromJust mphrase2) |
|
358 |
phrase2C (Assignment ref expr) = do |
|
359 |
r <- ref2C ref |
|
360 |
e <- expr2C expr |
|
361 |
return $ |
|
362 |
r <> text " = " <> e <> semi |
|
363 |
phrase2C (WhileCycle expr phrase) = do |
|
364 |
e <- expr2C expr |
|
365 |
p <- phrase2C $ wrapPhrase phrase |
|
366 |
return $ text "while" <> parens e $$ p |
|
367 |
phrase2C (SwitchCase expr cases mphrase) = do |
|
368 |
e <- expr2C expr |
|
369 |
cs <- mapM case2C cases |
|
370 |
return $ |
|
371 |
text "switch" <> parens e <> text "of" $+$ (nest 4 . vcat) cs |
|
6273 | 372 |
where |
6512 | 373 |
case2C :: ([InitExpression], Phrase) -> State RenderState Doc |
6509 | 374 |
case2C (e, p) = do |
375 |
ie <- mapM initExpr2C e |
|
376 |
ph <- phrase2C p |
|
377 |
return $ |
|
378 |
text "case" <+> parens (hsep . punctuate (char ',') $ ie) <> char ':' <> nest 4 (ph $+$ text "break;") |
|
379 |
phrase2C (WithBlock ref p) = do |
|
380 |
r <- ref2C ref |
|
381 |
ph <- phrase2C $ wrapPhrase p |
|
382 |
return $ text "namespace" <> parens r $$ ph |
|
383 |
phrase2C (ForCycle i' e1' e2' p) = do |
|
6663 | 384 |
i <- id2C IOLookup i' |
6509 | 385 |
e1 <- expr2C e1' |
386 |
e2 <- expr2C e2' |
|
387 |
ph <- phrase2C (wrapPhrase p) |
|
388 |
return $ |
|
389 |
text "for" <> (parens . hsep . punctuate (char ';') $ [i <+> text "=" <+> e1, i <+> text "<=" <+> e2, text "++" <> i]) |
|
390 |
$$ |
|
391 |
ph |
|
392 |
phrase2C (RepeatCycle e' p') = do |
|
393 |
e <- expr2C e' |
|
394 |
p <- phrase2C (Phrases p') |
|
395 |
return $ text "do" <+> p <+> text "while" <> parens (text "!" <> parens e) |
|
396 |
phrase2C NOP = return $ text ";" |
|
6355 | 397 |
|
6273 | 398 |
|
6307 | 399 |
wrapPhrase p@(Phrases _) = p |
400 |
wrapPhrase p = Phrases [p] |
|
6273 | 401 |
|
6355 | 402 |
|
6512 | 403 |
expr2C :: Expression -> State RenderState Doc |
6509 | 404 |
expr2C (Expression s) = return $ text s |
405 |
expr2C (BinOp op expr1 expr2) = do |
|
406 |
e1 <- expr2C expr1 |
|
407 |
e2 <- expr2C expr2 |
|
408 |
o <- op2C op |
|
409 |
return $ parens $ e1 <+> o <+> e2 |
|
410 |
expr2C (NumberLiteral s) = return $ text s |
|
411 |
expr2C (FloatLiteral s) = return $ text s |
|
412 |
expr2C (HexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
413 |
expr2C (StringLiteral s) = return $ doubleQuotes $ text s |
|
6277 | 414 |
expr2C (Reference ref) = ref2C ref |
6509 | 415 |
expr2C (PrefixOp op expr) = liftM2 (<+>) (op2C op) (expr2C expr) |
416 |
expr2C Null = return $ text "NULL" |
|
417 |
expr2C (BuiltInFunCall params ref) = do |
|
418 |
r <- ref2C ref |
|
419 |
ps <- mapM expr2C params |
|
420 |
return $ |
|
421 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
422 |
expr2C _ = return $ text "<<expression>>" |
|
6273 | 423 |
|
6307 | 424 |
|
6512 | 425 |
ref2C :: Reference -> State RenderState Doc |
6827 | 426 |
ref2C ae@(ArrayElement exprs ref) = do |
6835 | 427 |
es <- mapM expr2C exprs |
6509 | 428 |
r <- ref2C ref |
6827 | 429 |
t <- gets lastType |
430 |
case t of |
|
431 |
(BTArray _ t') -> modify (\st -> st{lastType = t'}) |
|
6836 | 432 |
(BTString) -> modify (\st -> st{lastType = BTChar}) |
6827 | 433 |
a -> error $ show a ++ "\n" ++ show ae |
6509 | 434 |
return $ r <> (brackets . hcat) (punctuate comma es) |
6663 | 435 |
ref2C (SimpleReference name) = id2C IOLookup name |
6509 | 436 |
ref2C (RecordField (Dereference ref1) ref2) = do |
437 |
r1 <- ref2C ref1 |
|
438 |
r2 <- ref2C ref2 |
|
439 |
return $ |
|
440 |
r1 <> text "->" <> r2 |
|
6618 | 441 |
ref2C rf@(RecordField ref1 ref2) = do |
442 |
r1 <- ref2C ref1 |
|
443 |
t <- gets lastType |
|
6835 | 444 |
ns <- gets currentScope |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
445 |
r2 <- case t of |
6827 | 446 |
BTRecord rs -> withRecordNamespace rs $ ref2C ref2 |
6826 | 447 |
BTUnit -> withLastIdNamespace $ ref2C ref2 |
6835 | 448 |
a -> error $ "dereferencing from " ++ show a ++ "\n" ++ show rf ++ "\n" ++ show (take 100 ns) |
6509 | 449 |
return $ |
450 |
r1 <> text "." <> r2 |
|
6827 | 451 |
ref2C (Dereference ref) = do |
452 |
r <- ref2C ref |
|
6834 | 453 |
t <- fromPointer =<< gets lastType |
454 |
modify (\st -> st{lastType = t}) |
|
6827 | 455 |
return $ (parens $ text "*") <> r |
6509 | 456 |
ref2C (FunCall params ref) = do |
6826 | 457 |
ps <- liftM (parens . hsep . punctuate (char ',')) $ mapM expr2C params |
6509 | 458 |
r <- ref2C ref |
6826 | 459 |
t <- gets lastType |
460 |
case t of |
|
461 |
BTFunction t -> do |
|
462 |
modify (\s -> s{lastType = t}) |
|
463 |
return $ r <> ps |
|
464 |
_ -> return $ parens r <> ps |
|
465 |
||
6509 | 466 |
ref2C (Address ref) = do |
467 |
r <- ref2C ref |
|
468 |
return $ text "&" <> parens r |
|
469 |
ref2C (TypeCast t' expr) = do |
|
6663 | 470 |
t <- id2C IOLookup t' |
6509 | 471 |
e <- expr2C expr |
472 |
return $ parens t <> e |
|
6467 | 473 |
ref2C (RefExpression expr) = expr2C expr |
6355 | 474 |
|
6509 | 475 |
|
6512 | 476 |
op2C :: String -> State RenderState Doc |
6509 | 477 |
op2C "or" = return $ text "|" |
478 |
op2C "and" = return $ text "&" |
|
479 |
op2C "not" = return $ text "!" |
|
480 |
op2C "xor" = return $ text "^" |
|
481 |
op2C "div" = return $ text "/" |
|
482 |
op2C "mod" = return $ text "%" |
|
483 |
op2C "shl" = return $ text "<<" |
|
484 |
op2C "shr" = return $ text ">>" |
|
485 |
op2C "<>" = return $ text "!=" |
|
486 |
op2C "=" = return $ text "==" |
|
487 |
op2C a = return $ text a |
|
6273 | 488 |
|
489 |
maybeVoid "" = "void" |
|
490 |
maybeVoid a = a |