git @ Cat's Eye Technologies Castile / 1ad0197
stackmac can say "Hello, world!" now, at least. catseye 12 years ago
3 changed file(s) with 45 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
669669
670670 ### Builtins ###
671671
672 The usual.
673
674 | fun main() {
675 | print("Hello, world!")
676 | }
677 = Hello, world!
678
672679 Some standard functions are builtin and available as toplevels.
673680
674681 | fun main() {
0 from castile.types import Void
0 from castile.types import Void, String
11
22 # Compile to some hypothetical stack-based machine.
33 # Not yet in a good way.
4242 self.loop_end = None
4343 self.fun_lit = None
4444 self.fun_argcount = 0
45 self.global_pos = 0 # globals at the bottom of the stack
45 # 0 = print,
46 self.global_pos = 1 # globals at the bottom of the stack
4647 self.local_pos = 0 # locals after the passed arguments
4748
4849 def get_label(self, pref):
5556 if ast.type == 'Program':
5657 self.out.write("""\
5758 ; AUTOMATICALLY GENERATED -- EDIT AT OWN RISK
59
60 print_index=0
61
62 jmp past_print
63 print:
64 sys_print
65 rts
66 past_print:
67 push print
5868
5969 """)
6070 for child in ast.children:
133143 self.compile(ast.children[1])
134144 self.out.write('%s\n' % OPS.get(ast.value, ast.value))
135145 elif ast.type == 'VarRef':
136 if ast.aux == 'toplevel':
146 if ast.aux in ('toplevel', 'global'):
137147 self.out.write('get_global %s_index\n' % (ast.value))
138148 else:
139149 self.out.write('get_local %s_local_%s\n' % (self.fun_lit, ast.value))
44 import sys
55
66 from castile.builtins import BUILTINS
7 from castile.eval import TaggedValue
78
89
910 labels = {}
1718 return 0
1819
1920
20 def run(program):
21 def run(program, strings):
2122 global labels
2223 ip = 0
2324 iter = 0
7778 elif op == 'not':
7879 a = stack.pop()
7980 stack.append(boo(a == 0))
81 elif op == 'tag':
82 a = stack.pop()
83 stack.append(TaggedValue(arg, a))
8084 elif op == 'set_baseptr':
8185 stack.append(baseptr)
8286 baseptr = len(stack) - 1
102106 stack.append(stack[baseptr + arg])
103107 elif op == 'set_local':
104108 stack[baseptr + arg] = stack.pop()
109 elif op == 'make_struct':
110 size = stack.pop()
111 struct = []
112 x = 0
113 while x < size:
114 struct.append(stack.pop())
115 x += 1
116 stack.append(struct)
117 elif op == 'sys_print':
118 str_id = stack.pop()
119 print strings[str_id]
105120 else:
106121 raise NotImplementedError((op, arg))
107122 ip += 1
169184
170185 # resolve labels
171186 p = []
187 strings = []
172188 for (op, arg) in program:
173189 if arg in labels:
174190 p.append((op, labels[arg]))
191 elif arg is None:
192 p.append((op, arg))
175193 else:
176 if arg is not None:
194 match = re.match(r"^'(.*?)'$", arg)
195 if match:
196 strings.append(match.group(1))
197 arg = len(strings) - 1
198 else:
177199 arg = int(arg)
178200 p.append((op, arg))
179201
180 run(p)
202 run(p, strings)