diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-30 11:39:31 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-30 11:39:31 -0500 |
commit | 5b81d9c76dd115375efdd73ef15da9c37ce0c6fc (patch) | |
tree | b6f21fcbd26a0c29c376e0ac93201f890f1eee2b /main.cpp | |
parent | 860cdb7b387723eddea9bd110c85ebeaaa6c5b70 (diff) |
constinit forth, build dict mem into forth
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 38 |
1 files changed, 18 insertions, 20 deletions
@@ -22,37 +22,35 @@ #include <span> #include <string> -static std::array<sforth::cell, 1024> dict; -static sforth::forth *fth = - [] constexpr { - fth = new (dict.data()) sforth::forth; - sforth::initialize<&fth>(dict.end()); - return fth; - }(); +constinit static sforth::forth<1024> forth {sforth::initialize<&forth>()}; -static bool parse_stream(sforth::forth *, std::istream&, bool say_okay = false); +constinit static sforth::native_word<".", [](auto) { + char buf[32] = {}; + std::to_chars(buf, buf + sizeof(buf), forth.pop(), forth.base); + std::cout << buf << ' '; +}> dot; +constinit static sforth::native_word<"emit", [](auto) { + std::cout << static_cast<char>(forth.pop()); +}, &dot> emit; + +static bool parse_stream(auto&, std::istream&, bool say_okay = false); int main(int argc, const char *argv[]) { std::span args (argv + 1, argc - 1); - fth->add(".", [](auto) { - char buf[32] = {}; - std::to_chars(buf, buf + sizeof(buf), fth->pop(), fth->base); - std::cout << buf << ' '; - }); - fth->add("emit", [](auto) { std::cout << static_cast<char>(fth->pop()); }); - fth->add("dictsize", [](auto) { fth->push(dict.size() * sizeof(sforth::cell)); }); + + dot.next = std::exchange(forth.next, &emit); for (auto arg : args) { - if (std::ifstream file {arg}; parse_stream(fth, file)) + if (std::ifstream file {arg}; parse_stream(forth, file)) return 0; } - parse_stream(fth, std::cin, true); + parse_stream(forth, std::cin, true); } -bool parse_stream(sforth::forth *fth, std::istream& str, bool say_okay) +bool parse_stream(auto &fth, std::istream& str, bool say_okay) { std::string line; @@ -63,7 +61,7 @@ bool parse_stream(sforth::forth *fth, std::istream& str, bool say_okay) return true; try { - fth->parse_line(line); + fth.parse_line(line); } catch (sforth::error e) { std::cerr << sforth::error_string(e) << " in " << line << std::endl; continue; @@ -71,7 +69,7 @@ bool parse_stream(sforth::forth *fth, std::istream& str, bool say_okay) } if (say_okay) - std::cout << (fth->compiling ? "compiled" : "ok") << std::endl; + std::cout << (fth.compiling ? "compiled" : "ok") << std::endl; } return false; |