Searched refs:kMemoryLayout (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_platform.h | 44 const MappingDesc kMemoryLayout[] = { variable 67 const MappingDesc kMemoryLayout[] = { variable 88 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]); 103 if (kMemoryLayout[i].type == mapping_type && in addr_is_type() 104 addr >= kMemoryLayout[i].start && addr < kMemoryLayout[i].end) in addr_is_type()
|
| H A D | dfsan.cpp | 1074 uptr start = kMemoryLayout[i].start; in dfsan_flush() 1075 uptr end = kMemoryLayout[i].end; in dfsan_flush() 1077 MappingDesc::Type type = kMemoryLayout[i].type; in dfsan_flush() 1100 uptr start = kMemoryLayout[i].start; in CheckMemoryLayoutSanity() 1101 uptr end = kMemoryLayout[i].end; in CheckMemoryLayoutSanity() 1102 MappingDesc::Type type = kMemoryLayout[i].type; in CheckMemoryLayoutSanity() 1170 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start, in InitShadow() 1171 kMemoryLayout[i].end - 1); in InitShadow() 1184 uptr start = kMemoryLayout[i].start; in InitShadow() 1185 uptr end = kMemoryLayout[i].end; in InitShadow() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan.h | 54 const MappingDesc kMemoryLayout[] = { variable 81 const MappingDesc kMemoryLayout[] = { variable 104 const MappingDesc kMemoryLayout[] = { variable 122 const MappingDesc kMemoryLayout[] = { variable 146 const MappingDesc kMemoryLayout[] = { variable 164 const MappingDesc kMemoryLayout[] = { variable 185 const MappingDesc kMemoryLayout[] = { variable 209 const MappingDesc kMemoryLayout[] = { variable 230 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]); 245 if ((kMemoryLayout[i].type & mapping_types) && in addr_is_type() [all …]
|
| H A D | msan_linux.cpp | 86 uptr start = kMemoryLayout[i].start; in CheckMemoryLayoutSanity() 87 uptr end = kMemoryLayout[i].end; in CheckMemoryLayoutSanity() 88 MappingDesc::Type type = kMemoryLayout[i].type; in CheckMemoryLayoutSanity() 118 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start, in InitShadow() 119 kMemoryLayout[i].end - 1); in InitShadow() 133 uptr start = kMemoryLayout[i].start; in InitShadow() 134 uptr end = kMemoryLayout[i].end; in InitShadow() 136 MappingDesc::Type type = kMemoryLayout[i].type; in InitShadow() 158 !MmapFixedSuperNoReserve(start, size, kMemoryLayout[i].name)) in InitShadow() 166 if (!dry_run && !ProtectMemoryRange(start, size, kMemoryLayout[i].name)) in InitShadow()
|