Home
last modified time | relevance | path

Searched refs:shadow_size_bytes (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_dynamic_shadow.cpp58 static uptr FindPremappedShadowStart(uptr shadow_size_bytes) { in FindPremappedShadowStart() argument
62 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in FindPremappedShadowStart()
108 uptr FindDynamicShadowStart(uptr shadow_size_bytes) { in FindDynamicShadowStart() argument
110 return FindPremappedShadowStart(shadow_size_bytes); in FindDynamicShadowStart()
111 return MapDynamicShadow(shadow_size_bytes, kShadowScale, kShadowBaseAlignment, in FindDynamicShadowStart()
130 uptr FindDynamicShadowStart(uptr shadow_size_bytes) { in FindDynamicShadowStart() argument
134 return MapDynamicShadowAndAliases(shadow_size_bytes, kAliasSize, kNumAliases, in FindDynamicShadowStart()
137 return MapDynamicShadow(shadow_size_bytes, kShadowScale, kShadowBaseAlignment, in FindDynamicShadowStart()
H A Dhwasan_dynamic_shadow.h22 uptr FindDynamicShadowStart(uptr shadow_size_bytes);
H A Dhwasan_linux.cpp108 static void InitializeShadowBaseAddress(uptr shadow_size_bytes) { in InitializeShadowBaseAddress() argument
110 FindDynamicShadowStart(shadow_size_bytes); in InitializeShadowBaseAddress()
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_linux.cpp93 uptr FindPremappedShadowStart(uptr shadow_size_bytes) { in FindPremappedShadowStart() argument
97 uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in FindPremappedShadowStart()
105 uptr shadow_size_bytes = MemToShadowSize(kHighMemEnd); in FindDynamicShadowStart() local
108 return FindPremappedShadowStart(shadow_size_bytes); in FindDynamicShadowStart()
111 return MapDynamicShadow(shadow_size_bytes, ASAN_SHADOW_SCALE, in FindDynamicShadowStart()
/openbsd-src/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_linux.cpp67 uptr shadow_size_bytes = MemToShadowSize(kHighMemEnd); in FindDynamicShadowStart() local
68 return MapDynamicShadow(shadow_size_bytes, SHADOW_SCALE, in FindDynamicShadowStart()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cpp988 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument
997 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in MapDynamicShadow()
H A Dsanitizer_win.cpp384 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, in MapDynamicShadow() argument
392 uptr space_size = shadow_size_bytes + left_padding; in MapDynamicShadow()
H A Dsanitizer_mac.cpp1190 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 Dsanitizer_common.h139 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale,