Added label initialization check to `vvi`.
[vvhitespace] / stdlib / README.md
CommitLineData
92a92075
AT
1# Overview #
2
3This folder contains a library of useful functions written in VVhitespace.
4Standard include guards are used with `cpp` to include the stdlib in user
5programs. For an example, see `examples/hello-stdlib`.
6
32c440bf
AT
7# Reservations #
8
92a92075
AT
9Since all labels share a global namespace, the standard library makes the
10following reservations:
11
32c440bf
AT
12## Label ##
13
14 00000000 0xxxxxxx - reserved for stdlib function entry points
15 00000000 1xxxxxxx - unassigned
16 0xxxxxxx xxxxxxxx - reserved for private use by stdlib
17 1xxxxxxx xxxxxxxx - available for use in user programs
18
bb21580a 19## Heap and Pointers ##
32c440bf 20
bb21580a
AT
21The first 16 heap addresses (`0-15`) are reserved when using the stdlib.
22
23By convention, functions which return a pointer will use the address `0` to
24represent a `NULL` pointer.
32c440bf
AT
25
26# Entry Points #
27
28The following labels are entry points to stdlib functions. Read the
29header comment for each function to learn the call and return stack.
30
3625ff3a
AT
31 000xxx - reserved
32 001xxx - print functions
33 1000 ----- print string from stack (stdio.pvvs)
34 1001 ----- print string from heap (stdio.pvvs)
35 1010 ----- print number from stack (stdio.pvvs)
36 010xxx - math functions
2612f47f 37 10000 ----- random (math.pvvs)
3625ff3a 38 10001 ----- absolute value (math.pvvs)
3695b659
AT
39 011xxx - heap functions
40 11000 ----- memset (heap.pvvs)
3d75b928 41 11001 ----- memcpy (heap.pvvs)
d63de3fa 42 11010 ----- memrand (heap.pvvs)
87d27426 43 11011 ----- memcmp (heap.pvvs)
fd04fb41 44 11100 ----- memsrch (heap.pvvs)
bb21580a
AT
45 11101 ----- <empty>
46 11110 ----- slurp (heap.pvvs)
47 11111 ----- spew (heap.pvvs)
3625ff3a
AT
48 100xxx - unassigned
49 101xxx - unassigned
1a56830d
AT
50 110xxx - conversion functions
51 111xxx - debug functions
52 111000 ----- dump heap (debug.pvvs)
3625ff3a
AT
53 1xxxxxx - reserved for less common entry points
54 1000000 ----- print sign of number (stdio.pvvs)
55 1000001 ----- print magnitude of number (stdio.pvvs)
32c440bf
AT
56
57# Misc #
58
59By convention, each public stdlib label will have 8 bits of
60private label space associated with it, formed as follows:
61
62 00001000 xxxxxxxx - for use by 1000
63 00001001 xxxxxxxx - for use by 1001
92a92075 64 ...etc
fd04fb41 65
bb21580a
AT
66# Slurp and Spew #
67
68The stdlib uses heap[1] to heap[15] as registers.
69
70The `slurp` and `spew` functions facilitate this by `spew`ing the stack onto
71the heap's pseudo-registers or `slurp`ing the pseudo-registers back to the
72stack. The functions preserve order in complementary fashion.
73
74The `spew` function uses `heap[0]` for storage.