Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4055b7f2
Commit
4055b7f2
authored
Apr 15, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Apr 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Implement arm_map_dwarf_register.
parent
a38f7e86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
cpu_arm.c
dlls/dbghelp/cpu_arm.c
+5
-2
No files found.
dlls/dbghelp/cpu_arm.c
View file @
4055b7f2
...
...
@@ -54,8 +54,11 @@ static BOOL arm_stack_walk(struct cpu_stack_walk* csw, LPSTACKFRAME64 frame, CON
static
unsigned
arm_map_dwarf_register
(
unsigned
regno
)
{
FIXME
(
"not done for ARM
\n
"
);
return
0
;
if
(
regno
<=
15
)
return
CV_ARM_R0
+
regno
;
if
(
regno
==
128
)
return
CV_ARM_CPSR
;
FIXME
(
"Don't know how to map register %d
\n
"
,
regno
);
return
CV_ARM_NOREG
;
}
static
void
*
arm_fetch_context_reg
(
CONTEXT
*
ctx
,
unsigned
regno
,
unsigned
*
size
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment