lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]




On Wed, Sep 15, 2021 at 6:12 PM Coda Highland <chighland@gmail.com> wrote:
If you align everything to 8-byte boundaries (as you would if tagged doubles are your basic data structure) you can knock off the bottom three bits, fitting a 55-bit pointer into the mantissa. You can borrow two different NaNs to represent the high bit if you really need it.

But yes, the scaling limits are distinctly finite, which puts limit on the long-term viability of the techique.

You would have to guarantee that any light userdata follows the same rules. The C99 standard guarantees that an "intptr_t" or "uintptr_t" can be cast to a "void*" and back, so any code that relies on this would have to be rewritten, and Posix requires the same for function pointers. Interfacing with 3rd party libraries may also be affected, because that library may provide you with a pointer value you'd have to store that does not guarantee 8 byte alignment.

It's all too much of a kludge to me, at least on a machine with 64-bit pointers. On embedded 32-bit machines it may be worth it, as memory is typically more limited and all 32 pointer bits would fit comfortably in the double's mantissa.


--