author | unc0rr |
Sat, 13 Oct 2018 18:04:25 +0200 | |
changeset 13885 | cd39e87d7a80 |
parent 13878 | 0ce8aad17c24 |
child 13887 | 5988e73080a3 |
permissions | -rw-r--r-- |
6858 | 1 |
{-# LANGUAGE ScopedTypeVariables #-} |
6273 | 2 |
module Pas2C where |
3 |
||
13819
db1b680bd8d3
Resolve ambiguity of <> in Pas2C.hs
Wuzzy <Wuzzy2@mail.ru>
parents:
13344
diff
changeset
|
4 |
import Prelude hiding ((<>)) |
6273 | 5 |
import Text.PrettyPrint.HughesPJ |
6 |
import Data.Maybe |
|
6277 | 7 |
import Data.Char |
6511 | 8 |
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
|
9 |
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
|
10 |
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
|
11 |
import PascalPreprocessor |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
12 |
import Control.Exception |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
13 |
import System.IO.Error |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
14 |
import qualified Data.Map as Map |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
15 |
import qualified Data.Set as Set |
6512 | 16 |
import Data.List (find) |
6858 | 17 |
import Numeric |
6273 | 18 |
|
10245 | 19 |
import PascalParser |
6467 | 20 |
import PascalUnitSyntaxTree |
6273 | 21 |
|
6618 | 22 |
|
7315 | 23 |
data InsertOption = |
6663 | 24 |
IOInsert |
7511 | 25 |
| IOInsertWithType Doc |
6663 | 26 |
| IOLookup |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
27 |
| IOLookupLast |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
28 |
| IOLookupFunction Int |
6663 | 29 |
| IODeferred |
30 |
||
7511 | 31 |
data Record = Record |
32 |
{ |
|
33 |
lcaseId :: String, |
|
34 |
baseType :: BaseType, |
|
35 |
typeDecl :: Doc |
|
36 |
} |
|
37 |
deriving Show |
|
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
38 |
type Records = Map.Map String [Record] |
7315 | 39 |
data RenderState = RenderState |
6516 | 40 |
{ |
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
|
41 |
currentScope :: Records, |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
42 |
lastIdentifier :: String, |
6618 | 43 |
lastType :: BaseType, |
8020 | 44 |
isFunctionType :: Bool, -- set to true if the current function parameter is functiontype |
7511 | 45 |
lastIdTypeDecl :: Doc, |
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
46 |
stringConsts :: [(String, String)], |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
47 |
uniqCounter :: Int, |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
48 |
toMangle :: Set.Set String, |
8020 | 49 |
enums :: [(String, [String])], -- store all declared enums |
7033 | 50 |
currentUnit :: String, |
7134 | 51 |
currentFunctionResult :: 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
|
52 |
namespaces :: Map.Map String Records |
6516 | 53 |
} |
7315 | 54 |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
55 |
rec2Records :: [(String, BaseType)] -> [Record] |
7511 | 56 |
rec2Records = map (\(a, b) -> Record a b empty) |
57 |
||
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
58 |
emptyState :: Map.Map String Records -> RenderState |
8020 | 59 |
emptyState = RenderState Map.empty "" BTUnknown False empty [] 0 Set.empty [] "" "" |
6896
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 |
getUniq :: State RenderState Int |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
62 |
getUniq = do |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
63 |
i <- gets uniqCounter |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
64 |
modify(\s -> s{uniqCounter = uniqCounter s + 1}) |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
65 |
return i |
7315 | 66 |
|
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
67 |
addStringConst :: String -> State RenderState Doc |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
68 |
addStringConst str = do |
6921 | 69 |
strs <- gets stringConsts |
70 |
let a = find ((==) str . snd) strs |
|
71 |
if isJust a then |
|
6923 | 72 |
do |
73 |
modify (\s -> s{lastType = BTString}) |
|
6921 | 74 |
return . text . fst . fromJust $ a |
75 |
else |
|
76 |
do |
|
77 |
i <- getUniq |
|
78 |
let sn = "__str" ++ show i |
|
79 |
modify (\s -> s{lastType = BTString, stringConsts = (sn, str) : strs}) |
|
80 |
return $ text sn |
|
7315 | 81 |
|
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
82 |
escapeStr :: String -> String |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
83 |
escapeStr = foldr escapeChar [] |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
84 |
|
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
85 |
escapeChar :: Char -> ShowS |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
86 |
escapeChar '"' s = "\\\"" ++ s |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
87 |
escapeChar '\\' s = "\\\\" ++ s |
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
88 |
escapeChar a s = a : s |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
89 |
|
6965 | 90 |
strInit :: String -> Doc |
91 |
strInit a = text "STRINIT" <> parens (doubleQuotes (text $ escapeStr a)) |
|
92 |
||
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
93 |
renderStringConsts :: State RenderState Doc |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
94 |
renderStringConsts = liftM (vcat . map (\(a, b) -> text "static 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
|
95 |
$ gets stringConsts |
7315 | 96 |
|
6836 | 97 |
docToLower :: Doc -> Doc |
98 |
docToLower = text . map toLower . render |
|
6512 | 99 |
|
9982 | 100 |
pas2C :: String -> String -> String -> String -> [String] -> IO () |
101 |
pas2C fn inputPath outputPath alternateInputPath symbols = do |
|
6455 | 102 |
s <- flip execStateT initState $ f fn |
7953 | 103 |
renderCFiles s outputPath |
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
|
104 |
where |
7265 | 105 |
printLn = liftIO . hPutStrLn stdout |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
106 |
print' = liftIO . hPutStr stdout |
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
|
107 |
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
|
108 |
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
|
109 |
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
|
110 |
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
|
111 |
unless processed $ do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
112 |
print' ("Preprocessing '" ++ fileName ++ ".pas'... ") |
7315 | 113 |
fc' <- liftIO |
114 |
$ tryJust (guard . isDoesNotExistError) |
|
9982 | 115 |
$ preprocess inputPath alternateInputPath (fileName ++ ".pas") symbols |
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
|
116 |
case fc' of |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
117 |
(Left _) -> do |
6512 | 118 |
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
|
119 |
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
|
120 |
(Right fc) -> do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
121 |
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
|
122 |
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
|
123 |
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
|
124 |
(Left a) -> do |
10240
bfae7354d42f
Support OR operator in $IFDEF. Fixes pas2c builds.
unc0rr
parents:
10142
diff
changeset
|
125 |
liftIO $ writeFile (outputPath ++ fileName ++ "preprocess.out") fc |
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
|
126 |
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
|
127 |
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
|
128 |
(Right a) -> do |
6455 | 129 |
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
|
130 |
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
|
131 |
mapM_ f (usesFiles a) |
6455 | 132 |
|
6514 | 133 |
|
7953 | 134 |
renderCFiles :: Map.Map String PascalUnit -> String -> IO () |
135 |
renderCFiles units outputPath = do |
|
6514 | 136 |
let u = Map.toList units |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
137 |
let nss = Map.map (toNamespace nss) units |
7265 | 138 |
--hPutStrLn stderr $ "Units: " ++ (show . Map.keys . Map.filter (not . Map.null) $ nss) |
6853 | 139 |
--writeFile "pas2c.log" $ unlines . map (\t -> show (fst t) ++ "\n" ++ (unlines . map ((:) '\t' . show) . snd $ t)) . Map.toList $ nss |
7953 | 140 |
mapM_ (toCFiles outputPath nss) u |
6516 | 141 |
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
|
142 |
toNamespace :: Map.Map String Records -> PascalUnit -> Records |
7315 | 143 |
toNamespace nss (System tvs) = |
7069 | 144 |
currentScope $ execState f (emptyState nss) |
145 |
where |
|
146 |
f = do |
|
147 |
checkDuplicateFunDecls tvs |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
148 |
mapM_ (tvar2C True False True False) tvs |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
149 |
toNamespace nss (Redo tvs) = -- functions that are re-implemented, add prefix to all of them |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
150 |
currentScope $ execState f (emptyState nss){currentUnit = "fpcrtl_"} |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
151 |
where |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
152 |
f = do |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
153 |
checkDuplicateFunDecls tvs |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
154 |
mapM_ (tvar2C True False True False) tvs |
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
|
155 |
toNamespace _ (Program {}) = Map.empty |
7315 | 156 |
toNamespace nss (Unit (Identifier i _) interface _ _ _) = |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
157 |
currentScope $ execState (interface2C interface True) (emptyState nss){currentUnit = map toLower i ++ "_"} |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
158 |
|
6853 | 159 |
withState' :: (RenderState -> RenderState) -> State RenderState a -> State RenderState a |
160 |
withState' f sf = do |
|
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
161 |
st <- liftM f get |
6853 | 162 |
let (a, s) = runState sf st |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
163 |
modify(\st' -> st'{ |
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
164 |
lastType = lastType s |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
165 |
, uniqCounter = uniqCounter s |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
166 |
, stringConsts = stringConsts s |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
167 |
}) |
6853 | 168 |
return a |
6827 | 169 |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
170 |
withLastIdNamespace :: State RenderState Doc -> State RenderState Doc |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
171 |
withLastIdNamespace f = do |
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
172 |
li <- gets lastIdentifier |
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
|
173 |
withState' (\st -> st{currentScope = fromMaybe Map.empty $ Map.lookup li (namespaces st)}) f |
6827 | 174 |
|
7511 | 175 |
withRecordNamespace :: String -> [Record] -> State RenderState Doc -> State RenderState Doc |
6859 | 176 |
withRecordNamespace _ [] = error "withRecordNamespace: empty record" |
177 |
withRecordNamespace prefix recs = withState' f |
|
6827 | 178 |
where |
7039 | 179 |
f st = st{currentScope = Map.unionWith un records (currentScope st), currentUnit = ""} |
7511 | 180 |
records = Map.fromList $ map (\(Record a b d) -> (map toLower a, [Record (prefix ++ a) b d])) recs |
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
|
181 |
un [a] b = a : b |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
182 |
un _ _ = error "withRecordNamespace un: pattern not matched" |
6817
daaf0834c4d2
- Apply unit's namespace to current scope when referencing unit name
unc0rr
parents:
6816
diff
changeset
|
183 |
|
7953 | 184 |
toCFiles :: String -> Map.Map String Records -> (String, PascalUnit) -> IO () |
185 |
toCFiles _ _ (_, System _) = return () |
|
186 |
toCFiles _ _ (_, Redo _) = return () |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
187 |
toCFiles outputPath ns pu@(fileName, _) = do |
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
188 |
hPutStrLn stdout $ "Rendering '" ++ fileName ++ "'..." |
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
189 |
toCFiles' pu |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
190 |
where |
7953 | 191 |
toCFiles' (fn, p@(Program {})) = writeFile (outputPath ++ fn ++ ".c") $ "#include \"fpcrtl.h\"\n" ++ (render2C initialState . pascal2C) p |
7033 | 192 |
toCFiles' (fn, (Unit unitId@(Identifier i _) interface implementation _ _)) = do |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
193 |
let (a, s) = runState (id2C IOInsert (setBaseType BTUnit unitId) >> interface2C interface True) initialState{currentUnit = map toLower i ++ "_"} |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
194 |
(a', _) = runState (id2C IOInsert (setBaseType BTUnit unitId) >> interface2C interface False) initialState{currentUnit = map toLower i ++ "_"} |
8020 | 195 |
enumDecl = (renderEnum2Strs (enums s) False) |
196 |
enumImpl = (renderEnum2Strs (enums s) True) |
|
197 |
writeFile (outputPath ++ fn ++ ".h") $ "#pragma once\n\n#include \"pas2c.h\"\n\n" ++ (render (a $+$ text "")) ++ "\n" ++ enumDecl |
|
198 |
writeFile (outputPath ++ fn ++ ".c") $ "#include \"fpcrtl.h\"\n\n#include \"" ++ fn ++ ".h\"\n" ++ render (a' $+$ text "") ++ (render2C s . implementation2C) implementation ++ "\n" ++ enumImpl |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
199 |
toCFiles' _ = undefined -- just pleasing compiler to not warn us |
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
200 |
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
|
201 |
|
6516 | 202 |
render2C :: RenderState -> State RenderState Doc -> String |
8020 | 203 |
render2C st p = |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
204 |
let (a, _) = runState p st in |
8020 | 205 |
render a |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
206 |
|
8020 | 207 |
renderEnum2Strs :: [(String, [String])] -> Bool -> String |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
208 |
renderEnum2Strs enums' implement = |
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
209 |
render $ foldl ($+$) empty $ map (\en -> let d = decl (fst en) in if implement then d $+$ enum2strBlock (snd en) else d <> semi) enums' |
8020 | 210 |
where |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
211 |
decl id' = text "string255 __attribute__((overloadable)) fpcrtl_GetEnumName" <> parens (text "int dummy, const" <+> text id' <+> text "enumvar") |
10015 | 212 |
enum2strBlock en = |
8020 | 213 |
text "{" |
214 |
$+$ |
|
215 |
(nest 4 $ |
|
216 |
text "switch(enumvar){" |
|
217 |
$+$ |
|
218 |
(foldl ($+$) empty $ map (\e -> text "case" <+> text e <> colon $+$ (nest 4 $ text "return fpcrtl_make_string" <> (parens $ doubleQuotes $ text e) <> semi $+$ text "break;")) en) |
|
219 |
$+$ |
|
220 |
text "default: assert(0);" |
|
221 |
$+$ |
|
222 |
(nest 4 $ text "return fpcrtl_make_string(\"nonsense\");") |
|
223 |
$+$ |
|
224 |
text "}" |
|
225 |
) |
|
226 |
$+$ |
|
227 |
text "}" |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
228 |
|
6467 | 229 |
usesFiles :: PascalUnit -> [String] |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
230 |
usesFiles (Program _ (Implementation uses _) _) = ["pas2cSystem", "pas2cRedo"] ++ uses2List uses |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
231 |
usesFiles (Unit _ (Interface uses1 _) (Implementation uses2 _) _ _) = ["pas2cSystem", "pas2cRedo"] ++ uses2List uses1 ++ uses2List uses2 |
6512 | 232 |
usesFiles (System {}) = [] |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
233 |
usesFiles (Redo {}) = [] |
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
|
234 |
|
6512 | 235 |
pascal2C :: PascalUnit -> State RenderState Doc |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
236 |
pascal2C (Unit _ interface implementation _ _) = |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
237 |
liftM2 ($+$) (interface2C interface True) (implementation2C implementation) |
7315 | 238 |
|
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
239 |
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
|
240 |
impl <- implementation2C implementation |
10245 | 241 |
[main] <- tvar2C True False True True |
242 |
(FunctionDeclaration (Identifier "main" (BTInt True)) False False False (SimpleType $ Identifier "int" (BTInt True)) |
|
243 |
[VarDeclaration False False ([Identifier "argc" (BTInt True)], SimpleType (Identifier "Integer" (BTInt True))) Nothing |
|
244 |
, VarDeclaration False False ([Identifier "argv" BTUnknown], SimpleType (Identifier "PPChar" BTUnknown)) Nothing] |
|
245 |
(Just (TypesAndVars [], Phrases [mainResultInit, mainFunction]))) |
|
8020 | 246 |
|
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
247 |
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
|
248 |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
249 |
pascal2C _ = error "pascal2C: pattern not matched" |
7315 | 250 |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
251 |
-- the second bool indicates whether do normal interface translation or generate variable declarations |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
252 |
-- that will be inserted into implementation files |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
253 |
interface2C :: Interface -> Bool -> State RenderState Doc |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
254 |
interface2C (Interface uses tvars) True = do |
6965 | 255 |
u <- uses2C uses |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
256 |
tv <- typesAndVars2C True True True tvars |
6965 | 257 |
r <- renderStringConsts |
258 |
return (u $+$ r $+$ tv) |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
259 |
interface2C (Interface uses tvars) False = do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
260 |
void $ uses2C uses |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
261 |
tv <- typesAndVars2C True False False tvars |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
262 |
void $ renderStringConsts |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
263 |
return tv |
7315 | 264 |
|
6512 | 265 |
implementation2C :: Implementation -> State RenderState Doc |
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
266 |
implementation2C (Implementation uses tvars) = do |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
267 |
u <- uses2C uses |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
268 |
tv <- typesAndVars2C True False True tvars |
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
269 |
r <- renderStringConsts |
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
270 |
return (u $+$ r $+$ tv) |
6273 | 271 |
|
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
272 |
checkDuplicateFunDecls :: [TypeVarDeclaration] -> State RenderState () |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
273 |
checkDuplicateFunDecls tvs = |
7069 | 274 |
modify $ \s -> s{toMangle = Map.keysSet . Map.filter (> 1) . foldr ins initMap $ tvs} |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
275 |
where |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
276 |
initMap :: Map.Map String Int |
7069 | 277 |
initMap = Map.empty |
278 |
--initMap = Map.fromList [("reset", 2)] |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
279 |
ins (FunctionDeclaration (Identifier i _) _ _ _ _ _ _) m = Map.insertWith (+) (map toLower i) 1 m |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
280 |
ins _ m = m |
6273 | 281 |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
282 |
-- the second bool indicates whether declare variable as extern or not |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
283 |
-- the third bool indicates whether include types or not |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
284 |
|
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
285 |
typesAndVars2C :: Bool -> Bool -> Bool -> TypesAndVars -> State RenderState Doc |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
286 |
typesAndVars2C b externVar includeType(TypesAndVars ts) = do |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
287 |
checkDuplicateFunDecls ts |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
288 |
liftM (vcat . map (<> semi) . concat) $ mapM (tvar2C b externVar includeType False) ts |
6273 | 289 |
|
6816 | 290 |
setBaseType :: BaseType -> Identifier -> Identifier |
291 |
setBaseType bt (Identifier i _) = Identifier i bt |
|
292 |
||
6512 | 293 |
uses2C :: Uses -> State RenderState Doc |
6516 | 294 |
uses2C uses@(Uses unitIds) = do |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
295 |
|
6516 | 296 |
mapM_ injectNamespace (Identifier "pas2cSystem" undefined : unitIds) |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
297 |
mapM_ injectNamespace (Identifier "pas2cRedo" undefined : unitIds) |
6816 | 298 |
mapM_ (id2C IOInsert . setBaseType BTUnit) unitIds |
6516 | 299 |
return $ vcat . map (\i -> text $ "#include \"" ++ i ++ ".h\"") $ uses2List uses |
300 |
where |
|
11840 | 301 |
injectNamespace :: Identifier -> State RenderState () |
6517 | 302 |
injectNamespace (Identifier i _) = do |
6516 | 303 |
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
|
304 |
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
|
305 |
|
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
|
306 |
uses2List :: Uses -> [String] |
6489 | 307 |
uses2List (Uses ids) = map (\(Identifier i _) -> i) ids |
6273 | 308 |
|
6509 | 309 |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
310 |
setLastIdValues :: Record -> RenderState -> RenderState |
7511 | 311 |
setLastIdValues vv = (\s -> s{lastType = baseType vv, lastIdentifier = lcaseId vv, lastIdTypeDecl = typeDecl vv}) |
312 |
||
6663 | 313 |
id2C :: InsertOption -> Identifier -> State RenderState Doc |
7511 | 314 |
id2C IOInsert i = id2C (IOInsertWithType empty) i |
315 |
id2C (IOInsertWithType d) (Identifier i t) = do |
|
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
316 |
tom <- gets (Set.member n . toMangle) |
7033 | 317 |
cu <- gets currentUnit |
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
318 |
let (i', t') = case (t, tom) of |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
319 |
(BTFunction _ e p _, True) -> ((if e then id else (++) cu) $ i ++ ('_' : show (length p)), t) |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
320 |
(BTFunction _ e _ _, _) -> ((if e then id else (++) cu) i, t) |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
321 |
(BTVarParam t'', _) -> ('(' : '*' : i ++ ")" , t'') |
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
322 |
_ -> (i, t) |
7511 | 323 |
modify (\s -> s{currentScope = Map.insertWith (++) n [Record i' t' d] (currentScope s), lastIdentifier = n}) |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
324 |
return $ text i' |
6837
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
325 |
where |
a137733c5776
Much better types handling, work correctly with functions
unc0rr
parents:
6836
diff
changeset
|
326 |
n = map toLower i |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
327 |
|
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
328 |
id2C IOLookup i = id2CLookup head i |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
329 |
id2C IOLookupLast i = id2CLookup last i |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
330 |
id2C (IOLookupFunction params) (Identifier i _) = do |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
331 |
let i' = map toLower i |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
332 |
v <- gets $ Map.lookup i' . currentScope |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
333 |
lt <- gets lastType |
7315 | 334 |
if isNothing v then |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
335 |
error $ "Not defined: '" ++ i' ++ "'\n" ++ show lt ++ "\nwith num of params = " ++ show params ++ "\n" ++ show v |
7315 | 336 |
else |
337 |
let vv = fromMaybe (head $ fromJust v) . find checkParam $ fromJust v in |
|
7511 | 338 |
modify (setLastIdValues vv) >> (return . text . lcaseId $ vv) |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
339 |
where |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
340 |
checkParam (Record _ (BTFunction _ _ p _) _) = (length p) == params |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
341 |
checkParam _ = False |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
342 |
id2C IODeferred (Identifier i _) = do |
6663 | 343 |
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
|
344 |
v <- gets $ Map.lookup i' . currentScope |
6663 | 345 |
if (isNothing v) then |
7034
e3639ce1d4f8
(PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents:
7033
diff
changeset
|
346 |
modify (\s -> s{lastType = BTUnknown, lastIdentifier = i}) >> return (text i) |
6663 | 347 |
else |
7511 | 348 |
let vv = head $ fromJust v in modify (setLastIdValues vv) >> (return . text . lcaseId $ vv) |
6512 | 349 |
|
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
350 |
id2CLookup :: ([Record] -> Record) -> Identifier -> State RenderState Doc |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
351 |
id2CLookup f (Identifier i _) = do |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
352 |
let i' = map toLower i |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
353 |
v <- gets $ Map.lookup i' . currentScope |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
354 |
lt <- gets lastType |
7315 | 355 |
if isNothing v then |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
356 |
error $ "Not defined: '" ++ i' ++ "'\n" ++ show lt |
7315 | 357 |
else |
7511 | 358 |
let vv = f $ fromJust v in modify (setLastIdValues vv) >> (return . text . lcaseId $ vv) |
7315 | 359 |
|
360 |
||
8020 | 361 |
|
6653 | 362 |
id2CTyped :: TypeDecl -> Identifier -> State RenderState Doc |
7511 | 363 |
id2CTyped = id2CTyped2 Nothing |
364 |
||
365 |
id2CTyped2 :: Maybe Doc -> TypeDecl -> Identifier -> State RenderState Doc |
|
366 |
id2CTyped2 md t (Identifier i _) = do |
|
6653 | 367 |
tb <- resolveType t |
7315 | 368 |
case (t, tb) of |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
369 |
(_, 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
|
370 |
error $ "id2CTyped: type BTUnknown for " ++ show i ++ "\ntype: " ++ show t |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
371 |
(SimpleType {}, BTRecord _ r) -> do |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
372 |
ts <- type2C t |
7511 | 373 |
id2C (IOInsertWithType $ ts empty) (Identifier i (BTRecord (render $ ts empty) r)) |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
374 |
(_, BTRecord _ r) -> do |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
375 |
ts <- type2C t |
7511 | 376 |
id2C (IOInsertWithType $ ts empty) (Identifier i (BTRecord i r)) |
377 |
_ -> case md of |
|
378 |
Nothing -> id2C IOInsert (Identifier i tb) |
|
379 |
Just ts -> id2C (IOInsertWithType ts) (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
|
380 |
|
8020 | 381 |
typeVarDecl2BaseType :: [TypeVarDeclaration] -> State RenderState [(Bool, BaseType)] |
382 |
typeVarDecl2BaseType d = do |
|
383 |
st <- get |
|
384 |
result <- sequence $ concat $ map resolveType' d |
|
385 |
put st -- restore state (not sure if necessary) |
|
386 |
return result |
|
387 |
where |
|
388 |
resolveType' :: TypeVarDeclaration -> [State RenderState (Bool, BaseType)] |
|
389 |
resolveType' (VarDeclaration isVar _ (ids, t) _) = replicate (length ids) (resolveTypeHelper' (resolveType t) isVar) |
|
390 |
resolveType' _ = error "typeVarDecl2BaseType: not a VarDeclaration" |
|
391 |
resolveTypeHelper' :: State RenderState BaseType -> Bool -> State RenderState (Bool, BaseType) |
|
392 |
resolveTypeHelper' st b = do |
|
393 |
bt <- st |
|
394 |
return (b, bt) |
|
10015 | 395 |
|
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
|
396 |
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
|
397 |
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
|
398 |
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
|
399 |
v <- gets $ Map.lookup i' . currentScope |
7511 | 400 |
if isJust v then return . baseType . 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
|
401 |
where |
8020 | 402 |
f "uinteger" = BTInt False |
403 |
f "integer" = BTInt True |
|
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
|
404 |
f "pointer" = BTPointerTo BTVoid |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
405 |
f "boolean" = BTBool |
6649
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
406 |
f "float" = BTFloat |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
407 |
f "char" = BTChar |
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
408 |
f "string" = BTString |
10120 | 409 |
f "ansistring" = BTAString |
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
410 |
f _ = error $ "Unknown system type: " ++ show st |
6827 | 411 |
resolveType (PointerTo (SimpleType (Identifier i _))) = return . BTPointerTo $ BTUnresolved (map toLower i) |
412 |
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
|
413 |
resolveType (RecordType tv mtvs) = do |
6827 | 414 |
tvs <- mapM f (concat $ tv : fromMaybe [] mtvs) |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
415 |
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
|
416 |
where |
6827 | 417 |
f :: TypeVarDeclaration -> State RenderState [(String, BaseType)] |
7317 | 418 |
f (VarDeclaration _ _ (ids, td) _) = mapM (\(Identifier i _) -> liftM ((,) i) $ resolveType td) ids |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
419 |
f _ = error "resolveType f: pattern not matched" |
6893 | 420 |
resolveType (ArrayDecl (Just i) t) = do |
421 |
t' <- resolveType t |
|
8020 | 422 |
return $ BTArray i (BTInt True) t' |
423 |
resolveType (ArrayDecl Nothing t) = liftM (BTArray RangeInfinite (BTInt True)) $ resolveType t |
|
424 |
resolveType (FunctionType t a) = do |
|
10015 | 425 |
bts <- typeVarDecl2BaseType a |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
426 |
liftM (BTFunction False False bts) $ resolveType t |
8020 | 427 |
resolveType (DeriveType (InitHexNumber _)) = return (BTInt True) |
428 |
resolveType (DeriveType (InitNumber _)) = return (BTInt True) |
|
6835 | 429 |
resolveType (DeriveType (InitFloat _)) = return BTFloat |
430 |
resolveType (DeriveType (InitString _)) = return BTString |
|
8020 | 431 |
resolveType (DeriveType (InitBinOp {})) = return (BTInt True) |
7151 | 432 |
resolveType (DeriveType (InitPrefixOp _ e)) = initExpr2C e >> gets lastType |
8020 | 433 |
resolveType (DeriveType (BuiltInFunction{})) = return (BTInt True) |
6835 | 434 |
resolveType (DeriveType (InitReference (Identifier{}))) = return BTBool -- TODO: derive from actual type |
435 |
resolveType (DeriveType _) = return BTUnknown |
|
10111
459bc720cea1
Drop support for other string types than string255
unc0rr
parents:
10015
diff
changeset
|
436 |
resolveType String = return BTString |
10120 | 437 |
resolveType AString = return BTAString |
6826 | 438 |
resolveType VoidType = return BTVoid |
6653 | 439 |
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
|
440 |
resolveType (RangeType _) = return $ BTVoid |
6653 | 441 |
resolveType (Set t) = liftM BTSet $ resolveType t |
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
442 |
resolveType (VarParamType t) = liftM BTVarParam $ resolveType t |
7315 | 443 |
|
6834 | 444 |
|
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
|
445 |
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
|
446 |
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
|
447 |
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
|
448 |
if isJust v then |
7511 | 449 |
resolve s . baseType . 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
|
450 |
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
|
451 |
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
|
452 |
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
|
453 |
|
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
|
454 |
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
|
455 |
fromPointer s (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
|
456 |
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
|
457 |
error $ "Dereferencing from non-pointer type " ++ show t ++ "\n" ++ s |
6834 | 458 |
|
7315 | 459 |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
460 |
functionParams2C :: [TypeVarDeclaration] -> State RenderState Doc |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
461 |
functionParams2C params = liftM (hcat . punctuate comma . concat) $ mapM (tvar2C False False True True) params |
6834 | 462 |
|
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
463 |
numberOfDeclarations :: [TypeVarDeclaration] -> Int |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
464 |
numberOfDeclarations = sum . map cnt |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
465 |
where |
7317 | 466 |
cnt (VarDeclaration _ _ (ids, _) _) = length ids |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
467 |
cnt _ = 1 |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
468 |
|
7317 | 469 |
hasPassByReference :: [TypeVarDeclaration] -> Bool |
470 |
hasPassByReference = or . map isVar |
|
471 |
where |
|
472 |
isVar (VarDeclaration v _ (_, _) _) = v |
|
473 |
isVar _ = error $ "hasPassByReference called not on function parameters" |
|
474 |
||
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
475 |
toIsVarList :: [TypeVarDeclaration] -> [Bool] |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
476 |
toIsVarList = concatMap isVar |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
477 |
where |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
478 |
isVar (VarDeclaration v _ (p, _) _) = replicate (length p) v |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
479 |
isVar _ = error $ "toIsVarList called not on function parameters" |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
480 |
|
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
481 |
|
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
482 |
funWithVarsToDefine :: String -> [TypeVarDeclaration] -> Doc |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
483 |
funWithVarsToDefine n params = text "#define" <+> text n <> parens abc <+> text (n ++ "__vars") <> parens cparams |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
484 |
where |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
485 |
abc = hcat . punctuate comma . map (char . fst) $ ps |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
486 |
cparams = hcat . punctuate comma . map (\(c, v) -> if v then char '&' <> parens (char c) else char c) $ ps |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
487 |
ps = zip ['a'..] (toIsVarList params) |
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
488 |
|
6880 | 489 |
fun2C :: Bool -> String -> TypeVarDeclaration -> State RenderState [Doc] |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
490 |
fun2C _ _ (FunctionDeclaration name _ overload external returnType params Nothing) = do |
7315 | 491 |
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
|
492 |
t'<- gets lastType |
8020 | 493 |
bts <- typeVarDecl2BaseType params |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
494 |
p <- withState' id $ functionParams2C params |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
495 |
n <- liftM render . id2C IOInsert $ setBaseType (BTFunction False external bts t') name |
8020 | 496 |
let decor = if overload then text "__attribute__((overloadable))" else empty |
497 |
return [t empty <+> decor <+> text n <> parens p] |
|
7315 | 498 |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
499 |
fun2C True rv (FunctionDeclaration name@(Identifier i _) inline overload external returnType params (Just (tvars, phrase))) = do |
7134 | 500 |
let isVoid = case returnType of |
501 |
VoidType -> True |
|
502 |
_ -> False |
|
7315 | 503 |
|
8020 | 504 |
let res = docToLower $ text rv <> if isVoid then empty else text "_result" |
505 |
t <- type2C returnType |
|
506 |
t' <- gets lastType |
|
507 |
||
508 |
bts <- typeVarDecl2BaseType params |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
509 |
--cu <- gets currentUnit |
8020 | 510 |
notDeclared <- liftM isNothing . gets $ Map.lookup (map toLower i) . currentScope |
511 |
||
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
512 |
n <- liftM render . id2C IOInsert $ setBaseType (BTFunction hasVars external bts t') name |
8020 | 513 |
let resultId = if isVoid |
514 |
then n -- void type doesn't have result, solving recursive procedure calls |
|
515 |
else (render res) |
|
516 |
||
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
517 |
(p, ph) <- withState' (\st -> st{currentScope = Map.insertWith un (map toLower rv) [Record resultId (if isVoid then (BTFunction hasVars False bts t') else t') empty] $ currentScope st |
7134 | 518 |
, currentFunctionResult = if isVoid then [] else render res}) $ do |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
519 |
p <- functionParams2C params |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
520 |
ph <- liftM2 ($+$) (typesAndVars2C False False True tvars) (phrase2C' phrase) |
6827 | 521 |
return (p, ph) |
7315 | 522 |
|
10497
c7c50f165946
[PAS2C] Don't generate result variable for trivial functions consisting of single exit() call
unc0rr
parents:
10245
diff
changeset
|
523 |
let isTrivialReturn = case phrase of |
c7c50f165946
[PAS2C] Don't generate result variable for trivial functions consisting of single exit() call
unc0rr
parents:
10245
diff
changeset
|
524 |
(Phrases (BuiltInFunctionCall _ (SimpleReference (Identifier "exit" BTUnknown)) : _)) -> True |
c7c50f165946
[PAS2C] Don't generate result variable for trivial functions consisting of single exit() call
unc0rr
parents:
10245
diff
changeset
|
525 |
_ -> False |
c7c50f165946
[PAS2C] Don't generate result variable for trivial functions consisting of single exit() call
unc0rr
parents:
10245
diff
changeset
|
526 |
let phrasesBlock = if isVoid || isTrivialReturn then ph else t empty <+> res <> semi $+$ ph $+$ text "return" <+> res <> semi |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
527 |
--let define = if hasVars then text "#ifndef" <+> text n $+$ funWithVarsToDefine n params $+$ text "#endif" else empty |
8020 | 528 |
let inlineDecor = if inline then case notDeclared of |
529 |
True -> text "static inline" |
|
530 |
False -> text "inline" |
|
531 |
else empty |
|
532 |
overloadDecor = if overload then text "__attribute__((overloadable))" else empty |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
533 |
return [ |
8020 | 534 |
--define |
535 |
-- $+$ |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
536 |
--(if notDeclared && hasVars then funWithVarsToDefine n params else empty) $+$ |
8020 | 537 |
inlineDecor <+> t empty <+> overloadDecor <+> text 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
|
538 |
$+$ |
7315 | 539 |
text "{" |
540 |
$+$ |
|
6836 | 541 |
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
|
542 |
$+$ |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
543 |
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
|
544 |
where |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
545 |
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
|
546 |
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
|
547 |
un [a] b = a : b |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
548 |
un _ _ = error "fun2C u: pattern not matched" |
7333
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
549 |
hasVars = hasPassByReference params |
7315 | 550 |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
551 |
fun2C False _ (FunctionDeclaration (Identifier name _) _ _ _ _ _ _) = error $ "nested functions not allowed: " ++ name |
6880 | 552 |
fun2C _ tv _ = error $ "fun2C: I don't render " ++ show tv |
6618 | 553 |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
554 |
-- the second bool indicates whether declare variable as extern or not |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
555 |
-- the third bool indicates whether include types or not |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
556 |
-- the fourth bool indicates whether ignore initialization or not (basically for dynamic arrays since we cannot do initialization in function params) |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
557 |
tvar2C :: Bool -> Bool -> Bool -> Bool -> TypeVarDeclaration -> State RenderState [Doc] |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
558 |
tvar2C b _ includeType _ f@(FunctionDeclaration (Identifier name _) _ _ _ _ _ _) = do |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
559 |
t <- fun2C b name f |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
560 |
if includeType then return t else return [] |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
561 |
tvar2C _ _ includeType _ (TypeDeclaration i' t) = do |
6653 | 562 |
i <- id2CTyped t i' |
7039 | 563 |
tp <- type2C t |
8020 | 564 |
let res = if includeType then [text "typedef" <+> tp i] else [] |
565 |
case t of |
|
566 |
(Sequence ids) -> do |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
567 |
modify(\s -> s{enums = (render i, map (\(Identifier id' _) -> id') ids) : enums s}) |
8020 | 568 |
return res |
569 |
_ -> return res |
|
7315 | 570 |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
571 |
tvar2C _ _ _ _ (VarDeclaration True _ (ids, t) Nothing) = do |
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
572 |
t' <- liftM ((empty <+>) . ) $ type2C t |
7511 | 573 |
liftM (map(\i -> t' i)) $ mapM (id2CTyped2 (Just $ t' empty) (VarParamType t)) ids |
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
574 |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
575 |
tvar2C _ externVar includeType ignoreInit (VarDeclaration _ isConst (ids, t) mInitExpr) = do |
8442 | 576 |
t' <- liftM (((if isConst then text "static const" else if externVar |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
577 |
then text "extern" |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
578 |
else empty) |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
579 |
<+>) . ) $ type2C t |
6980 | 580 |
ie <- initExpr mInitExpr |
6979 | 581 |
lt <- gets lastType |
582 |
case (isConst, lt, ids, mInitExpr) of |
|
8020 | 583 |
(True, BTInt _, [i], Just _) -> do |
6979 | 584 |
i' <- id2CTyped t i |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
585 |
return $ if includeType then [text "enum" <> braces (i' <+> ie)] else [] |
7002 | 586 |
(True, BTFloat, [i], Just e) -> do |
587 |
i' <- id2CTyped t i |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
588 |
ie' <- initExpr2C e |
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
589 |
return $ if includeType then [text "#define" <+> i' <+> parens ie' <> text "\n"] else [] |
7327
4e35c45d0853
Fix the function definition issue so the function pointer format now looks correct.
xymeng
parents:
7323
diff
changeset
|
590 |
(_, BTFunction{}, _, Nothing) -> liftM (map(\i -> t' i)) $ mapM (id2CTyped t) ids |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
591 |
(_, BTArray r _ _, [i], _) -> do |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
592 |
i' <- id2CTyped t i |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
593 |
ie' <- return $ case (r, mInitExpr, ignoreInit) of |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
594 |
(RangeInfinite, Nothing, False) -> text "= NULL" -- force dynamic array to be initialized as NULL if not initialized at all |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
595 |
(_, _, _) -> ie |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
596 |
result <- liftM (map(\id' -> varDeclDecision isConst includeType (t' id') ie')) $ mapM (id2CTyped t) ids |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
597 |
case (r, ignoreInit) of |
8442 | 598 |
(RangeInfinite, False) -> |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
599 |
-- if the array is dynamic, add dimension info to it |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
600 |
return $ [dimDecl] ++ result |
8442 | 601 |
where |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
602 |
arrayDimStr = show $ arrayDimension t |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
603 |
arrayDimInitExp = text ("={" ++ ".dim = " ++ arrayDimStr ++ ", .a = {0, 0, 0, 0}}") |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
604 |
dimDecl = varDeclDecision isConst includeType (text "fpcrtl_dimension_t" <+> i' <> text "_dimension_info") arrayDimInitExp |
8442 | 605 |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
606 |
(_, _) -> return result |
8442 | 607 |
|
7511 | 608 |
_ -> liftM (map(\i -> varDeclDecision isConst includeType (t' i) ie)) $ mapM (id2CTyped2 (Just $ t' empty) t) ids |
6355 | 609 |
where |
6509 | 610 |
initExpr Nothing = return $ empty |
611 |
initExpr (Just e) = liftM (text "=" <+>) (initExpr2C e) |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
612 |
varDeclDecision True True varStr expStr = varStr <+> expStr |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
613 |
varDeclDecision False True varStr expStr = if externVar then varStr else varStr <+> expStr |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
614 |
varDeclDecision False False varStr expStr = varStr <+> expStr |
13878
0ce8aad17c24
IFDEF out missing function with FIXME, revert pas2c change in 0ecf77e203c0 as suggested by unc0rr, another string annotation
nemo
parents:
13862
diff
changeset
|
615 |
varDeclDecision True False _ _ = empty |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
616 |
arrayDimension a = case a of |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
617 |
ArrayDecl Nothing t' -> let a' = arrayDimension t' in |
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
618 |
if a' > 3 then error "Dynamic array with dimension > 4 is not supported." else 1 + a' |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
619 |
ArrayDecl _ _ -> error "Mixed dynamic array and static array are not supported." |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
620 |
_ -> 0 |
7315 | 621 |
|
7513 | 622 |
tvar2C f _ _ _ (OperatorDeclaration op (Identifier i _) inline ret params body) = do |
6880 | 623 |
r <- op2CTyped op (extractTypes params) |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
624 |
fun2C f i (FunctionDeclaration r inline False False ret params body) |
6355 | 625 |
|
7315 | 626 |
|
6880 | 627 |
op2CTyped :: String -> [TypeDecl] -> State RenderState Identifier |
628 |
op2CTyped op t = do |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
629 |
t' <- liftM (render . hcat . punctuate (char '_') . map (\txt -> txt empty)) $ mapM type2C t |
6880 | 630 |
bt <- gets lastType |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
631 |
return $ Identifier (t' ++ "_op_" ++ opStr) bt |
7315 | 632 |
where |
6880 | 633 |
opStr = case op of |
634 |
"+" -> "add" |
|
635 |
"-" -> "sub" |
|
636 |
"*" -> "mul" |
|
637 |
"/" -> "div" |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
638 |
"/(float)" -> "div" |
6880 | 639 |
"=" -> "eq" |
640 |
"<" -> "lt" |
|
641 |
">" -> "gt" |
|
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
642 |
"<>" -> "neq" |
6880 | 643 |
_ -> error $ "op2CTyped: unknown op '" ++ op ++ "'" |
7315 | 644 |
|
6880 | 645 |
extractTypes :: [TypeVarDeclaration] -> [TypeDecl] |
646 |
extractTypes = concatMap f |
|
647 |
where |
|
7317 | 648 |
f (VarDeclaration _ _ (ids, t) _) = replicate (length ids) t |
6880 | 649 |
f a = error $ "extractTypes: can't extract from " ++ show a |
650 |
||
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
651 |
initExpr2C, initExpr2C' :: InitExpression -> State RenderState Doc |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
652 |
initExpr2C (InitArray values) = liftM (braces . vcat . punctuate comma) $ mapM initExpr2C values |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
653 |
initExpr2C a = initExpr2C' a |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
654 |
initExpr2C' InitNull = return $ text "NULL" |
7333
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
655 |
initExpr2C' (InitAddress expr) = do |
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
656 |
ie <- initExpr2C' expr |
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
657 |
lt <- gets lastType |
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
658 |
case lt of |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
659 |
BTFunction True _ _ _ -> return $ text "&" <> ie -- <> text "__vars" |
7333
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
660 |
_ -> return $ text "&" <> ie |
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
661 |
initExpr2C' (InitPrefixOp op expr) = liftM (text (op2C op) <>) (initExpr2C' expr) |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
662 |
initExpr2C' (InitBinOp op expr1 expr2) = do |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
663 |
e1 <- initExpr2C' expr1 |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
664 |
e2 <- initExpr2C' expr2 |
6860 | 665 |
return $ parens $ e1 <+> text (op2C op) <+> e2 |
8020 | 666 |
initExpr2C' (InitNumber s) = do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
667 |
modify(\st -> st{lastType = (BTInt True)}) |
10015 | 668 |
return $ text s |
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
669 |
initExpr2C' (InitFloat s) = return $ text s |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
670 |
initExpr2C' (InitHexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
671 |
initExpr2C' (InitString [a]) = return . quotes $ text [a] |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
672 |
initExpr2C' (InitString s) = return $ strInit s |
10747
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10688
diff
changeset
|
673 |
initExpr2C' (InitPChar s) = return $ doubleQuotes (text $ escapeStr s) |
9964 | 674 |
initExpr2C' (InitChar a) = return $ text "0x" <> text (showHex (read a) "") |
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
675 |
initExpr2C' (InitReference i) = id2C IOLookup i |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
676 |
initExpr2C' (InitRecord fields) = do |
6858 | 677 |
(fs :: [Doc]) <- mapM (\(Identifier a _, b) -> liftM (text "." <> text a <+> equals <+>) $ initExpr2C b) fields |
6886 | 678 |
return $ lbrace $+$ (nest 4 . vcat . punctuate comma $ fs) $+$ rbrace |
9954 | 679 |
--initExpr2C' (InitArray [InitRecord fields]) = do |
680 |
-- e <- initExpr2C $ InitRecord fields |
|
681 |
-- return $ braces $ e |
|
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
682 |
initExpr2C' r@(InitRange (Range i@(Identifier i' _))) = do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
683 |
void $ id2C IOLookup i |
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
684 |
t <- gets lastType |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
685 |
case t of |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
686 |
BTEnum s -> return . int $ length s |
8020 | 687 |
BTInt _ -> case i' of |
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
688 |
"byte" -> return $ int 256 |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
689 |
_ -> error $ "InitRange identifier: " ++ i' |
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6887
diff
changeset
|
690 |
_ -> error $ "InitRange: " ++ show r |
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
691 |
initExpr2C' (InitRange (RangeFromTo (InitNumber "0") r)) = initExpr2C $ BuiltInFunction "succ" [r] |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
692 |
initExpr2C' (InitRange (RangeFromTo (InitChar "0") (InitChar r))) = initExpr2C $ BuiltInFunction "succ" [InitNumber r] |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
693 |
initExpr2C' (InitRange a) = error $ show a --return $ text "<<range>>" |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
694 |
initExpr2C' (InitSet []) = return $ text "0" |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
695 |
initExpr2C' (InitSet _) = return $ text "<<set>>" |
7315 | 696 |
initExpr2C' (BuiltInFunction "low" [InitReference e]) = return $ |
6887 | 697 |
case e of |
698 |
(Identifier "LongInt" _) -> int (-2^31) |
|
6893 | 699 |
(Identifier "SmallInt" _) -> int (-2^15) |
700 |
_ -> error $ "BuiltInFunction 'low': " ++ show e |
|
13857
bc90a932a4b3
Fix pas2c not having support for High(LongInt) in init expressions
unc0rr
parents:
13819
diff
changeset
|
701 |
initExpr2C' hi@(BuiltInFunction "high" [e@(InitReference e')]) = do |
13858 | 702 |
void $ initExpr2C e |
703 |
t <- gets lastType |
|
704 |
case t of |
|
705 |
(BTArray i _ _) -> initExpr2C' $ BuiltInFunction "pred" [InitRange i] |
|
13857
bc90a932a4b3
Fix pas2c not having support for High(LongInt) in init expressions
unc0rr
parents:
13819
diff
changeset
|
706 |
BTInt _ -> case e' of |
bc90a932a4b3
Fix pas2c not having support for High(LongInt) in init expressions
unc0rr
parents:
13819
diff
changeset
|
707 |
(Identifier "LongInt" _) -> return $ int (2147483647) |
13859
885ee14fe640
Fix previous patch, add support for High(Longword)
unc0rr
parents:
13857
diff
changeset
|
708 |
(Identifier "LongWord" _) -> return $ text "4294967295" |
885ee14fe640
Fix previous patch, add support for High(Longword)
unc0rr
parents:
13857
diff
changeset
|
709 |
_ -> error $ "BuiltInFunction 'high' in initExpr: " ++ show e' |
13857
bc90a932a4b3
Fix pas2c not having support for High(LongInt) in init expressions
unc0rr
parents:
13819
diff
changeset
|
710 |
a -> error $ "BuiltInFunction 'high' in initExpr: " ++ show a ++ ": " ++ show hi |
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
711 |
initExpr2C' (BuiltInFunction "succ" [BuiltInFunction "pred" [e]]) = initExpr2C' e |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
712 |
initExpr2C' (BuiltInFunction "pred" [BuiltInFunction "succ" [e]]) = initExpr2C' e |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
713 |
initExpr2C' (BuiltInFunction "succ" [e]) = liftM (<> text " + 1") $ initExpr2C' e |
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
714 |
initExpr2C' (BuiltInFunction "pred" [e]) = liftM (<> text " - 1") $ initExpr2C' e |
7315 | 715 |
initExpr2C' b@(BuiltInFunction _ _) = error $ show b |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10129
diff
changeset
|
716 |
initExpr2C' (InitTypeCast t' i) = do |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10129
diff
changeset
|
717 |
e <- initExpr2C i |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10129
diff
changeset
|
718 |
t <- id2C IOLookup t' |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10129
diff
changeset
|
719 |
return . parens $ parens t <> e |
7052
cefb73639f70
Be more wise about constant initialization expressions being not arrays
unc0rr
parents:
7046
diff
changeset
|
720 |
initExpr2C' a = error $ "initExpr2C: don't know how to render " ++ show a |
6391 | 721 |
|
6887 | 722 |
|
6874 | 723 |
range2C :: InitExpression -> State RenderState [Doc] |
724 |
range2C (InitString [a]) = return [quotes $ text [a]] |
|
725 |
range2C (InitRange (Range i)) = liftM (flip (:) []) $ id2C IOLookup i |
|
726 |
range2C (InitRange (RangeFromTo (InitString [a]) (InitString [b]))) = return $ map (\i -> quotes $ text [i]) [a..b] |
|
727 |
range2C a = liftM (flip (:) []) $ initExpr2C a |
|
6391 | 728 |
|
6980 | 729 |
baseType2C :: String -> BaseType -> Doc |
730 |
baseType2C _ BTFloat = text "float" |
|
731 |
baseType2C _ BTBool = text "bool" |
|
732 |
baseType2C _ BTString = text "string255" |
|
10120 | 733 |
baseType2C _ BTAString = text "astring" |
6980 | 734 |
baseType2C s a = error $ "baseType2C: " ++ show a ++ "\n" ++ s |
735 |
||
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
736 |
type2C :: TypeDecl -> State RenderState (Doc -> Doc) |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
737 |
type2C (SimpleType i) = liftM (\i' a -> i' <+> a) $ id2C IOLookup i |
6838 | 738 |
type2C t = do |
739 |
r <- type2C' t |
|
740 |
rt <- resolveType t |
|
741 |
modify (\st -> st{lastType = rt}) |
|
742 |
return r |
|
743 |
where |
|
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
744 |
type2C' VoidType = return (text "void" <+>) |
10111
459bc720cea1
Drop support for other string types than string255
unc0rr
parents:
10015
diff
changeset
|
745 |
type2C' String = return (text "string255" <+>)--return (text ("string" ++ show l) <+>) |
10120 | 746 |
type2C' AString = return (text "astring" <+>) |
7034
e3639ce1d4f8
(PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents:
7033
diff
changeset
|
747 |
type2C' (PointerTo (SimpleType i)) = do |
e3639ce1d4f8
(PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents:
7033
diff
changeset
|
748 |
i' <- id2C IODeferred i |
e3639ce1d4f8
(PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents:
7033
diff
changeset
|
749 |
lt <- gets lastType |
e3639ce1d4f8
(PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents:
7033
diff
changeset
|
750 |
case lt of |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
751 |
BTRecord _ _ -> return $ \a -> text "struct __" <> i' <+> text "*" <+> a |
7034
e3639ce1d4f8
(PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents:
7033
diff
changeset
|
752 |
BTUnknown -> return $ \a -> text "struct __" <> i' <+> text "*" <+> a |
e3639ce1d4f8
(PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents:
7033
diff
changeset
|
753 |
_ -> return $ \a -> i' <+> text "*" <+> a |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
754 |
type2C' (PointerTo t) = liftM (\tx a -> tx (parens $ text "*" <> a)) $ type2C t |
6838 | 755 |
type2C' (RecordType tvs union) = do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
756 |
t' <- withState' f $ mapM (tvar2C False False True False) tvs |
6886 | 757 |
u <- unions |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
758 |
return $ \i -> text "struct __" <> i <+> lbrace $+$ nest 4 ((vcat . map (<> semi) . concat $ t') $$ u) $+$ rbrace <+> i |
6886 | 759 |
where |
7040
4aff2da0d0b3
Render function variables in struct with no mangling. 13 C units are compilable now.
unc0rr
parents:
7039
diff
changeset
|
760 |
f s = s{currentUnit = ""} |
6886 | 761 |
unions = case union of |
762 |
Nothing -> return empty |
|
763 |
Just a -> do |
|
764 |
structs <- mapM struct2C a |
|
765 |
return $ text "union" $+$ braces (nest 4 $ vcat structs) <> semi |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
766 |
struct2C stvs = do |
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
767 |
txts <- withState' f $ mapM (tvar2C False False True False) stvs |
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
768 |
return $ text "struct" $+$ braces (nest 4 (vcat . map (<> semi) . concat $ txts)) <> semi |
6894 | 769 |
type2C' (RangeType r) = return (text "int" <+>) |
6838 | 770 |
type2C' (Sequence ids) = do |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
771 |
is <- mapM (id2C IOInsert . setBaseType bt) ids |
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
772 |
return (text "enum" <+> (braces . vcat . punctuate comma . map (\(a, b) -> a <+> equals <+> text "0x" <> text (showHex b "")) $ zip is [0..]) <+>) |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
773 |
where |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
774 |
bt = BTEnum $ map (\(Identifier i _) -> map toLower i) ids |
6894 | 775 |
type2C' (ArrayDecl Nothing t) = type2C (PointerTo t) |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
776 |
type2C' (ArrayDecl (Just r) t) = do |
6858 | 777 |
t' <- type2C t |
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
778 |
lt <- gets lastType |
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
779 |
ft <- case lt of |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
780 |
-- BTFunction {} -> type2C (PointerTo t) |
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
781 |
_ -> return t' |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
782 |
r' <- initExpr2C (InitRange r) |
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
783 |
return $ \i -> ft i <> brackets r' |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
784 |
type2C' (Set t) = return (text "<<set>>" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
785 |
type2C' (FunctionType returnType params) = do |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
786 |
t <- type2C returnType |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
787 |
p <- withState' id $ functionParams2C params |
7327
4e35c45d0853
Fix the function definition issue so the function pointer format now looks correct.
xymeng
parents:
7323
diff
changeset
|
788 |
return (\i -> (t empty <> (parens $ text "*" <> i) <> parens p)) |
6980 | 789 |
type2C' (DeriveType (InitBinOp _ _ i)) = type2C' (DeriveType i) |
6858 | 790 |
type2C' (DeriveType (InitPrefixOp _ i)) = type2C' (DeriveType i) |
6878
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
791 |
type2C' (DeriveType (InitNumber _)) = return (text "int" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
792 |
type2C' (DeriveType (InitHexNumber _)) = return (text "int" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
793 |
type2C' (DeriveType (InitFloat _)) = return (text "float" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
794 |
type2C' (DeriveType (BuiltInFunction {})) = return (text "int" <+>) |
0af34406b83d
Improve rendering of function types, arrays, and more
unc0rr
parents:
6875
diff
changeset
|
795 |
type2C' (DeriveType (InitString {})) = return (text "string255" <+>) |
6980 | 796 |
type2C' (DeriveType r@(InitReference {})) = do |
797 |
initExpr2C r |
|
798 |
t <- gets lastType |
|
799 |
return (baseType2C (show r) t <+>) |
|
6858 | 800 |
type2C' (DeriveType a) = error $ "Can't derive type from " ++ show a |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
801 |
type2C' a = error $ "type2C: unknown type " ++ show a |
6273 | 802 |
|
6512 | 803 |
phrase2C :: Phrase -> State RenderState Doc |
6509 | 804 |
phrase2C (Phrases p) = do |
805 |
ps <- mapM phrase2C p |
|
806 |
return $ text "{" $+$ (nest 4 . vcat $ ps) $+$ text "}" |
|
807 |
phrase2C (ProcCall f@(FunCall {}) []) = liftM (<> semi) $ ref2C f |
|
8020 | 808 |
phrase2C (ProcCall ref []) = liftM (<> semi) $ ref2CF ref True |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
809 |
phrase2C (ProcCall _ _) = error $ "ProcCall"{-do |
6509 | 810 |
r <- ref2C ref |
811 |
ps <- mapM expr2C params |
|
6923 | 812 |
return $ r <> parens (hsep . punctuate (char ',') $ ps) <> semi -} |
6509 | 813 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = do |
814 |
e <- expr2C expr |
|
815 |
p1 <- (phrase2C . wrapPhrase) phrase1 |
|
816 |
el <- elsePart |
|
7315 | 817 |
return $ |
6509 | 818 |
text "if" <> parens e $+$ p1 $+$ el |
6273 | 819 |
where |
6509 | 820 |
elsePart | isNothing mphrase2 = return $ empty |
821 |
| otherwise = liftM (text "else" $$) $ (phrase2C . wrapPhrase) (fromJust mphrase2) |
|
8446
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8444
diff
changeset
|
822 |
phrase2C asgn@(Assignment ref expr) = do |
6923 | 823 |
r <- ref2C ref |
824 |
t <- gets lastType |
|
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
825 |
case (t, expr) of |
10142 | 826 |
(_, Reference r') | ref == r' -> do |
827 |
e <- ref2C r' |
|
828 |
return $ text "UNUSED" <+> parens e <> semi |
|
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
829 |
(BTFunction {}, (Reference r')) -> do |
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
830 |
e <- ref2C r' |
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
831 |
return $ r <+> text "=" <+> e <> semi |
7134 | 832 |
(BTString, _) -> do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
833 |
void $ expr2C expr |
7134 | 834 |
lt <- gets lastType |
835 |
case lt of |
|
836 |
-- assume pointer to char for simplicity |
|
837 |
BTPointerTo _ -> do |
|
838 |
e <- expr2C $ Reference $ FunCall [Reference $ RefExpression expr] (SimpleReference (Identifier "pchar2str" BTUnknown)) |
|
839 |
return $ r <+> text "=" <+> e <> semi |
|
10120 | 840 |
BTAString -> do |
841 |
e <- expr2C $ Reference $ FunCall [Reference $ RefExpression expr] (SimpleReference (Identifier "astr2str" BTUnknown)) |
|
842 |
return $ r <+> text "=" <+> e <> semi |
|
7134 | 843 |
BTString -> do |
844 |
e <- expr2C expr |
|
845 |
return $ r <+> text "=" <+> e <> semi |
|
10120 | 846 |
_ -> error $ "Assignment to string from " ++ show lt ++ "\n" ++ show asgn |
847 |
(BTAString, _) -> do |
|
848 |
void $ expr2C expr |
|
849 |
lt <- gets lastType |
|
850 |
case lt of |
|
851 |
-- assume pointer to char for simplicity |
|
852 |
BTPointerTo _ -> do |
|
853 |
e <- expr2C $ Reference $ FunCall [Reference $ RefExpression expr] (SimpleReference (Identifier "pchar2astr" BTUnknown)) |
|
854 |
return $ r <+> text "=" <+> e <> semi |
|
855 |
BTString -> do |
|
856 |
e <- expr2C $ Reference $ FunCall [Reference $ RefExpression expr] (SimpleReference (Identifier "str2astr" BTUnknown)) |
|
857 |
return $ r <+> text "=" <+> e <> semi |
|
858 |
BTAString -> do |
|
859 |
e <- expr2C expr |
|
860 |
return $ r <+> text "=" <+> e <> semi |
|
861 |
_ -> error $ "Assignment to ansistring from " ++ show lt ++ "\n" ++ show asgn |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
862 |
(BTArray _ _ _, _) -> do |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
863 |
case expr of |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
864 |
Reference er -> do |
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
865 |
void $ ref2C er |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
866 |
exprT <- gets lastType |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
867 |
case exprT of |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
868 |
BTArray RangeInfinite _ _ -> |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
869 |
return $ text "FIXME: assign a dynamic array to an array" |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
870 |
BTArray _ _ _ -> phrase2C $ |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
871 |
ProcCall (FunCall |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
872 |
[ |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
873 |
Reference $ ref |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
874 |
, Reference $ RefExpression expr |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
875 |
, Reference $ FunCall [expr] (SimpleReference (Identifier "sizeof" BTUnknown)) |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
876 |
] |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
877 |
(SimpleReference (Identifier "memcpy" BTUnknown)) |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
878 |
) [] |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
879 |
_ -> return $ text "FIXME: assign a non-specific value to an array" |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
880 |
|
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
881 |
_ -> return $ text "FIXME: dynamic array assignment 2" |
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
882 |
_ -> do |
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
883 |
e <- expr2C expr |
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7062
diff
changeset
|
884 |
return $ r <+> text "=" <+> e <> semi |
6509 | 885 |
phrase2C (WhileCycle expr phrase) = do |
886 |
e <- expr2C expr |
|
887 |
p <- phrase2C $ wrapPhrase phrase |
|
888 |
return $ text "while" <> parens e $$ p |
|
889 |
phrase2C (SwitchCase expr cases mphrase) = do |
|
890 |
e <- expr2C expr |
|
891 |
cs <- mapM case2C cases |
|
6874 | 892 |
d <- dflt |
7315 | 893 |
return $ |
6895 | 894 |
text "switch" <> parens e $+$ braces (nest 4 . vcat $ cs ++ d) |
6273 | 895 |
where |
6512 | 896 |
case2C :: ([InitExpression], Phrase) -> State RenderState Doc |
6509 | 897 |
case2C (e, p) = do |
6874 | 898 |
ies <- mapM range2C e |
6509 | 899 |
ph <- phrase2C p |
7315 | 900 |
return $ |
6874 | 901 |
vcat (map (\i -> text "case" <+> i <> colon) . concat $ ies) <> nest 4 (ph $+$ text "break;") |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
902 |
dflt | isNothing mphrase = return [text "default: break;"] -- avoid compiler warning |
6874 | 903 |
| otherwise = do |
904 |
ph <- mapM phrase2C $ fromJust mphrase |
|
905 |
return [text "default:" <+> nest 4 (vcat ph)] |
|
7315 | 906 |
|
6845 | 907 |
phrase2C wb@(WithBlock ref p) = do |
7315 | 908 |
r <- ref2C ref |
6845 | 909 |
t <- gets lastType |
910 |
case t of |
|
7511 | 911 |
(BTRecord _ rs) -> withRecordNamespace (render r ++ ".") (rec2Records rs) $ phrase2C $ wrapPhrase p |
6845 | 912 |
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
|
913 |
error $ "'with' block referencing non-record type " ++ show a ++ "\n" ++ show wb |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
914 |
phrase2C (ForCycle i' e1' e2' p up) = do |
6663 | 915 |
i <- id2C IOLookup i' |
7511 | 916 |
iType <- gets lastIdTypeDecl |
6509 | 917 |
e1 <- expr2C e1' |
918 |
e2 <- expr2C e2' |
|
7529
058fcb451b37
Check if 'for' cycle body is executed at least once
unc0rr
parents:
7513
diff
changeset
|
919 |
let iEnd = i <> text "__end__" |
10688
9459c45b5190
dark magic: make "continue" statement work in pas2c-parsed for-loops. (would skip iteration and lead to infinite loops before)
sheepluva
parents:
10497
diff
changeset
|
920 |
ph <- phrase2C $ wrapPhrase p |
7511 | 921 |
return . braces $ |
922 |
i <+> text "=" <+> e1 <> semi |
|
6509 | 923 |
$$ |
7529
058fcb451b37
Check if 'for' cycle body is executed at least once
unc0rr
parents:
7513
diff
changeset
|
924 |
iType <+> iEnd <+> text "=" <+> e2 <> semi |
10015 | 925 |
$$ |
8020 | 926 |
text "if" <+> (parens $ i <+> text (if up then "<=" else ">=") <+> iEnd) <+> text "do" <+> ph <+> |
10688
9459c45b5190
dark magic: make "continue" statement work in pas2c-parsed for-loops. (would skip iteration and lead to infinite loops before)
sheepluva
parents:
10497
diff
changeset
|
927 |
text "while" <> parens (i <> text (if up then "++" else "--") <+> text "!=" <+> iEnd) <> semi |
7511 | 928 |
where |
929 |
appendPhrase p (Phrases ps) = Phrases $ ps ++ [p] |
|
10497
c7c50f165946
[PAS2C] Don't generate result variable for trivial functions consisting of single exit() call
unc0rr
parents:
10245
diff
changeset
|
930 |
appendPhrase _ _ = error "illegal appendPhrase call" |
6509 | 931 |
phrase2C (RepeatCycle e' p') = do |
932 |
e <- expr2C e' |
|
933 |
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
|
934 |
return $ text "do" <+> p <+> text "while" <> parens (text "!" <> parens e) <> semi |
8020 | 935 |
|
6509 | 936 |
phrase2C NOP = return $ text ";" |
6355 | 937 |
|
7134 | 938 |
phrase2C (BuiltInFunctionCall [] (SimpleReference (Identifier "exit" BTUnknown))) = do |
939 |
f <- gets currentFunctionResult |
|
940 |
if null f then |
|
941 |
return $ text "return" <> semi |
|
942 |
else |
|
943 |
return $ text "return" <+> text f <> semi |
|
7038 | 944 |
phrase2C (BuiltInFunctionCall [] (SimpleReference (Identifier "break" BTUnknown))) = return $ text "break" <> semi |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
945 |
phrase2C (BuiltInFunctionCall [] (SimpleReference (Identifier "continue" BTUnknown))) = return $ text "continue" <> semi |
7037 | 946 |
phrase2C (BuiltInFunctionCall [e] (SimpleReference (Identifier "exit" BTUnknown))) = liftM (\e -> text "return" <+> e <> semi) $ expr2C e |
6895 | 947 |
phrase2C (BuiltInFunctionCall [e] (SimpleReference (Identifier "dec" BTUnknown))) = liftM (\e -> text "--" <> e <> semi) $ expr2C e |
948 |
phrase2C (BuiltInFunctionCall [e1, e2] (SimpleReference (Identifier "dec" BTUnknown))) = liftM2 (\a b -> a <> text " -= " <> b <> semi) (expr2C e1) (expr2C e2) |
|
949 |
phrase2C (BuiltInFunctionCall [e] (SimpleReference (Identifier "inc" BTUnknown))) = liftM (\e -> text "++" <> e <> semi) $ expr2C e |
|
950 |
phrase2C (BuiltInFunctionCall [e1, e2] (SimpleReference (Identifier "inc" BTUnknown))) = liftM2 (\a b -> a <+> text "+=" <+> b <> semi) (expr2C e1) (expr2C e2) |
|
951 |
phrase2C a = error $ "phrase2C: " ++ show a |
|
6273 | 952 |
|
6307 | 953 |
wrapPhrase p@(Phrases _) = p |
954 |
wrapPhrase p = Phrases [p] |
|
6273 | 955 |
|
6512 | 956 |
expr2C :: Expression -> State RenderState Doc |
6509 | 957 |
expr2C (Expression s) = return $ text s |
10120 | 958 |
expr2C bop@(BinOp op expr1 expr2) = do |
6509 | 959 |
e1 <- expr2C expr1 |
6860 | 960 |
t1 <- gets lastType |
6509 | 961 |
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
|
962 |
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
|
963 |
case (op2C op, t1, t2) of |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
964 |
("+", BTAString, BTAString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strconcatA" (fff t1 t2 BTString)) |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
965 |
("+", BTAString, BTChar) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strappendA" (fff t1 t2 BTAString)) |
13344
4f9108f82879
Pas2C: Add support for char + ansistring (for real this time)
Wuzzy <Wuzzy2@mail.ru>
parents:
13306
diff
changeset
|
966 |
("+", BTChar, BTAString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strprependA" (fff t1 t2 BTAString)) |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
967 |
("!=", BTAString, BTAString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strncompareA" (fff t1 t2 BTBool)) |
10120 | 968 |
(_, BTAString, _) -> error $ "unhandled bin op with ansistring on the left side: " ++ show bop |
969 |
(_, _, BTAString) -> error $ "unhandled bin op with ansistring on the right side: " ++ show bop |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
970 |
("+", BTString, BTString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strconcat" (fff t1 t2 BTString)) |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
971 |
("+", BTString, BTChar) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strappend" (fff t1 t2 BTString)) |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
972 |
("+", BTChar, BTString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strprepend" (fff t1 t2 BTString)) |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
973 |
("+", BTChar, BTChar) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_chrconcat" (fff t1 t2 BTString)) |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
974 |
("==", BTString, BTChar) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strcomparec" (fff t1 t2 BTBool)) |
8020 | 975 |
|
976 |
-- for function/procedure comparision |
|
977 |
("==", BTVoid, _) -> procCompare expr1 expr2 "==" |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
978 |
("==", BTFunction _ _ _ _, _) -> procCompare expr1 expr2 "==" |
8020 | 979 |
|
980 |
("!=", BTVoid, _) -> procCompare expr1 expr2 "!=" |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
981 |
("!=", BTFunction _ _ _ _, _) -> procCompare expr1 expr2 "!=" |
8020 | 982 |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
983 |
("==", BTString, BTString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strcompare" (fff t1 t2 BTBool)) |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
984 |
("!=", BTString, _) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strncompare" (fff t1 t2 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
|
985 |
("&", 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
|
986 |
("|", BTBool, _) -> return $ parens e1 <+> text "||" <+> parens e2 |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
987 |
(_, BTRecord t1 _, BTRecord t2 _) -> do |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
988 |
i <- op2CTyped op [SimpleType (Identifier t1 undefined), SimpleType (Identifier t2 undefined)] |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
989 |
ref2C $ FunCall [expr1, expr2] (SimpleReference i) |
8020 | 990 |
(_, BTRecord t1 _, BTInt _) -> do |
7056 | 991 |
-- aw, "LongInt" here is hwengine-specific hack |
992 |
i <- op2CTyped op [SimpleType (Identifier t1 undefined), SimpleType (Identifier "LongInt" undefined)] |
|
993 |
ref2C $ FunCall [expr1, expr2] (SimpleReference i) |
|
7315 | 994 |
("in", _, _) -> |
7057
c3eba84d1a98
Support operator 'in', replace it with equality checks against each element of set
unc0rr
parents:
7056
diff
changeset
|
995 |
case expr2 of |
c3eba84d1a98
Support operator 'in', replace it with equality checks against each element of set
unc0rr
parents:
7056
diff
changeset
|
996 |
SetExpression set -> do |
c3eba84d1a98
Support operator 'in', replace it with equality checks against each element of set
unc0rr
parents:
7056
diff
changeset
|
997 |
ids <- mapM (id2C IOLookup) set |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
998 |
modify(\s -> s{lastType = BTBool}) |
7057
c3eba84d1a98
Support operator 'in', replace it with equality checks against each element of set
unc0rr
parents:
7056
diff
changeset
|
999 |
return . parens . hcat . punctuate (text " || ") . map (\i -> parens $ e1 <+> text "==" <+> i) $ ids |
c3eba84d1a98
Support operator 'in', replace it with equality checks against each element of set
unc0rr
parents:
7056
diff
changeset
|
1000 |
_ -> error "'in' against not set expression" |
6923 | 1001 |
(o, _, _) | o `elem` boolOps -> do |
1002 |
modify(\s -> s{lastType = BTBool}) |
|
1003 |
return $ parens e1 <+> text o <+> parens e2 |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1004 |
| otherwise -> do |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1005 |
o' <- return $ case o of |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1006 |
"/(float)" -> text "/(float)" -- pascal returns real value |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1007 |
_ -> text o |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1008 |
e1' <- return $ case (o, t1, t2) of |
8020 | 1009 |
("-", BTInt False, BTInt False) -> parens $ text "(int64_t)" <+> parens e1 |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1010 |
_ -> parens e1 |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1011 |
e2' <- return $ case (o, t1, t2) of |
8020 | 1012 |
("-", BTInt False, BTInt False) -> parens $ text "(int64_t)" <+> parens e2 |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1013 |
_ -> parens e2 |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1014 |
return $ e1' <+> o' <+> e2' |
6923 | 1015 |
where |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1016 |
fff t1 t2 = BTFunction False False [(False, t1), (False, t2)] |
6923 | 1017 |
boolOps = ["==", "!=", "<", ">", "<=", ">="] |
8020 | 1018 |
procCompare expr1 expr2 op = |
1019 |
case (expr1, expr2) of |
|
1020 |
(Reference r1, Reference r2) -> do |
|
1021 |
id1 <- ref2C r1 |
|
1022 |
id2 <- ref2C r2 |
|
1023 |
return $ (parens id1) <+> text op <+> (parens id2) |
|
1024 |
(_, _) -> error $ "Two non reference type vars are compared but they have type of BTVoid or BTFunction\n" ++ show expr1 ++ "\n" ++ show expr2 |
|
1025 |
||
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1026 |
expr2C (NumberLiteral s) = do |
8020 | 1027 |
modify(\s -> s{lastType = BTInt True}) |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1028 |
return $ text s |
6509 | 1029 |
expr2C (FloatLiteral s) = return $ text s |
1030 |
expr2C (HexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
7067
f98ec3aecf4e
A solution to char vs string problem: mark single-letter strings with _S macro
unc0rr
parents:
7066
diff
changeset
|
1031 |
{-expr2C (StringLiteral [a]) = 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
|
1032 |
modify(\s -> s{lastType = BTChar}) |
7043
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7042
diff
changeset
|
1033 |
return . quotes . text $ escape a |
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7042
diff
changeset
|
1034 |
where |
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7042
diff
changeset
|
1035 |
escape '\'' = "\\\'" |
7067
f98ec3aecf4e
A solution to char vs string problem: mark single-letter strings with _S macro
unc0rr
parents:
7066
diff
changeset
|
1036 |
escape a = [a]-} |
6896
23b38e530967
Move all strings into constants to make them of string255 type
unc0rr
parents:
6895
diff
changeset
|
1037 |
expr2C (StringLiteral s) = addStringConst s |
7072 | 1038 |
expr2C (PCharLiteral s) = return . doubleQuotes $ text s |
8020 | 1039 |
expr2C (Reference ref) = do |
1040 |
isfunc <- gets isFunctionType |
|
1041 |
modify(\s -> s{isFunctionType = False}) -- reset |
|
1042 |
if isfunc then ref2CF ref False else ref2CF ref True |
|
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1043 |
expr2C (PrefixOp op expr) = do |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1044 |
e <- expr2C expr |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1045 |
lt <- gets lastType |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1046 |
case lt of |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1047 |
BTRecord t _ -> do |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1048 |
i <- op2CTyped op [SimpleType (Identifier t undefined)] |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1049 |
ref2C $ FunCall [expr] (SimpleReference i) |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1050 |
BTBool -> do |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1051 |
o <- return $ case op of |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1052 |
"not" -> text "!" |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1053 |
_ -> text (op2C op) |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1054 |
return $ o <> parens e |
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1055 |
_ -> return $ text (op2C op) <> parens e |
6509 | 1056 |
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
|
1057 |
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
|
1058 |
modify(\s -> s{lastType = BTChar}) |
9964 | 1059 |
return $ text "0x" <> text (showHex (read a) "") |
7075 | 1060 |
expr2C (HexCharCode a) = if length a <= 2 then return $ quotes $ text "\\x" <> text (map toLower a) else expr2C $ HexNumber a |
6895 | 1061 |
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
|
1062 |
|
7036 | 1063 |
expr2C (BuiltInFunCall [e] (SimpleReference (Identifier "low" _))) = do |
1064 |
e' <- liftM (map toLower . render) $ expr2C e |
|
1065 |
lt <- gets lastType |
|
1066 |
case lt of |
|
10113
b26c2772e754
Fix tons and tons of pas2c warnings (but still not all of them)
unc0rr
parents:
10111
diff
changeset
|
1067 |
BTEnum _-> return $ int 0 |
8020 | 1068 |
BTInt _ -> case e' of |
7036 | 1069 |
"longint" -> return $ int (-2147483648) |
1070 |
BTArray {} -> return $ int 0 |
|
1071 |
_ -> error $ "BuiltInFunCall 'low' from " ++ show e ++ "\ntype: " ++ show lt |
|
1072 |
expr2C (BuiltInFunCall [e] (SimpleReference (Identifier "high" _))) = do |
|
1073 |
e' <- liftM (map toLower . render) $ expr2C e |
|
1074 |
lt <- gets lastType |
|
1075 |
case lt of |
|
1076 |
BTEnum a -> return . int $ length a - 1 |
|
8020 | 1077 |
BTInt _ -> case e' of |
7036 | 1078 |
"longint" -> return $ int (2147483647) |
1079 |
BTString -> return $ int 255 |
|
1080 |
BTArray (RangeFromTo _ n) _ _ -> initExpr2C n |
|
1081 |
_ -> error $ "BuiltInFunCall 'high' from " ++ show e ++ "\ntype: " ++ show lt |
|
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
|
1082 |
expr2C (BuiltInFunCall [e] (SimpleReference (Identifier "ord" _))) = liftM parens $ expr2C e |
6895 | 1083 |
expr2C (BuiltInFunCall [e] (SimpleReference (Identifier "succ" _))) = liftM (<> text " + 1") $ expr2C e |
8020 | 1084 |
expr2C (BuiltInFunCall [e] (SimpleReference (Identifier "pred" _))) = do |
1085 |
e'<- expr2C e |
|
1086 |
return $ text "(int)" <> parens e' <> text " - 1" |
|
7062 | 1087 |
expr2C (BuiltInFunCall [e] (SimpleReference (Identifier "length" _))) = do |
1088 |
e' <- expr2C e |
|
1089 |
lt <- gets lastType |
|
8020 | 1090 |
modify (\s -> s{lastType = BTInt True}) |
7062 | 1091 |
case lt of |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1092 |
BTString -> return $ text "fpcrtl_Length" <> parens e' |
10120 | 1093 |
BTAString -> return $ text "fpcrtl_LengthA" <> parens e' |
7335 | 1094 |
BTArray RangeInfinite _ _ -> error $ "length() called on variable size array " ++ show e' |
1095 |
BTArray (RangeFromTo _ n) _ _ -> initExpr2C (BuiltInFunction "succ" [n]) |
|
7062 | 1096 |
_ -> error $ "length() called on " ++ show lt |
10120 | 1097 |
expr2C (BuiltInFunCall [e, e1, e2] (SimpleReference (Identifier "copy" _))) = do |
1098 |
e1' <- expr2C e1 |
|
1099 |
e2' <- expr2C e2 |
|
1100 |
e' <- expr2C e |
|
1101 |
lt <- gets lastType |
|
1102 |
let f name = return $ text name <> parens (hsep $ punctuate (char ',') [e', e1', e2']) |
|
1103 |
case lt of |
|
1104 |
BTString -> f "fpcrtl_copy" |
|
1105 |
BTAString -> f "fpcrtl_copyA" |
|
1106 |
_ -> error $ "copy() called on " ++ show lt |
|
13306 | 1107 |
|
6509 | 1108 |
expr2C (BuiltInFunCall params ref) = do |
7315 | 1109 |
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
|
1110 |
t <- gets lastType |
6509 | 1111 |
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
|
1112 |
case t of |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1113 |
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
|
1114 |
modify (\s -> s{lastType = t'}) |
13306 | 1115 |
_ -> error $ "BuiltInFunCall `" ++ show ref ++ "`, lastType: " ++ show t |
7315 | 1116 |
return $ |
6509 | 1117 |
r <> parens (hsep . punctuate (char ',') $ ps) |
6858 | 1118 |
expr2C a = error $ "Don't know how to render " ++ show a |
6273 | 1119 |
|
8020 | 1120 |
ref2CF :: Reference -> Bool -> State RenderState Doc |
1121 |
ref2CF (SimpleReference name) addParens = 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
|
1122 |
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
|
1123 |
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
|
1124 |
case t of |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1125 |
BTFunction _ _ _ rt -> do |
7060
861d6897917f
Properly track type in ref2CF, this fixes issues with functions returning strings used in expression (like "a" + line())
unc0rr
parents:
7057
diff
changeset
|
1126 |
modify(\s -> s{lastType = rt}) |
8020 | 1127 |
return $ if addParens then i <> parens empty else i --xymeng: removed parens |
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
|
1128 |
_ -> return $ i |
8020 | 1129 |
ref2CF r@(RecordField (SimpleReference _) (SimpleReference _)) addParens = do |
7055 | 1130 |
i <- ref2C r |
1131 |
t <- gets lastType |
|
1132 |
case t of |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1133 |
BTFunction _ _ _ rt -> do |
7060
861d6897917f
Properly track type in ref2CF, this fixes issues with functions returning strings used in expression (like "a" + line())
unc0rr
parents:
7057
diff
changeset
|
1134 |
modify(\s -> s{lastType = rt}) |
10015 | 1135 |
return $ if addParens then i <> parens empty else i |
7055 | 1136 |
_ -> return $ i |
8020 | 1137 |
ref2CF r _ = ref2C r |
6307 | 1138 |
|
6512 | 1139 |
ref2C :: Reference -> State RenderState Doc |
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6853
diff
changeset
|
1140 |
-- rewrite into proper form |
6858 | 1141 |
ref2C (RecordField ref1 (ArrayElement exprs ref2)) = ref2C $ ArrayElement exprs (RecordField ref1 ref2) |
1142 |
ref2C (RecordField ref1 (Dereference ref2)) = ref2C $ Dereference (RecordField ref1 ref2) |
|
1143 |
ref2C (RecordField ref1 (RecordField ref2 ref3)) = ref2C $ RecordField (RecordField ref1 ref2) ref3 |
|
1144 |
ref2C (RecordField ref1 (FunCall params ref2)) = ref2C $ FunCall params (RecordField ref1 ref2) |
|
1145 |
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
|
1146 |
-- conversion routines |
6895 | 1147 |
ref2C ae@(ArrayElement [expr] ref) = do |
1148 |
e <- expr2C expr |
|
7315 | 1149 |
r <- ref2C ref |
6827 | 1150 |
t <- gets lastType |
1151 |
case t of |
|
6893 | 1152 |
(BTArray _ _ t') -> modify (\st -> st{lastType = t'}) |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
1153 |
-- (BTFunctionReturn _ (BTArray _ _ t')) -> modify (\st -> st{lastType = t'}) |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
1154 |
-- (BTFunctionReturn _ (BTString)) -> modify (\st -> st{lastType = BTChar}) |
10120 | 1155 |
BTString -> modify (\st -> st{lastType = BTChar}) |
1156 |
BTAString -> modify (\st -> st{lastType = BTChar}) |
|
6872 | 1157 |
(BTPointerTo t) -> do |
1158 |
t'' <- fromPointer (show t) =<< gets lastType |
|
1159 |
case t'' of |
|
1160 |
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
|
1161 |
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
|
1162 |
a -> error $ "Getting element of " ++ show a ++ "\nReference: " ++ show ae |
6895 | 1163 |
case t of |
1164 |
BTString -> return $ r <> text ".s" <> brackets e |
|
10127 | 1165 |
BTAString -> return $ r <> text ".s" <> brackets e |
6895 | 1166 |
_ -> return $ r <> brackets e |
6663 | 1167 |
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
|
1168 |
ref2C rf@(RecordField (Dereference ref1) ref2) = do |
7315 | 1169 |
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
|
1170 |
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
|
1171 |
r2 <- case t of |
7511 | 1172 |
BTRecord _ rs -> withRecordNamespace "" (rec2Records rs) $ ref2C ref2 |
7055 | 1173 |
BTUnit -> error "What??" |
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
|
1174 |
a -> error $ "dereferencing from " ++ show a ++ "\n" ++ show rf |
7315 | 1175 |
return $ |
6509 | 1176 |
r1 <> text "->" <> r2 |
6618 | 1177 |
ref2C rf@(RecordField ref1 ref2) = do |
1178 |
r1 <- ref2C ref1 |
|
1179 |
t <- gets lastType |
|
7033 | 1180 |
case t of |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7040
diff
changeset
|
1181 |
BTRecord _ rs -> do |
7511 | 1182 |
r2 <- withRecordNamespace "" (rec2Records rs) $ ref2C ref2 |
7033 | 1183 |
return $ r1 <> text "." <> r2 |
7055 | 1184 |
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
|
1185 |
a -> error $ "dereferencing from " ++ show a ++ "\n" ++ show rf |
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
|
1186 |
ref2C d@(Dereference ref) = do |
6827 | 1187 |
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
|
1188 |
t <- fromPointer (show d) =<< gets lastType |
6834 | 1189 |
modify (\st -> st{lastType = t}) |
6859 | 1190 |
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
|
1191 |
ref2C f@(FunCall params ref) = do |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
1192 |
r <- fref2C ref |
6826 | 1193 |
t <- gets lastType |
1194 |
case t of |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1195 |
BTFunction _ _ bts t' -> do |
10015 | 1196 |
ps <- liftM (parens . hsep . punctuate (char ',')) $ |
8020 | 1197 |
if (length params) == (length bts) -- hot fix for pas2cSystem and pas2cRedo functions since they don't have params |
10015 | 1198 |
then |
8020 | 1199 |
mapM expr2CHelper (zip params bts) |
1200 |
else 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
|
1201 |
modify (\s -> s{lastType = t'}) |
6826 | 1202 |
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
|
1203 |
_ -> 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
|
1204 |
(SimpleReference i, [p]) -> ref2C $ TypeCast i p |
8020 | 1205 |
_ -> error $ "ref2C FunCall erroneous type cast detected: " ++ show f ++ "\nType detected: " ++ show t ++ "\n" ++ show ref ++ "\n" ++ show params ++ "\n" ++ show t |
7032
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
1206 |
where |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
1207 |
fref2C (SimpleReference name) = id2C (IOLookupFunction $ length params) name |
5685ca1ec9bf
Mangle overloaded functions (only different number of parameters is supported)
unc0rr
parents:
7019
diff
changeset
|
1208 |
fref2C a = ref2C a |
8020 | 1209 |
expr2CHelper :: (Expression, (Bool, BaseType)) -> State RenderState Doc |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1210 |
expr2CHelper (e, (_, BTFunction _ _ _ _)) = do |
8020 | 1211 |
modify (\s -> s{isFunctionType = True}) |
1212 |
expr2C e |
|
1213 |
expr2CHelper (e, (isVar, _)) = if isVar then liftM (((<>) $ text "&") . parens) $ (expr2C e) else expr2C e |
|
7315 | 1214 |
|
6509 | 1215 |
ref2C (Address ref) = do |
1216 |
r <- ref2C ref |
|
7333
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
1217 |
lt <- gets lastType |
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
1218 |
case lt of |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1219 |
BTFunction True _ _ _ -> return $ text "&" <> parens r |
7333
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7329
diff
changeset
|
1220 |
_ -> 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
|
1221 |
ref2C (TypeCast t'@(Identifier i _) expr) = do |
7151 | 1222 |
lt <- expr2C expr >> gets lastType |
1223 |
case (map toLower i, lt) of |
|
1224 |
("pchar", BTString) -> ref2C $ FunCall [expr] (SimpleReference (Identifier "_pchar" $ BTPointerTo BTChar)) |
|
10120 | 1225 |
("pchar", BTAString) -> ref2C $ FunCall [expr] (SimpleReference (Identifier "_pcharA" $ BTPointerTo BTChar)) |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10121
diff
changeset
|
1226 |
("shortstring", BTAString) -> ref2C $ FunCall [expr] (SimpleReference (Identifier "astr2str" $ BTString)) |
7151 | 1227 |
("shortstring", BTPointerTo _) -> ref2C $ FunCall [expr] (SimpleReference (Identifier "pchar2str" $ BTString)) |
10127 | 1228 |
("ansistring", BTPointerTo _) -> ref2C $ FunCall [expr] (SimpleReference (Identifier "pchar2astr" $ BTAString)) |
10121 | 1229 |
("ansistring", BTString) -> ref2C $ FunCall [expr] (SimpleReference (Identifier "str2astr" $ BTAString)) |
7151 | 1230 |
(a, _) -> 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
|
1231 |
e <- expr2C expr |
7315 | 1232 |
t <- id2C IOLookup t' |
7038 | 1233 |
return . parens $ parens t <> e |
6467 | 1234 |
ref2C (RefExpression expr) = expr2C expr |
6355 | 1235 |
|
6509 | 1236 |
|
6860 | 1237 |
op2C :: String -> String |
1238 |
op2C "or" = "|" |
|
1239 |
op2C "and" = "&" |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1240 |
op2C "not" = "~" |
6860 | 1241 |
op2C "xor" = "^" |
1242 |
op2C "div" = "/" |
|
1243 |
op2C "mod" = "%" |
|
1244 |
op2C "shl" = "<<" |
|
1245 |
op2C "shr" = ">>" |
|
1246 |
op2C "<>" = "!=" |
|
1247 |
op2C "=" = "==" |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7335
diff
changeset
|
1248 |
op2C "/" = "/(float)" |
6860 | 1249 |
op2C a = a |
6273 | 1250 |