SH Built-in Functions#
The following built-in functions are supported on the SH1, SH2, SH3 and SH4 families of processors:
-
void __builtin_set_thread_pointer(void *ptr)#
Sets the
GBRregister to the specified valueptr. This is usually used by system code that manages threads and execution contexts. The compiler normally does not generate code that modifies the contents ofGBRand thus the value is preserved across function calls. Changing theGBRvalue in user code must be done with caution, since the compiler might useGBRin order to access thread local variables.
-
void *__builtin_thread_pointer(void)
Returns the value that is currently set in the
GBRregister. Memory loads and stores that use the thread pointer as a base address are turned intoGBRbased displacement loads and stores, if possible. For example:struct my_tcb { int a, b, c, d, e; }; int get_tcb_value (void) { // Generate mov.l @(8,gbr),r0 instruction return ((my_tcb*)__builtin_thread_pointer ())->c; }
-
unsigned int __builtin_sh_get_fpscr(void)#
Returns the value that is currently set in the
FPSCRregister.
-
void __builtin_sh_set_fpscr(unsigned int val)#
Sets the
FPSCRregister to the specified valueval, while preserving the current values of the FR, SZ and PR bits.