annotate python/cortexm3.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
261
444b9df2ed99 try to split up code generation
Windel Bouwman
parents: 258
diff changeset
1 import struct
444b9df2ed99 try to split up code generation
Windel Bouwman
parents: 258
diff changeset
2 import types
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
3 from target import Register, Instruction, Target, Imm8, Label, Imm3, LabelRef, Imm32, Imm7
234
Windel Bouwman
parents: 232
diff changeset
4 from asmnodes import ASymbol, ANumber, AUnop, ABinop
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
5 from ppci import CompilerError
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
6 import ir
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
7
218
494828a7adf1 added some sort of cache to assembler
Windel Bouwman
parents: 216
diff changeset
8 # TODO: encode this in DSL (domain specific language)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
9 # TBD: is this required?
218
494828a7adf1 added some sort of cache to assembler
Windel Bouwman
parents: 216
diff changeset
10
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
11 def u16(h):
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
12 return struct.pack('<H', h)
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
13
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
14 def u32(x):
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
15 return struct.pack('<I', x)
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
16
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
17 armtarget = Target('arm')
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
18
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
19 class ArmRegister(Register):
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
20 def __init__(self, num, name):
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
21 super().__init__(name)
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
22 self.num = num
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
23
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
24 def __repr__(self):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
25 return self.name
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
26
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
27 @classmethod
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
28 def Create(cls, vop):
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
29 if type(vop) is ASymbol:
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
30 name = vop.name
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
31 regs = {}
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
32 for r in armtarget.registers:
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
33 regs[r.name] = r
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
34 if name in regs:
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
35 r = regs[name]
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
36 if isinstance(r, cls):
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
37 return r
234
Windel Bouwman
parents: 232
diff changeset
38
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
39
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
40 class Reg8Op(ArmRegister):
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
41 pass
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
42
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
43
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
44 class Reg16Op(ArmRegister):
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
45 pass
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
46
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
47
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
48 class RegSpOp:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
49 @classmethod
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
50 def Create(cls, vop):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
51 if type(vop) is ASymbol:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
52 if vop.name.lower() == 'sp':
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
53 return cls()
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
54
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
55 def getRegNum(n):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
56 for r in armtarget.registers:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
57 if r.num == n:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
58 return r
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
59
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
60 def getRegisterRange(n1, n2):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
61 regs = []
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
62 if n1.num < n2.num:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
63 for n in range(n1.num, n2.num + 1):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
64 r = getRegNum(n)
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
65 assert r
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
66 regs.append(r)
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
67 return regs
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
68
224
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
69 def isRegOffset(regname, x, y):
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
70 if type(x) is ASymbol and type(y) is ANumber and x.name.upper() == regname:
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
71 return y.number
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
72 elif type(y) is ASymbol and type(x) is ANumber and y.name.upper() == regname:
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
73 return x.number
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
74
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
75
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
76 class MemRegXRel:
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
77 def __init__(self, offset):
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
78 assert offset % 4 == 0
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
79 self.offset = offset
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
80
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
81 def __repr__(self):
224
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
82 return '[{}, #{}]'.format(self.regname, self.offset)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
83
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
84 @classmethod
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
85 def Create(cls, vop):
276
Windel Bouwman
parents: 275
diff changeset
86 if type(vop) is AUnop and vop.operation == '[]' and type(vop.arg) is ABinop and vop.arg.op == '+':
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
87 vop = vop.arg # descent
224
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
88 offset = isRegOffset(cls.regname, vop.arg1, vop.arg2)
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
89 if type(offset) is int:
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
90 if offset % 4 == 0:
223
85c8105318e7 Fixup of parser
Windel Bouwman
parents: 219
diff changeset
91 offset = vop.arg2.number
85c8105318e7 Fixup of parser
Windel Bouwman
parents: 219
diff changeset
92 return cls(offset)
224
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
93 elif type(vop) is ASymbol and vop.name.upper() == self.regname:
223
85c8105318e7 Fixup of parser
Windel Bouwman
parents: 219
diff changeset
94 return cls(0)
85c8105318e7 Fixup of parser
Windel Bouwman
parents: 219
diff changeset
95
276
Windel Bouwman
parents: 275
diff changeset
96
224
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
97 class MemSpRel(MemRegXRel):
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
98 regname = 'SP'
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
99
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
100
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 224
diff changeset
101 class MemR8Rel:
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
102 def __init__(self, basereg, offset):
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
103 assert type(basereg) is Reg8Op
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
104 self.basereg = basereg
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
105 self.offset = offset
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
106
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
107 def __repr__(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
108 return '[{}, #{}]'.format(self.basereg, self.offset)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
109
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
110 @classmethod
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
111 def Create(cls, vop):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
112 if type(vop) is AUnop and vop.operation == '[]':
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
113 vop = vop.arg # descent
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
114 if type(vop) is ABinop:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
115 if vop.op == '+' and type(vop.arg1) is ASymbol and type(vop.arg2) is ANumber:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
116 offset = vop.arg2.number
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
117 if offset > 120:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
118 return
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
119 basereg = Reg8Op.Create(vop.arg1)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
120 if not basereg:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
121 return
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
122 else:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
123 return
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
124 elif type(vop) is ASymbol:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
125 offset = 0
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
126 basereg = Reg8Op.Create(vop)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
127 if not basereg:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
128 return
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
129 else:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
130 return
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
131 return cls(getRegNum(basereg.num), offset)
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
132
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
133 class RegisterSet:
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
134 def __init__(self, regs):
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
135 assert type(regs) is set
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
136 self.regs = regs
276
Windel Bouwman
parents: 275
diff changeset
137
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
138 def __repr__(self):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
139 return ','.join([str(r) for r in self.regs])
276
Windel Bouwman
parents: 275
diff changeset
140
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
141 @classmethod
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
142 def Create(cls, vop):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
143 assert type(vop) is AUnop and vop.operation == '{}'
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
144 assert type(vop.arg) is list
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
145 regs = set()
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
146 for arg in vop.arg:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
147 if type(arg) is ASymbol:
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
148 reg = ArmRegister.Create(arg)
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
149 if not reg:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
150 return
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
151 regs.add(reg)
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
152 elif type(arg) is ABinop and arg.op == '-':
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
153 reg1 = ArmRegister.Create(arg.arg1)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
154 reg2 = ArmRegister.Create(arg.arg2)
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
155 if not reg1:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
156 return
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
157 if not reg2:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
158 return
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
159 for r in getRegisterRange(reg1, reg2):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
160 regs.add(r)
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
161 else:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
162 raise Exception('Cannot be')
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
163 return cls(regs)
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
164
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
165 def registerNumbers(self):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
166 return [r.num for r in self.regs]
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
167
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
168 def makeReg(cls, num, name):
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
169 r = cls(num, name)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
170 armtarget.registers.append(r)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
171 return r
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
172
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
173 # 8 bit registers:
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
174 r0 = makeReg(Reg8Op, 0, 'r0')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
175 r1 = makeReg(Reg8Op, 1, 'r1')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
176 r2 = makeReg(Reg8Op, 2, 'r2')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
177 r3 = makeReg(Reg8Op, 3, 'r3')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
178 r4 = makeReg(Reg8Op, 4, 'r4')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
179 r5 = makeReg(Reg8Op, 5, 'r5')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
180 r6 = makeReg(Reg8Op, 6, 'r6')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
181 r7 = makeReg(Reg8Op, 7, 'r7')
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
182 # Other registers:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
183 # TODO
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
184 sp = makeReg(ArmRegister, 13, 'sp')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
185 lr = makeReg(ArmRegister, 14, 'lr')
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
186 pc = makeReg(ArmRegister, 15, 'pc')
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
187
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
188 assert isinstance(sp, ArmRegister)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
189 assert isinstance(r3, ArmRegister)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
190 assert ArmRegister.Create(ASymbol('r3')) is r3
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
191 assert ArmRegister.Create(ASymbol('sp')) is sp
276
Windel Bouwman
parents: 275
diff changeset
192
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
193 class ArmInstruction(Instruction):
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
194 pass
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
195
235
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
196
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
197 @armtarget.instruction
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
198 class dcd_ins(ArmInstruction):
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
199 mnemonic = 'dcd'
235
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
200 operands = (Imm32,)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
201 def __init__(self, expr):
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
202 if isinstance(expr, Imm32):
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
203 self.expr = expr.imm
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
204 self.label = None
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
205 elif isinstance(expr, LabelRef):
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
206 self.expr = 0
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
207 self.label = expr
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
208 else:
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
209 raise NotImplementedError()
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
210
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
211 def resolve(self, f):
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
212 if self.label:
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
213 self.expr = f(self.label.name)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
214
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
215 def encode(self):
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
216 return u32(self.expr)
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
217
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
218 def __repr__(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
219 return 'DCD 0x{0:X}'.format(self.expr)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
220
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
221
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
222
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
223 # Memory related
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
224
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
225 class LS_imm5_base(ArmInstruction):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
226 """ ??? Rt, [Rn, imm5] """
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 224
diff changeset
227 operands = (Reg8Op, MemR8Rel)
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
228 def __init__(self, rt, memop):
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
229 assert memop.offset % 4 == 0
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
230 self.imm5 = memop.offset >> 2
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
231 self.rn = memop.basereg.num
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 224
diff changeset
232 self.rt = rt
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
233 self.memloc = memop
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
234 assert self.rn < 8
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 224
diff changeset
235 assert self.rt.num < 8
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
236
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
237 def encode(self):
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
238 Rn = self.rn
225
1c7364bd74c7 Fixed pointer deref
Windel Bouwman
parents: 224
diff changeset
239 Rt = self.rt.num
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
240 imm5 = self.imm5
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
241
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
242 h = (self.opcode << 11) | (imm5 << 6) | (Rn << 3) | Rt
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
243 return u16(h)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
244
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
245 def __repr__(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
246 return '{} {}, {}'.format(self.mnemonic, self.rt, self.memloc)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
247
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
248 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
249 class storeimm5_ins(LS_imm5_base):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
250 mnemonic = 'STR'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
251 opcode = 0xC
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
252
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
253 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
254 class loadimm5_ins(LS_imm5_base):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
255 mnemonic = 'LDR'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
256 opcode = 0xD
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
257
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
258 class ls_sp_base_imm8(ArmInstruction):
224
5af52987f5bd Fixup of pc rel operand
Windel Bouwman
parents: 223
diff changeset
259 operands = (Reg8Op, MemSpRel)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
260 def __init__(self, rt, memop):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
261 self.rt = rt
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
262 self.offset = memop.offset
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
263
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
264 def encode(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
265 rt = self.rt.num
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
266 assert rt < 8
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
267 imm8 = self.offset >> 2
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
268 assert imm8 < 256
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
269 h = (self.opcode << 8) | (rt << 8) | imm8
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
270 return u16(h)
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
271
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
272 def __repr__(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
273 return '{} {}, [sp,#{}]'.format(self.mnemonic, self.rt, self.offset)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
274
236
8786811a5a59 Fix pcrel
Windel Bouwman
parents: 235
diff changeset
275 def align(x, m):
8786811a5a59 Fix pcrel
Windel Bouwman
parents: 235
diff changeset
276 while ((x % m) != 0):
8786811a5a59 Fix pcrel
Windel Bouwman
parents: 235
diff changeset
277 x = x + 1
8786811a5a59 Fix pcrel
Windel Bouwman
parents: 235
diff changeset
278 return x
8786811a5a59 Fix pcrel
Windel Bouwman
parents: 235
diff changeset
279
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
280
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
281 @armtarget.instruction
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
282 class ldr_pcrel(ArmInstruction):
276
Windel Bouwman
parents: 275
diff changeset
283 """ ldr Rt, LABEL, load value from pc relative position """
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
284 mnemonic = 'ldr'
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
285 operands = (Reg8Op, LabelRef)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
286 def __init__(self, rt, label):
235
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
287 assert isinstance(label, LabelRef)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
288 self.rt = rt
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
289 self.label = label
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
290 self.offset = 0
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
291
234
Windel Bouwman
parents: 232
diff changeset
292 def resolve(self, f):
235
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
293 la = f(self.label.name)
236
8786811a5a59 Fix pcrel
Windel Bouwman
parents: 235
diff changeset
294 sa = align(self.address + 2, 4)
8786811a5a59 Fix pcrel
Windel Bouwman
parents: 235
diff changeset
295 self.offset = (la - sa)
235
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
296 if self.offset < 0:
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
297 self.offset = 0
234
Windel Bouwman
parents: 232
diff changeset
298
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
299 def encode(self):
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
300 rt = self.rt.num
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
301 assert rt < 8
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
302 imm8 = self.offset >> 2
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
303 assert imm8 < 256
235
ff40407c0240 Fix ALabel to Label
Windel Bouwman
parents: 234
diff changeset
304 assert imm8 >= 0
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
305 h = (0x9 << 11) | (rt << 8) | imm8
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
306 return u16(h)
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
307
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
308 def __repr__(self):
232
e621e3ba78d2 Added left shift instruction
Windel Bouwman
parents: 225
diff changeset
309 return 'LDR {}, {}'.format(self.rt, self.label.name)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
310
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
311
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
312 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
313 class ldr_sprel(ls_sp_base_imm8):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
314 """ ldr Rt, [SP, imm8] """
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
315 mnemonic = 'LDR'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
316 opcode = 0x98
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
317
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
318
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
319 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
320 class str_sprel(ls_sp_base_imm8):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
321 """ str Rt, [SP, imm8] """
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
322 mnemonic = 'STR'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
323 opcode = 0x90
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
324
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
325
212
62386bcee1ba Added parser combinator lib
Windel Bouwman
parents: 207
diff changeset
326 @armtarget.instruction
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
327 class mov_ins(ArmInstruction):
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
328 """ mov Rd, imm8, move immediate value into register """
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
329 mnemonic = 'mov'
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
330 opcode = 4 # 00100 Rd(3) imm8
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
331 operands = (Reg8Op, Imm8)
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
332 def __init__(self, rd, imm):
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
333 self.imm = imm.imm
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
334 self.rd = rd
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
335
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
336 def encode(self):
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
337 rd = self.rd.num
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
338 opcode = self.opcode
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
339 imm8 = self.imm
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
340 h = (opcode << 11) | (rd << 8) | imm8
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
341 return u16(h)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
342
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
343 def __repr__(self):
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
344 return 'MOV {}, {}'.format(self.rd, self.imm)
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
345
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
346
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
347
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
348 # Arithmatics:
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
349
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
350
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
351
276
Windel Bouwman
parents: 275
diff changeset
352 class regregimm3_base(ArmInstruction):
Windel Bouwman
parents: 275
diff changeset
353 operands = (Reg8Op, Reg8Op, Imm3)
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
354 def __init__(self, rd, rn, imm3):
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
355 self.rd = rd
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
356 self.rn = rn
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
357 self.imm3 = imm3
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
358
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
359 def encode(self):
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
360 rd = self.rd.num
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
361 rn = self.rn.num
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
362 imm3 = self.imm3.imm
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
363 opcode = self.opcode
276
Windel Bouwman
parents: 275
diff changeset
364 h = (self.opcode << 9) | (imm3 << 6) | (rn << 3) | rd
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
365 return u16(h)
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
366
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
367 def __repr__(self):
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
368 return '{} {}, {}, {}'.format(self.mnemonic, self.rd, self.rn, self.imm3.imm)
276
Windel Bouwman
parents: 275
diff changeset
369
Windel Bouwman
parents: 275
diff changeset
370 @armtarget.instruction
Windel Bouwman
parents: 275
diff changeset
371 class addregregimm3_ins(regregimm3_base):
Windel Bouwman
parents: 275
diff changeset
372 """ add Rd, Rn, imm3 """
Windel Bouwman
parents: 275
diff changeset
373 mnemonic = 'add'
Windel Bouwman
parents: 275
diff changeset
374 opcode = 0b0001110
Windel Bouwman
parents: 275
diff changeset
375
Windel Bouwman
parents: 275
diff changeset
376
Windel Bouwman
parents: 275
diff changeset
377 @armtarget.instruction
Windel Bouwman
parents: 275
diff changeset
378 class subregregimm3_ins(regregimm3_base):
Windel Bouwman
parents: 275
diff changeset
379 """ sub Rd, Rn, imm3 """
Windel Bouwman
parents: 275
diff changeset
380 mnemonic = 'sub'
Windel Bouwman
parents: 275
diff changeset
381 opcode = 0b0001111
Windel Bouwman
parents: 275
diff changeset
382
Windel Bouwman
parents: 275
diff changeset
383
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
384 class regregreg_base(ArmInstruction):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
385 """ ??? Rd, Rn, Rm """
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
386 operands = (Reg8Op, Reg8Op, Reg8Op)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
387 def __init__(self, rd, rn, rm):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
388 self.rd = rd
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
389 self.rn = rn
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
390 self.rm = rm
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
391 def encode(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
392 rd = self.rd.num
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
393 rn = self.rn.num
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
394 rm = self.rm.num
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
395 h = (self.opcode << 9) | (rm << 6) | (rn << 3) | rd
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
396 return u16(h)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
397 def __repr__(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
398 return '{} {}, {}, {}'.format(self.mnemonic, self.rd, self.rn, self.rm)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
399
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
400
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
401 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
402 class addregs_ins(regregreg_base):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
403 mnemonic = 'ADD'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
404 opcode = 0b0001100
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
405
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
406
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
407 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
408 class subregs_ins(regregreg_base):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
409 mnemonic = 'SUB'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
410 opcode = 0b0001101
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
411
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
412
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
413
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
414 @armtarget.instruction
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
415 class movregreg_ext_ins(ArmInstruction):
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
416 operands = (ArmRegister, ArmRegister)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
417 mnemonic = 'MOV'
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
418 def __init__(self, rd, rm):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
419 self.rd = rd
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
420 self.rm = rm
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
421
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
422 def encode(self):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
423 Rd = self.rd.num & 0x7
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
424 D = (self.rd.num >> 3) & 0x1
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
425 Rm = self.rm.num
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
426 opcode = 0b01000110
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
427 return u16((opcode << 8) | (D << 7) |(Rm << 3) | Rd)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
428
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
429 def __repr__(self):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
430 return '{} {}, {}'.format(self.mnemonic, self.rd, self.rm)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
431
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
432
276
Windel Bouwman
parents: 275
diff changeset
433 @armtarget.instruction
Windel Bouwman
parents: 275
diff changeset
434 class mulregreg_ins(ArmInstruction):
Windel Bouwman
parents: 275
diff changeset
435 """ mul Rn, Rdm """
Windel Bouwman
parents: 275
diff changeset
436 operands = (Reg8Op, Reg8Op)
Windel Bouwman
parents: 275
diff changeset
437 mnemonic = 'mul'
Windel Bouwman
parents: 275
diff changeset
438 def __init__(self, rn, rdm):
Windel Bouwman
parents: 275
diff changeset
439 self.rn = rn
Windel Bouwman
parents: 275
diff changeset
440 self.rdm = rdm
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
441
276
Windel Bouwman
parents: 275
diff changeset
442 def encode(self):
Windel Bouwman
parents: 275
diff changeset
443 rn = self.rn.num
Windel Bouwman
parents: 275
diff changeset
444 rdm = self.rdm.num
Windel Bouwman
parents: 275
diff changeset
445 opcode = 0b0100001101
Windel Bouwman
parents: 275
diff changeset
446 h = (opcode << 6) | (rn << 3) | rdm
Windel Bouwman
parents: 275
diff changeset
447 return u16(h)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
448
276
Windel Bouwman
parents: 275
diff changeset
449 def __repr__(self):
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
450 return '{} {}, {}'.format(self.mnemonic, self.rn, self.rdm)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
451
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
452
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
453 class regreg_base(ArmInstruction):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
454 """ ??? Rdn, Rm """
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
455 operands = (Reg8Op, Reg8Op)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
456 # TODO: integrate with the code gen interface:
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
457 src = (0, 1)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
458 dst = (0,)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
459 def __init__(self, rdn, rm):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
460 self.rdn = rdn
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
461 self.rm = rm
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
462
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
463 def encode(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
464 rdn = self.rdn.num
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
465 rm = self.rm.num
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
466 h = (self.opcode << 6) | (rm << 3) | rdn
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
467 return u16(h)
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
468
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
469 def __repr__(self):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
470 return '{} {}, {}'.format(self.mnemonic, self.rdn, self.rm)
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
471
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
472
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
473 @armtarget.instruction
258
04c19282a5aa Added register allocator
Windel Bouwman
parents: 251
diff changeset
474 class movregreg_ins(regreg_base):
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
475 # TODO: match this:
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
476 pattern = ir.Move(ir.Temp, ir.Temp)
258
04c19282a5aa Added register allocator
Windel Bouwman
parents: 251
diff changeset
477 """ mov Rd, Rm """
04c19282a5aa Added register allocator
Windel Bouwman
parents: 251
diff changeset
478 mnemonic = 'mov'
04c19282a5aa Added register allocator
Windel Bouwman
parents: 251
diff changeset
479 opcode = 0
04c19282a5aa Added register allocator
Windel Bouwman
parents: 251
diff changeset
480
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
481
258
04c19282a5aa Added register allocator
Windel Bouwman
parents: 251
diff changeset
482 @armtarget.instruction
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
483 class andregs_ins(regreg_base):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
484 mnemonic = 'AND'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
485 opcode = 0b0100000000
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
486
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
487
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
488 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
489 class orrregs_ins(regreg_base):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
490 mnemonic = 'ORR'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
491 opcode = 0b0100001100
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
492
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
493
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
494 @armtarget.instruction
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
495 class cmp_ins(regreg_base):
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
496 mnemonic = 'CMP'
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
497 opcode = 0b0100001010
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
498
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
499
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
500 @armtarget.instruction
232
e621e3ba78d2 Added left shift instruction
Windel Bouwman
parents: 225
diff changeset
501 class lslregs_ins(regreg_base):
e621e3ba78d2 Added left shift instruction
Windel Bouwman
parents: 225
diff changeset
502 mnemonic = 'LSL'
e621e3ba78d2 Added left shift instruction
Windel Bouwman
parents: 225
diff changeset
503 opcode = 0b0100000010
e621e3ba78d2 Added left shift instruction
Windel Bouwman
parents: 225
diff changeset
504
e621e3ba78d2 Added left shift instruction
Windel Bouwman
parents: 225
diff changeset
505 @armtarget.instruction
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
506 class cmpregimm8_ins(ArmInstruction):
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
507 """ cmp Rn, imm8 """
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
508 mnemonic = 'cmp'
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
509 opcode = 5 # 00101
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
510 operands = (Reg8Op, Imm8)
203
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
511 def __init__(self, rn, imm):
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
512 self.rn = rn
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
513 self.imm = imm
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
514 def encode(self):
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
515 rn = self.rn.num
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
516 imm = self.imm.imm
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
517 opcode = self.opcode
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
518 h = (opcode << 11) | (rn << 8) | imm
ca1ea402f6a1 Added some arm instructions
Windel Bouwman
parents: 202
diff changeset
519 return u16(h)
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
520
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
521
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
522 # Jumping:
218
494828a7adf1 added some sort of cache to assembler
Windel Bouwman
parents: 216
diff changeset
523
238
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
524 def wrap_negative(x, bits):
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
525 b = struct.unpack('<I', struct.pack('<i', x))[0]
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
526 mask = (1 << bits) - 1
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
527 return b & mask
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
528
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
529 class jumpBase_ins(ArmInstruction):
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
530 operands = (LabelRef,)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
531 def __init__(self, target_label):
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
532 assert type(target_label) is LabelRef
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
533 self.target = target_label
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
534 self.offset = 0
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
535
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
536 def resolve(self, f):
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
537 la = f(self.target.name)
238
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
538 sa = self.address + 4
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
539 self.offset = (la - sa)
238
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
540 #if self.offset < 0:
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
541 # # TODO: handle negative jump
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
542 # self.offset = 0
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
543
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
544 def __repr__(self):
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
545 return '{} {}'.format(self.mnemonic, self.target.name)
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
546
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
547 @armtarget.instruction
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
548 class b_ins(jumpBase_ins):
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
549 mnemonic = 'B'
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
550 def encode(self):
238
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
551 imm11 = wrap_negative(self.offset >> 1, 11)
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
552 h = (0b11100 << 11) | imm11 # | 1 # 1 to enable thumb mode
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
553 return u16(h)
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
554
251
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
555 @armtarget.instruction
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
556 class bl_ins(jumpBase_ins):
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
557 mnemonic = 'BL'
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
558 def encode(self):
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
559 imm32 = wrap_negative(self.offset >> 1, 32)
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
560 imm11 = imm32 & 0x7FF
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
561 imm10 = (imm32 >> 11) & 0x3FF
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
562 j1 = 1 # TODO: what do these mean?
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
563 j2 = 1
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
564 s = (imm32 >> 24) & 0x1
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
565 h1 = (0b11110 << 11) | (s << 10) | imm10
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
566 h2 = (0b1101 << 12) | (j1 << 13) | (j2 << 11) | imm11
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
567 return u16(h1) + u16(h2)
6ed3d3a82a63 Added another c3 example. First import attempt
Windel Bouwman
parents: 238
diff changeset
568
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
569 class cond_base_ins(jumpBase_ins):
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
570 def encode(self):
238
90637d1bbfad Added test sequence 2
Windel Bouwman
parents: 237
diff changeset
571 imm8 = wrap_negative(self.offset >> 1, 8)
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
572 h = (0b1101 << 12) | (self.cond << 8) | imm8
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
573 return u16(h)
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
574
262
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
575
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
576 @armtarget.instruction
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
577 class beq_ins(cond_base_ins):
219
1fa3e0050b49 Expanded ad hoc code generator
Windel Bouwman
parents: 218
diff changeset
578 mnemonic = 'beq'
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
579 cond = 0
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
580
262
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
581
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
582 @armtarget.instruction
262
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
583 class bne_ins(cond_base_ins):
237
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
584 mnemonic = 'bne'
81752b0f85a5 Added burn led test program
Windel Bouwman
parents: 236
diff changeset
585 cond = 1
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
586
262
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
587
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
588 @armtarget.instruction
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
589 class blt_ins(cond_base_ins):
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
590 mnemonic = 'blt'
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
591 cond = 0b1011
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
592
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
593
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
594 @armtarget.instruction
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
595 class blt_ins(cond_base_ins):
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
596 mnemonic = 'bgt'
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
597 cond = 0b1100
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
598
ed14e077124c Added conditional branch instructions
Windel Bouwman
parents: 261
diff changeset
599
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
600 @armtarget.instruction
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
601 class push_ins(ArmInstruction):
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
602 operands = (RegisterSet,)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
603 mnemonic = 'push'
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
604 def __init__(self, regs):
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
605 assert (type(regs),) == self.operands, (type(regs),)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
606 self.regs = regs
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
607 def __repr__(self):
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
608 return '{0} {{{1}}}'.format(self.mnemonic, self.regs)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
609 def encode(self):
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
610 reg_list = 0
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
611 M = 0
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
612 for n in self.regs.registerNumbers():
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
613 if n < 8:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
614 reg_list |= (1 << n)
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
615 elif n == 14:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
616 M = 1
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
617 else:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
618 raise NotImplementedError('not implemented for this register')
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
619 h = (0x5a << 9) | (M << 8) | reg_list
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
620 return u16(h)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
621
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
622 @armtarget.instruction
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
623 class pop_ins(ArmInstruction):
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
624 operands = (RegisterSet,)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
625 mnemonic = 'pop'
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
626 def __init__(self, regs):
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
627 self.regs = regs
207
8b2f20aae086 cleaning of files
Windel Bouwman
parents: 206
diff changeset
628 def __repr__(self):
8b2f20aae086 cleaning of files
Windel Bouwman
parents: 206
diff changeset
629 return '{0} {{{1}}}'.format(self.mnemonic, self.regs)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
630 def encode(self):
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
631 reg_list = 0
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
632 P = 0
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
633 for n in self.regs.registerNumbers():
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
634 if n < 8:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
635 reg_list |= (1 << n)
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
636 elif n == 15:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
637 P = 1
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
638 else:
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
639 raise NotImplementedError('not implemented for this register')
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
640 h = (0x5E << 9) | (P << 8) | reg_list
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
641 return u16(h)
205
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
642
d77cb5962cc5 Added some handcoded arm code generation
Windel Bouwman
parents: 203
diff changeset
643 @armtarget.instruction
202
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
644 class yield_ins(ArmInstruction):
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
645 operands = ()
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
646 mnemonic = 'yield'
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
647 def encode(self):
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
648 return u16(0xbf10)
f22b431f4113 Added arm add instruction
Windel Bouwman
parents:
diff changeset
649
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
650 # misc:
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
651
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
652 # add/sub SP:
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
653 class addspsp_base(ArmInstruction):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
654 operands = (RegSpOp, RegSpOp, Imm7)
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
655 def __init__(self, _sp, _sp2, imm7):
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
656 self.imm7 = imm7.imm
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
657 assert self.imm7 % 4 == 0
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
658 self.imm7 >>= 2
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
659
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
660 def encode(self):
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
661 return u16((self.opcode << 7) |self.imm7)
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
662
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
663 def __repr__(self):
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
664 return '{} sp, sp, {}'.format(self.mnemonic, self.imm7 << 2)
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
665
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
666 @armtarget.instruction
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
667 class addspsp_ins(addspsp_base):
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
668 mnemonic = 'add'
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
669 opcode = 0b101100000
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
670
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
671
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
672 @armtarget.instruction
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
673 class subspsp_ins(addspsp_base):
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
674 mnemonic = 'sub'
277
046017431c6a Started register allocator
Windel Bouwman
parents: 276
diff changeset
675 opcode = 0b101100001
275
6f2423df0675 Fixed serve arm-as
Windel Bouwman
parents: 268
diff changeset
676
206
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
677 armtarget.check()
6c6bf8890d8a Added push and pop encodings
Windel Bouwman
parents: 205
diff changeset
678