author | unc0rr |
Thu, 01 Dec 2011 18:02:27 +0400 | |
changeset 6474 | 42e9773eedfd |
parent 6467 | 090269e528df |
child 6489 | e1f0058cfedd |
permissions | -rw-r--r-- |
6273 | 1 |
module Pas2C where |
2 |
||
3 |
import Text.PrettyPrint.HughesPJ |
|
4 |
import Data.Maybe |
|
6277 | 5 |
import Data.Char |
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
|
6 |
import Text.Parsec.Prim |
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 |
6273 | 15 |
|
6467 | 16 |
import PascalParser |
17 |
import PascalUnitSyntaxTree |
|
6273 | 18 |
|
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
|
19 |
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
|
20 |
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
|
21 |
setCurrentDirectory "../hedgewars/" |
6455 | 22 |
s <- flip execStateT initState $ f fn |
6467 | 23 |
mapM_ toCFiles (Map.toList 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
|
24 |
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
|
25 |
printLn = liftIO . hPutStrLn stderr |
6455 | 26 |
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
|
27 |
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
|
28 |
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
|
29 |
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
|
30 |
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
|
31 |
unless processed $ do |
6455 | 32 |
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
|
33 |
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
|
34 |
$ tryJust (guard . isDoesNotExistError) |
6455 | 35 |
$ 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
|
36 |
case fc' of |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
37 |
(Left a) -> do |
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
38 |
modify (Map.insert fileName System) |
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
39 |
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
|
40 |
(Right fc) -> do |
6455 | 41 |
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
|
42 |
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
|
43 |
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
|
44 |
(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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
(Right a) -> do |
6455 | 49 |
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
|
50 |
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
|
51 |
mapM_ f (usesFiles a) |
6455 | 52 |
|
6467 | 53 |
toCFiles :: (String, PascalUnit) -> IO () |
54 |
toCFiles (_, System) = return () |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
55 |
toCFiles p@(fn, pu) = do |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
56 |
hPutStrLn stderr $ "Rendering '" ++ fn ++ "'..." |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
57 |
toCFiles' p |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
58 |
where |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
59 |
toCFiles' (fn, p@(Program {})) = writeFile (fn ++ ".c") $ (render . pascal2C) p |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
60 |
toCFiles' (fn, (Unit _ interface implementation _ _)) = do |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
61 |
writeFile (fn ++ ".h") $ (render . interface2C) interface |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
62 |
writeFile (fn ++ ".c") $ (render . implementation2C) implementation |
6467 | 63 |
|
64 |
usesFiles :: PascalUnit -> [String] |
|
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 |
usesFiles (Program _ (Implementation uses _) _) = uses2List uses |
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 |
usesFiles (Unit _ (Interface uses1 _) (Implementation uses2 _) _ _) = uses2List uses1 ++ uses2List uses2 |
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 |
|
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
|
68 |
|
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 |
|
6273 | 70 |
pascal2C :: PascalUnit -> Doc |
6467 | 71 |
pascal2C (Unit _ interface implementation init fin) = |
6391 | 72 |
interface2C interface |
73 |
$+$ |
|
74 |
implementation2C implementation |
|
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
|
75 |
pascal2C (Program _ implementation mainFunction) = |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
76 |
implementation2C implementation |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
77 |
$+$ |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
78 |
tvar2C True (FunctionDeclaration (Identifier "main") (SimpleType $ Identifier "int") [] (Just (TypesAndVars [], mainFunction))) |
6467 | 79 |
|
80 |
||
6391 | 81 |
interface2C :: Interface -> Doc |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
82 |
interface2C (Interface uses tvars) = uses2C uses $+$ typesAndVars2C True tvars |
6273 | 83 |
|
84 |
implementation2C :: Implementation -> Doc |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
85 |
implementation2C (Implementation uses tvars) = uses2C uses $+$ typesAndVars2C True tvars |
6273 | 86 |
|
87 |
||
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
88 |
typesAndVars2C :: Bool -> TypesAndVars -> Doc |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
89 |
typesAndVars2C b (TypesAndVars ts) = vcat $ map (tvar2C b) ts |
6273 | 90 |
|
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
|
91 |
uses2C :: Uses -> Doc |
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
|
92 |
uses2C uses = vcat $ map (\i -> text $ "#include \"" ++ i ++ ".h\"") $ uses2List uses |
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
|
93 |
|
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
|
94 |
uses2List :: Uses -> [String] |
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
|
95 |
uses2List (Uses ids) = map (\(Identifier i) -> i) ids |
6273 | 96 |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
97 |
tvar2C :: Bool -> TypeVarDeclaration -> Doc |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
98 |
tvar2C _ (FunctionDeclaration (Identifier name) returnType params Nothing) = |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
99 |
type2C returnType <+> text name <> parens (hcat $ map (tvar2C False) params) <> text ";" |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
100 |
tvar2C True (FunctionDeclaration (Identifier name) returnType params (Just (tvars, phrase))) = |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
101 |
type2C returnType <+> text name <> parens (hcat $ map (tvar2C False) params) |
6399 | 102 |
$+$ |
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 |
text "{" |
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 |
$+$ nest 4 ( |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
105 |
typesAndVars2C False tvars |
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
|
106 |
$+$ |
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
|
107 |
phrase2C' phrase |
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
|
108 |
) |
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
|
109 |
$+$ |
6399 | 110 |
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
|
111 |
where |
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
|
112 |
phrase2C' (Phrases p) = vcat $ map phrase2C p |
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
|
113 |
phrase2C' p = phrase2C p |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
114 |
tvar2C False (FunctionDeclaration (Identifier name) _ _ _) = error $ "nested functions not allowed: " ++ name |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
115 |
tvar2C _ (TypeDeclaration (Identifier i) t) = text "type" <+> text i <+> type2C t <> text ";" |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
116 |
tvar2C _ (VarDeclaration isConst (ids, t) mInitExpr) = |
6355 | 117 |
if isConst then text "const" else empty |
118 |
<+> |
|
119 |
type2C t |
|
120 |
<+> |
|
121 |
(hsep . punctuate (char ',') . map (\(Identifier i) -> text i) $ ids) |
|
122 |
<+> |
|
123 |
initExpr mInitExpr |
|
124 |
<> |
|
125 |
text ";" |
|
126 |
where |
|
127 |
initExpr Nothing = empty |
|
128 |
initExpr (Just e) = text "=" <+> initExpr2C e |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
129 |
tvar2C f (OperatorDeclaration op _ ret params body) = |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
130 |
tvar2C f (FunctionDeclaration (Identifier $ "<op " ++ op ++ ">") ret params body) |
6355 | 131 |
|
6391 | 132 |
initExpr2C :: InitExpression -> Doc |
133 |
initExpr2C (InitBinOp op expr1 expr2) = parens $ (initExpr2C expr1) <+> op2C op <+> (initExpr2C expr2) |
|
134 |
initExpr2C (InitNumber s) = text s |
|
135 |
initExpr2C (InitFloat s) = text s |
|
136 |
initExpr2C (InitHexNumber s) = text "0x" <> (text . map toLower $ s) |
|
137 |
initExpr2C (InitString s) = doubleQuotes $ text s |
|
138 |
initExpr2C (InitReference (Identifier i)) = text i |
|
139 |
||
140 |
||
6355 | 141 |
initExpr2C _ = text "<<expression>>" |
6273 | 142 |
|
6307 | 143 |
type2C :: TypeDecl -> Doc |
144 |
type2C UnknownType = text "void" |
|
6399 | 145 |
type2C (String l) = text $ "string" ++ show l |
6355 | 146 |
type2C (SimpleType (Identifier i)) = text i |
147 |
type2C (PointerTo t) = type2C t <> text "*" |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
148 |
type2C (RecordType tvs union) = text "{" $+$ (nest 4 . vcat . map (tvar2C False) $ tvs) $+$ text "}" |
6355 | 149 |
type2C (RangeType r) = text "<<range type>>" |
150 |
type2C (Sequence ids) = text "<<sequence type>>" |
|
151 |
type2C (ArrayDecl r t) = text "<<array type>>" |
|
6467 | 152 |
type2C (Set t) = text "<<set>>" |
153 |
type2C (FunctionType returnType params) = text "<<function>>" |
|
6273 | 154 |
|
155 |
phrase2C :: Phrase -> Doc |
|
6307 | 156 |
phrase2C (Phrases p) = text "{" $+$ (nest 4 . vcat . map phrase2C $ p) $+$ text "}" |
6467 | 157 |
phrase2C (ProcCall f@(FunCall {}) []) = ref2C f <> semi |
6450 | 158 |
phrase2C (ProcCall ref params) = ref2C ref <> parens (hsep . punctuate (char ',') . map expr2C $ params) <> semi |
6307 | 159 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = text "if" <> parens (expr2C expr) $+$ (phrase2C . wrapPhrase) phrase1 $+$ elsePart |
6273 | 160 |
where |
161 |
elsePart | isNothing mphrase2 = empty |
|
6307 | 162 |
| otherwise = text "else" $$ (phrase2C . wrapPhrase) (fromJust mphrase2) |
6277 | 163 |
phrase2C (Assignment ref expr) = ref2C ref <> text " = " <> expr2C expr <> semi |
6307 | 164 |
phrase2C (WhileCycle expr phrase) = text "while" <> parens (expr2C expr) $$ (phrase2C $ wrapPhrase phrase) |
165 |
phrase2C (SwitchCase expr cases mphrase) = text "switch" <> parens (expr2C expr) <> text "of" $+$ (nest 4 . vcat . map case2C) cases |
|
6273 | 166 |
where |
6450 | 167 |
case2C :: ([InitExpression], Phrase) -> Doc |
168 |
case2C (e, p) = text "case" <+> parens (hsep . punctuate (char ',') . map initExpr2C $ e) <> char ':' <> nest 4 (phrase2C p $+$ text "break;") |
|
6355 | 169 |
phrase2C (WithBlock ref p) = text "namespace" <> parens (ref2C ref) $$ (phrase2C $ wrapPhrase p) |
170 |
phrase2C (ForCycle (Identifier i) e1 e2 p) = |
|
171 |
text "for" <> (parens . hsep . punctuate (char ';') $ [text i <+> text "=" <+> expr2C e1, text i <+> text "<=" <+> expr2C e2, text "++" <> text i]) |
|
172 |
$$ |
|
173 |
phrase2C (wrapPhrase p) |
|
174 |
phrase2C (RepeatCycle e p) = text "do" <+> phrase2C (Phrases p) <+> text "while" <> parens (text "!" <> parens (expr2C e)) |
|
6467 | 175 |
phrase2C NOP = text ";" |
6355 | 176 |
|
6273 | 177 |
|
6307 | 178 |
wrapPhrase p@(Phrases _) = p |
179 |
wrapPhrase p = Phrases [p] |
|
6273 | 180 |
|
6355 | 181 |
|
6273 | 182 |
expr2C :: Expression -> Doc |
183 |
expr2C (Expression s) = text s |
|
6307 | 184 |
expr2C (BinOp op expr1 expr2) = parens $ (expr2C expr1) <+> op2C op <+> (expr2C expr2) |
6277 | 185 |
expr2C (NumberLiteral s) = text s |
6467 | 186 |
expr2C (FloatLiteral s) = text s |
6277 | 187 |
expr2C (HexNumber s) = text "0x" <> (text . map toLower $ s) |
188 |
expr2C (StringLiteral s) = doubleQuotes $ text s |
|
189 |
expr2C (Reference ref) = ref2C ref |
|
6307 | 190 |
expr2C (PrefixOp op expr) = op2C op <+> expr2C expr |
6467 | 191 |
expr2C Null = text "NULL" |
192 |
expr2C (BuiltInFunCall params ref) = ref2C ref <> parens (hsep . punctuate (char ',') . map expr2C $ params) |
|
193 |
expr2C _ = text "<<expression>>" |
|
6273 | 194 |
|
6307 | 195 |
|
196 |
ref2C :: Reference -> Doc |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
197 |
ref2C (ArrayElement exprs ref) = ref2C ref <> (brackets . hcat) (punctuate comma $ map expr2C exprs) |
6307 | 198 |
ref2C (SimpleReference (Identifier name)) = text name |
199 |
ref2C (RecordField (Dereference ref1) ref2) = ref2C ref1 <> text "->" <> ref2C ref2 |
|
200 |
ref2C (RecordField ref1 ref2) = ref2C ref1 <> text "." <> ref2C ref2 |
|
201 |
ref2C (Dereference ref) = parens $ text "*" <> ref2C ref |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
202 |
ref2C (FunCall params ref) = ref2C ref <> parens (hsep . punctuate (char ',') . map expr2C $ params) |
6467 | 203 |
ref2C (Address ref) = text "&" <> parens (ref2C ref) |
204 |
ref2C (TypeCast (Identifier t) expr) = parens (text t) <> expr2C expr |
|
205 |
ref2C (RefExpression expr) = expr2C expr |
|
6355 | 206 |
|
6275 | 207 |
op2C "or" = text "|" |
208 |
op2C "and" = text "&" |
|
6307 | 209 |
op2C "not" = text "!" |
210 |
op2C "xor" = text "^" |
|
6275 | 211 |
op2C "div" = text "/" |
212 |
op2C "mod" = text "%" |
|
6307 | 213 |
op2C "shl" = text "<<" |
214 |
op2C "shr" = text ">>" |
|
6275 | 215 |
op2C "<>" = text "!=" |
6277 | 216 |
op2C "=" = text "==" |
6275 | 217 |
op2C a = text a |
6273 | 218 |
|
219 |
maybeVoid "" = "void" |
|
220 |
maybeVoid a = a |