Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_mapping_sparc64.h43 #define kHighShadowBeg MEM_TO_SHADOW(kHighMemBeg) macro
55 #define kShadowGapEnd (kHighShadowBeg - 1)
92 return kHighMemBeg && a >= kHighShadowBeg && a <= kHighShadowEnd; in AddrIsInHighShadow()
H A Dasan_shadow_setup.cpp93 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd, "high shadow"); in InitializeShadowMemory()
96 CHECK_EQ(kShadowGapEnd, kHighShadowBeg - 1); in InitializeShadowMemory()
106 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd, "high shadow"); in InitializeShadowMemory()
H A Dasan_mapping.h284 # define kHighShadowBeg MEM_TO_SHADOW(kHighMemBeg) macro
297 # define kShadowGapEnd ((kMidMemBeg ? kMidShadowBeg : kHighShadowBeg) - 1)
303 # define kShadowGap3End (kMidMemBeg ? kHighShadowBeg - 1 : 0)
334 return kHighMemBeg && a >= kHighShadowBeg && a <= kHighShadowEnd; in AddrIsInHighShadow()
H A Dasan_fuchsia.cpp43 CHECK_EQ(kShadowGapEnd, kHighShadowBeg - 1); in InitializeShadowMemory()
46 CHECK_EQ(kHighShadowBeg, __sanitizer::ShadowBounds.shadow_base); in InitializeShadowMemory()
H A Dasan_rtl.cpp324 (void*)kHighShadowBeg, (void*)kHighShadowEnd); in PrintAddressSpaceLayout()
349 (void*)MEM_TO_SHADOW(kHighShadowBeg), in PrintAddressSpaceLayout()
373 kHighShadowBeg > kMidMemEnd); in PrintAddressSpaceLayout()
/llvm-project-15.0.7/compiler-rt/lib/memprof/
H A Dmemprof_mapping.h50 #define kHighShadowBeg MEM_TO_SHADOW(kHighMemBeg) macro
59 #define kShadowGapEnd (kHighShadowBeg - 1)
75 return kHighMemBeg && a >= kHighShadowBeg && a <= kHighShadowEnd; in AddrIsInHighShadow()
H A Dmemprof_shadow_setup.cpp56 ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd, "high shadow"); in InitializeShadowMemory()
59 CHECK_EQ(kShadowGapEnd, kHighShadowBeg - 1); in InitializeShadowMemory()
H A Dmemprof_rtl.cpp111 Printf("|| `[%p, %p]` || HighShadow ||\n", (void *)kHighShadowBeg, in PrintAddressSpaceLayout()
125 Printf(" %p %p", (void *)MEM_TO_SHADOW(kHighShadowBeg), in PrintAddressSpaceLayout()
/llvm-project-15.0.7/compiler-rt/lib/asan/tests/
H A Dasan_noinst_test.cpp229 ptr = kHighShadowBeg + 200; in TEST()