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
5ac1ecfb
Commit
5ac1ecfb
authored
Dec 09, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Dec 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Improve formatting of context printing.
parent
288f3aca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
be_arm.c
programs/winedbg/be_arm.c
+6
-6
No files found.
programs/winedbg/be_arm.c
View file @
5ac1ecfb
...
...
@@ -1717,14 +1717,14 @@ static void be_arm_print_context(HANDLE hThread, const CONTEXT* ctx, int all_reg
if
(
!
((
ctx
->
Cpsr
>>
26
)
&
(
1
<<
(
sizeof
(
condflags
)
-
i
))))
buf
[
i
]
=
'-'
;
dbg_printf
(
" Pc:%0
4x Sp:%04x Lr:%04x Cpsr:%04
x(%s)
\n
"
,
dbg_printf
(
" Pc:%0
8x Sp:%08x Lr:%08x Cpsr:%08
x(%s)
\n
"
,
ctx
->
Pc
,
ctx
->
Sp
,
ctx
->
Lr
,
ctx
->
Cpsr
,
buf
);
dbg_printf
(
" r0:%0
4x r1:%04x r2:%04x r3:%04
x
\n
"
,
dbg_printf
(
" r0:%0
8x r1:%08x r2:%08x r3:%08
x
\n
"
,
ctx
->
R0
,
ctx
->
R1
,
ctx
->
R2
,
ctx
->
R3
);
dbg_printf
(
" r4:%0
4x r5:%04x r6:%04x r7:%04x r8:%04
x
\n
"
,
ctx
->
R4
,
ctx
->
R5
,
ctx
->
R6
,
ctx
->
R7
,
ctx
->
R8
);
dbg_printf
(
" r
9:%04x r10:%04x Fp:%04x Ip:%04
x
\n
"
,
ctx
->
R
9
,
ctx
->
R10
,
ctx
->
Fp
,
ctx
->
Ip
);
dbg_printf
(
" r4:%0
8x r5:%08x r6:%08x r7:%08
x
\n
"
,
ctx
->
R4
,
ctx
->
R5
,
ctx
->
R6
,
ctx
->
R7
);
dbg_printf
(
" r
8:%08x r9:%08x r10:%08x Fp:%08x Ip:%08
x
\n
"
,
ctx
->
R
8
,
ctx
->
R9
,
ctx
->
R10
,
ctx
->
Fp
,
ctx
->
Ip
);
if
(
all_regs
)
dbg_printf
(
"Floating point ARM dump not implemented
\n
"
);
}
...
...
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