diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
commit | af51fb5bdfd9c338b7cf8b75b792e04a2667af5e (patch) | |
tree | 0d6baf72acf05d263dcd8ed0b13888fb6265df81 /libalee | |
parent | 5162349f925dfc48f7269538b9cdb1c06df8d5ff (diff) |
add LIBALEE_SECTION; minor fixes
Diffstat (limited to 'libalee')
-rw-r--r-- | libalee/alee.hpp | 7 | ||||
-rw-r--r-- | libalee/config.hpp | 5 | ||||
-rw-r--r-- | libalee/corewords.cpp | 6 | ||||
-rw-r--r-- | libalee/corewords.hpp | 5 | ||||
-rw-r--r-- | libalee/ctype.hpp | 4 | ||||
-rw-r--r-- | libalee/dictionary.cpp | 14 | ||||
-rw-r--r-- | libalee/dictionary.hpp | 10 | ||||
-rw-r--r-- | libalee/parser.cpp | 9 | ||||
-rw-r--r-- | libalee/parser.hpp | 2 | ||||
-rw-r--r-- | libalee/state.cpp | 11 | ||||
-rw-r--r-- | libalee/state.hpp | 11 | ||||
-rw-r--r-- | libalee/types.cpp | 11 | ||||
-rw-r--r-- | libalee/types.hpp | 1 |
13 files changed, 82 insertions, 14 deletions
diff --git a/libalee/alee.hpp b/libalee/alee.hpp new file mode 100644 index 0000000..7b46845 --- /dev/null +++ b/libalee/alee.hpp @@ -0,0 +1,7 @@ +#include "config.hpp" +#include "corewords.hpp" +#include "ctype.hpp" +#include "dictionary.hpp" +#include "parser.hpp" +#include "state.hpp" +#include "types.hpp" diff --git a/libalee/config.hpp b/libalee/config.hpp new file mode 100644 index 0000000..20d0950 --- /dev/null +++ b/libalee/config.hpp @@ -0,0 +1,5 @@ +#ifndef ALEE_MSP430_HOST +#define LIBALEE_SECTION +#else +#define LIBALEE_SECTION __attribute__((section(".libalee"))) +#endif diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp index e3ba6b3..b768163 100644 --- a/libalee/corewords.cpp +++ b/libalee/corewords.cpp @@ -16,11 +16,11 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include "corewords.hpp" -#include "parser.hpp" +#include "alee.hpp" #include <utility> +LIBALEE_SECTION void find(State& state, Word word) { Cell tok = 0; @@ -37,6 +37,7 @@ void find(State& state, Word word) state.push(imm); } +LIBALEE_SECTION void CoreWords::run(Cell ins, State& state) { Cell cell; @@ -252,6 +253,7 @@ execute: ip += sizeof(Cell); } +LIBALEE_SECTION Cell CoreWords::findi(State& state, Word word) { return findi(word.begin(&state.dict), word.size()); diff --git a/libalee/corewords.hpp b/libalee/corewords.hpp index d5c35ea..f4ab851 100644 --- a/libalee/corewords.hpp +++ b/libalee/corewords.hpp @@ -19,9 +19,9 @@ #ifndef ALEEFORTH_COREWORDS_HPP #define ALEEFORTH_COREWORDS_HPP -#include "ctype.hpp" +#include "config.hpp" #include "types.hpp" -#include "state.hpp" +#include "dictionary.hpp" /** * To be implemented by the user, this function is called when the `sys` word @@ -61,6 +61,7 @@ public: private: template<typename Iter> + LIBALEE_SECTION constexpr static Cell findi(Iter it, std::size_t size) { const char *ptr = CoreWords::wordsarr; diff --git a/libalee/ctype.hpp b/libalee/ctype.hpp index 499a90f..b0df174 100644 --- a/libalee/ctype.hpp +++ b/libalee/ctype.hpp @@ -43,6 +43,10 @@ constexpr inline bool isupper(uint8_t c) { return c >= 'A' && c <= 'Z'; } +constexpr inline bool islower(uint8_t c) { + return c >= 'a' && c <= 'z'; +} + constexpr inline bool isalpha(uint8_t c) { return isupper(c) || (c >= 'a' && c <= 'z'); } diff --git a/libalee/dictionary.cpp b/libalee/dictionary.cpp index a86531d..b98b312 100644 --- a/libalee/dictionary.cpp +++ b/libalee/dictionary.cpp @@ -16,8 +16,9 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include "dictionary.hpp" +#include "alee.hpp" +LIBALEE_SECTION void Dictionary::initialize() { write(Base, 10); @@ -27,6 +28,7 @@ void Dictionary::initialize() write(Source, Input + sizeof(Cell)); } +LIBALEE_SECTION Addr Dictionary::allot(Cell amount) noexcept { Addr old = here(); @@ -41,22 +43,26 @@ Addr Dictionary::allot(Cell amount) noexcept return old; } +LIBALEE_SECTION void Dictionary::add(Cell value) noexcept { write(allot(sizeof(Cell)), value); } +LIBALEE_SECTION Addr Dictionary::aligned(Addr addr) { return (addr + (sizeof(Cell) - 1)) & ~(sizeof(Cell) - 1); } +LIBALEE_SECTION Addr Dictionary::alignhere() noexcept { here(aligned(here())); return here(); } +LIBALEE_SECTION void Dictionary::addDefinition(Word word) noexcept { Cell wsize = word.size(); @@ -75,6 +81,7 @@ void Dictionary::addDefinition(Word word) noexcept alignhere(); } +LIBALEE_SECTION Addr Dictionary::find(Word word) noexcept { Addr lt = latest(); @@ -106,6 +113,7 @@ Addr Dictionary::find(Word word) noexcept return 0; } +LIBALEE_SECTION Addr Dictionary::getexec(Addr addr) noexcept { const Addr l = read(addr); @@ -119,6 +127,7 @@ Addr Dictionary::getexec(Addr addr) noexcept return aligned(addr); } +LIBALEE_SECTION bool Dictionary::hasInput() const noexcept { const Addr src = read(Dictionary::Source); @@ -140,6 +149,7 @@ bool Dictionary::hasInput() const noexcept return false; } +LIBALEE_SECTION Word Dictionary::input() noexcept { const Addr src = read(Dictionary::Source); @@ -169,11 +179,13 @@ Word Dictionary::input() noexcept return Word(wstart, wend); } +LIBALEE_SECTION bool Dictionary::equal(Word word, const char *str, unsigned len) const noexcept { return word.size() == len && equal(word.begin(this), word.end(this), str); } +LIBALEE_SECTION bool Dictionary::equal(Word word, Word other) const noexcept { return word.size() == other.size() && equal(word.begin(this), word.end(this), other.begin(this)); diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp index 96db2ea..27edf68 100644 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@ -19,8 +19,9 @@ #ifndef ALEEFORTH_DICTIONARY_HPP #define ALEEFORTH_DICTIONARY_HPP -#include "ctype.hpp" +#include "config.hpp" #include "types.hpp" +#include "ctype.hpp" #include <algorithm> #include <cstddef> @@ -72,10 +73,14 @@ struct Dictionary */ void initialize(); + LIBALEE_SECTION Addr here() const noexcept { return read(Here); } + LIBALEE_SECTION void here(Addr l) noexcept { write(Here, l); } + LIBALEE_SECTION Addr latest() const noexcept { return read(Latest); } + LIBALEE_SECTION void latest(Addr l) noexcept { write(Latest, l); } // Aligns the given address. @@ -124,6 +129,7 @@ struct Dictionary // Used for case-insensitive comparison between two iterators. template<typename Iter1, typename Iter2> + LIBALEE_SECTION constexpr static bool equal(Iter1 b1, Iter1 e1, Iter2 b2) { return std::equal(b1, e1, b2, eqchars); } @@ -132,6 +138,7 @@ struct Dictionary private: // Case-insensitive comparison. + LIBALEE_SECTION constexpr static bool eqchars(char c1, char c2) { if (isalpha(static_cast<uint8_t>(c1))) c1 |= 32; @@ -140,7 +147,6 @@ private: return c1 == c2; } - }; #endif // ALEEFORTH_DICTIONARY_HPP diff --git a/libalee/parser.cpp b/libalee/parser.cpp index 19aa5f7..b3e8211 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -16,12 +16,11 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include "corewords.hpp" -#include "ctype.hpp" -#include "parser.hpp" +#include "alee.hpp" Error (*Parser::customParse)(State&, Word) = nullptr; +LIBALEE_SECTION Error Parser::parse(State& state, const char *str) { auto addr = Dictionary::Input; @@ -40,6 +39,7 @@ Error Parser::parse(State& state, const char *str) return parseSource(state); } +LIBALEE_SECTION Error Parser::parseSource(State& state) { auto err = Error::none; @@ -50,6 +50,7 @@ Error Parser::parseSource(State& state) return err; } +LIBALEE_SECTION Error Parser::parseWord(State& state, Word word) { bool imm; @@ -81,6 +82,7 @@ Error Parser::parseWord(State& state, Word word) return Error::none; } +LIBALEE_SECTION Error Parser::parseNumber(State& state, Word word) { const auto base = state.dict.read(Dictionary::Base); @@ -113,6 +115,7 @@ Error Parser::parseNumber(State& state, Word word) return Error::none; } +LIBALEE_SECTION void Parser::processLiteral(State& state, Cell value) { if (state.compiling()) { diff --git a/libalee/parser.hpp b/libalee/parser.hpp index f868afb..6b50918 100644 --- a/libalee/parser.hpp +++ b/libalee/parser.hpp @@ -19,7 +19,9 @@ #ifndef ALEEFORTH_PARSER_HPP #define ALEEFORTH_PARSER_HPP +#include "config.hpp" #include "types.hpp" +#include "state.hpp" #include <string_view> diff --git a/libalee/state.cpp b/libalee/state.cpp index df785e0..ed1562f 100644 --- a/libalee/state.cpp +++ b/libalee/state.cpp @@ -16,31 +16,35 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include "corewords.hpp" -#include "state.hpp" +#include "alee.hpp" #include <iterator> +LIBALEE_SECTION bool State::compiling() const { return dict.read(Dictionary::Compiling); } +LIBALEE_SECTION void State::compiling(bool yes) { dict.write(Dictionary::Compiling, yes); } +LIBALEE_SECTION State::Context State::save() { return context; } +LIBALEE_SECTION void State::load(const State::Context& ctx) { context = ctx; } +LIBALEE_SECTION Error State::execute(Addr addr) { auto stat = static_cast<Error>(setjmp(context.jmpbuf)); @@ -63,6 +67,7 @@ Error State::execute(Addr addr) return stat; } +LIBALEE_SECTION void State::reset() { while (size()) @@ -74,11 +79,13 @@ void State::reset() context.ip = 0; } +LIBALEE_SECTION std::size_t State::size() const noexcept { return dsp - dstack; } +LIBALEE_SECTION std::size_t State::rsize() const noexcept { return rsp - rstack; diff --git a/libalee/state.hpp b/libalee/state.hpp index e77a223..0ac9a7c 100644 --- a/libalee/state.hpp +++ b/libalee/state.hpp @@ -19,6 +19,7 @@ #ifndef ALEEFORTH_STATE_HPP #define ALEEFORTH_STATE_HPP +#include "config.hpp" #include "dictionary.hpp" #include "types.hpp" @@ -57,10 +58,12 @@ public: */ void reset(); + LIBALEE_SECTION Addr& ip() noexcept { return context.ip; } + LIBALEE_SECTION void input() noexcept { inputfunc(*this); } @@ -82,42 +85,50 @@ public: */ void load(const Context&); + LIBALEE_SECTION inline void push(Cell value) { verify(dsp < dstack + DataStackSize, Error::push); *dsp++ = value; } + LIBALEE_SECTION inline Cell pop() { verify(dsp > dstack, Error::pop); return *--dsp; } + LIBALEE_SECTION inline void pushr(Cell value) { verify(rsp < rstack + ReturnStackSize, Error::pushr); *rsp++ = value; } + LIBALEE_SECTION inline Cell popr() { verify(rsp > rstack, Error::popr); return *--rsp; } + LIBALEE_SECTION inline Cell& top() { verify(dsp > dstack, Error::top); return *(dsp - 1); } + LIBALEE_SECTION inline Cell& pick(std::size_t i) { verify(dsp - i > dstack, Error::pick); return *(dsp - i - 1); } // Advances the instruction pointer and returns that cell's contents. + LIBALEE_SECTION inline Cell beyondip() { context.ip += sizeof(Cell); return dict.read(context.ip); } + LIBALEE_SECTION inline void verify(bool condition, Error error) { if (!condition) std::longjmp(context.jmpbuf, static_cast<int>(error)); diff --git a/libalee/types.cpp b/libalee/types.cpp index 83cf1f7..7ac67c7 100644 --- a/libalee/types.cpp +++ b/libalee/types.cpp @@ -16,30 +16,34 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include "dictionary.hpp" -#include "types.hpp" +#include "alee.hpp" +LIBALEE_SECTION Addr Word::size() const noexcept { return wend - start; } +LIBALEE_SECTION Word::iterator Word::begin(const Dictionary *dict) { return iterator(start, dict); } +LIBALEE_SECTION Word::iterator Word::end(const Dictionary *dict) { return iterator(wend, dict); } +LIBALEE_SECTION Word::iterator& Word::iterator::operator++() { addr++; return *this; } +LIBALEE_SECTION Word::iterator Word::iterator::operator++(int) { const auto copy = *this; @@ -47,12 +51,15 @@ Word::iterator Word::iterator::operator++(int) return copy; } +LIBALEE_SECTION Word::iterator::value_type Word::iterator::operator*() { return dict->readbyte(addr); } +LIBALEE_SECTION bool Word::iterator::operator!=(const iterator& other) { return dict != other.dict || addr != other.addr; } + diff --git a/libalee/types.hpp b/libalee/types.hpp index 4d86c5d..028c490 100644 --- a/libalee/types.hpp +++ b/libalee/types.hpp @@ -61,6 +61,7 @@ public: constexpr explicit Word(Addr s = 0, Addr e = 0): start(s), wend(e) {} + LIBALEE_SECTION static constexpr Word fromLength(Addr s, Addr l) { return Word(s, s + l); } |