annotate python/ppci/c3/astnodes.py @ 300:158068af716c

yafm
author Windel Bouwman
date Tue, 03 Dec 2013 18:00:22 +0100
parents python/c3/astnodes.py@bd2593de3ff8
children 6753763d3bec
rev   line source
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
1 """
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
2 AST (abstract syntax tree) nodes for the c3 language.
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
3 The tree is build by the parser.
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
4 Then it is checked
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
5 Finally code is generated from it.
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
6 """
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
7
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
8 from ppci import SourceLocation
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
9
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
10
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
11 class Node:
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
12 pass
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
13
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
14
300
Windel Bouwman
parents: 289
diff changeset
15 # Variables, parameters, local variables, constants and named types:
Windel Bouwman
parents: 289
diff changeset
16 class Symbol(Node):
Windel Bouwman
parents: 289
diff changeset
17 def __init__(self, name):
Windel Bouwman
parents: 289
diff changeset
18 self.name = name
Windel Bouwman
parents: 289
diff changeset
19 self.refs = []
Windel Bouwman
parents: 289
diff changeset
20
Windel Bouwman
parents: 289
diff changeset
21 def addRef(self, r):
Windel Bouwman
parents: 289
diff changeset
22 self.refs.append(r)
Windel Bouwman
parents: 289
diff changeset
23
Windel Bouwman
parents: 289
diff changeset
24 @property
Windel Bouwman
parents: 289
diff changeset
25 def References(self):
Windel Bouwman
parents: 289
diff changeset
26 return self.refs
Windel Bouwman
parents: 289
diff changeset
27
Windel Bouwman
parents: 289
diff changeset
28
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
29 # Modules
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
30 class Package(Node):
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
31 def __init__(self, name, loc):
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
32 self.name = name
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
33 self.loc = loc
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
34 self.declarations = []
251
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 249
diff changeset
35 self.imports = []
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
36
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
37 def __repr__(self):
284
05184b95fa16 Moved tests to seperate folder
Windel Bouwman
parents: 272
diff changeset
38 return 'MODULE {}'.format(self.name)
05184b95fa16 Moved tests to seperate folder
Windel Bouwman
parents: 272
diff changeset
39
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
40
150
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 149
diff changeset
41 class Designator(Node):
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
42 def __init__(self, tname, loc):
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
43 self.tname = tname
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
44 self.loc = loc
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
45
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
46 def __repr__(self):
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
47 return 'DESIGNATOR {}'.format(self.tname)
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
48
289
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
49
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
50 class ImportDesignator(Designator):
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
51 def __init__(self, tname, vname, loc):
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
52 super().__init__(tname, loc)
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
53 self.vname = vname
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
54
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
55 def __repr__(self):
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
56 return 'IMPORT DESIGNATOR {}:{}'.format(self.tname, self.vname)
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
57
bd2593de3ff8 Semifix burn2
Windel Bouwman
parents: 288
diff changeset
58
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
59 """
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
60 Type classes
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
61
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
62 types must be comparable.
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
63
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
64 There are the following types:
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
65 - base type -> basic type (built in)
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
66 - struct type -> a composite type that contains a list of named fields
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
67 of other types
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
68 - function type
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
69 """
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
70
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
71
149
74241ca312cc Fixes on parser and semantics
Windel Bouwman
parents: 148
diff changeset
72 class Type(Node):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
73 pass
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
74
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
75
300
Windel Bouwman
parents: 289
diff changeset
76 class NamedType(Type, Symbol):
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
77 def __init__(self, name):
300
Windel Bouwman
parents: 289
diff changeset
78 Symbol.__init__(self, name)
Windel Bouwman
parents: 289
diff changeset
79
Windel Bouwman
parents: 289
diff changeset
80
Windel Bouwman
parents: 289
diff changeset
81 class BaseType(NamedType):
Windel Bouwman
parents: 289
diff changeset
82 def __init__(self, name):
Windel Bouwman
parents: 289
diff changeset
83 super().__init__(name)
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
84
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
85 def __repr__(self):
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
86 return '{}'.format(self.name)
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
87
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
88
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
89 class FunctionType(Type):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
90 def __init__(self, parametertypes, returntype):
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
91 self.parametertypes = parametertypes
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
92 self.returntype = returntype
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
93
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
94 def __repr__(self):
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
95 params = ', '.join([str(v) for v in self.parametertypes])
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
96 return '{1} f({0})'.format(params, self.returntype)
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
97
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
98
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
99 class PointerType(Type):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
100 """ A type that points to data of some other type """
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
101 def __init__(self, ptype):
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
102 assert isinstance(ptype, Type) or isinstance(ptype, Designator)
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
103 self.ptype = ptype
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
104
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
105 def __repr__(self):
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
106 return '({}*)'.format(self.ptype)
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
107
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
108
227
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
109 class StructField:
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
110 def __init__(self, name, typ):
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
111 self.name = name
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
112 self.typ = typ
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
113 self.offset = 0
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
114
227
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
115
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
116 class StructureType(Type):
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
117 def __init__(self, mems):
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
118 self.mems = mems
227
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
119 for mem in mems:
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
120 assert type(mem) is StructField
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
121 assert type(mem.name) is str
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
122
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
123 def hasField(self, name):
227
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
124 for mem in self.mems:
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
125 if name == mem.name:
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
126 return True
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
127 return False
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
128
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
129 def fieldType(self, name):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
130 return self.findField(name).typ
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
131
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
132 def fieldOffset(self, name):
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
133 return self.findField(name).offset
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
134
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
135 def findField(self, name):
227
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
136 for mem in self.mems:
82dfe6a32717 Fixed tests
Windel Bouwman
parents: 226
diff changeset
137 if name == mem.name:
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
138 return mem
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
139 raise KeyError(name)
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
140
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
141 def __repr__(self):
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
142 return 'STRUCT'
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
143
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
144
300
Windel Bouwman
parents: 289
diff changeset
145 class DefinedType(NamedType):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
146 """ A named type indicating another type """
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
147 def __init__(self, name, typ, loc):
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
148 assert isinstance(name, str)
300
Windel Bouwman
parents: 289
diff changeset
149 super().__init__(name)
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
150 self.typ = typ
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
151 self.loc = loc
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
152
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
153 def __repr__(self):
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
154 return 'Named type {0} of type {1}'.format(self.name, self.typ)
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
155
221
848c4b15fd0b pointers
Windel Bouwman
parents: 220
diff changeset
156
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
157 class Constant(Symbol):
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
158 def __init__(self, name, typ, value):
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
159 super().__init__(name)
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
160 self.typ = typ
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
161 self.value = value
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
162
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
163 def __repr__(self):
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
164 return 'CONSTANT {0} = {1}'.format(self.name, self.value)
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
165
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
166
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
167 class Variable(Symbol):
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
168 def __init__(self, name, typ):
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
169 super().__init__(name)
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
170 self.typ = typ
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
171 self.ival = None
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
172 self.isLocal = False
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
173 self.isReadOnly = False
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
174 self.isParameter = False
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
175
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
176 def __repr__(self):
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
177 return 'Var {} [{}]'.format(self.name, self.typ)
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
178
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
179
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
180 class LocalVariable(Variable):
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
181 def __init__(self, name, typ):
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
182 super().__init__(name, typ)
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
183 self.isLocal = True
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
184
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
185
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
186 class FormalParameter(Variable):
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
187 def __init__(self, name, typ):
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
188 super().__init__(name, typ)
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
189 self.isParameter = True
e64bae57cda8 refactor ir
Windel Bouwman
parents: 251
diff changeset
190
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
191
150
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 149
diff changeset
192 # Procedure types
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 149
diff changeset
193 class Function(Symbol):
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
194 """ Actual implementation of a function """
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
195 def __init__(self, name, loc):
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
196 super().__init__(name)
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
197 self.loc = loc
215
c1ccb1cb4cef Major changes in c3 frontend
Windel Bouwman
parents: 213
diff changeset
198 self.declarations = []
213
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
199
003c8a976fff Merge of semantics and parser again ..
Windel Bouwman
parents: 212
diff changeset
200 def __repr__(self):
217
8b2e5f3cd579 Removed some stale python source files
Windel Bouwman
parents: 215
diff changeset
201 return 'Func {}'.format(self.name)
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
202
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
203
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 158
diff changeset
204 # Operations / Expressions:
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
205 class Expression(Node):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
206 def __init__(self, loc):
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
207 self.loc = loc
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
208
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
209
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
210 class Deref(Expression):
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
211 def __init__(self, ptr, loc):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
212 super().__init__(loc)
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
213 assert isinstance(ptr, Expression)
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
214 self.ptr = ptr
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
215
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
216 def __repr__(self):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
217 return 'DEREF {}'.format(self.ptr)
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
218
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
219
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
220 class TypeCast(Expression):
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
221 def __init__(self, to_type, x, loc):
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
222 super().__init__(loc)
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
223 self.to_type = to_type
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
224 self.a = x
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
225
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
226 def __repr__(self):
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
227 return 'TYPECAST {}'.format(self.to_type)
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
228
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
229
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
230 class FieldRef(Expression):
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
231 def __init__(self, base, field, loc):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
232 super().__init__(loc)
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
233 assert isinstance(base, Expression)
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
234 assert isinstance(field, str)
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
235 self.base = base
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
236 self.field = field
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
237
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
238 def __repr__(self):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
239 return 'FIELD {}.{}'.format(self.base, self.field)
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 222
diff changeset
240
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
241
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
242 class Unop(Expression):
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
243 def __init__(self, op, a, loc):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
244 super().__init__(loc)
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
245 assert isinstance(a, Expression)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
246 assert isinstance(op, str)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
247 self.a = a
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
248 self.op = op
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
249
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
250 def __repr__(self):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
251 return 'UNOP {}'.format(self.op)
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
252
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
253
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
254 class Binop(Expression):
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
255 def __init__(self, a, op, b, loc):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
256 super().__init__(loc)
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
257 assert isinstance(a, Expression), type(a)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
258 assert isinstance(b, Expression)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
259 assert isinstance(op, str)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
260 self.a = a
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
261 self.b = b
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
262 self.op = op # Operation: '+', '-', '*', '/', 'mod'
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
263
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
264 def __repr__(self):
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
265 return 'BINOP {}'.format(self.op)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
266
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
267
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
268 class VariableUse(Expression):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
269 def __init__(self, target, loc):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
270 super().__init__(loc)
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
271 self.target = target
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
272
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
273 def __repr__(self):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
274 return 'VAR USE {}'.format(self.target)
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 158
diff changeset
275
284
05184b95fa16 Moved tests to seperate folder
Windel Bouwman
parents: 272
diff changeset
276
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
277 class Literal(Expression):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
278 def __init__(self, val, loc):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
279 super().__init__(loc)
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
280 self.val = val
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
281
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
282 def __repr__(self):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
283 return 'LITERAL {}'.format(self.val)
150
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 149
diff changeset
284
284
05184b95fa16 Moved tests to seperate folder
Windel Bouwman
parents: 272
diff changeset
285
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
286 class FunctionCall(Expression):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
287 def __init__(self, proc, args, loc):
230
88a1e0baef65 Added some tests for IR-code
Windel Bouwman
parents: 228
diff changeset
288 super().__init__(loc)
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
289 self.proc = proc
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
290 self.args = args
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
291
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
292 def __repr__(self):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
293 return 'CALL {0} '.format(self.proc)
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
294
284
05184b95fa16 Moved tests to seperate folder
Windel Bouwman
parents: 272
diff changeset
295
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
296 # Statements
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
297 class Statement(Node):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
298 def __init__(self, loc):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
299 self.loc = loc
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
300
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
301
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
302 class CompoundStatement(Statement):
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
303 def __init__(self, statements):
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 230
diff changeset
304 super().__init__(None)
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
305 self.statements = statements
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
306 for s in self.statements:
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
307 assert isinstance(s, Statement)
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
308
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
309 def __repr__(self):
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
310 return 'COMPOUND STATEMENT'
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
311
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
312
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
313 class ReturnStatement(Statement):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
314 def __init__(self, expr, loc):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
315 super().__init__(loc)
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
316 self.expr = expr
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
317
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
318 def __repr__(self):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
319 return 'RETURN STATEMENT'
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
320
284
05184b95fa16 Moved tests to seperate folder
Windel Bouwman
parents: 272
diff changeset
321
222
c3f1ce8b638f Fixup of parser
Windel Bouwman
parents: 221
diff changeset
322 class Assignment(Statement):
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
323 def __init__(self, lval, rval, loc):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
324 super().__init__(loc)
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
325 assert isinstance(lval, Node)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
326 assert isinstance(rval, Node)
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
327 self.lval = lval
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
328 self.rval = rval
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
329
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
330 def __repr__(self):
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
331 return 'ASSIGNMENT'
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
332
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 284
diff changeset
333
222
c3f1ce8b638f Fixup of parser
Windel Bouwman
parents: 221
diff changeset
334 class ExpressionStatement(Statement):
c3f1ce8b638f Fixup of parser
Windel Bouwman
parents: 221
diff changeset
335 def __init__(self, ex, loc):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
336 super().__init__(loc)
222
c3f1ce8b638f Fixup of parser
Windel Bouwman
parents: 221
diff changeset
337 self.ex = ex
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
338
222
c3f1ce8b638f Fixup of parser
Windel Bouwman
parents: 221
diff changeset
339 def __repr__(self):
c3f1ce8b638f Fixup of parser
Windel Bouwman
parents: 221
diff changeset
340 return 'Epression'
c3f1ce8b638f Fixup of parser
Windel Bouwman
parents: 221
diff changeset
341
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
342
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
343 class IfStatement(Statement):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
344 def __init__(self, condition, truestatement, falsestatement, loc):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
345 super().__init__(loc)
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
346 self.condition = condition
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
347 self.truestatement = truestatement
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
348 self.falsestatement = falsestatement
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
349
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
350 def __repr__(self):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
351 return 'IF-statement'
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
352
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
353
220
3f6c30a5d234 Major change in expression parsing to enable pointers and structs
Windel Bouwman
parents: 217
diff changeset
354 class WhileStatement(Statement):
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
355 def __init__(self, condition, statement, loc):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
356 super().__init__(loc)
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
357 self.condition = condition
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
358 self.statement = statement
148
e5263f74b287 Added c3 language frontend initial parser
Windel Bouwman
parents:
diff changeset
359
228
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
360 def __repr__(self):
7f18ed9b6b7e Removal of emptystatement class
Windel Bouwman
parents: 227
diff changeset
361 return 'WHILE-statement'