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