git @ Cat's Eye Technologies Castile / ab1296f
Small fixes to stackmac. catseye 12 years ago
3 changed file(s) with 20 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
703703 The `+` operator is not string concatenation. `concat` is.
704704
705705 | fun main() {
706 | "hello " + "world"
707 | }
708 ? type mismatch
709
710 | fun main() {
711 | concat("hello ", "world")
712 | }
713 = 'hello world'
706 | print("hello " + "world")
707 | }
708 ? type mismatch
709
710 | fun main() {
711 | print(concat("hello ", "world"))
712 | }
713 = hello world
714714
715715 The builtin toplevels are functions and functions need parens.
716716
1111
1212 Builtins: `int`, `str`, `chr`, `ord`.
1313
14 Tests for empty structs. Demo of "typed enum" (union of empty structs.)
15
1416 ### Implementation ###
17
18 TaggedValue -> just a tuple.
19
20 stackmac: store tagged values as two values on the stack.
21 and void types in unions of (void, X) should only be one value.
22 (structs are still boxed though)
1523
1624 AST nodes should have source line numbers, it would be really nice.
1725
4949 a = strings[stack.pop()]
5050 strings.append(builtin(a, b))
5151 stack.append(len(strings) - 1)
52 elif name == 'concat':
53 b = strings[stack.pop()]
52 elif name == 'len':
5453 a = strings[stack.pop()]
55 strings.append(builtin(a, b))
56 stack.append(len(strings) - 1)
54 strings.append(builtin(a))
5755 elif name == 'substr':
5856 k = stack.pop()
5957 p = stack.pop()
6260 stack.append(len(strings) - 1)
6361 else:
6462 raise NotImplementedError(name)
65 if type.return_type != Void():
66 stack.append(result)
6763 elif op == 'rts':
6864 ip = callstack.pop()
6965 elif op == 'mul':
141137 elif op == 'get_field':
142138 obj = stack.pop()
143139 stack.append(obj[arg])
140 elif op == 'get_tag':
141 stack.append(stack[-1].tag)
144142 elif op.startswith('builtin_'):
145143 (builtin, type) = BUILTINS[op[8:]]
146144 stack.append((op[8:], builtin, type))