1static inline uintptr_t __get_tp() 2{ 3 uintptr_t tp; 4 __asm__ ("mov %%fs:0,%0" : "=r" (tp) ); 5 return tp; 6} 7 8#define MC_PC gregs[REG_RIP]