Searched refs:kMemoryLayout (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/compiler-rt/lib/msan/ |
| H A D | msan_linux.cpp | 79 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 D | msan.h | 48 const MappingDesc kMemoryLayout[] = { variable 81 const MappingDesc kMemoryLayout[] = { variable 162 const MappingDesc kMemoryLayout[] = { variable 185 const MappingDesc kMemoryLayout[] = { variable 202 const MappingDesc kMemoryLayout[] = { variable 223 const MappingDesc kMemoryLayout[] = { variable 246 const MappingDesc kMemoryLayout[] = { variable 260 const MappingDesc kMemoryLayout[] = { variable 281 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]); 295 if (kMemoryLayout[i].type == mapping_type && in addr_is_type() [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/dfsan/ |
| H A D | dfsan_platform.h | 41 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 D | dfsan.cpp | 968 uptr start = kMemoryLayout[i].start; in dfsan_flush() 969 uptr end = kMemoryLayout[i].end; in dfsan_flush() 971 MappingDesc::Type type = kMemoryLayout[i].type; in dfsan_flush() 993 uptr start = kMemoryLayout[i].start; in CheckMemoryLayoutSanity() 994 uptr end = kMemoryLayout[i].end; in CheckMemoryLayoutSanity() 995 MappingDesc::Type type = kMemoryLayout[i].type; in CheckMemoryLayoutSanity() 1063 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start, in InitShadow() 1064 kMemoryLayout[i].end - 1); in InitShadow() 1077 uptr start = kMemoryLayout[i].start; in InitShadow() 1078 uptr end = kMemoryLayout[i].end; in InitShadow() [all …]
|