author | unc0rr |
Thu, 24 Nov 2011 20:59:13 +0300 | |
changeset 6417 | eae5900fd8a4 |
parent 6399 | a904c735979c |
child 6425 | 1ef4192aa80d |
permissions | -rw-r--r-- |
6273 | 1 |
module Pas2C where |
2 |
||
3 |
import PascalParser |
|
4 |
import Text.PrettyPrint.HughesPJ |
|
5 |
import Data.Maybe |
|
6277 | 6 |
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
|
7 |
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
|
8 |
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
|
9 |
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
|
10 |
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
|
11 |
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
|
12 |
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
|
13 |
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
|
14 |
import System.IO.Error |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
15 |
import qualified Data.Set as Set |
6273 | 16 |
|
17 |
||
6355 | 18 |
pas2C :: String -> IO String |
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
|
19 |
pas2C = flip evalStateT initState . f |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
20 |
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
|
21 |
printLn = liftIO . hPutStrLn stderr |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
22 |
initState = Set.empty |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
23 |
f :: String -> StateT (Set.Set String) IO String |
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 |
f fileName = do |
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 |
liftIO $ setCurrentDirectory "../hedgewars/" |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
26 |
|
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
27 |
fc' <- liftIO $ tryJust (guard . isDoesNotExistError) $ preprocess fileName |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
28 |
case fc' of |
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 |
(Left a) -> return "" |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
30 |
(Right fc) -> do |
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 |
modify $ Set.insert fileName |
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 $ "Preprocessed " ++ fileName |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
33 |
liftIO $ writeFile "debug.txt" fc |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
34 |
let ptree = parse pascalUnit fileName fc |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
35 |
case ptree of |
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 |
(Left a) -> return (show a) |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
37 |
(Right a) -> (return . render . pascal2C) a |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
38 |
|
6273 | 39 |
pascal2C :: PascalUnit -> Doc |
6391 | 40 |
pascal2C (Unit unitName interface implementation init fin) = |
41 |
interface2C interface |
|
42 |
$+$ |
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
$+$ |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
47 |
tvar2C (FunctionDeclaration (Identifier "main") (SimpleType $ Identifier "int") (Just (TypesAndVars [], mainFunction))) |
6391 | 48 |
interface2C :: Interface -> Doc |
49 |
interface2C (Interface uses tvars) = typesAndVars2C tvars |
|
6273 | 50 |
|
51 |
implementation2C :: Implementation -> Doc |
|
52 |
implementation2C (Implementation uses tvars) = typesAndVars2C tvars |
|
53 |
||
54 |
||
55 |
typesAndVars2C :: TypesAndVars -> Doc |
|
56 |
typesAndVars2C (TypesAndVars ts) = vcat $ map tvar2C ts |
|
57 |
||
58 |
||
59 |
tvar2C :: TypeVarDeclaration -> Doc |
|
6307 | 60 |
tvar2C (FunctionDeclaration (Identifier name) returnType Nothing) = |
61 |
type2C returnType <+> text (name ++ "();") |
|
6399 | 62 |
tvar2C (FunctionDeclaration (Identifier name) returnType (Just (tvars, phrase))) = |
6307 | 63 |
type2C returnType <+> text (name ++ "()") |
6273 | 64 |
$$ |
6399 | 65 |
text "{" $+$ (nest 4 $ typesAndVars2C tvars) |
66 |
$+$ |
|
6273 | 67 |
phrase2C phrase |
6399 | 68 |
$+$ |
69 |
text "}" |
|
6355 | 70 |
tvar2C (TypeDeclaration (Identifier i) t) = text "type" <+> text i <+> type2C t <> text ";" |
71 |
tvar2C (VarDeclaration isConst (ids, t) mInitExpr) = |
|
72 |
if isConst then text "const" else empty |
|
73 |
<+> |
|
74 |
type2C t |
|
75 |
<+> |
|
76 |
(hsep . punctuate (char ',') . map (\(Identifier i) -> text i) $ ids) |
|
77 |
<+> |
|
78 |
initExpr mInitExpr |
|
79 |
<> |
|
80 |
text ";" |
|
81 |
where |
|
82 |
initExpr Nothing = empty |
|
83 |
initExpr (Just e) = text "=" <+> initExpr2C e |
|
84 |
||
6391 | 85 |
initExpr2C :: InitExpression -> Doc |
86 |
initExpr2C (InitBinOp op expr1 expr2) = parens $ (initExpr2C expr1) <+> op2C op <+> (initExpr2C expr2) |
|
87 |
initExpr2C (InitNumber s) = text s |
|
88 |
initExpr2C (InitFloat s) = text s |
|
89 |
initExpr2C (InitHexNumber s) = text "0x" <> (text . map toLower $ s) |
|
90 |
initExpr2C (InitString s) = doubleQuotes $ text s |
|
91 |
initExpr2C (InitReference (Identifier i)) = text i |
|
92 |
||
93 |
||
6355 | 94 |
initExpr2C _ = text "<<expression>>" |
6273 | 95 |
|
6307 | 96 |
type2C :: TypeDecl -> Doc |
97 |
type2C UnknownType = text "void" |
|
6399 | 98 |
type2C (String l) = text $ "string" ++ show l |
6355 | 99 |
type2C (SimpleType (Identifier i)) = text i |
100 |
type2C (PointerTo t) = type2C t <> text "*" |
|
101 |
type2C (RecordType tvs) = text "{" $+$ (nest 4 . vcat . map tvar2C $ tvs) $+$ text "}" |
|
102 |
type2C (RangeType r) = text "<<range type>>" |
|
103 |
type2C (Sequence ids) = text "<<sequence type>>" |
|
104 |
type2C (ArrayDecl r t) = text "<<array type>>" |
|
105 |
||
6273 | 106 |
|
107 |
phrase2C :: Phrase -> Doc |
|
6307 | 108 |
phrase2C (Phrases p) = text "{" $+$ (nest 4 . vcat . map phrase2C $ p) $+$ text "}" |
6273 | 109 |
phrase2C (ProcCall (Identifier name) params) = text name <> parens (hsep . punctuate (char ',') . map expr2C $ params) <> semi |
6307 | 110 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = text "if" <> parens (expr2C expr) $+$ (phrase2C . wrapPhrase) phrase1 $+$ elsePart |
6273 | 111 |
where |
112 |
elsePart | isNothing mphrase2 = empty |
|
6307 | 113 |
| otherwise = text "else" $$ (phrase2C . wrapPhrase) (fromJust mphrase2) |
6277 | 114 |
phrase2C (Assignment ref expr) = ref2C ref <> text " = " <> expr2C expr <> semi |
6307 | 115 |
phrase2C (WhileCycle expr phrase) = text "while" <> parens (expr2C expr) $$ (phrase2C $ wrapPhrase phrase) |
116 |
phrase2C (SwitchCase expr cases mphrase) = text "switch" <> parens (expr2C expr) <> text "of" $+$ (nest 4 . vcat . map case2C) cases |
|
6273 | 117 |
where |
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
|
118 |
case2C :: ([Expression], Phrase) -> Doc |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
119 |
case2C (e, p) = text "case" <+> parens (hsep . punctuate (char ',') . map expr2C $ e) <> char ':' <> nest 4 (phrase2C p $+$ text "break;") |
6355 | 120 |
phrase2C (WithBlock ref p) = text "namespace" <> parens (ref2C ref) $$ (phrase2C $ wrapPhrase p) |
121 |
phrase2C (ForCycle (Identifier i) e1 e2 p) = |
|
122 |
text "for" <> (parens . hsep . punctuate (char ';') $ [text i <+> text "=" <+> expr2C e1, text i <+> text "<=" <+> expr2C e2, text "++" <> text i]) |
|
123 |
$$ |
|
124 |
phrase2C (wrapPhrase p) |
|
125 |
phrase2C (RepeatCycle e p) = text "do" <+> phrase2C (Phrases p) <+> text "while" <> parens (text "!" <> parens (expr2C e)) |
|
126 |
||
6273 | 127 |
|
6307 | 128 |
wrapPhrase p@(Phrases _) = p |
129 |
wrapPhrase p = Phrases [p] |
|
6273 | 130 |
|
6355 | 131 |
|
6273 | 132 |
expr2C :: Expression -> Doc |
133 |
expr2C (Expression s) = text s |
|
6307 | 134 |
expr2C (BinOp op expr1 expr2) = parens $ (expr2C expr1) <+> op2C op <+> (expr2C expr2) |
6277 | 135 |
expr2C (NumberLiteral s) = text s |
136 |
expr2C (HexNumber s) = text "0x" <> (text . map toLower $ s) |
|
137 |
expr2C (StringLiteral s) = doubleQuotes $ text s |
|
138 |
expr2C (Reference ref) = ref2C ref |
|
6307 | 139 |
expr2C (PrefixOp op expr) = op2C op <+> expr2C expr |
140 |
{- |
|
6277 | 141 |
| PostfixOp String Expression |
142 |
| CharCode String |
|
6273 | 143 |
-} |
144 |
expr2C _ = empty |
|
145 |
||
6307 | 146 |
|
147 |
ref2C :: Reference -> Doc |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
148 |
ref2C (ArrayElement exprs ref) = ref2C ref <> (brackets . hcat) (punctuate comma $ map expr2C exprs) |
6307 | 149 |
ref2C (SimpleReference (Identifier name)) = text name |
150 |
ref2C (RecordField (Dereference ref1) ref2) = ref2C ref1 <> text "->" <> ref2C ref2 |
|
151 |
ref2C (RecordField ref1 ref2) = ref2C ref1 <> text "." <> ref2C ref2 |
|
152 |
ref2C (Dereference ref) = parens $ text "*" <> ref2C ref |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
153 |
ref2C (FunCall params ref) = ref2C ref <> parens (hsep . punctuate (char ',') . map expr2C $ params) |
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
154 |
ref2C (Address ref) = text "&" <> ref2C ref |
6307 | 155 |
|
6355 | 156 |
|
6275 | 157 |
op2C "or" = text "|" |
158 |
op2C "and" = text "&" |
|
6307 | 159 |
op2C "not" = text "!" |
160 |
op2C "xor" = text "^" |
|
6275 | 161 |
op2C "div" = text "/" |
162 |
op2C "mod" = text "%" |
|
6307 | 163 |
op2C "shl" = text "<<" |
164 |
op2C "shr" = text ">>" |
|
6275 | 165 |
op2C "<>" = text "!=" |
6277 | 166 |
op2C "=" = text "==" |
6275 | 167 |
op2C a = text a |
6273 | 168 |
|
169 |
maybeVoid "" = "void" |
|
170 |
maybeVoid a = a |