author | unc0rr |
Fri, 10 Feb 2012 17:18:49 +0400 | |
changeset 6663 | 2c4151afad0c |
parent 6653 | d45b6dbd2ad6 |
child 6816 | 572571ea945e |
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], |
30 |
lastType :: BaseType, |
|
31 |
namespaces :: Map.Map String [Record] |
|
6516 | 32 |
} |
6512 | 33 |
|
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
|
34 |
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
|
35 |
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
|
36 |
setCurrentDirectory "../hedgewars/" |
6455 | 37 |
s <- flip execStateT initState $ f fn |
6514 | 38 |
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
|
39 |
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
|
40 |
printLn = liftIO . hPutStrLn stderr |
6455 | 41 |
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
|
42 |
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
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
unless processed $ do |
6455 | 47 |
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
|
48 |
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
|
49 |
$ tryJust (guard . isDoesNotExistError) |
6455 | 50 |
$ 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
|
51 |
case fc' of |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
52 |
(Left a) -> do |
6512 | 53 |
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
|
54 |
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
|
55 |
(Right fc) -> do |
6455 | 56 |
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
|
57 |
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
|
58 |
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
|
59 |
(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
|
60 |
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
|
61 |
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
|
62 |
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
|
63 |
(Right a) -> do |
6455 | 64 |
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
|
65 |
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
|
66 |
mapM_ f (usesFiles a) |
6455 | 67 |
|
6514 | 68 |
|
69 |
renderCFiles :: Map.Map String PascalUnit -> IO () |
|
70 |
renderCFiles units = do |
|
71 |
let u = Map.toList units |
|
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
72 |
let nss = Map.map (toNamespace nss) units |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
73 |
mapM_ (toCFiles nss) u |
6516 | 74 |
where |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
75 |
toNamespace :: Map.Map String [Record] -> PascalUnit -> [Record] |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
76 |
toNamespace nss (System tvs) = |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
77 |
currentScope $ execState (mapM_ (tvar2C True) tvs) (RenderState [] BTUnknown nss) |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
78 |
toNamespace _ (Program {}) = [] |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
79 |
toNamespace nss (Unit _ interface _ _ _) = |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
80 |
currentScope $ execState (interface2C interface) (RenderState [] BTUnknown nss) |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
81 |
|
6618 | 82 |
|
83 |
toCFiles :: Map.Map String [Record] -> (String, PascalUnit) -> IO () |
|
6516 | 84 |
toCFiles _ (_, System _) = return () |
85 |
toCFiles ns p@(fn, pu) = do |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
86 |
hPutStrLn stderr $ "Rendering '" ++ fn ++ "'..." |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
87 |
toCFiles' p |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
88 |
where |
6618 | 89 |
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
|
90 |
toCFiles' (fn, (Unit _ interface implementation _ _)) = do |
6618 | 91 |
let (a, s) = runState (interface2C interface) initialState |
6516 | 92 |
writeFile (fn ++ ".h") $ "#pragma once\n" ++ (render a) |
93 |
writeFile (fn ++ ".c") $ (render2C s . implementation2C) implementation |
|
6618 | 94 |
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
|
95 |
|
6516 | 96 |
render2C :: RenderState -> State RenderState Doc -> String |
97 |
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
|
98 |
|
6467 | 99 |
usesFiles :: PascalUnit -> [String] |
6512 | 100 |
usesFiles (Program _ (Implementation uses _) _) = "pas2cSystem" : uses2List uses |
101 |
usesFiles (Unit _ (Interface uses1 _) (Implementation uses2 _) _ _) = "pas2cSystem" : uses2List uses1 ++ uses2List uses2 |
|
102 |
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
|
103 |
|
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
|
104 |
|
6512 | 105 |
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
|
106 |
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
|
107 |
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
|
108 |
|
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
109 |
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
|
110 |
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
|
111 |
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
|
112 |
(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
|
113 |
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
|
114 |
|
6467 | 115 |
|
116 |
||
6512 | 117 |
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
|
118 |
interface2C (Interface uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 119 |
|
6512 | 120 |
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
|
121 |
implementation2C (Implementation uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 122 |
|
123 |
||
6512 | 124 |
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
|
125 |
typesAndVars2C b (TypesAndVars ts) = liftM vcat $ mapM (tvar2C b) ts |
6273 | 126 |
|
6512 | 127 |
uses2C :: Uses -> State RenderState Doc |
6516 | 128 |
uses2C uses@(Uses unitIds) = do |
129 |
mapM_ injectNamespace (Identifier "pas2cSystem" undefined : unitIds) |
|
6663 | 130 |
mapM_ (id2C IOInsert) unitIds |
6516 | 131 |
return $ vcat . map (\i -> text $ "#include \"" ++ i ++ ".h\"") $ uses2List uses |
132 |
where |
|
6517 | 133 |
injectNamespace (Identifier i _) = do |
6516 | 134 |
getNS <- gets (flip Map.lookup . namespaces) |
135 |
let f = flip (foldl (\a b -> b:a)) (fromMaybe [] (getNS i)) |
|
136 |
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
|
137 |
|
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
|
138 |
uses2List :: Uses -> [String] |
6489 | 139 |
uses2List (Uses ids) = map (\(Identifier i _) -> i) ids |
6273 | 140 |
|
6509 | 141 |
|
6663 | 142 |
id2C :: InsertOption -> Identifier -> State RenderState Doc |
143 |
id2C IOInsert (Identifier i t) = do |
|
6618 | 144 |
modify (\s -> s{currentScope = (map toLower i, (i, t)) : currentScope s}) |
6512 | 145 |
return $ text i |
6663 | 146 |
id2C IOLookup (Identifier i t) = do |
6512 | 147 |
let i' = map toLower i |
6516 | 148 |
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
|
149 |
ns <- gets currentScope |
6618 | 150 |
modify (\s -> s{lastType = t}) |
6512 | 151 |
if isNothing v then |
6663 | 152 |
error $ "Not defined: '" ++ i' ++ "'\n" -- ++ show ns |
6512 | 153 |
else |
6618 | 154 |
return . text . fst . snd . fromJust $ v |
6663 | 155 |
id2C IODeferred (Identifier i t) = do |
156 |
let i' = map toLower i |
|
157 |
v <- gets $ find (\(a, _) -> a == i') . currentScope |
|
158 |
if (isNothing v) then |
|
159 |
do |
|
160 |
modify (\s -> s{currentScope = (i', (i, t)) : currentScope s}) |
|
161 |
return $ text i |
|
162 |
else |
|
163 |
return . text . fst . snd . fromJust $ v |
|
6512 | 164 |
|
6653 | 165 |
id2CTyped :: TypeDecl -> Identifier -> State RenderState Doc |
166 |
id2CTyped t (Identifier i _) = do |
|
167 |
tb <- resolveType t |
|
6663 | 168 |
case tb of |
169 |
BTUnknown -> do |
|
170 |
ns <- gets currentScope |
|
171 |
error $ "id2CTyped: type BTUnknown for " ++ show i ++ "\ntype: " ++ show t ++ "\nnamespace: " ++ show ns |
|
172 |
_ -> 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
|
173 |
|
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
174 |
|
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
175 |
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
|
176 |
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
|
177 |
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
|
178 |
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
|
179 |
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
|
180 |
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
|
181 |
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
|
182 |
f "pointer" = BTPointerTo BTVoid |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
183 |
f "boolean" = BTBool |
6649
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
184 |
f "float" = BTFloat |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
185 |
f "char" = BTChar |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
186 |
f "string" = BTString |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
187 |
f _ = error $ "Unknown system type: " ++ show st |
6653 | 188 |
resolveType (PointerTo t) = return $ BTPointerTo BTUnknown -- can't resolveType for t here |
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
|
189 |
resolveType (RecordType tv mtvs) = 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
|
190 |
tvs <- mapM f (concat $ tv : fromMaybe [] mtvs) |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
191 |
return . BTRecord . concat $ tvs |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
192 |
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
|
193 |
f :: TypeVarDeclaration -> State RenderState [(String, 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
|
194 |
f (VarDeclaration _ (ids, td) _) = mapM (\(Identifier i _) -> liftM ((,) i) $ resolveType td) ids |
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
195 |
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
|
196 |
resolveType (ArrayDecl Nothing 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
|
197 |
resolveType (FunctionType _ _) = return BTFunction |
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 |
resolveType (DeriveType _) = return BTInt |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
199 |
resolveType (String _) = return BTString |
6653 | 200 |
resolveType (Sequence ids) = return $ BTEnum $ map (\(Identifier i _) -> map toLower i) ids |
201 |
resolveType (RangeType _) = return $ BTInt |
|
202 |
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
|
203 |
--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
|
204 |
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
|
205 |
|
6512 | 206 |
|
207 |
tvar2C :: Bool -> TypeVarDeclaration -> State RenderState Doc |
|
6509 | 208 |
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
|
209 |
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
|
210 |
p <- liftM hcat $ mapM (tvar2C False) params |
6663 | 211 |
n <- id2C IOInsert name |
6509 | 212 |
return $ t <+> n <> parens p <> text ";" |
6517 | 213 |
|
6509 | 214 |
tvar2C True (FunctionDeclaration name returnType params (Just (tvars, phrase))) = do |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
215 |
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
|
216 |
p <- liftM hcat $ mapM (tvar2C False) params |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
217 |
ph <- liftM2 ($+$) (typesAndVars2C False tvars) (phrase2C' phrase) |
6663 | 218 |
n <- id2C IOInsert name |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
219 |
return $ |
6509 | 220 |
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
|
221 |
$+$ |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
222 |
text "{" |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
223 |
$+$ |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
224 |
nest 4 ph |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
225 |
$+$ |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
226 |
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
|
227 |
where |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
228 |
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
|
229 |
phrase2C' p = phrase2C p |
6517 | 230 |
|
6489 | 231 |
tvar2C False (FunctionDeclaration (Identifier name _) _ _ _) = error $ "nested functions not allowed: " ++ name |
6618 | 232 |
|
233 |
tvar2C _ td@(TypeDeclaration i' t) = do |
|
6653 | 234 |
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
|
235 |
tp <- type2C t |
6516 | 236 |
return $ text "type" <+> i <+> tp <> text ";" |
6517 | 237 |
|
6509 | 238 |
tvar2C _ (VarDeclaration isConst (ids, t) mInitExpr) = do |
239 |
t' <- type2C t |
|
6653 | 240 |
i <- mapM (id2CTyped t) ids |
6509 | 241 |
ie <- initExpr mInitExpr |
242 |
return $ if isConst then text "const" else empty |
|
243 |
<+> t' |
|
244 |
<+> (hsep . punctuate (char ',') $ i) |
|
245 |
<+> ie |
|
246 |
<> text ";" |
|
6355 | 247 |
where |
6509 | 248 |
initExpr Nothing = return $ empty |
249 |
initExpr (Just e) = liftM (text "=" <+>) (initExpr2C e) |
|
6517 | 250 |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
251 |
tvar2C f (OperatorDeclaration op _ ret params body) = |
6618 | 252 |
tvar2C f (FunctionDeclaration (Identifier ("<op " ++ op ++ ">") BTUnknown) ret params body) |
6355 | 253 |
|
6517 | 254 |
|
6512 | 255 |
initExpr2C :: InitExpression -> State RenderState Doc |
6509 | 256 |
initExpr2C (InitBinOp op expr1 expr2) = do |
257 |
e1 <- initExpr2C expr1 |
|
258 |
e2 <- initExpr2C expr2 |
|
259 |
o <- op2C op |
|
260 |
return $ parens $ e1 <+> o <+> e2 |
|
261 |
initExpr2C (InitNumber s) = return $ text s |
|
262 |
initExpr2C (InitFloat s) = return $ text s |
|
263 |
initExpr2C (InitHexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
264 |
initExpr2C (InitString s) = return $ doubleQuotes $ text s |
|
6663 | 265 |
initExpr2C (InitReference i) = id2C IOLookup i |
6509 | 266 |
initExpr2C _ = return $ text "<<expression>>" |
6391 | 267 |
|
268 |
||
6512 | 269 |
type2C :: TypeDecl -> State RenderState Doc |
6509 | 270 |
type2C UnknownType = return $ text "void" |
271 |
type2C (String l) = return $ text $ "string" ++ show l |
|
6663 | 272 |
type2C (SimpleType i) = id2C IOLookup i |
273 |
type2C (PointerTo (SimpleType i)) = liftM (<> text "*") $ id2C IODeferred i |
|
6509 | 274 |
type2C (PointerTo t) = liftM (<> text "*") $ type2C t |
275 |
type2C (RecordType tvs union) = do |
|
276 |
t <- mapM (tvar2C False) tvs |
|
277 |
return $ text "{" $+$ (nest 4 . vcat $ t) $+$ text "}" |
|
278 |
type2C (RangeType r) = return $ text "<<range type>>" |
|
6520 | 279 |
type2C (Sequence ids) = do |
6663 | 280 |
mapM_ (id2C IOInsert) ids |
6520 | 281 |
return $ text "<<sequence type>>" |
6509 | 282 |
type2C (ArrayDecl r t) = return $ text "<<array type>>" |
283 |
type2C (Set t) = return $ text "<<set>>" |
|
284 |
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
|
285 |
type2C (DeriveType _) = return $ text "<<type derived from constant literal>>" |
6273 | 286 |
|
6512 | 287 |
phrase2C :: Phrase -> State RenderState Doc |
6509 | 288 |
phrase2C (Phrases p) = do |
289 |
ps <- mapM phrase2C p |
|
290 |
return $ text "{" $+$ (nest 4 . vcat $ ps) $+$ text "}" |
|
291 |
phrase2C (ProcCall f@(FunCall {}) []) = liftM (<> semi) $ ref2C f |
|
292 |
phrase2C (ProcCall ref params) = do |
|
293 |
r <- ref2C ref |
|
294 |
ps <- mapM expr2C params |
|
295 |
return $ r <> parens (hsep . punctuate (char ',') $ ps) <> semi |
|
296 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = do |
|
297 |
e <- expr2C expr |
|
298 |
p1 <- (phrase2C . wrapPhrase) phrase1 |
|
299 |
el <- elsePart |
|
300 |
return $ |
|
301 |
text "if" <> parens e $+$ p1 $+$ el |
|
6273 | 302 |
where |
6509 | 303 |
elsePart | isNothing mphrase2 = return $ empty |
304 |
| otherwise = liftM (text "else" $$) $ (phrase2C . wrapPhrase) (fromJust mphrase2) |
|
305 |
phrase2C (Assignment ref expr) = do |
|
306 |
r <- ref2C ref |
|
307 |
e <- expr2C expr |
|
308 |
return $ |
|
309 |
r <> text " = " <> e <> semi |
|
310 |
phrase2C (WhileCycle expr phrase) = do |
|
311 |
e <- expr2C expr |
|
312 |
p <- phrase2C $ wrapPhrase phrase |
|
313 |
return $ text "while" <> parens e $$ p |
|
314 |
phrase2C (SwitchCase expr cases mphrase) = do |
|
315 |
e <- expr2C expr |
|
316 |
cs <- mapM case2C cases |
|
317 |
return $ |
|
318 |
text "switch" <> parens e <> text "of" $+$ (nest 4 . vcat) cs |
|
6273 | 319 |
where |
6512 | 320 |
case2C :: ([InitExpression], Phrase) -> State RenderState Doc |
6509 | 321 |
case2C (e, p) = do |
322 |
ie <- mapM initExpr2C e |
|
323 |
ph <- phrase2C p |
|
324 |
return $ |
|
325 |
text "case" <+> parens (hsep . punctuate (char ',') $ ie) <> char ':' <> nest 4 (ph $+$ text "break;") |
|
326 |
phrase2C (WithBlock ref p) = do |
|
327 |
r <- ref2C ref |
|
328 |
ph <- phrase2C $ wrapPhrase p |
|
329 |
return $ text "namespace" <> parens r $$ ph |
|
330 |
phrase2C (ForCycle i' e1' e2' p) = do |
|
6663 | 331 |
i <- id2C IOLookup i' |
6509 | 332 |
e1 <- expr2C e1' |
333 |
e2 <- expr2C e2' |
|
334 |
ph <- phrase2C (wrapPhrase p) |
|
335 |
return $ |
|
336 |
text "for" <> (parens . hsep . punctuate (char ';') $ [i <+> text "=" <+> e1, i <+> text "<=" <+> e2, text "++" <> i]) |
|
337 |
$$ |
|
338 |
ph |
|
339 |
phrase2C (RepeatCycle e' p') = do |
|
340 |
e <- expr2C e' |
|
341 |
p <- phrase2C (Phrases p') |
|
342 |
return $ text "do" <+> p <+> text "while" <> parens (text "!" <> parens e) |
|
343 |
phrase2C NOP = return $ text ";" |
|
6355 | 344 |
|
6273 | 345 |
|
6307 | 346 |
wrapPhrase p@(Phrases _) = p |
347 |
wrapPhrase p = Phrases [p] |
|
6273 | 348 |
|
6355 | 349 |
|
6512 | 350 |
expr2C :: Expression -> State RenderState Doc |
6509 | 351 |
expr2C (Expression s) = return $ text s |
352 |
expr2C (BinOp op expr1 expr2) = do |
|
353 |
e1 <- expr2C expr1 |
|
354 |
e2 <- expr2C expr2 |
|
355 |
o <- op2C op |
|
356 |
return $ parens $ e1 <+> o <+> e2 |
|
357 |
expr2C (NumberLiteral s) = return $ text s |
|
358 |
expr2C (FloatLiteral s) = return $ text s |
|
359 |
expr2C (HexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
360 |
expr2C (StringLiteral s) = return $ doubleQuotes $ text s |
|
6277 | 361 |
expr2C (Reference ref) = ref2C ref |
6509 | 362 |
expr2C (PrefixOp op expr) = liftM2 (<+>) (op2C op) (expr2C expr) |
363 |
expr2C Null = return $ text "NULL" |
|
364 |
expr2C (BuiltInFunCall params ref) = do |
|
365 |
r <- ref2C ref |
|
366 |
ps <- mapM expr2C params |
|
367 |
return $ |
|
368 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
369 |
expr2C _ = return $ text "<<expression>>" |
|
6273 | 370 |
|
6307 | 371 |
|
6512 | 372 |
ref2C :: Reference -> State RenderState Doc |
6509 | 373 |
ref2C (ArrayElement exprs ref) = do |
374 |
r <- ref2C ref |
|
375 |
es <- mapM expr2C exprs |
|
376 |
return $ r <> (brackets . hcat) (punctuate comma es) |
|
6663 | 377 |
ref2C (SimpleReference name) = id2C IOLookup name |
6509 | 378 |
ref2C (RecordField (Dereference ref1) ref2) = do |
379 |
r1 <- ref2C ref1 |
|
380 |
r2 <- ref2C ref2 |
|
381 |
return $ |
|
382 |
r1 <> text "->" <> r2 |
|
6618 | 383 |
ref2C rf@(RecordField ref1 ref2) = do |
384 |
r1 <- ref2C ref1 |
|
385 |
t <- gets lastType |
|
386 |
case t of |
|
387 |
r@(BTRecord _) -> error $ show r |
|
388 |
a -> error $ "dereferencing from " ++ show a ++ " - " ++ show rf |
|
6509 | 389 |
r2 <- ref2C ref2 |
390 |
return $ |
|
391 |
r1 <> text "." <> r2 |
|
392 |
ref2C (Dereference ref) = liftM ((parens $ text "*") <>) $ ref2C ref |
|
393 |
ref2C (FunCall params ref) = do |
|
394 |
r <- ref2C ref |
|
395 |
ps <- mapM expr2C params |
|
396 |
return $ |
|
397 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
398 |
ref2C (Address ref) = do |
|
399 |
r <- ref2C ref |
|
400 |
return $ text "&" <> parens r |
|
401 |
ref2C (TypeCast t' expr) = do |
|
6663 | 402 |
t <- id2C IOLookup t' |
6509 | 403 |
e <- expr2C expr |
404 |
return $ parens t <> e |
|
6467 | 405 |
ref2C (RefExpression expr) = expr2C expr |
6355 | 406 |
|
6509 | 407 |
|
6512 | 408 |
op2C :: String -> State RenderState Doc |
6509 | 409 |
op2C "or" = return $ text "|" |
410 |
op2C "and" = return $ text "&" |
|
411 |
op2C "not" = return $ text "!" |
|
412 |
op2C "xor" = return $ text "^" |
|
413 |
op2C "div" = return $ text "/" |
|
414 |
op2C "mod" = return $ text "%" |
|
415 |
op2C "shl" = return $ text "<<" |
|
416 |
op2C "shr" = return $ text ">>" |
|
417 |
op2C "<>" = return $ text "!=" |
|
418 |
op2C "=" = return $ text "==" |
|
419 |
op2C a = return $ text a |
|
6273 | 420 |
|
421 |
maybeVoid "" = "void" |
|
422 |
maybeVoid a = a |