about summary refs log tree commit diff
path: root/REORG.TODO/sysdeps/powerpc/powerpc64/stackguard-macros.h
blob: e80a683e64dc0e3cd5143da2e1000e7c8a5f6a30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdint.h>

#define STACK_CHK_GUARD \
  ({ uintptr_t x; asm ("ld %0,-28688(13)" : "=r" (x)); x; })

#define POINTER_CHK_GUARD \
  ({												\
     uintptr_t x;										\
     asm ("ld %0,%1(13)"										\
	  : "=r" (x)										\
	  : "i" (offsetof (tcbhead_t, pointer_guard) - TLS_TCB_OFFSET - sizeof (tcbhead_t))	\
         );											\
     x;												\
   })