|
|
@ -22,19 +22,29 @@
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
|
|
|
|
using Cell = intptr_t;
|
|
|
|
using Cell = intptr_t; /** Type of a dictionary's cell. */
|
|
|
|
using Addr = uintptr_t;
|
|
|
|
using Addr = uintptr_t; /** Type of a dictionary address. */
|
|
|
|
using Func = void (*)();
|
|
|
|
using Func = void (*)(); /** Words are built of these types of functions. */
|
|
|
|
using FuncList = Func const *;
|
|
|
|
using FuncList = Func const *; /** Words are defined as a list of Func. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Cells, Addrs, and Funcs must all be the same size in bytes since the
|
|
|
|
|
|
|
|
// dictionary stores all of these types of values.
|
|
|
|
|
|
|
|
|
|
|
|
static_assert(sizeof(Cell) == sizeof(Addr));
|
|
|
|
static_assert(sizeof(Cell) == sizeof(Addr));
|
|
|
|
static_assert(sizeof(Cell) == sizeof(Func));
|
|
|
|
static_assert(sizeof(Cell) == sizeof(Func));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @struct Word
|
|
|
|
|
|
|
|
* @brief Structure of a word's definition.
|
|
|
|
|
|
|
|
* A word has a name, a body (list of functions), a link to the next word
|
|
|
|
|
|
|
|
* definition, and an immediate indicator. This structure is matched when
|
|
|
|
|
|
|
|
* words are defined in the dictionary by ":" and ";".
|
|
|
|
|
|
|
|
*/
|
|
|
|
struct Word {
|
|
|
|
struct Word {
|
|
|
|
FuncList list;
|
|
|
|
FuncList list; /** The word's body/definition. */
|
|
|
|
const char *name;
|
|
|
|
const char *name; /** Null-terminated string of word's name. */
|
|
|
|
Word *link = nullptr;
|
|
|
|
Word *link = nullptr; /** Link to next word in definition chain. */
|
|
|
|
Cell imm = 0;
|
|
|
|
Cell imm = 0; /** If non-zero, word is "immediate". */
|
|
|
|
|
|
|
|
|
|
|
|
constexpr Word(const char *n, FuncList l):
|
|
|
|
constexpr Word(const char *n, FuncList l):
|
|
|
|
list(l), name(n) {}
|
|
|
|
list(l), name(n) {}
|
|
|
@ -49,18 +59,31 @@ struct Word {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Words are built in the dictionary by the user using ":". These assertions
|
|
|
|
|
|
|
|
// ensure that the structures created by ":" match the actual structure of a
|
|
|
|
|
|
|
|
// Word exactly.
|
|
|
|
|
|
|
|
|
|
|
|
static_assert(offsetof(Word, list) == 0);
|
|
|
|
static_assert(offsetof(Word, list) == 0);
|
|
|
|
static_assert(offsetof(Word, name) == 1 * sizeof(Cell));
|
|
|
|
static_assert(offsetof(Word, name) == 1 * sizeof(Cell));
|
|
|
|
static_assert(offsetof(Word, link) == 2 * sizeof(Cell));
|
|
|
|
static_assert(offsetof(Word, link) == 2 * sizeof(Cell));
|
|
|
|
static_assert(offsetof(Word, imm) == 3 * sizeof(Cell));
|
|
|
|
static_assert(offsetof(Word, imm) == 3 * sizeof(Cell));
|
|
|
|
static_assert(sizeof(Word) == 4 * sizeof(Cell));
|
|
|
|
static_assert(sizeof(Word) == 4 * sizeof(Cell));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @struct WordSet
|
|
|
|
|
|
|
|
* @brief Groups a set of pre-defined words and links them.
|
|
|
|
|
|
|
|
*/
|
|
|
|
template<typename... Words>
|
|
|
|
template<typename... Words>
|
|
|
|
struct WordSet
|
|
|
|
struct WordSet
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::array<Word, sizeof...(Words)> words;
|
|
|
|
std::array<Word, sizeof...(Words)> words;
|
|
|
|
Word *latest;
|
|
|
|
Word *latest;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Stores the given pre-defined words into the `words` array and links
|
|
|
|
|
|
|
|
* their definitions together. The resulting `latest` value can be used
|
|
|
|
|
|
|
|
* to set the global LATEST.
|
|
|
|
|
|
|
|
*/
|
|
|
|
constexpr WordSet(Words... ws):
|
|
|
|
constexpr WordSet(Words... ws):
|
|
|
|
words {ws...}
|
|
|
|
words {ws...}
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -72,6 +95,10 @@ struct WordSet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Wraps the given functions so that a function pointer list can be created
|
|
|
|
|
|
|
|
* and used for a word's definition.
|
|
|
|
|
|
|
|
*/
|
|
|
|
template<auto... funcs>
|
|
|
|
template<auto... funcs>
|
|
|
|
auto WordWrap = [] {
|
|
|
|
auto WordWrap = [] {
|
|
|
|
constexpr static Func list[1] = {
|
|
|
|
constexpr static Func list[1] = {
|
|
|
|