annotate python/cortexm3.py @ 282:c137f1fe3e65

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