annotate python/target/armtarget.py @ 290:7b38782ed496

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