MIPS: Create an artificial control register to hold the thread pointer.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 31 Dec 2009 20:30:50 +0000 (15:30 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 31 Dec 2009 20:30:50 +0000 (15:30 -0500)
commitd3ed32b989b9be65805290c931739096786b39ce
treea1d7ea44f4bdf1ad712c6e3b21a0d38756ebfd9c
parentcc07dcf02654267227d9de6ae0898d39d5ea5438
MIPS: Create an artificial control register to hold the thread pointer.

In Linux, the set_thread_area system call stores the address of the thread
local storage area into a field of the current thread_info structure. Later,
to access that value, the program uses the rdhwr instruction to read a
"hardware register" with index 29. The 64 bit MIPS manual, volume II, says
that index 29 is reserved for a future ABI extension and should cause a
"Reserved Instruction Exception". In Linux (and potentially other ISAs) that
exception is trapped and emulated to return the value stored by
set_thread_area as if that were actually stored by a physical register.

The tp_value address (as named in the Linux kernel) is ironically stored as a
control register so that it goes with a particular ThreadContext. Syscall
emulation will use that to emulate storing to the OS's thread info structure,
and rdhwr will emulate faulting and returning that value from software by
returning the value itself, as if it was in hardware. In other words, we fake
faking the register in SE mode. In an FS mode implementation it should
work as specified in the manual.
src/arch/mips/isa/operands.isa
src/arch/mips/registers.hh