Tagged pointers
Tagged pointers - https://en.wikipedia.org/wiki/Tagged_pointer
What is pointer alignment? Most computer architectures have a concept of pointer alignment where a pointer to a data type should be a multiple of some power of two. This fact is what enables pointer tagging which makes use of "unused" bits in pointer values.
Last updated