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