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.cpp73 static bool GetShadowKind(uptr addr, ShadowKind *shadow_kind) { in GetShadowKind() argument
76 *shadow_kind = kShadowKindGap; in GetShadowKind()
78 *shadow_kind = kShadowKindHigh; in GetShadowKind()
80 *shadow_kind = kShadowKindLow; in GetShadowKind()
96 ShadowKind shadow_kind; in GetShadowAddressInformation() local
97 if (!GetShadowKind(addr, &shadow_kind)) return false; in GetShadowAddressInformation()
98 if (shadow_kind != kShadowKindGap) descr->shadow_byte = *(u8 *)addr; in GetShadowAddressInformation()
100 descr->kind = shadow_kind; in GetShadowAddressInformation()