2021-01-04 14:17:05 +01:00
|
|
|
# PlanckForth: Bootstrapping Forth from Handwritten Binary
|
2020-12-28 14:11:20 +01:00
|
|
|
|
2021-01-02 05:07:29 +01:00
|
|
|
This project aims to bootstrap a Forth interpreter from hand-written tiny ELF binary.
|
2021-01-02 05:01:31 +01:00
|
|
|
|
|
|
|
## How to build
|
|
|
|
|
|
|
|
You can create a binary for x86 linux environment by following steps.
|
|
|
|
Only `xxd` is needed to build PlanckForth.
|
|
|
|
|
2020-12-28 14:11:20 +01:00
|
|
|
```
|
2020-12-30 11:41:21 +01:00
|
|
|
$ git clone https://github.com/nineties/planckforth.git
|
|
|
|
$ cd planckforth
|
2020-12-28 14:11:20 +01:00
|
|
|
$ make
|
2021-01-02 05:01:31 +01:00
|
|
|
xxd -r -c 8 planck.xxd > planck
|
|
|
|
chmod +x planck
|
|
|
|
```
|
|
|
|
|
2021-01-11 05:33:15 +01:00
|
|
|
There are implementations in other languages in `others`.
|
|
|
|
|
|
|
|
- C: type `make c`
|
|
|
|
- Python 3.x: type `make python`
|
2021-01-04 14:16:12 +01:00
|
|
|
|
2021-01-02 05:01:31 +01:00
|
|
|
## Hello World
|
|
|
|
|
|
|
|
The hello world program at the beginning looks like this.
|
|
|
|
|
|
|
|
```
|
2021-01-02 05:15:42 +01:00
|
|
|
$ ./planck
|
2021-01-02 05:01:31 +01:00
|
|
|
kHtketkltkltkotk tkWtkotkrtkltkdtk!tk:k0-tQ
|
|
|
|
```
|
2021-01-02 05:06:35 +01:00
|
|
|
After bootstrapping by `bootstrap.fs`, it looks like this.
|
2021-01-02 05:01:31 +01:00
|
|
|
|
|
|
|
```
|
2021-01-09 17:14:42 +01:00
|
|
|
$ ./planck < bootstrap.fs
|
2021-01-10 17:27:13 +01:00
|
|
|
Welcome to PlanckForth 0.0.1 [i386-linux handwrite]
|
|
|
|
Copyright (c) 2021 Koichi Nakamura <koichi@idein.jp>
|
|
|
|
Type 'bye' to exit.
|
2021-01-02 05:01:31 +01:00
|
|
|
." Hello World!" cr
|
2021-01-03 10:40:30 +01:00
|
|
|
```
|
|
|
|
|
2021-01-09 17:14:42 +01:00
|
|
|
`bootstrap.fs` can also takes a file as an input program like this.
|
2021-01-03 10:40:30 +01:00
|
|
|
|
|
|
|
```
|
2021-01-09 09:29:32 +01:00
|
|
|
$ cat example/fib.fs
|
2021-01-03 10:40:30 +01:00
|
|
|
: fib dup 2 < unless 1- dup recurse swap 1- recurse + then ;
|
2021-01-09 17:14:42 +01:00
|
|
|
20 fib . cr
|
|
|
|
$ ./planck < bootstrap.fs example/fib.fs
|
|
|
|
6765
|
2020-12-29 06:51:27 +01:00
|
|
|
```
|
|
|
|
|
2021-01-11 05:32:08 +01:00
|
|
|
# Running Tests
|
|
|
|
|
|
|
|
```
|
|
|
|
$ ./planck < bootstrap.fs runtests.fs
|
|
|
|
```
|
|
|
|
|
2020-12-28 18:16:46 +01:00
|
|
|
# Builtin Words
|
|
|
|
|
2021-01-03 01:36:41 +01:00
|
|
|
| code | name | stack effect | semantics |
|
|
|
|
|:----:|:----------|:----------------|:-----------------------------|
|
|
|
|
| Q | quit | ( -- ) | Exit the process |
|
|
|
|
| C | cell | ( -- n ) | The size of Cells |
|
|
|
|
| h | &here | ( -- a-addr ) | The address of 'here' cell |
|
|
|
|
| l | &latest | ( -- a-addr ) | The address of 'latest' cell |
|
|
|
|
| k | key | ( -- c ) | Read character |
|
|
|
|
| t | type | ( c -- ) | Print character |
|
|
|
|
| j | jump | ( -- ) | Unconditional branch |
|
|
|
|
| J | 0jump | ( n -- ) | Jump if a == 0 |
|
|
|
|
| f | find | ( c -- xt ) | Get execution token of c |
|
|
|
|
| x | execute | ( xt -- ... ) | Run the execution token |
|
|
|
|
| @ | fetch | ( a-addr -- w ) | Load value from addr |
|
|
|
|
| ! | store | ( w a-addr -- ) | Store value to addr |
|
|
|
|
| ? | cfetch | ( c-addr -- c ) | Load byte from addr |
|
|
|
|
| $ | cstore | ( c c-addr -- ) | Store byte to addr |
|
|
|
|
| d | dfetch | ( -- a-addr ) | Get data stack pointer |
|
|
|
|
| D | dstore | ( a-addr -- ) | Set data stack pointer |
|
|
|
|
| r | rfetch | ( -- a-addr ) | Get return stack pointer |
|
|
|
|
| R | rstore | ( a-addr -- ) | Set return stack pointer |
|
|
|
|
| i | docol | ( -- a-addr ) | Get the interpreter function |
|
|
|
|
| e | exit | ( -- ) | Exit current function |
|
|
|
|
| L | lit | ( -- n ) | Load immediate |
|
2021-01-04 13:57:52 +01:00
|
|
|
| S | litstring | ( -- c-addr ) | Load string literal |
|
2021-01-03 01:36:41 +01:00
|
|
|
| + | add | ( a b -- c ) | c = (a + b) |
|
|
|
|
| - | sub | ( a b -- c ) | c = (a - b) |
|
|
|
|
| * | mul | ( a b -- c ) | c = (a * b) |
|
2021-01-10 10:38:30 +01:00
|
|
|
| / | divmod | ( a b -- c d ) | c = (a mod b), d = (a / b) |
|
2021-01-03 01:36:41 +01:00
|
|
|
| & | and | ( a b -- c ) | c = (a & b) |
|
|
|
|
| \| | or | ( a b -- c ) | c = (a \| b) |
|
|
|
|
| ^ | xor | ( a b -- c ) | c = (a ^ b) |
|
|
|
|
| < | less | ( a b -- c ) | c = (a < b) |
|
2021-01-10 11:20:58 +01:00
|
|
|
| u | uless | ( a b -- c ) | c = (a unsigned< b) |
|
2021-01-03 01:36:41 +01:00
|
|
|
| = | equal | ( a b -- c ) | c = (a == b) |
|
2021-01-10 12:42:25 +01:00
|
|
|
| { | shl | ( a b -- c ) | c = a << b (logical) |
|
|
|
|
| } | shr | ( a b -- c ) | c = a >> b (logical) |
|
|
|
|
| ) | sar | ( a b -- c ) | c = a >> b (arithmetic) |
|
2021-01-09 15:40:41 +01:00
|
|
|
| v | argv | ( -- a-addr u ) | argv and argc |
|
2021-01-10 17:27:13 +01:00
|
|
|
| V | version | ( -- c-addr ) | Runtime infomation stringe |
|