Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp71 static bool GetShadowKind(uptr addr, ShadowKind *shadow_kind) { in GetShadowKind() argument
74 *shadow_kind = kShadowKindGap; in GetShadowKind()
76 *shadow_kind = kShadowKindHigh; in GetShadowKind()
78 *shadow_kind = kShadowKindLow; in GetShadowKind()
94 ShadowKind shadow_kind; in GetShadowAddressInformation() local
95 if (!GetShadowKind(addr, &shadow_kind)) return false; in GetShadowAddressInformation()
96 if (shadow_kind != kShadowKindGap) descr->shadow_byte = *(u8 *)addr; in GetShadowAddressInformation()
98 descr->kind = shadow_kind; in GetShadowAddressInformation()