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
becb336d
Commit
becb336d
authored
Apr 15, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Apr 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Implement be_arm_print_context.
parent
5b345c9b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
be_arm.c
programs/winedbg/be_arm.c
+11
-1
No files found.
programs/winedbg/be_arm.c
View file @
becb336d
...
...
@@ -52,7 +52,17 @@ static void be_arm_single_step(CONTEXT* ctx, unsigned enable)
static
void
be_arm_print_context
(
HANDLE
hThread
,
const
CONTEXT
*
ctx
,
int
all_regs
)
{
dbg_printf
(
"Context printing for arm not done yet
\n
"
);
dbg_printf
(
"Register dump:
\n
"
);
dbg_printf
(
" Pc:%04x Sp:%04x Lr:%04x Cpsr:%04x
\n
"
,
ctx
->
Pc
,
ctx
->
Sp
,
ctx
->
Lr
,
ctx
->
Cpsr
);
dbg_printf
(
" r0:%04x r1:%04x r2:%04x r3:%04x
\n
"
,
ctx
->
R0
,
ctx
->
R1
,
ctx
->
R2
,
ctx
->
R3
);
dbg_printf
(
" r4:%04x r5:%04x r6:%04x r7:%04x r8:%04x
\n
"
,
ctx
->
R4
,
ctx
->
R5
,
ctx
->
R6
,
ctx
->
R7
,
ctx
->
R8
);
dbg_printf
(
" r9:%04x r10:%04x Fp:%04x Ip:%04x
\n
"
,
ctx
->
R9
,
ctx
->
R10
,
ctx
->
Fp
,
ctx
->
Ip
);
if
(
all_regs
)
dbg_printf
(
"Floating point ARM dump not implemented
\n
"
);
}
static
void
be_arm_print_segment_info
(
HANDLE
hThread
,
const
CONTEXT
*
ctx
)
...
...
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