author | dag10 <gottlieb.drew@gmail.com> |
Sat, 19 Jan 2013 18:48:21 -0500 | |
changeset 8407 | 686f2e716c97 |
parent 7513 | 39866eb9e4a6 |
permissions | -rw-r--r-- |
6467 | 1 |
module PascalUnitSyntaxTree where |
2 |
||
6618 | 3 |
import Data.Maybe |
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
|
4 |
import Data.Char |
6467 | 5 |
|
6 |
data PascalUnit = |
|
7 |
Program Identifier Implementation Phrase |
|
8 |
| Unit Identifier Interface Implementation (Maybe Initialize) (Maybe Finalize) |
|
6512 | 9 |
| System [TypeVarDeclaration] |
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7333
diff
changeset
|
10 |
| Redo [TypeVarDeclaration] |
6467 | 11 |
deriving Show |
12 |
data Interface = Interface Uses TypesAndVars |
|
13 |
deriving Show |
|
14 |
data Implementation = Implementation Uses TypesAndVars |
|
15 |
deriving Show |
|
6489 | 16 |
data Identifier = Identifier String BaseType |
6467 | 17 |
deriving Show |
18 |
data TypesAndVars = TypesAndVars [TypeVarDeclaration] |
|
19 |
deriving Show |
|
20 |
data TypeVarDeclaration = TypeDeclaration Identifier TypeDecl |
|
7317 | 21 |
| VarDeclaration Bool Bool ([Identifier], TypeDecl) (Maybe InitExpression) |
7513 | 22 |
| FunctionDeclaration Identifier Bool TypeDecl [TypeVarDeclaration] (Maybe (TypesAndVars, Phrase)) |
23 |
| OperatorDeclaration String Identifier Bool TypeDecl [TypeVarDeclaration] (Maybe (TypesAndVars, Phrase)) |
|
6467 | 24 |
deriving Show |
25 |
data TypeDecl = SimpleType Identifier |
|
26 |
| RangeType Range |
|
27 |
| Sequence [Identifier] |
|
28 |
| ArrayDecl (Maybe Range) TypeDecl |
|
29 |
| RecordType [TypeVarDeclaration] (Maybe [[TypeVarDeclaration]]) |
|
30 |
| PointerTo TypeDecl |
|
31 |
| String Integer |
|
32 |
| Set TypeDecl |
|
33 |
| FunctionType TypeDecl [TypeVarDeclaration] |
|
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
34 |
| DeriveType InitExpression |
6826 | 35 |
| VoidType |
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
36 |
| VarParamType TypeDecl -- this is a hack |
6467 | 37 |
deriving Show |
38 |
data Range = Range Identifier |
|
39 |
| RangeFromTo InitExpression InitExpression |
|
6893 | 40 |
| RangeInfinite |
6467 | 41 |
deriving Show |
42 |
data Initialize = Initialize String |
|
43 |
deriving Show |
|
44 |
data Finalize = Finalize String |
|
45 |
deriving Show |
|
46 |
data Uses = Uses [Identifier] |
|
47 |
deriving Show |
|
48 |
data Phrase = ProcCall Reference [Expression] |
|
49 |
| IfThenElse Expression Phrase (Maybe Phrase) |
|
50 |
| WhileCycle Expression Phrase |
|
51 |
| RepeatCycle Expression [Phrase] |
|
7429
fcf13e40d6b6
Changes to pas2c - unreviewed apart from cursory glance and compile test.
xymeng
parents:
7333
diff
changeset
|
52 |
| ForCycle Identifier Expression Expression Phrase Bool -- The last Boolean indicates wether it's up or down counting |
6467 | 53 |
| WithBlock Reference Phrase |
54 |
| Phrases [Phrase] |
|
55 |
| SwitchCase Expression [([InitExpression], Phrase)] (Maybe [Phrase]) |
|
56 |
| Assignment Reference Expression |
|
6895 | 57 |
| BuiltInFunctionCall [Expression] Reference |
6467 | 58 |
| NOP |
59 |
deriving Show |
|
60 |
data Expression = Expression String |
|
61 |
| BuiltInFunCall [Expression] Reference |
|
62 |
| PrefixOp String Expression |
|
63 |
| PostfixOp String Expression |
|
64 |
| BinOp String Expression Expression |
|
65 |
| StringLiteral String |
|
7070 | 66 |
| PCharLiteral String |
6467 | 67 |
| CharCode String |
68 |
| HexCharCode String |
|
69 |
| NumberLiteral String |
|
70 |
| FloatLiteral String |
|
71 |
| HexNumber String |
|
72 |
| Reference Reference |
|
73 |
| SetExpression [Identifier] |
|
74 |
| Null |
|
75 |
deriving Show |
|
76 |
data Reference = ArrayElement [Expression] Reference |
|
77 |
| FunCall [Expression] Reference |
|
78 |
| TypeCast Identifier Expression |
|
79 |
| SimpleReference Identifier |
|
80 |
| Dereference Reference |
|
81 |
| RecordField Reference Reference |
|
82 |
| Address Reference |
|
83 |
| RefExpression Expression |
|
84 |
deriving Show |
|
85 |
data InitExpression = InitBinOp String InitExpression InitExpression |
|
86 |
| InitPrefixOp String InitExpression |
|
87 |
| InitReference Identifier |
|
88 |
| InitArray [InitExpression] |
|
89 |
| InitRecord [(Identifier, InitExpression)] |
|
90 |
| InitFloat String |
|
91 |
| InitNumber String |
|
92 |
| InitHexNumber String |
|
93 |
| InitString String |
|
94 |
| InitChar String |
|
95 |
| BuiltInFunction String [InitExpression] |
|
96 |
| InitSet [InitExpression] |
|
97 |
| InitAddress InitExpression |
|
98 |
| InitNull |
|
99 |
| InitRange Range |
|
100 |
| InitTypeCast Identifier InitExpression |
|
101 |
deriving Show |
|
6489 | 102 |
|
6618 | 103 |
data BaseType = BTUnknown |
6489 | 104 |
| BTChar |
105 |
| BTString |
|
106 |
| BTInt |
|
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6626
diff
changeset
|
107 |
| BTBool |
6649
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
108 |
| BTFloat |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
7032
diff
changeset
|
109 |
| BTRecord String [(String, BaseType)] |
6893 | 110 |
| BTArray Range BaseType BaseType |
7333
520a16a14747
Properly convert taking address of function with var parameters
unc0rr
parents:
7323
diff
changeset
|
111 |
| BTFunction Bool Int BaseType |
6489 | 112 |
| BTPointerTo BaseType |
6827 | 113 |
| BTUnresolved String |
6653 | 114 |
| BTSet BaseType |
6489 | 115 |
| BTEnum [String] |
6618 | 116 |
| BTVoid |
6816 | 117 |
| BTUnit |
7323
8490a4f439a5
Convert function with var parameters declarations into #define + function which accepts pointers
unc0rr
parents:
7317
diff
changeset
|
118 |
| BTVarParam BaseType |
6489 | 119 |
deriving Show |