Home
last modified time | relevance | path

Searched refs:exception_record (Results 1 – 3 of 3) sorted by relevance

/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp970 EXCEPTION_RECORD *exception_record = (EXCEPTION_RECORD *)siginfo; in InitPcSpBp() local
973 pc = (uptr)exception_record->ExceptionAddress; in InitPcSpBp()
989 EXCEPTION_RECORD *exception_record = (EXCEPTION_RECORD *)siginfo; in GetAddress() local
990 if (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION) in GetAddress()
991 return exception_record->ExceptionInformation[1]; in GetAddress()
992 return (uptr)exception_record->ExceptionAddress; in GetAddress()
1003 EXCEPTION_RECORD *exception_record = (EXCEPTION_RECORD *)siginfo; in GetWriteFlag() local
1006 if (exception_record->ExceptionCode != EXCEPTION_ACCESS_VIOLATION) in GetWriteFlag()
1013 switch (exception_record->ExceptionInformation[0]) { in GetWriteFlag()
/openbsd/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_win.cpp54 EXCEPTION_RECORD *exception_record = info->ExceptionRecord; in __asan_unhandled_exception_filter() local
59 SignalContext sig(exception_record, context); in __asan_unhandled_exception_filter()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.cpp363 std::weak_ptr<ExceptionRecord> exception_record = in RefreshStateAfterStop() local
365 ExceptionRecordSP active_exception = exception_record.lock(); in RefreshStateAfterStop()