OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MappingDesc
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/msan/
msan.h
33
struct
MappingDesc
{
46
const
MappingDesc
kMemoryLayout[] = {
47
{0x000000000000ULL, 0x00a000000000ULL,
MappingDesc
::INVALID, "invalid"},
48
{0x00a000000000ULL, 0x00c000000000ULL,
MappingDesc
::SHADOW, "shadow"},
49
{0x00c000000000ULL, 0x00e000000000ULL,
MappingDesc
::ORIGIN, "origin"},
50
{0x00e000000000ULL, 0x010000000000ULL,
MappingDesc
::APP, "app"}};
66
const
MappingDesc
kMemoryLayout[] = {
67
{0x00000000000ULL, 0x01000000000ULL,
MappingDesc
::INVALID, "invalid"},
68
{0x01000000000ULL, 0x02000000000ULL,
MappingDesc
::SHADOW, "shadow-2"},
69
{0x02000000000ULL, 0x03000000000ULL,
MappingDesc
::ORIGIN, "origin-2"}
[
all
...]
msan_linux.cc
81
MappingDesc
::Type type = kMemoryLayout[i].type;
87
if (type ==
MappingDesc
::APP) {
128
MappingDesc
::Type type = kMemoryLayout[i].type;
134
bool map = type ==
MappingDesc
::SHADOW ||
135
(init_origins && type ==
MappingDesc
::ORIGIN);
136
bool protect = type ==
MappingDesc
::INVALID ||
137
(!init_origins && type ==
MappingDesc
::ORIGIN);
140
CHECK(type ==
MappingDesc
::APP);
Completed in 2139 milliseconds