author | unc0rr |
Thu, 08 Dec 2011 14:44:10 +0400 | |
changeset 6520 | 6fecdc5d182f |
parent 6517 | 67ea290ea843 |
child 6552 | 91adc9ee7b8c |
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 |
|
6516 | 20 |
data RenderState = RenderState |
21 |
{ |
|
22 |
currentScope :: [(String, String)], |
|
23 |
namespaces :: Map.Map String [(String, String)] |
|
24 |
} |
|
6512 | 25 |
|
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
|
26 |
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
|
27 |
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
|
28 |
setCurrentDirectory "../hedgewars/" |
6455 | 29 |
s <- flip execStateT initState $ f fn |
6514 | 30 |
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
|
31 |
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
|
32 |
printLn = liftIO . hPutStrLn stderr |
6455 | 33 |
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
|
34 |
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
|
35 |
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
|
36 |
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
|
37 |
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
|
38 |
unless processed $ do |
6455 | 39 |
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
|
40 |
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
|
41 |
$ tryJust (guard . isDoesNotExistError) |
6455 | 42 |
$ 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
|
43 |
case fc' of |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
44 |
(Left a) -> do |
6512 | 45 |
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
|
46 |
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
|
47 |
(Right fc) -> do |
6455 | 48 |
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
|
49 |
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
|
50 |
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
|
51 |
(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
|
52 |
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
|
53 |
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
|
54 |
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
|
55 |
(Right a) -> do |
6455 | 56 |
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
|
57 |
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
|
58 |
mapM_ f (usesFiles a) |
6455 | 59 |
|
6514 | 60 |
|
61 |
renderCFiles :: Map.Map String PascalUnit -> IO () |
|
62 |
renderCFiles units = do |
|
63 |
let u = Map.toList units |
|
6516 | 64 |
let ns = Map.map toNamespace units |
65 |
mapM_ (toCFiles ns) u |
|
66 |
where |
|
6517 | 67 |
toNamespace :: PascalUnit -> [(String, String)] |
68 |
toNamespace = concatMap tv2id . extractTVs |
|
69 |
||
70 |
extractTVs (System tv) = tv |
|
71 |
extractTVs (Program {}) = [] |
|
72 |
extractTVs (Unit _ (Interface _ (TypesAndVars tv)) _ _ _) = tv |
|
73 |
||
74 |
tv2id :: TypeVarDeclaration -> [(String, String)] |
|
6520 | 75 |
tv2id (TypeDeclaration i (Sequence ids)) = map (\(Identifier i _) -> fi i) $ i : ids |
6517 | 76 |
tv2id (TypeDeclaration (Identifier i _) _) = [(map toLower i, i)] |
6520 | 77 |
tv2id (VarDeclaration _ (ids, _) _) = map (\(Identifier i _) -> fi i) ids |
78 |
tv2id (FunctionDeclaration (Identifier i _) _ _ _) = [fi i] |
|
79 |
tv2id (OperatorDeclaration i _ _ _ _) = [fi i] |
|
80 |
fi i = (map toLower i, i) |
|
6516 | 81 |
|
82 |
||
83 |
toCFiles :: Map.Map String [(String, String)] -> (String, PascalUnit) -> IO () |
|
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 |
6516 | 89 |
toCFiles' (fn, p@(Program {})) = writeFile (fn ++ ".c") $ (render2C (RenderState [] ns) . pascal2C) p |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
90 |
toCFiles' (fn, (Unit _ interface implementation _ _)) = do |
6516 | 91 |
let (a, s) = runState (interface2C interface) (RenderState [] ns) |
92 |
writeFile (fn ++ ".h") $ "#pragma once\n" ++ (render a) |
|
93 |
writeFile (fn ++ ".c") $ (render2C s . implementation2C) implementation |
|
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
94 |
|
6516 | 95 |
render2C :: RenderState -> State RenderState Doc -> String |
96 |
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
|
97 |
|
6467 | 98 |
usesFiles :: PascalUnit -> [String] |
6512 | 99 |
usesFiles (Program _ (Implementation uses _) _) = "pas2cSystem" : uses2List uses |
100 |
usesFiles (Unit _ (Interface uses1 _) (Implementation uses2 _) _ _) = "pas2cSystem" : uses2List uses1 ++ uses2List uses2 |
|
101 |
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
|
102 |
|
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 |
|
6512 | 104 |
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
|
105 |
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
|
106 |
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
|
107 |
|
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
108 |
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
|
109 |
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
|
110 |
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
|
111 |
(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
|
112 |
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
|
113 |
|
6467 | 114 |
|
115 |
||
6512 | 116 |
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
|
117 |
interface2C (Interface uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 118 |
|
6512 | 119 |
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
|
120 |
implementation2C (Implementation uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 121 |
|
122 |
||
6512 | 123 |
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
|
124 |
typesAndVars2C b (TypesAndVars ts) = liftM vcat $ mapM (tvar2C b) ts |
6273 | 125 |
|
6512 | 126 |
uses2C :: Uses -> State RenderState Doc |
6516 | 127 |
uses2C uses@(Uses unitIds) = do |
128 |
mapM_ injectNamespace (Identifier "pas2cSystem" undefined : unitIds) |
|
129 |
return $ vcat . map (\i -> text $ "#include \"" ++ i ++ ".h\"") $ uses2List uses |
|
130 |
where |
|
6517 | 131 |
injectNamespace (Identifier i _) = do |
6516 | 132 |
getNS <- gets (flip Map.lookup . namespaces) |
133 |
let f = flip (foldl (\a b -> b:a)) (fromMaybe [] (getNS i)) |
|
134 |
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
|
135 |
|
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
|
136 |
uses2List :: Uses -> [String] |
6489 | 137 |
uses2List (Uses ids) = map (\(Identifier i _) -> i) ids |
6273 | 138 |
|
6509 | 139 |
|
6512 | 140 |
id2C :: Bool -> Identifier -> State RenderState Doc |
141 |
id2C True (Identifier i _) = do |
|
6516 | 142 |
modify (\s -> s{currentScope = (map toLower i, i) : currentScope s}) |
6512 | 143 |
return $ text i |
144 |
id2C False (Identifier i _) = do |
|
145 |
let i' = map toLower i |
|
6516 | 146 |
v <- gets $ find (\(a, _) -> a == i') . currentScope |
147 |
--ns <- gets currentScope |
|
6512 | 148 |
if isNothing v then |
6516 | 149 |
error $ "Not defined: '" ++ i' ++ "'"-- ++ show ns |
6512 | 150 |
else |
151 |
return . text . snd . fromJust $ v |
|
152 |
||
153 |
||
154 |
tvar2C :: Bool -> TypeVarDeclaration -> State RenderState Doc |
|
6509 | 155 |
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
|
156 |
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
|
157 |
p <- liftM hcat $ mapM (tvar2C False) params |
6509 | 158 |
n <- id2C True name |
159 |
return $ t <+> n <> parens p <> text ";" |
|
6517 | 160 |
|
6509 | 161 |
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
|
162 |
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
|
163 |
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
|
164 |
ph <- liftM2 ($+$) (typesAndVars2C False tvars) (phrase2C' phrase) |
6509 | 165 |
n <- id2C True name |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
166 |
return $ |
6509 | 167 |
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
|
168 |
$+$ |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
169 |
text "{" |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
170 |
$+$ |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
171 |
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
|
172 |
$+$ |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
173 |
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
|
174 |
where |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
175 |
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
|
176 |
phrase2C' p = phrase2C p |
6517 | 177 |
|
6489 | 178 |
tvar2C False (FunctionDeclaration (Identifier name _) _ _ _) = error $ "nested functions not allowed: " ++ name |
6516 | 179 |
tvar2C _ (TypeDeclaration i' t) = do |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
180 |
tp <- type2C t |
6516 | 181 |
i <- id2C True i' |
182 |
return $ text "type" <+> i <+> tp <> text ";" |
|
6517 | 183 |
|
6509 | 184 |
tvar2C _ (VarDeclaration isConst (ids, t) mInitExpr) = do |
185 |
t' <- type2C t |
|
186 |
i <- mapM (id2C True) ids |
|
187 |
ie <- initExpr mInitExpr |
|
188 |
return $ if isConst then text "const" else empty |
|
189 |
<+> t' |
|
190 |
<+> (hsep . punctuate (char ',') $ i) |
|
191 |
<+> ie |
|
192 |
<> text ";" |
|
6355 | 193 |
where |
6509 | 194 |
initExpr Nothing = return $ empty |
195 |
initExpr (Just e) = liftM (text "=" <+>) (initExpr2C e) |
|
6517 | 196 |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
197 |
tvar2C f (OperatorDeclaration op _ ret params body) = |
6489 | 198 |
tvar2C f (FunctionDeclaration (Identifier ("<op " ++ op ++ ">") Unknown) ret params body) |
6355 | 199 |
|
6517 | 200 |
|
6512 | 201 |
initExpr2C :: InitExpression -> State RenderState Doc |
6509 | 202 |
initExpr2C (InitBinOp op expr1 expr2) = do |
203 |
e1 <- initExpr2C expr1 |
|
204 |
e2 <- initExpr2C expr2 |
|
205 |
o <- op2C op |
|
206 |
return $ parens $ e1 <+> o <+> e2 |
|
207 |
initExpr2C (InitNumber s) = return $ text s |
|
208 |
initExpr2C (InitFloat s) = return $ text s |
|
209 |
initExpr2C (InitHexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
210 |
initExpr2C (InitString s) = return $ doubleQuotes $ text s |
|
211 |
initExpr2C (InitReference i) = id2C False i |
|
212 |
initExpr2C _ = return $ text "<<expression>>" |
|
6391 | 213 |
|
214 |
||
6512 | 215 |
type2C :: TypeDecl -> State RenderState Doc |
6509 | 216 |
type2C UnknownType = return $ text "void" |
217 |
type2C (String l) = return $ text $ "string" ++ show l |
|
6514 | 218 |
type2C (SimpleType i) = id2C False i |
6520 | 219 |
type2C (PointerTo (SimpleType i)) = liftM (<> text "*") $ id2C True i |
6509 | 220 |
type2C (PointerTo t) = liftM (<> text "*") $ type2C t |
221 |
type2C (RecordType tvs union) = do |
|
222 |
t <- mapM (tvar2C False) tvs |
|
223 |
return $ text "{" $+$ (nest 4 . vcat $ t) $+$ text "}" |
|
224 |
type2C (RangeType r) = return $ text "<<range type>>" |
|
6520 | 225 |
type2C (Sequence ids) = do |
226 |
mapM_ (id2C True) ids |
|
227 |
return $ text "<<sequence type>>" |
|
6509 | 228 |
type2C (ArrayDecl r t) = return $ text "<<array type>>" |
229 |
type2C (Set t) = return $ text "<<set>>" |
|
230 |
type2C (FunctionType returnType params) = return $ text "<<function>>" |
|
6273 | 231 |
|
6512 | 232 |
phrase2C :: Phrase -> State RenderState Doc |
6509 | 233 |
phrase2C (Phrases p) = do |
234 |
ps <- mapM phrase2C p |
|
235 |
return $ text "{" $+$ (nest 4 . vcat $ ps) $+$ text "}" |
|
236 |
phrase2C (ProcCall f@(FunCall {}) []) = liftM (<> semi) $ ref2C f |
|
237 |
phrase2C (ProcCall ref params) = do |
|
238 |
r <- ref2C ref |
|
239 |
ps <- mapM expr2C params |
|
240 |
return $ r <> parens (hsep . punctuate (char ',') $ ps) <> semi |
|
241 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = do |
|
242 |
e <- expr2C expr |
|
243 |
p1 <- (phrase2C . wrapPhrase) phrase1 |
|
244 |
el <- elsePart |
|
245 |
return $ |
|
246 |
text "if" <> parens e $+$ p1 $+$ el |
|
6273 | 247 |
where |
6509 | 248 |
elsePart | isNothing mphrase2 = return $ empty |
249 |
| otherwise = liftM (text "else" $$) $ (phrase2C . wrapPhrase) (fromJust mphrase2) |
|
250 |
phrase2C (Assignment ref expr) = do |
|
251 |
r <- ref2C ref |
|
252 |
e <- expr2C expr |
|
253 |
return $ |
|
254 |
r <> text " = " <> e <> semi |
|
255 |
phrase2C (WhileCycle expr phrase) = do |
|
256 |
e <- expr2C expr |
|
257 |
p <- phrase2C $ wrapPhrase phrase |
|
258 |
return $ text "while" <> parens e $$ p |
|
259 |
phrase2C (SwitchCase expr cases mphrase) = do |
|
260 |
e <- expr2C expr |
|
261 |
cs <- mapM case2C cases |
|
262 |
return $ |
|
263 |
text "switch" <> parens e <> text "of" $+$ (nest 4 . vcat) cs |
|
6273 | 264 |
where |
6512 | 265 |
case2C :: ([InitExpression], Phrase) -> State RenderState Doc |
6509 | 266 |
case2C (e, p) = do |
267 |
ie <- mapM initExpr2C e |
|
268 |
ph <- phrase2C p |
|
269 |
return $ |
|
270 |
text "case" <+> parens (hsep . punctuate (char ',') $ ie) <> char ':' <> nest 4 (ph $+$ text "break;") |
|
271 |
phrase2C (WithBlock ref p) = do |
|
272 |
r <- ref2C ref |
|
273 |
ph <- phrase2C $ wrapPhrase p |
|
274 |
return $ text "namespace" <> parens r $$ ph |
|
275 |
phrase2C (ForCycle i' e1' e2' p) = do |
|
276 |
i <- id2C False i' |
|
277 |
e1 <- expr2C e1' |
|
278 |
e2 <- expr2C e2' |
|
279 |
ph <- phrase2C (wrapPhrase p) |
|
280 |
return $ |
|
281 |
text "for" <> (parens . hsep . punctuate (char ';') $ [i <+> text "=" <+> e1, i <+> text "<=" <+> e2, text "++" <> i]) |
|
282 |
$$ |
|
283 |
ph |
|
284 |
phrase2C (RepeatCycle e' p') = do |
|
285 |
e <- expr2C e' |
|
286 |
p <- phrase2C (Phrases p') |
|
287 |
return $ text "do" <+> p <+> text "while" <> parens (text "!" <> parens e) |
|
288 |
phrase2C NOP = return $ text ";" |
|
6355 | 289 |
|
6273 | 290 |
|
6307 | 291 |
wrapPhrase p@(Phrases _) = p |
292 |
wrapPhrase p = Phrases [p] |
|
6273 | 293 |
|
6355 | 294 |
|
6512 | 295 |
expr2C :: Expression -> State RenderState Doc |
6509 | 296 |
expr2C (Expression s) = return $ text s |
297 |
expr2C (BinOp op expr1 expr2) = do |
|
298 |
e1 <- expr2C expr1 |
|
299 |
e2 <- expr2C expr2 |
|
300 |
o <- op2C op |
|
301 |
return $ parens $ e1 <+> o <+> e2 |
|
302 |
expr2C (NumberLiteral s) = return $ text s |
|
303 |
expr2C (FloatLiteral s) = return $ text s |
|
304 |
expr2C (HexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
305 |
expr2C (StringLiteral s) = return $ doubleQuotes $ text s |
|
6277 | 306 |
expr2C (Reference ref) = ref2C ref |
6509 | 307 |
expr2C (PrefixOp op expr) = liftM2 (<+>) (op2C op) (expr2C expr) |
308 |
expr2C Null = return $ text "NULL" |
|
309 |
expr2C (BuiltInFunCall params ref) = do |
|
310 |
r <- ref2C ref |
|
311 |
ps <- mapM expr2C params |
|
312 |
return $ |
|
313 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
314 |
expr2C _ = return $ text "<<expression>>" |
|
6273 | 315 |
|
6307 | 316 |
|
6512 | 317 |
ref2C :: Reference -> State RenderState Doc |
6509 | 318 |
ref2C (ArrayElement exprs ref) = do |
319 |
r <- ref2C ref |
|
320 |
es <- mapM expr2C exprs |
|
321 |
return $ r <> (brackets . hcat) (punctuate comma es) |
|
322 |
ref2C (SimpleReference name) = id2C False name |
|
323 |
ref2C (RecordField (Dereference ref1) ref2) = do |
|
324 |
r1 <- ref2C ref1 |
|
325 |
r2 <- ref2C ref2 |
|
326 |
return $ |
|
327 |
r1 <> text "->" <> r2 |
|
328 |
ref2C (RecordField ref1 ref2) = do |
|
329 |
r1 <- ref2C ref1 |
|
330 |
r2 <- ref2C ref2 |
|
331 |
return $ |
|
332 |
r1 <> text "." <> r2 |
|
333 |
ref2C (Dereference ref) = liftM ((parens $ text "*") <>) $ ref2C ref |
|
334 |
ref2C (FunCall params ref) = do |
|
335 |
r <- ref2C ref |
|
336 |
ps <- mapM expr2C params |
|
337 |
return $ |
|
338 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
339 |
ref2C (Address ref) = do |
|
340 |
r <- ref2C ref |
|
341 |
return $ text "&" <> parens r |
|
342 |
ref2C (TypeCast t' expr) = do |
|
343 |
t <- id2C False t' |
|
344 |
e <- expr2C expr |
|
345 |
return $ parens t <> e |
|
6467 | 346 |
ref2C (RefExpression expr) = expr2C expr |
6355 | 347 |
|
6509 | 348 |
|
6512 | 349 |
op2C :: String -> State RenderState Doc |
6509 | 350 |
op2C "or" = return $ text "|" |
351 |
op2C "and" = return $ text "&" |
|
352 |
op2C "not" = return $ text "!" |
|
353 |
op2C "xor" = return $ text "^" |
|
354 |
op2C "div" = return $ text "/" |
|
355 |
op2C "mod" = return $ text "%" |
|
356 |
op2C "shl" = return $ text "<<" |
|
357 |
op2C "shr" = return $ text ">>" |
|
358 |
op2C "<>" = return $ text "!=" |
|
359 |
op2C "=" = return $ text "==" |
|
360 |
op2C a = return $ text a |
|
6273 | 361 |
|
362 |
maybeVoid "" = "void" |
|
363 |
maybeVoid a = a |