[OpenBIOS] OpenBIOS dictionary relocation - can anyone explain this?

Stefan Reinauer stepan at coresystems.de
Thu Jan 22 13:30:50 CET 2009


Mark Cave-Ayland wrote:
> Stepping through with the debugger, l appears to be a count of the
> number of words from the beginning of the dictionary, pos is set to
> either 0 or 1 depending upon whether the word offset is a multiple of
> the target word size and bit is a modulo of l, again based upon the
> word size.
>
> It looks as if bit is being used to set up a shifting bit mask up to
> the word size in bits, and it is based upon the interaction of this
> and reloc_table[pos] which decides whether any code is moved.
>
> Can anyone shed any light on exactly what this code does, and how it
> actually does it? The part that confuses me the most is that decisions
> are being made on which words to relocate, but these criteria are
> based upon some strange combination of arithmetic involving the
> current offset and the target word size.
A dictionary is basically a linked list between forth words. When the
dictionary is created, it lives at some virtual address in userspace,
but that address might not be the one where it is finally executed. This
would lead to all the pointers pointing to nirvana. Now, we solved this
by making the dictionary relocatable. For that we needed to find out
which words in the dictionary are data, and which are pointers.
Therefore we compile the dictionary twice and compare the dictionary
words for differences between the two dictionaries. If they're
different, it's a pointer and thus needs to be relocated. The relocation
table is a bit mask with one bit per dictionary word, noting whether a
relocation is required upon dictionary loading or not. Now, if it is,
the base address of the dictionary is added to the value so the pointer
becomes valid again.

Stefan





More information about the OpenBIOS mailing list