Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/gwp_asan/tests/
H A Dcrash_handler_api.cpp123 uintptr_t FailureAddress = 0x9000; in TEST_F() local
135 uintptr_t FailureAddress = 0x7000; in TEST_F() local
138 State.FailureAddress = FailureAddress; in TEST_F()
144 checkMetadata(Index, FailureAddress); in TEST_F()
150 uintptr_t FailureAddress = 0x7001; in TEST_F() local
153 State.FailureAddress = FailureAddress; in TEST_F()
163 uintptr_t FailureAddress = 0x7001; in TEST_F() local
166 State.FailureAddress = FailureAddress; in TEST_F()
178 uintptr_t FailureAddress = 0x7001; in TEST_F() local
190 uintptr_t FailureAddress = 0x6000; in TEST_F() local
[all …]
/llvm-project-15.0.7/compiler-rt/lib/gwp_asan/
H A Dcommon.h145 uintptr_t FailureAddress = 0; member
161 static_assert(offsetof(AllocatorState, FailureAddress) == 48, "");
166 static_assert(offsetof(AllocatorState, FailureAddress) == 48, "");
171 static_assert(offsetof(AllocatorState, FailureAddress) == 28, "");
176 static_assert(offsetof(AllocatorState, FailureAddress) == 28, "");
H A Dcrash_handler.cpp26 if (State->FailureType != Error::UNKNOWN && State->FailureAddress != 0) in __gwp_asan_error_is_mine()
35 return State->FailureAddress; in __gwp_asan_get_internal_crash_address()
H A Dguarded_pool_allocator.cpp263 State.FailureAddress = Address; in trapOnAddress()