Home
last modified time | relevance | path

Searched refs:ExceptionInformation (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/libunwind/src/
H A DUnwind-seh.cpp79 disp->ContextRecord->R1 = ms_exc->ExceptionInformation[3]; in _GCC_specific_handler()
81 disp->ContextRecord->X1 = ms_exc->ExceptionInformation[3]; in _GCC_specific_handler()
92 exc = (_Unwind_Exception *)ms_exc->ExceptionInformation[0]; in _GCC_specific_handler()
95 action = (_Unwind_Action)ms_exc->ExceptionInformation[2]; in _GCC_specific_handler()
147 ms_exc->ExceptionInformation[1] = (ULONG_PTR)frame; in _GCC_specific_handler()
178 ms_exc->ExceptionInformation[2] = disp->TargetIp; in _GCC_specific_handler()
180 ms_exc->ExceptionInformation[2] = disp->TargetPc; in _GCC_specific_handler()
182 ms_exc->ExceptionInformation[3] = exc->private_[3]; in _GCC_specific_handler()
210 ms_exc.ExceptionInformation[0] = (ULONG_PTR)exc; in __libunwind_seh_personality()
211 ms_exc.ExceptionInformation[1] = (ULONG_PTR)context; in __libunwind_seh_personality()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DExceptionRecord.h41 m_arguments.assign(record.ExceptionInformation, in ExceptionRecord()
42 record.ExceptionInformation + record.NumberParameters); in ExceptionRecord()
50 m_arguments(record.ExceptionInformation, in ExceptionRecord()
51 record.ExceptionInformation + record.NumberParameters) {} in ExceptionRecord()
/llvm-project-15.0.7/llvm/unittests/ObjectYAML/
H A DMinidumpYAMLTest.cpp178 EXPECT_EQ(0x22u, Exception.ExceptionInformation[0]); in TEST()
179 EXPECT_EQ(0x24u, Exception.ExceptionInformation[1]); in TEST()
277 EXPECT_EQ(0x0u, Exception.ExceptionInformation[0]); in TEST()
279 EXPECT_EQ(0x110u - Index * 0x11, Exception.ExceptionInformation[Index]); in TEST()
328 EXPECT_EQ(0x99u, Exception.ExceptionInformation[0]); in TEST()
329 EXPECT_EQ(0x23u, Exception.ExceptionInformation[1]); in TEST()
330 EXPECT_EQ(0x42u, Exception.ExceptionInformation[2]); in TEST()
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/Minidump/
H A Dexception-missing-parameter.yaml4 ## number of parameters is greater than the number of ExceptionInformation
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DMinidump.h239 support::ulittle64_t ExceptionInformation[MaxParameters]; member
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_win.cpp291 (uptr)(exception_pointers->ExceptionRecord->ExceptionInformation[1]); in ShadowExceptionHandler()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp991 return exception_record->ExceptionInformation[1]; in GetAddress()
1013 switch (exception_record->ExceptionInformation[0]) { in GetWriteFlag()
/llvm-project-15.0.7/llvm/unittests/Object/
H A DMinidumpTest.cpp766 Exception.ExceptionInformation[index]); in TEST()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp391 support::ulittle64_t &Field = Exception.ExceptionInformation[Index]; in mapping()