annotate python/cortexm3.py @ 287:1c7c1e619be8

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