https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d1191416699f8e50cda8f…
commit d1191416699f8e50cda8f37acc1394899e953234
Author: winesync <ros-dev(a)reactos.org>
AuthorDate: Fri Sep 11 13:14:08 2020 +0200
Commit: Jérôme Gardou <jerome.gardou(a)reactos.org>
CommitDate: Wed Sep 16 10:35:33 2020 +0200
[WINESYNC] dbghelp: Map SIMD dwarf registers on ARM64.
Signed-off-by: André Hentschel <nerv(a)dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
wine commit id 86864486be64a277f6edf8e66709cd0f17a4eed9 by André Hentschel
<nerv(a)dawncrow.de>
---
dll/win32/dbghelp/cpu_arm64.c | 1 +
sdk/tools/winesync/dbghelp.cfg | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/dll/win32/dbghelp/cpu_arm64.c b/dll/win32/dbghelp/cpu_arm64.c
index dea19f83bac..f50b3255bd0 100644
--- a/dll/win32/dbghelp/cpu_arm64.c
+++ b/dll/win32/dbghelp/cpu_arm64.c
@@ -158,6 +158,7 @@ static unsigned arm64_map_dwarf_register(unsigned regno, BOOL
eh_frame)
if (regno == 29) return CV_ARM64_FP;
if (regno == 30) return CV_ARM64_LR;
if (regno == 31) return CV_ARM64_SP;
+ if (regno >= 64 && regno <= 95) return CV_ARM64_Q0 + regno - 64;
FIXME("Don't know how to map register %d\n", regno);
return CV_ARM64_NOREG;
diff --git a/sdk/tools/winesync/dbghelp.cfg b/sdk/tools/winesync/dbghelp.cfg
index d497e3133cc..15ff3dbd075 100644
--- a/sdk/tools/winesync/dbghelp.cfg
+++ b/sdk/tools/winesync/dbghelp.cfg
@@ -3,4 +3,4 @@ directories:
files:
include/dbghelp.h: sdk/include/psdk/dbghelp.h
tags:
- wine: 7d441808ac3b1d8bcef7795b636bda14c31c927b
+ wine: 86864486be64a277f6edf8e66709cd0f17a4eed9