annotate python/asm.py @ 198:33d50727a23c

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