annotate python/asm.py @ 199:a690473b79e2

Added msp430 target
author Windel Bouwman
date Fri, 07 Jun 2013 18:59:57 +0200
parents 33d50727a23c
children 5e391d9a3381
rev   line source
198
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
1 import re, sys, argparse
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
2 import pyyacc
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
3 from ppci import Token, CompilerError, SourceLocation
199
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
4 from target import Target
159
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
5
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
6 def tokenize(s):
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
7 """
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
8 Tokenizer, generates an iterator that
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
9 returns tokens!
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
10
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
11 This GREAT example was taken from python re doc page!
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
12 """
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
13 tok_spec = [
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
14 ('REAL', r'\d+\.\d+'),
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
15 ('HEXNUMBER', r'0x[\da-fA-F]+'),
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
16 ('NUMBER', r'\d+'),
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
17 ('ID', r'[A-Za-z][A-Za-z\d_]*'),
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
18 ('SKIP', r'[ \t]'),
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
19 ('LEESTEKEN', r':=|[\.,=:\-+*\[\]/\(\)]|>=|<=|<>|>|<'),
198
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
20 ('STRING', r"'.*?'"),
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
21 ('COMMENT', r";.*")
159
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
22 ]
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
23 tok_re = '|'.join('(?P<%s>%s)' % pair for pair in tok_spec)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
24 gettok = re.compile(tok_re).match
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
25 line = 1
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
26 pos = line_start = 0
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
27 mo = gettok(s)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
28 while mo is not None:
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
29 typ = mo.lastgroup
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
30 val = mo.group(typ)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
31 if typ == 'NEWLINE':
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
32 line_start = pos
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
33 line += 1
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
34 elif typ != 'SKIP':
199
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
35 if typ == 'LEESTEKEN':
159
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
36 typ = val
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
37 elif typ == 'NUMBER':
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
38 val = int(val)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
39 elif typ == 'HEXNUMBER':
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
40 val = int(val[2:], 16)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
41 typ = 'NUMBER'
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
42 elif typ == 'REAL':
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
43 val = float(val)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
44 elif typ == 'STRING':
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
45 val = val[1:-1]
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
46 col = mo.start() - line_start
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
47 loc = SourceLocation(line, col, 0) # TODO retrieve length?
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
48 yield Token(typ, val, loc)
159
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
49 pos = mo.end()
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
50 mo = gettok(s, pos)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
51 if pos != len(s):
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
52 col = pos - line_start
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
53 loc = SourceLocation(line, col, 0)
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
54 raise CompilerError('Unexpected character {0}'.format(s[pos]), loc)
159
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
55
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
56 class Lexer:
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
57 def __init__(self, src):
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
58 self.tokens = tokenize(src)
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
59 self.curTok = self.tokens.__next__()
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
60 def eat(self):
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
61 t = self.curTok
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
62 self.curTok = self.tokens.__next__()
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
63 return t
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
64 @property
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
65 def Peak(self):
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
66 return self.curTok
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
67
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
68 class ANode:
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
69 def __eq__(self, other):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
70 return self.__repr__() == other.__repr__()
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
71
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
72 class ALabel(ANode):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
73 def __init__(self, name):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
74 self.name = name
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
75 def __repr__(self):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
76 return '{0}:'.format(self.name)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
77
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
78 class AInstruction(ANode):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
79 def __init__(self, opcode, operands):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
80 self.opcode = opcode
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
81 self.operands = operands
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
82 def __repr__(self):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
83 ops = ', '.join(map(str, self.operands))
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
84 return '{0} {1}'.format(self.opcode, ops)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
85
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
86 class AExpression(ANode):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
87 def __add__(self, other):
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
88 assert isinstance(other, AExpression)
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
89 return ABinop('+', self, other)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
90 def __mul__(self, other):
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
91 assert isinstance(other, AExpression)
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
92 return ABinop('*', self, other)
194
b01429a5d695 Fixed test
Windel Bouwman
parents: 193
diff changeset
93
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
94 class ABinop(AExpression):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
95 def __init__(self, op, arg1, arg2):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
96 self.op = op
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
97 self.arg1 = arg1
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
98 self.arg2 = arg2
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
99 def __repr__(self):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
100 return '{0} {1} {2}'.format(self.op, self.arg1, self.arg2)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
101
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
102 class AUnop(AExpression):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
103 def __init__(self, op, arg):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
104 self.op = op
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
105 self.arg = arg
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
106 def __repr__(self):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
107 return '{0} {1}'.format(self.op, self.arg)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
108
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
109 class ASymbol(AExpression):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
110 def __init__(self, name):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
111 self.name = name
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
112 def __repr__(self):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
113 return self.name
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
114
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
115 class ANumber(AExpression):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
116 def __init__(self, n):
199
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
117 assert type(n) is int
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
118 self.n = n
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
119 def __repr__(self):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
120 return '{0}'.format(self.n)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
121
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
122 class Assembler:
199
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
123 def __init__(self, target=None):
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
124 self.target = target
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
125 self.output = []
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
126 # Construct a parser given a grammar:
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
127 ident = lambda x: x # Identity helper function
198
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
128 g = pyyacc.Grammar(['ID', 'NUMBER', ',', '[', ']', ':', '+', '-', '*', pyyacc.EPS, 'COMMENT'])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
129 g.add_production('asmline', ['asmline2'])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
130 g.add_production('asmline', ['asmline2', 'COMMENT'])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
131 g.add_production('asmline2', ['label', 'instruction'])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
132 g.add_production('asmline2', ['instruction'])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
133 g.add_production('asmline2', ['label'])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
134 g.add_production('asmline2', [])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
135 g.add_production('optcomment', [])
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
136 g.add_production('optcomment', ['COMMENT'])
194
b01429a5d695 Fixed test
Windel Bouwman
parents: 193
diff changeset
137 g.add_production('label', ['ID', ':'], self.p_label)
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
138 g.add_production('instruction', ['opcode', 'operands'], self.p_ins_1)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
139 g.add_production('instruction', ['opcode'], self.p_ins_2)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
140 g.add_production('opcode', ['ID'], ident)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
141 g.add_production('operands', ['operand'], self.p_operands_1)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
142 g.add_production('operands', ['operands', ',', 'operand'], self.p_operands_2)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
143 g.add_production('operand', ['expression'], ident)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
144 g.add_production('operand', ['[', 'expression', ']'], self.p_mem_op)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
145 g.add_production('expression', ['term'], ident)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
146 g.add_production('expression', ['expression', 'addop', 'term'], self.p_binop)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
147 g.add_production('addop', ['-'], ident)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
148 g.add_production('addop', ['+'], ident)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
149 g.add_production('mulop', ['*'], ident)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
150 g.add_production('term', ['factor'], ident)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
151 g.add_production('term', ['term', 'mulop', 'factor'], self.p_binop)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
152 g.add_production('factor', ['ID'], self.p_symbol)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
153 g.add_production('factor', ['NUMBER'], self.p_number)
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
154 g.start_symbol = 'asmline'
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
155 self.p = g.genParser()
159
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
156
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
157 # Parser handlers:
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
158 def p_ins_1(self, opc, ops):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
159 ins = AInstruction(opc, ops)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
160 self.emit(ins)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
161 def p_ins_2(self, opc):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
162 self.p_ins_1(opc, [])
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
163 def p_operands_1(self, op1):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
164 return [op1]
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
165 def p_operands_2(self, ops, comma, op2):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
166 assert type(ops) is list
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
167 ops.append(op2)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
168 return ops
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
169 def p_mem_op(self, brace_open, exp, brace_close):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
170 return AUnop('[]', exp)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
171 def p_label(self, lname, cn):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
172 lab = ALabel(lname)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
173 self.emit(lab)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
174 def p_binop(self, exp1, op, exp2):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
175 return ABinop(op, exp1, exp2)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
176 def p_symbol(self, name):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
177 return ASymbol(name)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
178 def p_number(self, n):
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
179 n = int(n)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
180 return ANumber(n)
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
181
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
182 # Top level interface:
199
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
183 def restart(self):
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
184 pass
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
185
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
186 def emit(self, a):
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
187 """ Emit a parsed instruction """
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
188 self.output.append(a)
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
189 # Determine the bit pattern from a lookup table:
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
190 # TODO
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
191
195
37ac6c016e0f Expanded asm subsystem
Windel Bouwman
parents: 194
diff changeset
192
194
b01429a5d695 Fixed test
Windel Bouwman
parents: 193
diff changeset
193 def parse_line(self, line):
b01429a5d695 Fixed test
Windel Bouwman
parents: 193
diff changeset
194 """ Parse line into asm AST """
b01429a5d695 Fixed test
Windel Bouwman
parents: 193
diff changeset
195 tokens = tokenize(line)
b01429a5d695 Fixed test
Windel Bouwman
parents: 193
diff changeset
196 self.p.parse(tokens)
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
197
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
198 def assemble(self, asmsrc):
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
199 """ Assemble this source snippet """
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
200 for line in asmsrc.split('\n'):
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
201 self.assemble_line(line)
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
202 self.back_patch()
159
5e1dd04cb61c Added attempt to assembler
Windel Bouwman
parents:
diff changeset
203
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
204 def assemble_line(self, line):
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
205 """
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
206 Assemble a single source line.
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
207 Do not take newlines into account
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
208 """
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
209 self.parse_line(line)
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
210 self.assemble_aast()
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
211
198
33d50727a23c Fixup testscript
Windel Bouwman
parents: 197
diff changeset
212 def assemble_aast(self):
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
213 """ Assemble a parsed asm line """
199
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
214 # TODO
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
215 if not self.target:
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
216 raise CompilerError('Cannot assemble without target')
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
217 while self.output:
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
218 i = self.output.pop(0)
a690473b79e2 Added msp430 target
Windel Bouwman
parents: 198
diff changeset
219 self.target.createInstruction(i)
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
220
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
221 def back_patch(self):
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
222 """ Fix references to earlier labels """
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
223 pass
191
6b2bec5653f1 Added assembler testset
Windel Bouwman
parents: 159
diff changeset
224
196
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
225
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
226 if __name__ == '__main__':
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
227 # When run as main file, try to grab command line arguments:
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
228 parser = argparse.ArgumentParser(description="Assembler")
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
229 parser.add_argument('sourcefile', type=argparse.FileType('r'), help='the source file to assemble')
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
230 args = parser.parse_args()
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
231 a = Assembler()
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
232 obj = a.assemble(args.sourcefile.read())
ec2b423cdbea Merge asm and asmlib files
Windel Bouwman
parents: 195
diff changeset
233