annotate python/codegenarm.py @ 277:046017431c6a

Started register allocator
author Windel Bouwman
date Thu, 26 Sep 2013 21:14:25 +0200
parents 56d37ed4b4d2
children 2ccd57b1d78c
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}'))
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
73 self.instructions.insert(2, makeIns('mov r7, sp'))
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
74 self.instructions.insert(3, makeIns('add sp, sp, {}'.format(self.stacksize)))
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
75 self.instructions.append(makeIns('sub sp, sp, {}'.format(self.stacksize)))
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
76 self.instructions.append(makeIns('pop {pc,r7}'))
276
Windel Bouwman
parents: 275
diff changeset
77 # Add constant literals:
Windel Bouwman
parents: 275
diff changeset
78 for ln, v in self.constants:
Windel Bouwman
parents: 275
diff changeset
79 self.instructions.append(makeIns('{}:'.format(ln)))
Windel Bouwman
parents: 275
diff changeset
80 self.instructions.append(makeIns('dcd {}'.format(v)))
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
81
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
82
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
83 class ArmInstructionSelector(InstructionSelector):
276
Windel Bouwman
parents: 275
diff changeset
84
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
85 """ Instruction selector for the arm architecture """
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
86 def munchExpr(self, e):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
87 if isinstance(e, ir.Alloc):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
88 return 0
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
89 elif isinstance(e, ir.Binop) and e.operation == '+' and isinstance(e.b, ir.Const) and e.b.value < 8:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
90 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
91 d = self.newTmp()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
92 self.emit('add %d0, %s0, {}'.format(e.b.value), dst=[d], src=[a])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
93 return d
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
94 elif isinstance(e, ir.Binop) and e.operation == '+':
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 b = self.munchExpr(e.b)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
97 d = self.newTmp()
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
98 self.emit('add %d0, %s0, %s1', dst=[d], src=[a, b])
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
99 return d
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
100 elif isinstance(e, ir.Binop) and e.operation == '-' and isinstance(e.b, ir.Const) and e.b.value < 8:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
101 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
102 d = self.newTmp()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
103 self.emit('sub %d0, %s0, {}'.format(e.b.value), dst=[d], src=[a])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
104 return d
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
105 elif isinstance(e, ir.Binop) and e.operation == '-':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
106 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
107 b = self.munchExpr(e.b)
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
108 d = self.newTmp()
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
109 self.emit('sub %d0, %s0, %s1', dst=[d], src=[a, b])
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
110 return d
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
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)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
114 d = self.newTmp()
276
Windel Bouwman
parents: 275
diff changeset
115 self.emit('mov %d0, %s0', src=[a], dst=[d])
Windel Bouwman
parents: 275
diff changeset
116 self.emit('orr %d0, %s0', dst=[d], src=[b, d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
117 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
118 elif isinstance(e, ir.Binop) and e.operation == '<<':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
119 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
120 b = self.munchExpr(e.b)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
121 d = self.newTmp()
276
Windel Bouwman
parents: 275
diff changeset
122 self.emit('mov %d0, %s0', src=[a], dst=[d])
Windel Bouwman
parents: 275
diff changeset
123 self.emit('lsl %d0, %s0', dst=[d], src=[b, d]) # TODO: is d a source variable?
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
124 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
125 elif isinstance(e, ir.Binop) and e.operation == '*':
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
126 a = self.munchExpr(e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
127 b = self.munchExpr(e.b)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
128 d = self.newTmp()
276
Windel Bouwman
parents: 275
diff changeset
129 self.emit('mov %d0, %s0', src=[a], dst=[d])
Windel Bouwman
parents: 275
diff changeset
130 self.emit('mul %d0, %s0', dst=[d], src=[b, d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
131 return d
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
132 elif isinstance(e, ir.Const) and e.value < 256:
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
133 d = self.newTmp()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
134 self.emit('mov %d0, {}'.format(e.value), dst=[d])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
135 return d
276
Windel Bouwman
parents: 275
diff changeset
136 elif isinstance(e, ir.Const) and e.value < (2**31):
Windel Bouwman
parents: 275
diff changeset
137 d = self.newTmp()
Windel Bouwman
parents: 275
diff changeset
138 ln = self.frame.addConstant(e.value)
Windel Bouwman
parents: 275
diff changeset
139 self.emit('ldr %d0, {}'.format(ln), dst=[d])
Windel Bouwman
parents: 275
diff changeset
140 return d
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
141 elif isinstance(e, ir.Mem) and isinstance(e.e, ir.Binop) and \
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
142 e.e.operation == '+' and isinstance(e.e.b, ir.Const):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
143 base = self.munchExpr(e.e.a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
144 d = self.newTmp()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
145 self.emit('ldr %d0, [%s0 + {}]'.format(e.e.b.value), src=[base], dst=[d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
146 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
147 elif isinstance(e, ir.Mem):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
148 # Load from memory
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
149 base = self.munchExpr(e.e)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
150 d = self.newTmp()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
151 self.emit('ldr %d0, [%s0]', src=[base], dst=[d])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
152 return d
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
153 elif isinstance(e, ir.Temp):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
154 return e
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 270
diff changeset
155 elif isinstance(e, ir.Call):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
156 # Move arguments into proper locations:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
157 reguses = []
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
158 for i, a in enumerate(e.arguments):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
159 loc = self.frame.argLoc(i)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
160 m = ir.Move(loc, a)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
161 self.munchStm(m)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
162 if isinstance(loc, ir.Temp):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
163 reguses.append(loc)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
164 self.emit('bl {}'.format(e.f.name), src=reguses, dst=[self.frame.rv])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
165 d = self.newTmp()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
166 self.move(d, self.frame.rv)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
167 return d
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
168 else:
272
e64bae57cda8 refactor ir
Windel Bouwman
parents: 270
diff changeset
169 raise NotImplementedError('Expr --> {}'.format(e))
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
170
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
171 def munchStm(self, s):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
172 if isinstance(s, ir.Terminator):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
173 pass
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
174 elif isinstance(s, ir.Move) and isinstance(s.dst, ir.Mem) and isinstance(s.dst.e, ir.Binop) and s.dst.e.operation == '+' and isinstance(s.dst.e.a, ir.Temp) and isinstance(s.dst.e.b, ir.Const):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
175 val = self.munchExpr(s.src)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
176 self.emit('str %s1, [%s0 + {}]'.format(s.dst.e.b.value), src=[s.dst.e.a, val])
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
177 elif isinstance(s, ir.Move) and isinstance(s.dst, ir.Mem):
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
178 memloc = self.munchExpr(s.dst.e)
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
179 val = self.munchExpr(s.src)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
180 self.emit('str %s1, [%s0]', src=[memloc, val])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
181 elif isinstance(s, ir.Move) and isinstance(s.dst, ir.Temp):
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
182 val = self.munchExpr(s.src)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
183 dreg = s.dst
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
184 self.emit('mov %d0, %s0', dst=[dreg], src=[val])
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
185 elif isinstance(s, ir.Exp):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
186 # Generate expression code and discard the result.
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
187 x = self.munchExpr(s.e)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
188 self.emit('mov r0, r0', src=[x])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
189 elif isinstance(s, ir.Jump):
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
190 tgt = self.targets[s.target]
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
191 self.emit('b {}'.format(s.target.name), jumps=[tgt])
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
192 elif isinstance(s, ir.CJump):
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
193 a = self.munchExpr(s.a)
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
194 b = self.munchExpr(s.b)
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
195 self.emit('cmp %s0, %s1', src=[a, b])
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
196 ntgt = self.targets[s.lab_no]
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
197 ytgt = self.targets[s.lab_yes]
276
Windel Bouwman
parents: 275
diff changeset
198 jmp_ins = makeIns('b {}'.format(s.lab_no.name), jumps=[ntgt])
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
199 # Explicitely add fallthrough:
276
Windel Bouwman
parents: 275
diff changeset
200 self.emit('beq {}'.format(s.lab_yes.name), jumps=[ytgt, jmp_ins])
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
201 self.emit2(jmp_ins)
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
202 else:
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
203 raise NotImplementedError('Stmt --> {}'.format(s))
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
204
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
205
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
206 # TODO: this class could be target independent:
211
99164160fb0b Added another missing file
Windel Bouwman
parents:
diff changeset
207 class ArmCodeGenerator:
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
208 def __init__(self, outs):
269
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
209 # TODO: schedule traces in better order.
5f8c04a8d26b Towards better modularity
Windel Bouwman
parents: 268
diff changeset
210 # This is optional!
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
211 self.ins_sel = ArmInstructionSelector()
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
212 self.ra = registerallocator.RegisterAllocator()
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
213 self.outs = outs
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
214 self.outs.getSection('code').address = 0x08000000
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
215 self.outs.getSection('data').address = 0x20000000
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
216
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
217 def generateFunc(self, irfunc):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
218 # Create a frame for this function:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
219 frame = ArmFrame(irfunc.name)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
220
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
221 # Canonicalize the intermediate language:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
222 canon.make(irfunc, frame)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
223 print('after canonicalize:')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
224 irfunc.dump()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
225 self.ins_sel.munchFunction(irfunc, frame)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
226 print('Selected instructions:')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
227 for i in frame.instructions:
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
228 print(i)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
229
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
230 # Do register allocation:
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
231 self.ra.allocFrame(frame)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
232 # TODO: Peep-hole here?
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
233
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
234 # Add label and return and stack adjustment:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
235 frame.EntryExitGlue3()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
236 return frame
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
237
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
238 def generate(self, ircode):
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
239 # Munch program into a bunch of frames. One frame per function.
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
240 # Each frame has a flat list of abstract instructions.
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
241 # Generate code for all functions:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
242 self.frames = [self.generateFunc(func) for func in ircode.Functions]
274
ea93e0a7a31e Move docs
Windel Bouwman
parents: 272
diff changeset
243
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
244 # Materialize assembly
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
245 # Reparse the register allocated instructions into a stream of
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
246 # real instructions.
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
247 # TODO: this is ugly via string representations. This could be
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
248 # another interface?
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
249 assembler = asm.Assembler(target=arm.armtarget, stream=self.outs)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
250 self.outs.selectSection('code')
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
251 for frame in self.frames:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
252 for i in frame.instructions:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
253 assembler.assemble_line(str(i))
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
254
276
Windel Bouwman
parents: 275
diff changeset
255 # TODO: fixup references, do this in another way?
Windel Bouwman
parents: 275
diff changeset
256 self.outs.backpatch()
Windel Bouwman
parents: 275
diff changeset
257 self.outs.backpatch()
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 274
diff changeset
258 return self.frames
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 262
diff changeset
259