summaryrefslogtreecommitdiff
path: root/test/msan/test.h
blob: a5dcdfccdaed2a038d0c5043ac29c57128286c93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if __LP64__
# define SANITIZER_WORDSIZE 64
#else
# define SANITIZER_WORDSIZE 32
#endif

// This is a simplified version of GetMaxVirtualAddress function.
unsigned long SystemVMA () {
#if SANITIZER_WORDSIZE == 64
  unsigned long vma = (unsigned long)__builtin_frame_address(0);
  return SANITIZER_WORDSIZE - __builtin_clzll(vma);
#else
  return SANITIZER_WORDSIZE;
#endif
}