annotate python/codegenarm.py @ 279:2ccd57b1d78c

Fix register allocator to do burn2 OK
author Windel Bouwman
date Sat, 12 Oct 2013 09:56:23 +0200
parents 046017431c6a
children 02385f62f250
rev   line source
255
7416c923a02a Added more logging
Windel Bouwman
parents: 250
diff changeset
1 import logging
211
99164160fb0b Added another missing file
Windel Bouwman
parents:
diff changeset
2 import ir
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 243
diff changeset
3 from target import Label, Comment, Alignment, LabelRef, Imm32, DebugInfo
218
494828a7adf1 added some sort of cache to assembler
Windel Bouwman
parents: 212
diff changeset
4 import cortexm3 as arm
211
99164160fb0b Added another missing file
Windel Bouwman
parents:
diff changeset
5 from ppci import CompilerError
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
6 import registerallocator
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
7 from instructionselector import InstructionSelector
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 270
diff changeset
8 import irmach
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
9 from irmach import makeIns
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
10 import canon
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
11 import asm
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
12
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
13 class ArmFrame(irmach.Frame):
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
14 """
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
15 Arm specific frame for functions.
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
16 """
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
17 def __init__(self, name):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
18 # We use r7 as frame pointer.
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
19 super().__init__(name)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
20 self.regs = ['r0', 'r1', 'r2', 'r3', 'r4', 'r5', 'r6']
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
21 self.rv = ir.Temp('special_RV')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
22 self.p1 = ir.Temp('special_P1')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
23 self.p2 = ir.Temp('special_P2')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
24 self.p3 = ir.Temp('special_P3')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
25 self.p4 = ir.Temp('special_P4')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
26 self.fp = ir.Temp('special_FP')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
27 # Pre-colored registers:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
28 self.tempMap = {}
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
29 self.tempMap[self.rv] = 'r0'
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
30 self.tempMap[self.p1] = 'r1'
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
31 self.tempMap[self.p2] = 'r2'
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
32 self.tempMap[self.p3] = 'r3'
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
33 self.tempMap[self.p4] = 'r4'
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
34 self.tempMap[self.fp] = 'r7'
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
35 self.locVars = {}
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
36 self.parMap = {}
276
Windel Bouwman
parents: 275
diff changeset
37 # Literal pool:
Windel Bouwman
parents: 275
diff changeset
38 self.constants = []
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
39
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
40 def argLoc(self, pos):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
41 """
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
42 Gets the function parameter location in IR-code format.
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
43 """
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
44 if pos == 0:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
45 return self.p1
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
46 elif pos == 1:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
47 return self.p2
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
48 elif pos == 2:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
49 return self.p3
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
50 elif pos == 3:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
51 return self.p4
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
52 else:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
53 raise NotImplementedError('No more than 4 parameters implemented')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
54
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
55 def allocVar(self, lvar):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
56 if lvar not in self.locVars:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
57 self.locVars[lvar] = self.stacksize
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
58 self.stacksize = self.stacksize + 4
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
59 return self.locVars[lvar]
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
60
276
Windel Bouwman
parents: 275
diff changeset
61 def addConstant(self, value):
Windel Bouwman
parents: 275
diff changeset
62 lab_name = '{}_literal_{}'.format(self.name, len(self.constants))
Windel Bouwman
parents: 275
diff changeset
63 self.constants.append((lab_name, value))
Windel Bouwman
parents: 275
diff changeset
64 return lab_name
Windel Bouwman
parents: 275
diff changeset
65
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
66 def EntryExitGlue3(self):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
67 """
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
68 Add code for the prologue and the epilogue. Add a label, the
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
69 return instruction and the stack pointer adjustment for the frame.
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
70 """
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
71 self.instructions.insert(0, makeIns('{}:'.format(self.name)))
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
72 self.instructions.insert(1, makeIns('push {lr, r7}'))
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
73 # Reserve stack space for locals:
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
74 self.instructions.insert(2, makeIns('sub sp, sp, {}'.format(self.stacksize)))
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
75 # Setup frame pointer:
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
76 self.instructions.insert(3, makeIns('mov r7, sp'))
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
77 # Stack grows downwards
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
78 self.instructions.append(makeIns('add sp, sp, {}'.format(self.stacksize)))
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
79 self.instructions.append(makeIns('pop {pc,r7}'))
276
Windel Bouwman
parents: 275
diff changeset
80 # Add constant literals:
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
81 self.instructions.append(makeIns('align 4')) # Align at 4 bytes
276
Windel Bouwman
parents: 275
diff changeset
82 for ln, v in self.constants:
Windel Bouwman
parents: 275
diff changeset
83 self.instructions.append(makeIns('{}:'.format(ln)))
Windel Bouwman
parents: 275
diff changeset
84 self.instructions.append(makeIns('dcd {}'.format(v)))
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
85
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
86
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
87 class ArmInstructionSelector(InstructionSelector):
276
Windel Bouwman
parents: 275
diff changeset
88
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
89 """ Instruction selector for the arm architecture """
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
90 def munchExpr(self, e):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
91 if isinstance(e, ir.Alloc):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
92 return 0
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
93 elif isinstance(e, ir.Binop) and e.operation == '+' and \
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
94 isinstance(e.b, ir.Const) and e.b.value < 8:
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
95 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
96 d = self.newTmp()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
97 self.emit('add %d0, %s0, {}'.format(e.b.value), dst=[d], src=[a])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
98 return d
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
99 elif isinstance(e, ir.Binop) and e.operation == '+':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
100 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
101 b = self.munchExpr(e.b)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
102 d = self.newTmp()
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
103 self.emit('add %d0, %s0, %s1', dst=[d], src=[a, b])
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
104 return d
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
105 elif isinstance(e, ir.Binop) and e.operation == '-' and \
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
106 isinstance(e.b, ir.Const) and e.b.value < 8:
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
107 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
108 d = self.newTmp()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
109 self.emit('sub %d0, %s0, {}'.format(e.b.value), dst=[d], src=[a])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
110 return d
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
111 elif isinstance(e, ir.Binop) and e.operation == '-':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
112 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
113 b = self.munchExpr(e.b)
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
114 d = self.newTmp()
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
115 self.emit('sub %d0, %s0, %s1', dst=[d], src=[a, b])
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
116 return d
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
117 elif isinstance(e, ir.Binop) and e.operation == '|':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
118 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
119 b = self.munchExpr(e.b)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
120 d = self.newTmp()
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
121 self.move(d, a)
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
122 self.emit('orr %s1, %s0', dst=[], src=[b, d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
123 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
124 elif isinstance(e, ir.Binop) and e.operation == '<<':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
125 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
126 b = self.munchExpr(e.b)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
127 d = self.newTmp()
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
128 self.move(d, a)
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
129 self.emit('lsl %s1, %s0', dst=[], src=[b, d]) # TODO: is d a source variable?
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
130 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
131 elif isinstance(e, ir.Binop) and e.operation == '*':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
132 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
133 b = self.munchExpr(e.b)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
134 d = self.newTmp()
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
135 self.move(d, a)
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
136 # this mul instruction has operands swapped:
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
137 self.emit('mul %s0, %d0', dst=[d], src=[b, d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
138 return d
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
139 elif isinstance(e, ir.Const) and e.value < 256:
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
140 d = self.newTmp()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
141 self.emit('mov %d0, {}'.format(e.value), dst=[d])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
142 return d
276
Windel Bouwman
parents: 275
diff changeset
143 elif isinstance(e, ir.Const) and e.value < (2**31):
Windel Bouwman
parents: 275
diff changeset
144 d = self.newTmp()
Windel Bouwman
parents: 275
diff changeset
145 ln = self.frame.addConstant(e.value)
Windel Bouwman
parents: 275
diff changeset
146 self.emit('ldr %d0, {}'.format(ln), dst=[d])
Windel Bouwman
parents: 275
diff changeset
147 return d
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
148 elif isinstance(e, ir.Mem) and isinstance(e.e, ir.Binop) and \
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
149 e.e.operation == '+' and isinstance(e.e.b, ir.Const):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
150 base = self.munchExpr(e.e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
151 d = self.newTmp()
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
152 c = e.e.b.value
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
153 self.emit('ldr %d0, [%s0 + {}]'.format(c), src=[base], dst=[d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
154 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
155 elif isinstance(e, ir.Mem):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
156 # Load from memory
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
157 base = self.munchExpr(e.e)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
158 d = self.newTmp()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
159 self.emit('ldr %d0, [%s0]', src=[base], dst=[d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
160 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
161 elif isinstance(e, ir.Temp):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
162 return e
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 270
diff changeset
163 elif isinstance(e, ir.Call):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
164 # Move arguments into proper locations:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
165 reguses = []
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
166 for i, a in enumerate(e.arguments):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
167 loc = self.frame.argLoc(i)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
168 m = ir.Move(loc, a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
169 self.munchStm(m)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
170 if isinstance(loc, ir.Temp):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
171 reguses.append(loc)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
172 self.emit('bl {}'.format(e.f.name), src=reguses, dst=[self.frame.rv])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
173 d = self.newTmp()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
174 self.move(d, self.frame.rv)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
175 return d
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
176 else:
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 270
diff changeset
177 raise NotImplementedError('Expr --> {}'.format(e))
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
178
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
179 def munchStm(self, s):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
180 if isinstance(s, ir.Terminator):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
181 pass
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
182 elif isinstance(s, ir.Move) and isinstance(s.dst, ir.Mem) and \
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
183 isinstance(s.dst.e, ir.Binop) and s.dst.e.operation == '+' and \
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
184 isinstance(s.dst.e.b, ir.Const):
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
185 a = self.munchExpr(s.dst.e.a)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
186 val = self.munchExpr(s.src)
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
187 c = s.dst.e.b.value
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
188 self.emit('str %s1, [%s0 + {}]'.format(c), src=[a, val])
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
189 elif isinstance(s, ir.Move) and isinstance(s.dst, ir.Mem):
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
190 memloc = self.munchExpr(s.dst.e)
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
191 val = self.munchExpr(s.src)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
192 self.emit('str %s1, [%s0]', src=[memloc, val])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
193 elif isinstance(s, ir.Move) and isinstance(s.dst, ir.Temp):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
194 val = self.munchExpr(s.src)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
195 dreg = s.dst
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
196 self.emit('mov %d0, %s0', dst=[dreg], src=[val])
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
197 elif isinstance(s, ir.Exp):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
198 # Generate expression code and discard the result.
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
199 x = self.munchExpr(s.e)
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
200 self.emit('nop', src=[x])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
201 elif isinstance(s, ir.Jump):
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
202 tgt = self.targets[s.target]
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
203 self.emit('b {}'.format(s.target.name), jumps=[tgt])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
204 elif isinstance(s, ir.CJump):
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
205 a = self.munchExpr(s.a)
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
206 b = self.munchExpr(s.b)
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
207 self.emit('cmp %s0, %s1', src=[a, b])
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
208 ntgt = self.targets[s.lab_no]
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
209 ytgt = self.targets[s.lab_yes]
276
Windel Bouwman
parents: 275
diff changeset
210 jmp_ins = makeIns('b {}'.format(s.lab_no.name), jumps=[ntgt])
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
211 # Explicitely add fallthrough:
276
Windel Bouwman
parents: 275
diff changeset
212 self.emit('beq {}'.format(s.lab_yes.name), jumps=[ytgt, jmp_ins])
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
213 self.emit2(jmp_ins)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
214 else:
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
215 raise NotImplementedError('Stmt --> {}'.format(s))
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
216
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
217
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
218 # TODO: this class could be target independent:
211
99164160fb0b Added another missing file
Windel Bouwman
parents:
diff changeset
219 class ArmCodeGenerator:
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
220 def __init__(self, outs):
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
221 # TODO: schedule traces in better order.
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
222 # This is optional!
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
223 self.ins_sel = ArmInstructionSelector()
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
224 self.ra = registerallocator.RegisterAllocator()
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
225 self.outs = outs
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
226 self.outs.getSection('code').address = 0x08000000
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
227 self.outs.getSection('data').address = 0x20000000
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
228
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
229 def generateFunc(self, irfunc):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
230 # Create a frame for this function:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
231 frame = ArmFrame(irfunc.name)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
232
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
233 # Canonicalize the intermediate language:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
234 canon.make(irfunc, frame)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
235 print('after canonicalize:')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
236 irfunc.dump()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
237 self.ins_sel.munchFunction(irfunc, frame)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
238 print('Selected instructions:')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
239 for i in frame.instructions:
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
240 print(i)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
241
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
242 # Do register allocation:
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
243 self.ra.allocFrame(frame)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
244 # TODO: Peep-hole here?
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
245
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
246 # Add label and return and stack adjustment:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
247 frame.EntryExitGlue3()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
248 return frame
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
249
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
250 def generate(self, ircode):
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
251 # Munch program into a bunch of frames. One frame per function.
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
252 # Each frame has a flat list of abstract instructions.
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
253 # Generate code for all functions:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
254 self.frames = [self.generateFunc(func) for func in ircode.Functions]
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
255
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
256 # Materialize assembly
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
257 # Reparse the register allocated instructions into a stream of
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
258 # real instructions.
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
259 # TODO: this is ugly via string representations. This could be
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
260 # another interface?
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
261 assembler = asm.Assembler(target=arm.armtarget, stream=self.outs)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
262 self.outs.selectSection('code')
279
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
263 # assembly glue to make it work:
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
264 self.outs.emit(arm.dcd_ins(Imm32(0x20000678))) # initial SP
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
265 self.outs.emit(arm.dcd_ins(Imm32(0x08000009))) # reset vector
2ccd57b1d78c Fix register allocator to do burn2 OK
Windel Bouwman
parents: 277
diff changeset
266 self.outs.emit(arm.b_ins(LabelRef('main')))
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
267 for frame in self.frames:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
268 for i in frame.instructions:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
269 assembler.assemble_line(str(i))
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
270
276
Windel Bouwman
parents: 275
diff changeset
271 # TODO: fixup references, do this in another way?
Windel Bouwman
parents: 275
diff changeset
272 self.outs.backpatch()
Windel Bouwman
parents: 275
diff changeset
273 self.outs.backpatch()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
274 return self.frames
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
275