Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_platform.h53 const MappingDesc kMemoryLayout[] = { variable
77 const MappingDesc kMemoryLayout[] = { variable
99 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[0]);
114 if ((kMemoryLayout[i].type & mapping_types) && in addr_is_type()
115 addr >= kMemoryLayout[i].start && addr < kMemoryLayout[i].end) in addr_is_type()
H A Ddfsan.cpp1070 uptr start = kMemoryLayout[i].start; in dfsan_flush()
1071 uptr end = kMemoryLayout[i].end; in dfsan_flush()
1073 MappingDesc::Type type = kMemoryLayout[i].type; in dfsan_flush()
1082 if (!MmapFixedSuperNoReserve(start, size, kMemoryLayout[i].name)) { in dfsan_flush()
1096 uptr start = kMemoryLayout[i].start; in CheckMemoryLayoutSanity()
1097 uptr end = kMemoryLayout[i].end; in CheckMemoryLayoutSanity()
1098 MappingDesc::Type type = kMemoryLayout[i].type; in CheckMemoryLayoutSanity()
1167 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start, in InitShadow()
1168 kMemoryLayout[i].end - 1); in InitShadow()
1182 uptr start = kMemoryLayout[i].start; in InitShadow()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan.h54 const MappingDesc kMemoryLayout[] = {
81 const MappingDesc kMemoryLayout[] = {
104 const MappingDesc kMemoryLayout[] = {
122 const MappingDesc kMemoryLayout[] = {
146 const MappingDesc kMemoryLayout[] = {
164 const MappingDesc kMemoryLayout[] = {
185 const MappingDesc kMemoryLayout[] = {
209 const MappingDesc kMemoryLayout[] = {
230 const uptr kMemoryLayoutSize = sizeof(kMemoryLayout) / sizeof(kMemoryLayout[ in addr_is_type()
48 const MappingDesc kMemoryLayout[] = { global() variable
75 const MappingDesc kMemoryLayout[] = { global() variable
97 const MappingDesc kMemoryLayout[] = { global() variable
114 const MappingDesc kMemoryLayout[] = { global() variable
137 const MappingDesc kMemoryLayout[] = { global() variable
154 const MappingDesc kMemoryLayout[] = { global() variable
175 const MappingDesc kMemoryLayout[] = { global() variable
199 const MappingDesc kMemoryLayout[] = { global() variable
[all...]
H A Dmsan_linux.cpp87 uptr start = kMemoryLayout[i].start; in CheckMemoryLayoutSanity()
88 uptr end = kMemoryLayout[i].end; in CheckMemoryLayoutSanity()
89 MappingDesc::Type type = kMemoryLayout[i].type; in CheckMemoryLayoutSanity()
119 VPrintf(1, "%s: %zx - %zx\n", kMemoryLayout[i].name, kMemoryLayout[i].start, in InitShadow()
120 kMemoryLayout[i].end - 1); in InitShadow()
134 uptr start = kMemoryLayout[i].start; in InitShadow()
135 uptr end = kMemoryLayout[i].end; in InitShadow()
137 MappingDesc::Type type = kMemoryLayout[i].type; in InitShadow()
159 !MmapFixedSuperNoReserve(start, size, kMemoryLayout[i].name)) in InitShadow()
167 if (!dry_run && !ProtectMemoryRange(start, size, kMemoryLayout[i].name)) in InitShadow()