We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf9dc6 commit f9d7eb2Copy full SHA for f9d7eb2
src/unwind/unwind_with_dbghelp.cpp
@@ -96,6 +96,14 @@ namespace detail {
96
frame.AddrBStore.Mode = AddrModeFlat;
97
frame.AddrStack.Offset = context.IntSp;
98
frame.AddrStack.Mode = AddrModeFlat;
99
+ #elif defined(_M_ARM) || defined(__arm__)
100
+ machine_type = IMAGE_FILE_MACHINE_ARM;
101
+ frame.AddrPC.Offset = context.Pc;
102
+ frame.AddrPC.Mode = AddrModeFlat;
103
+ frame.AddrFrame.Offset = context.R11;
104
+ frame.AddrFrame.Mode = AddrModeFlat;
105
+ frame.AddrStack.Offset = context.Sp;
106
+ frame.AddrStack.Mode = AddrModeFlat;
107
#elif defined(_M_ARM64) || defined(__aarch64__)
108
machine_type = IMAGE_FILE_MACHINE_ARM64;
109
frame.AddrPC.Offset = context.Pc;
0 commit comments