author | unc0rr |
Fri, 20 Apr 2012 22:03:35 +0400 | |
changeset 6895 | 31def088a870 |
parent 6894 | 555a8d8db228 |
child 6896 | 23b38e530967 |
permissions | -rw-r--r-- |
6858 | 1 |
{-# LANGUAGE ScopedTypeVariables #-} |
6273 | 2 |
module Pas2C where |
3 |
||
4 |
import Text.PrettyPrint.HughesPJ |
|
5 |
import Data.Maybe |
|
6277 | 6 |
import Data.Char |
6511 | 7 |
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
|
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 |
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
|
15 |
import qualified Data.Map as Map |
6512 | 16 |
import Data.List (find) |
6858 | 17 |
import Numeric |
6273 | 18 |
|
6467 | 19 |
import PascalParser |
20 |
import PascalUnitSyntaxTree |
|
6273 | 21 |
|
6618 | 22 |
|
6663 | 23 |
data InsertOption = |
24 |
IOInsert |
|
25 |
| IOLookup |
|
26 |
| IODeferred |
|
27 |
||
6618 | 28 |
type Record = (String, (String, BaseType)) |
6516 | 29 |
data RenderState = RenderState |
30 |
{ |
|
6618 | 31 |
currentScope :: [Record], |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
32 |
lastIdentifier :: String, |
6618 | 33 |
lastType :: BaseType, |
34 |
namespaces :: Map.Map String [Record] |
|
6516 | 35 |
} |
6836 | 36 |
|
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
37 |
emptyState = RenderState [] "" BTUnknown |
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
38 |
|
6836 | 39 |
docToLower :: Doc -> Doc |
40 |
docToLower = text . map toLower . render |
|
6512 | 41 |
|
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 |
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
|
43 |
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
|
44 |
setCurrentDirectory "../hedgewars/" |
6455 | 45 |
s <- flip execStateT initState $ f fn |
6514 | 46 |
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
|
47 |
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
|
48 |
printLn = liftIO . hPutStrLn stderr |
6455 | 49 |
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
|
50 |
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
|
51 |
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
|
52 |
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
|
53 |
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
|
54 |
unless processed $ do |
6455 | 55 |
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
|
56 |
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
|
57 |
$ tryJust (guard . isDoesNotExistError) |
6455 | 58 |
$ 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
|
59 |
case fc' of |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
60 |
(Left a) -> do |
6512 | 61 |
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
|
62 |
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
|
63 |
(Right fc) -> do |
6455 | 64 |
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
|
65 |
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
|
66 |
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
|
67 |
(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
|
68 |
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
|
69 |
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
|
70 |
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
|
71 |
(Right a) -> do |
6455 | 72 |
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
|
73 |
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
|
74 |
mapM_ f (usesFiles a) |
6455 | 75 |
|
6514 | 76 |
|
77 |
renderCFiles :: Map.Map String PascalUnit -> IO () |
|
78 |
renderCFiles units = do |
|
79 |
let u = Map.toList units |
|
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
80 |
let nss = Map.map (toNamespace nss) units |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
81 |
hPutStrLn stderr $ "Units: " ++ (show . Map.keys . Map.filter (not . null) $ nss) |
6853 | 82 |
--writeFile "pas2c.log" $ unlines . map (\t -> show (fst t) ++ "\n" ++ (unlines . map ((:) '\t' . show) . snd $ t)) . Map.toList $ nss |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
83 |
mapM_ (toCFiles nss) u |
6516 | 84 |
where |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
85 |
toNamespace :: Map.Map String [Record] -> PascalUnit -> [Record] |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
86 |
toNamespace nss (System tvs) = |
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
87 |
currentScope $ execState (mapM_ (tvar2C True) tvs) (emptyState nss) |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
88 |
toNamespace _ (Program {}) = [] |
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
89 |
toNamespace nss (Unit _ interface _ _ _) = |
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
90 |
currentScope $ execState (interface2C interface) (emptyState nss) |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
91 |
|
6827 | 92 |
|
6853 | 93 |
withState' :: (RenderState -> RenderState) -> State RenderState a -> State RenderState a |
94 |
withState' f sf = do |
|
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
95 |
st <- liftM f get |
6853 | 96 |
let (a, s) = runState sf st |
97 |
modify(\st -> st{lastType = lastType s}) |
|
98 |
return a |
|
6827 | 99 |
|
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
100 |
withLastIdNamespace :: State RenderState Doc -> State RenderState Doc |
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
101 |
withLastIdNamespace f = do |
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
102 |
li <- gets lastIdentifier |
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
103 |
nss <- gets namespaces |
6827 | 104 |
withState' (\st -> st{currentScope = fromMaybe [] $ Map.lookup li (namespaces st)}) f |
105 |
||
6859 | 106 |
withRecordNamespace :: String -> [(String, BaseType)] -> State RenderState Doc -> State RenderState Doc |
107 |
withRecordNamespace _ [] = error "withRecordNamespace: empty record" |
|
108 |
withRecordNamespace prefix recs = withState' f |
|
6827 | 109 |
where |
110 |
f st = st{currentScope = records ++ currentScope st} |
|
6859 | 111 |
records = map (\(a, b) -> (map toLower a, (prefix ++ a, b))) recs |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
112 |
|
6618 | 113 |
toCFiles :: Map.Map String [Record] -> (String, PascalUnit) -> IO () |
6516 | 114 |
toCFiles _ (_, System _) = return () |
115 |
toCFiles ns p@(fn, pu) = do |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
116 |
hPutStrLn stderr $ "Rendering '" ++ fn ++ "'..." |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
117 |
toCFiles' p |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
118 |
where |
6618 | 119 |
toCFiles' (fn, p@(Program {})) = writeFile (fn ++ ".c") $ (render2C initialState . pascal2C) p |
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6853
diff
changeset
|
120 |
toCFiles' (fn, (Unit unitId interface implementation _ _)) = do |
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6853
diff
changeset
|
121 |
let (a, s) = runState (id2C IOInsert (setBaseType BTUnit unitId) >> interface2C interface) initialState |
6883 | 122 |
writeFile (fn ++ ".h") $ "#pragma once\n\n#include \"pas2c.h\"\n\n" ++ (render (a $+$ text "")) |
123 |
writeFile (fn ++ ".c") $ "#include \"" ++ fn ++ ".h\"\n" ++ (render2C s . implementation2C) implementation |
|
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
124 |
initialState = emptyState ns |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
125 |
|
6516 | 126 |
render2C :: RenderState -> State RenderState Doc -> String |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
127 |
render2C a = render . ($+$ text "") . 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
|
128 |
|
6467 | 129 |
usesFiles :: PascalUnit -> [String] |
6512 | 130 |
usesFiles (Program _ (Implementation uses _) _) = "pas2cSystem" : uses2List uses |
131 |
usesFiles (Unit _ (Interface uses1 _) (Implementation uses2 _) _ _) = "pas2cSystem" : uses2List uses1 ++ uses2List uses2 |
|
132 |
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
|
133 |
|
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
|
134 |
|
6512 | 135 |
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
|
136 |
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
|
137 |
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
|
138 |
|
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
139 |
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
|
140 |
impl <- implementation2C implementation |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
141 |
[main] <- tvar2C True |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
142 |
(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
|
143 |
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
|
144 |
|
6467 | 145 |
|
146 |
||
6512 | 147 |
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
|
148 |
interface2C (Interface uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 149 |
|
6512 | 150 |
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
|
151 |
implementation2C (Implementation uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 152 |
|
153 |
||
6512 | 154 |
typesAndVars2C :: Bool -> TypesAndVars -> State RenderState Doc |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
155 |
typesAndVars2C b (TypesAndVars ts) = liftM (vcat . map (<> semi) . concat) $ mapM (tvar2C b) ts |
6273 | 156 |
|
6816 | 157 |
setBaseType :: BaseType -> Identifier -> Identifier |
158 |
setBaseType bt (Identifier i _) = Identifier i bt |
|
159 |
||
6512 | 160 |
uses2C :: Uses -> State RenderState Doc |
6516 | 161 |
uses2C uses@(Uses unitIds) = do |
162 |
mapM_ injectNamespace (Identifier "pas2cSystem" undefined : unitIds) |
|
6816 | 163 |
mapM_ (id2C IOInsert . setBaseType BTUnit) unitIds |
6516 | 164 |
return $ vcat . map (\i -> text $ "#include \"" ++ i ++ ".h\"") $ uses2List uses |
165 |
where |
|
6517 | 166 |
injectNamespace (Identifier i _) = do |
6516 | 167 |
getNS <- gets (flip Map.lookup . namespaces) |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
168 |
let f = flip (foldl (flip (:))) (fromMaybe [] (getNS i)) |
6516 | 169 |
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
|
170 |
|
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
|
171 |
uses2List :: Uses -> [String] |
6489 | 172 |
uses2List (Uses ids) = map (\(Identifier i _) -> i) ids |
6273 | 173 |
|
6509 | 174 |
|
6663 | 175 |
id2C :: InsertOption -> Identifier -> State RenderState Doc |
176 |
id2C IOInsert (Identifier i t) = do |
|
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
177 |
ns <- gets currentScope |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
178 |
{-- case t of |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
179 |
BTUnknown -> do |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
180 |
ns <- gets currentScope |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
181 |
error $ "id2C IOInsert: type BTUnknown for " ++ show i ++ "\nnamespace: " ++ show (take 100 ns) |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
182 |
_ -> do --} |
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
183 |
modify (\s -> s{currentScope = (n, (i, t)) : currentScope s, lastIdentifier = n}) |
6512 | 184 |
return $ text i |
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
185 |
where |
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
186 |
n = map toLower i |
6663 | 187 |
id2C IOLookup (Identifier i t) = do |
6512 | 188 |
let i' = map toLower i |
6516 | 189 |
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
|
190 |
ns <- gets currentScope |
6853 | 191 |
lt <- gets lastType |
6512 | 192 |
if isNothing v then |
6853 | 193 |
error $ "Not defined: '" ++ i' ++ "'\n" ++ show lt ++ "\n" ++ show (take 100 ns) |
6512 | 194 |
else |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
195 |
let vv = snd $ fromJust v in modify (\s -> s{lastType = snd vv, lastIdentifier = fst vv}) >> (return . text . fst $ vv) |
6663 | 196 |
id2C IODeferred (Identifier i t) = do |
197 |
let i' = map toLower i |
|
198 |
v <- gets $ find (\(a, _) -> a == i') . currentScope |
|
199 |
if (isNothing v) then |
|
200 |
return $ text i |
|
201 |
else |
|
202 |
return . text . fst . snd . fromJust $ v |
|
6512 | 203 |
|
6653 | 204 |
id2CTyped :: TypeDecl -> Identifier -> State RenderState Doc |
205 |
id2CTyped t (Identifier i _) = do |
|
206 |
tb <- resolveType t |
|
6835 | 207 |
ns <- gets currentScope |
6663 | 208 |
case tb of |
209 |
BTUnknown -> do |
|
210 |
ns <- gets currentScope |
|
6835 | 211 |
error $ "id2CTyped: type BTUnknown for " ++ show i ++ "\ntype: " ++ show t ++ "\nnamespace: " ++ show (take 100 ns) |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
212 |
_ -> return () |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
213 |
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
|
214 |
|
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
215 |
|
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
216 |
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
|
217 |
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
|
218 |
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
|
219 |
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
|
220 |
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
|
221 |
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
|
222 |
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
|
223 |
f "pointer" = BTPointerTo BTVoid |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
224 |
f "boolean" = BTBool |
6649
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
225 |
f "float" = BTFloat |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
226 |
f "char" = BTChar |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
227 |
f "string" = BTString |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
228 |
f _ = error $ "Unknown system type: " ++ show st |
6827 | 229 |
resolveType (PointerTo (SimpleType (Identifier i _))) = return . BTPointerTo $ BTUnresolved (map toLower i) |
230 |
resolveType (PointerTo t) = liftM BTPointerTo $ resolveType t |
|
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
231 |
resolveType (RecordType tv mtvs) = do |
6827 | 232 |
tvs <- mapM f (concat $ tv : fromMaybe [] mtvs) |
233 |
return . BTRecord . concat $ tvs |
|
6626
a447993f2ad7
Further work on propagating types. Now it hopefully works fully, just need to annotate namespace with types first.
unc0rr
parents:
6618
diff
changeset
|
234 |
where |
6827 | 235 |
f :: TypeVarDeclaration -> State RenderState [(String, BaseType)] |
236 |
f (VarDeclaration _ (ids, td) _) = mapM (\(Identifier i _) -> liftM ((,) i) $ resolveType td) ids |
|
6893 | 237 |
resolveType (ArrayDecl (Just i) t) = do |
238 |
t' <- resolveType t |
|
239 |
return $ BTArray i BTInt t' |
|
240 |
resolveType (ArrayDecl Nothing t) = liftM (BTArray RangeInfinite BTInt) $ resolveType t |
|
6826 | 241 |
resolveType (FunctionType t _) = liftM BTFunction $ resolveType t |
6835 | 242 |
resolveType (DeriveType (InitHexNumber _)) = return BTInt |
243 |
resolveType (DeriveType (InitNumber _)) = return BTInt |
|
244 |
resolveType (DeriveType (InitFloat _)) = return BTFloat |
|
245 |
resolveType (DeriveType (InitString _)) = return BTString |
|
246 |
resolveType (DeriveType (InitBinOp {})) = return BTInt |
|
247 |
resolveType (DeriveType (InitPrefixOp {})) = return BTInt |
|
248 |
resolveType (DeriveType (BuiltInFunction{})) = return BTInt |
|
249 |
resolveType (DeriveType (InitReference (Identifier{}))) = return BTBool -- TODO: derive from actual type |
|
250 |
resolveType (DeriveType _) = return BTUnknown |
|
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
251 |
resolveType (String _) = return BTString |
6826 | 252 |
resolveType VoidType = return BTVoid |
6653 | 253 |
resolveType (Sequence ids) = return $ BTEnum $ map (\(Identifier i _) -> map toLower i) ids |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
254 |
resolveType (RangeType _) = return $ BTVoid |
6653 | 255 |
resolveType (Set t) = liftM BTSet $ resolveType t |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
256 |
|
6834 | 257 |
|
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
258 |
fromPointer :: String -> BaseType -> State RenderState BaseType |
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
259 |
fromPointer s (BTPointerTo t) = f t |
6834 | 260 |
where |
261 |
f (BTUnresolved s) = do |
|
262 |
v <- gets $ find (\(a, _) -> a == s) . currentScope |
|
263 |
if isJust v then |
|
264 |
f . snd . snd . fromJust $ v |
|
265 |
else |
|
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
266 |
error $ "Unknown type " ++ show t ++ "\n" ++ s |
6834 | 267 |
f t = return t |
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
268 |
fromPointer s t = do |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
269 |
ns <- gets currentScope |
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
270 |
error $ "Dereferencing from non-pointer type " ++ show t ++ "\n" ++ s ++ "\n\n" ++ show (take 100 ns) |
6834 | 271 |
|
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
272 |
|
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
273 |
functionParams2C params = liftM (hcat . punctuate comma . concat) $ mapM (tvar2C False) params |
6834 | 274 |
|
6880 | 275 |
fun2C :: Bool -> String -> TypeVarDeclaration -> State RenderState [Doc] |
276 |
fun2C _ _ (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
|
277 |
t <- type2C returnType |
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
278 |
t'<- gets lastType |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
279 |
p <- withState' id $ functionParams2C params |
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
280 |
n <- id2C IOInsert $ setBaseType (BTFunction t') name |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
281 |
return [t empty <+> n <> parens p] |
6517 | 282 |
|
6880 | 283 |
fun2C True rv (FunctionDeclaration name returnType params (Just (tvars, phrase))) = do |
284 |
let res = docToLower $ text rv <> text "_result" |
|
6836 | 285 |
t <- type2C returnType |
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
286 |
t'<- gets lastType |
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
287 |
n <- id2C IOInsert $ setBaseType (BTFunction t') name |
6880 | 288 |
(p, ph) <- withState' (\st -> st{currentScope = (map toLower rv, (render res, t')) : currentScope st}) $ do |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
289 |
p <- functionParams2C params |
6827 | 290 |
ph <- liftM2 ($+$) (typesAndVars2C False tvars) (phrase2C' phrase) |
291 |
return (p, ph) |
|
6836 | 292 |
let phrasesBlock = case returnType of |
293 |
VoidType -> ph |
|
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
294 |
_ -> t empty <+> res <> semi $+$ ph $+$ text "return" <+> res <> semi |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
295 |
return [ |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
296 |
t empty <+> 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
|
297 |
$+$ |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
298 |
text "{" |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
299 |
$+$ |
6836 | 300 |
nest 4 phrasesBlock |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
301 |
$+$ |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
302 |
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
|
303 |
where |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
304 |
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
|
305 |
phrase2C' p = phrase2C p |
6517 | 306 |
|
6880 | 307 |
fun2C False _ (FunctionDeclaration (Identifier name _) _ _ _) = error $ "nested functions not allowed: " ++ name |
308 |
fun2C _ tv _ = error $ "fun2C: I don't render " ++ show tv |
|
6618 | 309 |
|
6880 | 310 |
tvar2C :: Bool -> TypeVarDeclaration -> State RenderState [Doc] |
311 |
tvar2C b f@(FunctionDeclaration (Identifier name _) _ _ _) = |
|
312 |
fun2C b name f |
|
6618 | 313 |
tvar2C _ td@(TypeDeclaration i' t) = do |
6653 | 314 |
i <- id2CTyped t i' |
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
315 |
tp <- case t of |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
316 |
FunctionType {} -> type2C (PointerTo t) |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
317 |
_ -> type2C t |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
318 |
return [text "typedef" <+> tp i] |
6517 | 319 |
|
6509 | 320 |
tvar2C _ (VarDeclaration isConst (ids, t) mInitExpr) = do |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
321 |
t' <- liftM (((if isConst then text "const" else empty) <+>) . ) $ type2C t |
6509 | 322 |
ie <- initExpr mInitExpr |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
323 |
liftM (map(\i -> t' i <+> ie)) $ mapM (id2CTyped t) ids |
6355 | 324 |
where |
6509 | 325 |
initExpr Nothing = return $ empty |
326 |
initExpr (Just e) = liftM (text "=" <+>) (initExpr2C e) |
|
6517 | 327 |
|
6880 | 328 |
tvar2C f (OperatorDeclaration op (Identifier i _) ret params body) = do |
329 |
r <- op2CTyped op (extractTypes params) |
|
330 |
fun2C f i (FunctionDeclaration r ret params body) |
|
6355 | 331 |
|
6517 | 332 |
|
6880 | 333 |
op2CTyped :: String -> [TypeDecl] -> State RenderState Identifier |
334 |
op2CTyped op t = do |
|
335 |
t' <- liftM (render . hcat . punctuate (char '_') . map (\t -> t empty)) $ mapM type2C t |
|
336 |
bt <- gets lastType |
|
337 |
return $ case bt of |
|
338 |
BTRecord {} -> Identifier (t' ++ "_op_" ++ opStr) bt |
|
339 |
_ -> Identifier t' bt |
|
340 |
where |
|
341 |
opStr = case op of |
|
342 |
"+" -> "add" |
|
343 |
"-" -> "sub" |
|
344 |
"*" -> "mul" |
|
345 |
"/" -> "div" |
|
346 |
"=" -> "eq" |
|
347 |
"<" -> "lt" |
|
348 |
">" -> "gt" |
|
349 |
_ -> error $ "op2CTyped: unknown op '" ++ op ++ "'" |
|
350 |
||
351 |
extractTypes :: [TypeVarDeclaration] -> [TypeDecl] |
|
352 |
extractTypes = concatMap f |
|
353 |
where |
|
354 |
f (VarDeclaration _ (ids, t) _) = replicate (length ids) t |
|
355 |
f a = error $ "extractTypes: can't extract from " ++ show a |
|
356 |
||
6512 | 357 |
initExpr2C :: InitExpression -> State RenderState Doc |
6858 | 358 |
initExpr2C InitNull = return $ text "NULL" |
359 |
initExpr2C (InitAddress expr) = liftM ((<>) (text "&")) (initExpr2C expr) |
|
6860 | 360 |
initExpr2C (InitPrefixOp op expr) = liftM (text (op2C op) <>) (initExpr2C expr) |
6509 | 361 |
initExpr2C (InitBinOp op expr1 expr2) = do |
362 |
e1 <- initExpr2C expr1 |
|
363 |
e2 <- initExpr2C expr2 |
|
6860 | 364 |
return $ parens $ e1 <+> text (op2C op) <+> e2 |
6509 | 365 |
initExpr2C (InitNumber s) = return $ text s |
366 |
initExpr2C (InitFloat s) = return $ text s |
|
367 |
initExpr2C (InitHexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
6874 | 368 |
initExpr2C (InitString [a]) = return . quotes $ text [a] |
6883 | 369 |
initExpr2C (InitString s) = return $ braces $ text ".s = " <> doubleQuotes (text s) |
6858 | 370 |
initExpr2C (InitChar a) = return $ quotes $ text "\\x" <> text (showHex (read a) "") |
6663 | 371 |
initExpr2C (InitReference i) = id2C IOLookup i |
6858 | 372 |
initExpr2C (InitRecord fields) = do |
373 |
(fs :: [Doc]) <- mapM (\(Identifier a _, b) -> liftM (text "." <> text a <+> equals <+>) $ initExpr2C b) fields |
|
6886 | 374 |
return $ lbrace $+$ (nest 4 . vcat . punctuate comma $ fs) $+$ rbrace |
6859 | 375 |
initExpr2C (InitArray [value]) = initExpr2C value |
6858 | 376 |
initExpr2C (InitArray values) = liftM (braces . vcat . punctuate comma) $ mapM initExpr2C values |
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
377 |
initExpr2C r@(InitRange (Range i@(Identifier i' _))) = do |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
378 |
id2C IOLookup i |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
379 |
t <- gets lastType |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
380 |
case t of |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
381 |
BTEnum s -> return . int $ length s |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
382 |
BTInt -> case i' of |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
383 |
"byte" -> return $ int 256 |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
384 |
_ -> error $ "InitRange identifier: " ++ i' |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
385 |
_ -> error $ "InitRange: " ++ show r |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
386 |
initExpr2C (InitRange (RangeFromTo (InitNumber "0") r)) = initExpr2C $ BuiltInFunction "succ" [r] |
6893 | 387 |
initExpr2C (InitRange (RangeFromTo (InitChar "0") (InitChar r))) = initExpr2C $ BuiltInFunction "succ" [InitNumber r] |
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
388 |
initExpr2C (InitRange a) = error $ show a --return $ text "<<range>>" |
6872 | 389 |
initExpr2C (InitSet []) = return $ text "0" |
390 |
initExpr2C (InitSet a) = return $ text "<<set>>" |
|
6887 | 391 |
initExpr2C (BuiltInFunction "low" [InitReference e]) = return $ |
392 |
case e of |
|
393 |
(Identifier "LongInt" _) -> int (-2^31) |
|
6893 | 394 |
(Identifier "SmallInt" _) -> int (-2^15) |
395 |
_ -> error $ "BuiltInFunction 'low': " ++ show e |
|
396 |
initExpr2C (BuiltInFunction "high" [e]) = do |
|
397 |
initExpr2C e |
|
398 |
t <- gets lastType |
|
399 |
case t of |
|
400 |
(BTArray i _ _) -> initExpr2C $ BuiltInFunction "pred" [InitRange i] |
|
401 |
a -> error $ "BuiltInFunction 'high': " ++ show a |
|
402 |
initExpr2C (BuiltInFunction "succ" [BuiltInFunction "pred" [e]]) = initExpr2C e |
|
403 |
initExpr2C (BuiltInFunction "pred" [BuiltInFunction "succ" [e]]) = initExpr2C e |
|
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
404 |
initExpr2C (BuiltInFunction "succ" [e]) = liftM (<> text " + 1") $ initExpr2C e |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
405 |
initExpr2C (BuiltInFunction "pred" [e]) = liftM (<> text " - 1") $ initExpr2C e |
6887 | 406 |
initExpr2C b@(BuiltInFunction _ _) = error $ show b |
6874 | 407 |
initExpr2C a = error $ "initExpr2C: don't know how to render " ++ show a |
6391 | 408 |
|
6887 | 409 |
|
6874 | 410 |
range2C :: InitExpression -> State RenderState [Doc] |
411 |
range2C (InitString [a]) = return [quotes $ text [a]] |
|
412 |
range2C (InitRange (Range i)) = liftM (flip (:) []) $ id2C IOLookup i |
|
413 |
range2C (InitRange (RangeFromTo (InitString [a]) (InitString [b]))) = return $ map (\i -> quotes $ text [i]) [a..b] |
|
414 |
||
415 |
range2C a = liftM (flip (:) []) $ initExpr2C a |
|
6391 | 416 |
|
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
417 |
type2C :: TypeDecl -> State RenderState (Doc -> Doc) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
418 |
type2C (SimpleType i) = liftM (\i a -> i <+> a) $ id2C IOLookup i |
6838 | 419 |
type2C t = do |
420 |
r <- type2C' t |
|
421 |
rt <- resolveType t |
|
422 |
modify (\st -> st{lastType = rt}) |
|
423 |
return r |
|
424 |
where |
|
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
425 |
type2C' VoidType = return (text "void" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
426 |
type2C' (String l) = return (text ("string" ++ show l) <+>) |
6895 | 427 |
type2C' (PointerTo (SimpleType i)) = liftM (\i a -> text "struct __" <> i <+> text "*" <+> a) $ id2C IODeferred i |
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
428 |
type2C' (PointerTo t) = liftM (\t a -> t (parens $ text "*" <> a)) $ type2C t |
6838 | 429 |
type2C' (RecordType tvs union) = do |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
430 |
t <- withState' id $ mapM (tvar2C False) tvs |
6886 | 431 |
u <- unions |
6895 | 432 |
return $ \i -> text "struct __" <> i <+> lbrace $+$ nest 4 ((vcat . map (<> semi) . concat $ t) $$ u) $+$ rbrace <+> i |
6886 | 433 |
where |
434 |
unions = case union of |
|
435 |
Nothing -> return empty |
|
436 |
Just a -> do |
|
437 |
structs <- mapM struct2C a |
|
438 |
return $ text "union" $+$ braces (nest 4 $ vcat structs) <> semi |
|
439 |
struct2C tvs = do |
|
440 |
t <- withState' id $ mapM (tvar2C False) tvs |
|
441 |
return $ text "struct" $+$ braces (nest 4 (vcat . map (<> semi) . concat $ t)) <> semi |
|
6894 | 442 |
type2C' (RangeType r) = return (text "int" <+>) |
6838 | 443 |
type2C' (Sequence ids) = do |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
444 |
is <- mapM (id2C IOInsert . setBaseType bt) ids |
6887 | 445 |
return (text "enum" <+> (braces . vcat . punctuate comma . map (\(a, b) -> a <+> equals <+> text "0x" <> text (showHex b "")) $ zip is [1..]) <+>) |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
446 |
where |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
447 |
bt = BTEnum $ map (\(Identifier i _) -> map toLower i) ids |
6894 | 448 |
type2C' (ArrayDecl Nothing t) = type2C (PointerTo t) |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
449 |
type2C' (ArrayDecl (Just r) t) = do |
6858 | 450 |
t' <- type2C t |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
451 |
r' <- initExpr2C (InitRange r) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
452 |
return $ \i -> t' i <> brackets r' |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
453 |
type2C' (Set t) = return (text "<<set>>" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
454 |
type2C' (FunctionType returnType params) = do |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
455 |
t <- type2C returnType |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
456 |
p <- withState' id $ functionParams2C params |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
457 |
return (\i -> t empty <+> i <> parens p) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
458 |
type2C' (DeriveType (InitBinOp {})) = return (text "int" <+>) |
6858 | 459 |
type2C' (DeriveType (InitPrefixOp _ i)) = type2C' (DeriveType i) |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
460 |
type2C' (DeriveType (InitNumber _)) = return (text "int" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
461 |
type2C' (DeriveType (InitHexNumber _)) = return (text "int" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
462 |
type2C' (DeriveType (InitFloat _)) = return (text "float" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
463 |
type2C' (DeriveType (BuiltInFunction {})) = return (text "int" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
464 |
type2C' (DeriveType (InitString {})) = return (text "string255" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
465 |
type2C' (DeriveType (InitReference {})) = return (text "<<some type>>" <+>) |
6858 | 466 |
type2C' (DeriveType a) = error $ "Can't derive type from " ++ show a |
6273 | 467 |
|
6512 | 468 |
phrase2C :: Phrase -> State RenderState Doc |
6509 | 469 |
phrase2C (Phrases p) = do |
470 |
ps <- mapM phrase2C p |
|
471 |
return $ text "{" $+$ (nest 4 . vcat $ ps) $+$ text "}" |
|
472 |
phrase2C (ProcCall f@(FunCall {}) []) = liftM (<> semi) $ ref2C f |
|
473 |
phrase2C (ProcCall ref params) = do |
|
474 |
r <- ref2C ref |
|
475 |
ps <- mapM expr2C params |
|
476 |
return $ r <> parens (hsep . punctuate (char ',') $ ps) <> semi |
|
477 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = do |
|
478 |
e <- expr2C expr |
|
479 |
p1 <- (phrase2C . wrapPhrase) phrase1 |
|
480 |
el <- elsePart |
|
481 |
return $ |
|
482 |
text "if" <> parens e $+$ p1 $+$ el |
|
6273 | 483 |
where |
6509 | 484 |
elsePart | isNothing mphrase2 = return $ empty |
485 |
| otherwise = liftM (text "else" $$) $ (phrase2C . wrapPhrase) (fromJust mphrase2) |
|
486 |
phrase2C (Assignment ref expr) = do |
|
487 |
r <- ref2C ref |
|
488 |
e <- expr2C expr |
|
489 |
return $ |
|
490 |
r <> text " = " <> e <> semi |
|
491 |
phrase2C (WhileCycle expr phrase) = do |
|
492 |
e <- expr2C expr |
|
493 |
p <- phrase2C $ wrapPhrase phrase |
|
494 |
return $ text "while" <> parens e $$ p |
|
495 |
phrase2C (SwitchCase expr cases mphrase) = do |
|
496 |
e <- expr2C expr |
|
497 |
cs <- mapM case2C cases |
|
6874 | 498 |
d <- dflt |
6509 | 499 |
return $ |
6895 | 500 |
text "switch" <> parens e $+$ braces (nest 4 . vcat $ cs ++ d) |
6273 | 501 |
where |
6512 | 502 |
case2C :: ([InitExpression], Phrase) -> State RenderState Doc |
6509 | 503 |
case2C (e, p) = do |
6874 | 504 |
ies <- mapM range2C e |
6509 | 505 |
ph <- phrase2C p |
506 |
return $ |
|
6874 | 507 |
vcat (map (\i -> text "case" <+> i <> colon) . concat $ ies) <> nest 4 (ph $+$ text "break;") |
508 |
dflt | isNothing mphrase = return [] |
|
509 |
| otherwise = do |
|
510 |
ph <- mapM phrase2C $ fromJust mphrase |
|
511 |
return [text "default:" <+> nest 4 (vcat ph)] |
|
512 |
||
6845 | 513 |
phrase2C wb@(WithBlock ref p) = do |
6509 | 514 |
r <- ref2C ref |
6845 | 515 |
t <- gets lastType |
516 |
case t of |
|
6859 | 517 |
(BTRecord rs) -> withRecordNamespace (render r ++ ".") rs $ phrase2C $ wrapPhrase p |
6845 | 518 |
a -> do |
519 |
ns <- gets currentScope |
|
520 |
error $ "'with' block referencing non-record type " ++ show a ++ "\n" ++ show wb ++ "\nnamespace: " ++ show (take 100 ns) |
|
6509 | 521 |
phrase2C (ForCycle i' e1' e2' p) = do |
6663 | 522 |
i <- id2C IOLookup i' |
6509 | 523 |
e1 <- expr2C e1' |
524 |
e2 <- expr2C e2' |
|
525 |
ph <- phrase2C (wrapPhrase p) |
|
526 |
return $ |
|
527 |
text "for" <> (parens . hsep . punctuate (char ';') $ [i <+> text "=" <+> e1, i <+> text "<=" <+> e2, text "++" <> i]) |
|
528 |
$$ |
|
529 |
ph |
|
530 |
phrase2C (RepeatCycle e' p') = do |
|
531 |
e <- expr2C e' |
|
532 |
p <- phrase2C (Phrases p') |
|
533 |
return $ text "do" <+> p <+> text "while" <> parens (text "!" <> parens e) |
|
534 |
phrase2C NOP = return $ text ";" |
|
6355 | 535 |
|
6895 | 536 |
phrase2C (BuiltInFunctionCall [] (SimpleReference (Identifier "exit" BTUnknown))) = return $ text "return" <> semi |
537 |
phrase2C (BuiltInFunctionCall [e] (SimpleReference (Identifier "exit" BTUnknown))) = liftM (\e -> text "return" <> e <> semi) $ expr2C e |
|
538 |
phrase2C (BuiltInFunctionCall [e] (SimpleReference (Identifier "dec" BTUnknown))) = liftM (\e -> text "--" <> e <> semi) $ expr2C e |
|
539 |
phrase2C (BuiltInFunctionCall [e1, e2] (SimpleReference (Identifier "dec" BTUnknown))) = liftM2 (\a b -> a <> text " -= " <> b <> semi) (expr2C e1) (expr2C e2) |
|
540 |
phrase2C (BuiltInFunctionCall [e] (SimpleReference (Identifier "inc" BTUnknown))) = liftM (\e -> text "++" <> e <> semi) $ expr2C e |
|
541 |
phrase2C (BuiltInFunctionCall [e1, e2] (SimpleReference (Identifier "inc" BTUnknown))) = liftM2 (\a b -> a <+> text "+=" <+> b <> semi) (expr2C e1) (expr2C e2) |
|
542 |
phrase2C a = error $ "phrase2C: " ++ show a |
|
6273 | 543 |
|
6307 | 544 |
wrapPhrase p@(Phrases _) = p |
545 |
wrapPhrase p = Phrases [p] |
|
6273 | 546 |
|
6512 | 547 |
expr2C :: Expression -> State RenderState Doc |
6509 | 548 |
expr2C (Expression s) = return $ text s |
549 |
expr2C (BinOp op expr1 expr2) = do |
|
550 |
e1 <- expr2C expr1 |
|
6860 | 551 |
t1 <- gets lastType |
6509 | 552 |
e2 <- expr2C expr2 |
6860 | 553 |
case (op2C op, t1) of |
554 |
("+", BTString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strconcat" (BTFunction BTString)) |
|
6872 | 555 |
("==", BTString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strcompare" (BTFunction BTBool)) |
556 |
("!=", BTString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strncompare" (BTFunction BTBool)) |
|
6895 | 557 |
("&", BTBool) -> return $ parens e1 <+> text "&&" <+> parens e2 |
558 |
("|", BTBool) -> return $ parens e1 <+> text "||" <+> parens e2 |
|
559 |
(o, _) -> return $ parens e1 <+> text o <+> parens e2 |
|
6509 | 560 |
expr2C (NumberLiteral s) = return $ text s |
561 |
expr2C (FloatLiteral s) = return $ text s |
|
562 |
expr2C (HexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
6874 | 563 |
expr2C (StringLiteral [a]) = return . quotes $ text [a] |
6509 | 564 |
expr2C (StringLiteral s) = return $ doubleQuotes $ text s |
6277 | 565 |
expr2C (Reference ref) = ref2C ref |
6860 | 566 |
expr2C (PrefixOp op expr) = liftM (text (op2C op) <>) (expr2C expr) |
6509 | 567 |
expr2C Null = return $ text "NULL" |
6895 | 568 |
expr2C (CharCode a) = return $ quotes $ text "\\x" <> text (showHex (read a) "") |
569 |
expr2C (HexCharCode a) = return $ quotes $ text "\\x" <> text (map toLower a) |
|
570 |
expr2C (SetExpression ids) = mapM (id2C IOLookup) ids >>= return . parens . hcat . punctuate (text " | ") |
|
571 |
expr2C b@(BuiltInFunCall [e] (SimpleReference (Identifier "ord" _))) = liftM parens $ expr2C e |
|
572 |
expr2C (BuiltInFunCall [e] (SimpleReference (Identifier "succ" _))) = liftM (<> text " + 1") $ expr2C e |
|
6509 | 573 |
expr2C (BuiltInFunCall params ref) = do |
574 |
r <- ref2C ref |
|
575 |
ps <- mapM expr2C params |
|
576 |
return $ |
|
577 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
6858 | 578 |
expr2C a = error $ "Don't know how to render " ++ show a |
6273 | 579 |
|
6307 | 580 |
|
6512 | 581 |
ref2C :: Reference -> State RenderState Doc |
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6853
diff
changeset
|
582 |
-- rewrite into proper form |
6858 | 583 |
ref2C (RecordField ref1 (ArrayElement exprs ref2)) = ref2C $ ArrayElement exprs (RecordField ref1 ref2) |
584 |
ref2C (RecordField ref1 (Dereference ref2)) = ref2C $ Dereference (RecordField ref1 ref2) |
|
585 |
ref2C (RecordField ref1 (RecordField ref2 ref3)) = ref2C $ RecordField (RecordField ref1 ref2) ref3 |
|
586 |
ref2C (RecordField ref1 (FunCall params ref2)) = ref2C $ FunCall params (RecordField ref1 ref2) |
|
587 |
ref2C (ArrayElement (a:b:xs) ref) = ref2C $ ArrayElement (b:xs) (ArrayElement [a] ref) |
|
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6853
diff
changeset
|
588 |
-- conversion routines |
6895 | 589 |
ref2C ae@(ArrayElement [expr] ref) = do |
590 |
e <- expr2C expr |
|
6509 | 591 |
r <- ref2C ref |
6827 | 592 |
t <- gets lastType |
6838 | 593 |
ns <- gets currentScope |
6827 | 594 |
case t of |
6893 | 595 |
(BTArray _ _ t') -> modify (\st -> st{lastType = t'}) |
6836 | 596 |
(BTString) -> modify (\st -> st{lastType = BTChar}) |
6872 | 597 |
(BTPointerTo t) -> do |
598 |
t'' <- fromPointer (show t) =<< gets lastType |
|
599 |
case t'' of |
|
600 |
BTChar -> modify (\st -> st{lastType = BTChar}) |
|
601 |
a -> error $ "Getting element of " ++ show a ++ "\nReference: " ++ show ae ++ "\n" ++ show (take 100 ns) |
|
6838 | 602 |
a -> error $ "Getting element of " ++ show a ++ "\nReference: " ++ show ae ++ "\n" ++ show (take 100 ns) |
6895 | 603 |
case t of |
604 |
BTString -> return $ r <> text ".s" <> brackets e |
|
605 |
_ -> return $ r <> brackets e |
|
6663 | 606 |
ref2C (SimpleReference name) = id2C IOLookup name |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
607 |
ref2C rf@(RecordField (Dereference ref1) ref2) = do |
6509 | 608 |
r1 <- ref2C ref1 |
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
609 |
t <- fromPointer (show ref1) =<< gets lastType |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
610 |
ns <- gets currentScope |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
611 |
r2 <- case t of |
6859 | 612 |
BTRecord rs -> withRecordNamespace "" rs $ ref2C ref2 |
6843
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
613 |
BTUnit -> withLastIdNamespace $ ref2C ref2 |
59da15acb2f2
Finally fix the bug with pointer declarations polluting namespace with bad records
unc0rr
parents:
6838
diff
changeset
|
614 |
a -> error $ "dereferencing from " ++ show a ++ "\n" ++ show rf ++ "\n" ++ show (take 100 ns) |
6509 | 615 |
return $ |
616 |
r1 <> text "->" <> r2 |
|
6618 | 617 |
ref2C rf@(RecordField ref1 ref2) = do |
618 |
r1 <- ref2C ref1 |
|
619 |
t <- gets lastType |
|
6835 | 620 |
ns <- gets currentScope |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
621 |
r2 <- case t of |
6859 | 622 |
BTRecord rs -> withRecordNamespace "" rs $ ref2C ref2 |
6826 | 623 |
BTUnit -> withLastIdNamespace $ ref2C ref2 |
6835 | 624 |
a -> error $ "dereferencing from " ++ show a ++ "\n" ++ show rf ++ "\n" ++ show (take 100 ns) |
6509 | 625 |
return $ |
626 |
r1 <> text "." <> r2 |
|
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
627 |
ref2C d@(Dereference ref) = do |
6827 | 628 |
r <- ref2C ref |
6855
807156c01475
Finish the toughest part of the converter. Now it knows types of everything, so could correctly recognize bitwise operators and type convertions.
unc0rr
parents:
6854
diff
changeset
|
629 |
t <- fromPointer (show d) =<< gets lastType |
6834 | 630 |
modify (\st -> st{lastType = t}) |
6859 | 631 |
return $ (parens $ text "*" <> r) |
6509 | 632 |
ref2C (FunCall params ref) = do |
6826 | 633 |
ps <- liftM (parens . hsep . punctuate (char ',')) $ mapM expr2C params |
6509 | 634 |
r <- ref2C ref |
6826 | 635 |
t <- gets lastType |
636 |
case t of |
|
637 |
BTFunction t -> do |
|
638 |
modify (\s -> s{lastType = t}) |
|
639 |
return $ r <> ps |
|
640 |
_ -> return $ parens r <> ps |
|
641 |
||
6509 | 642 |
ref2C (Address ref) = do |
643 |
r <- ref2C ref |
|
644 |
return $ text "&" <> parens r |
|
645 |
ref2C (TypeCast t' expr) = do |
|
6663 | 646 |
t <- id2C IOLookup t' |
6509 | 647 |
e <- expr2C expr |
648 |
return $ parens t <> e |
|
6467 | 649 |
ref2C (RefExpression expr) = expr2C expr |
6355 | 650 |
|
6509 | 651 |
|
6860 | 652 |
op2C :: String -> String |
653 |
op2C "or" = "|" |
|
654 |
op2C "and" = "&" |
|
655 |
op2C "not" = "!" |
|
656 |
op2C "xor" = "^" |
|
657 |
op2C "div" = "/" |
|
658 |
op2C "mod" = "%" |
|
659 |
op2C "shl" = "<<" |
|
660 |
op2C "shr" = ">>" |
|
661 |
op2C "<>" = "!=" |
|
662 |
op2C "=" = "==" |
|
663 |
op2C a = a |
|
6273 | 664 |