Skip to content
This repository was archived by the owner on Jul 28, 2022. It is now read-only.

Commit 1284cbc

Browse files
committed
fix compiler unroll bug with literal
1 parent 9ee5b95 commit 1284cbc

File tree

5 files changed

+49
-11
lines changed

5 files changed

+49
-11
lines changed

c/core/core.fth

+17
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
1+
: nop ;
2+
3+
: swap
4+
1 roll ;
5+
6+
: over
7+
1 pick ;
8+
9+
: dup
10+
0 pick ;
11+
112
: 1- ( a -- b )
213
1 - ;
314

415
: negate ( a -- b )
516
-1 * ;
617

18+
: -
19+
negate + ;
20+
721
: over ( a b -- a b a )
822
swap dup tas swap fas ;
923

@@ -13,6 +27,9 @@
1327
: rot ( a b c -- b c a )
1428
tas swap fas swap ;
1529

30+
: tuck
31+
dup rot rot ;
32+
1633
: 2dup ( a b -- a b a b )
1734
over over ;
1835

c/mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule C.MixProject do
44
def project do
55
[
66
app: :mini_forth,
7-
version: "0.1.0",
7+
version: "0.1.1",
88
elixir: "~> 1.10",
99
start_permanent: Mix.env() == :prod,
1010
deps: deps(),

c/src/compiler.erl

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ execute_latest_quote([], R) ->
4545

4646
unroll(S) -> unroll_loop(S, [], 0).
4747

48-
unroll_loop([do | C], [S, E | M], J) when is_integer(S), is_integer(E) ->
48+
unroll_loop([do | C], [S0, E0 | M], J) ->
49+
S = interpreter:bin2num(S0),
50+
E = interpreter:bin2num(E0),
4951
{P, C1, Step} = find_loop_part(C, 0, []),
5052
C2 = loops(P, S, E, [], S, J, Step) ++ C1,
5153
unroll_loop(C2, M, J);

c/src/interpreter.erl

-8
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,10 @@ op(X, M) when is_integer(X) -> [num2bin(X) | M];
3030
op(X, M) when is_binary(X) -> [X | M];
3131
op(pick, [N | M]) -> pick(M, N);
3232
op(roll, [N | M]) -> roll(M, N);
33-
op(over, [X, Y | M]) -> [Y, X, Y | M];
34-
op(nop, M) -> M;
3533
op(split, [P, B | M]) -> split(B, P) ++ M;
3634
op(cat, [Y, X | M]) -> [<<X/binary, Y/binary>> | M];
37-
op(swap, [X, Y | M]) -> [Y, X | M];
3835
op(drop, [_X | M]) -> M;
39-
op(tuck, [X, Y | M]) -> [X, Y, X | M];
4036
op('+', [Y, X | M]) -> [add(X, Y) | M];
41-
op('-', [Y, X | M]) -> [sub(X, Y) | M];
4237
op('*', [Y, X | M]) -> [mul(X, Y) | M];
4338
op('/', [Y, X | M]) -> [divide(X, Y) | M];
4439
op('%', [Y, X | M]) -> [do_rem(X, Y) | M];
@@ -49,7 +44,6 @@ op(ripemd160, [H | M]) ->
4944
% the OP_BIN2NUM is trimming the bytes into minimal encoding
5045
op(bin2num, [H | M]) -> [num2bin(bin2num(H)) | M];
5146
op(num2bin, [Y, X | M]) -> [num2bin(X, Y) | M];
52-
op(dup, [H | M]) -> [H, H | M];
5347
op('=', [X, X | M]) -> [<<1>> | M];
5448
op('=', [_Y, _X | M]) -> [<<>> | M];
5549
op('num=', [Y, X | M]) ->
@@ -231,8 +225,6 @@ mul(X, Y) ->
231225
num2bin(bin2num(X) * bin2num(Y)).
232226
add(X, Y) ->
233227
num2bin(bin2num(X) + bin2num(Y)).
234-
sub(X, Y) ->
235-
num2bin(bin2num(X) - bin2num(Y)).
236228
divide(X, Y) ->
237229
num2bin(bin2num(X) / bin2num(Y)).
238230
do_rem(X, Y) ->

c/test/opcode_test.fth

+28-1
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,32 @@
125125

126126
2 pick
127127
22 =verify
128-
128+
129+
\ test drop
130+
0 1 2 3 drop
131+
2 =verify
132+
drop
133+
0 =verify
134+
135+
\ test swap
136+
1 2 swap
137+
1 =verify
138+
2 =verify
139+
140+
\ test over
141+
1 2 over
142+
1 =verify
143+
2 1 over
144+
2 =verify
145+
146+
\ test tuck
147+
1 2 tuck
148+
2 =verify
149+
1 =verify
150+
2 =verify
151+
152+
\ test dup
153+
1 0 pick
154+
1 =verify
155+
1 =verify
129156
;

0 commit comments

Comments
 (0)