Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_linux.cpp79 uptr start = kMemoryLayout[i].start; in CheckMemoryLayoutSanity()
80 uptr end = kMemoryLayout[i].end; in CheckMemoryLayoutSanity()
81 MappingDesc::Type type = kMemoryLayout[i].type; in CheckMemoryLayoutSanity()
111 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start, in InitShadow()
112 kMemoryLayout[i].end - 1); in InitShadow()
125 uptr start = kMemoryLayout[i].start; in InitShadow()
126 uptr end = kMemoryLayout[i].end; in InitShadow()
128 MappingDesc::Type type = kMemoryLayout[i].type; in InitShadow()
144 if (!MmapFixedSuperNoReserve(start, size, kMemoryLayout[i].name)) in InitShadow()
152 if (!ProtectMemoryRange(start, size, kMemoryLayout[i].name)) in InitShadow()
H A Dmsan.h48 const MappingDesc kMemoryLayout[] = { variable
81 const MappingDesc kMemoryLayout[] = { variable
162 const MappingDesc kMemoryLayout[] = { variable
185 const MappingDesc kMemoryLayout[] = { variable
202 const MappingDesc kMemoryLayout[] = { variable
225 const MappingDesc kMemoryLayout[] = { variable
239 const MappingDesc kMemoryLayout[] = { variable
260 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]);
274 if (kMemoryLayout[i].type == mapping_type && in addr_is_type()
275 addr >= kMemoryLayout[i].start && addr < kMemoryLayout[i].end) in addr_is_type()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_platform.h41 const MappingDesc kMemoryLayout[] = { variable
61 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]);
76 if (kMemoryLayout[i].type == mapping_type && in addr_is_type()
77 addr >= kMemoryLayout[i].start && addr < kMemoryLayout[i].end) in addr_is_type()
H A Ddfsan.cpp843 uptr start = kMemoryLayout[i].start; in dfsan_flush()
844 uptr end = kMemoryLayout[i].end; in dfsan_flush()
846 MappingDesc::Type type = kMemoryLayout[i].type; in dfsan_flush()
867 uptr start = kMemoryLayout[i].start; in CheckMemoryLayoutSanity()
868 uptr end = kMemoryLayout[i].end; in CheckMemoryLayoutSanity()
869 MappingDesc::Type type = kMemoryLayout[i].type; in CheckMemoryLayoutSanity()
937 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start, in InitShadow()
938 kMemoryLayout[i].end - 1); in InitShadow()
951 uptr start = kMemoryLayout[i].start; in InitShadow()
952 uptr end = kMemoryLayout[i].end; in InitShadow()
[all …]