Searched refs:shadow_size_bytes (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_dynamic_shadow.cpp | 63 static uptr FindPremappedShadowStart(uptr shadow_size_bytes) { in FindPremappedShadowStart() argument 67 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in FindPremappedShadowStart() 113 uptr FindDynamicShadowStart(uptr shadow_size_bytes) { in FindDynamicShadowStart() argument 115 return FindPremappedShadowStart(shadow_size_bytes); in FindDynamicShadowStart() 116 return MapDynamicShadow(shadow_size_bytes, kShadowScale, kShadowBaseAlignment, in FindDynamicShadowStart() 135 uptr FindDynamicShadowStart(uptr shadow_size_bytes) { in FindDynamicShadowStart() argument 139 return MapDynamicShadowAndAliases(shadow_size_bytes, kAliasSize, kNumAliases, in FindDynamicShadowStart() 142 return MapDynamicShadow(shadow_size_bytes, kShadowScale, kShadowBaseAlignment, in FindDynamicShadowStart()
|
| H A D | hwasan_dynamic_shadow.h | 22 uptr FindDynamicShadowStart(uptr shadow_size_bytes);
|
| H A D | hwasan_linux.cpp | 108 static void InitializeShadowBaseAddress(uptr shadow_size_bytes) { in InitializeShadowBaseAddress() argument 113 uptr end = beg + shadow_size_bytes; in InitializeShadowBaseAddress() 123 FindDynamicShadowStart(shadow_size_bytes); in InitializeShadowBaseAddress()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_linux.cpp | 77 uptr FindPremappedShadowStart(uptr shadow_size_bytes) { in FindPremappedShadowStart() argument 81 uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in FindPremappedShadowStart() 89 uptr shadow_size_bytes = MemToShadowSize(kHighMemEnd); in FindDynamicShadowStart() local 92 return FindPremappedShadowStart(shadow_size_bytes); in FindDynamicShadowStart() 95 return MapDynamicShadow(shadow_size_bytes, ASAN_SHADOW_SCALE, in FindDynamicShadowStart()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_linux.cpp | 59 uptr shadow_size_bytes = MemToShadowSize(kHighMemEnd); in FindDynamicShadowStart() local 60 return MapDynamicShadow(shadow_size_bytes, SHADOW_SCALE, in FindDynamicShadowStart()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_linux_libcdep.cpp | 1010 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument 1018 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in MapDynamicShadow()
|
| H A D | sanitizer_win.cpp | 386 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument 393 uptr space_size = shadow_size_bytes + left_padding; in MapDynamicShadow()
|
| H A D | sanitizer_mac.cpp | 1190 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument 1198 uptr space_size = shadow_size_bytes + left_padding; in MapDynamicShadow()
|
| H A D | sanitizer_common.h | 139 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale,
|