Files
Hongliang WangandRich Felker 522bd54eda add loongarch64 port
Author: Xiaojuan Zhai <[email protected]>
Author: Meidan Li <[email protected]>
Author: Guoqi Chen <[email protected]>
Author: Xiaolin Zhao <[email protected]>
Author: Fan peng <[email protected]>
Author: Jiantao Shan <[email protected]>
Author: Xuhui Qiang <[email protected]>
Author: Jingyun Hua <[email protected]>
Author: Liu xue <[email protected]>
Author: Hongliang Wang <[email protected]>
2024-02-16 09:33:10 -05:00

12 lines
217 B
C

static inline uintptr_t __get_tp()
{
register uintptr_t tp __asm__("tp");
__asm__ ("" : "=r" (tp) );
return tp;
}
#define TLS_ABOVE_TP
#define GAP_ABOVE_TP 0
#define DTP_OFFSET 0
#define MC_PC __pc