(root)/
glibc-2.38/
sysdeps/
powerpc/
powerpc64/
stackguard-macros.h
       1  #include <stdint.h>
       2  
       3  #define STACK_CHK_GUARD \
       4    ({ uintptr_t x; asm ("ld %0,-28688(13)" : "=r" (x)); x; })
       5  
       6  #define POINTER_CHK_GUARD \
       7    ({												\
       8       uintptr_t x;										\
       9       asm ("ld %0,%1(13)"										\
      10  	  : "=r" (x)										\
      11  	  : "i" (offsetof (tcbhead_t, pointer_guard) - TLS_TCB_OFFSET - sizeof (tcbhead_t))	\
      12           );											\
      13       x;												\
      14     })