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
24abf1f6
Commit
24abf1f6
authored
Oct 03, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Oct 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Add enhanced Coprocessor move operators to Thumb2 disassembler.
parent
12908077
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
be_arm.c
programs/winedbg/be_arm.c
+10
-0
No files found.
programs/winedbg/be_arm.c
View file @
24abf1f6
...
...
@@ -996,6 +996,15 @@ static UINT thumb2_disasm_coprocmov1(UINT inst, ADDRESS64 *addr)
return
0
;
}
static
UINT
thumb2_disasm_coprocmov2
(
UINT
inst
,
ADDRESS64
*
addr
)
{
dbg_printf
(
"
\n\t
%s%s
\t
p%u, #%u, %s, %s, cr%u"
,
(
inst
&
0x00100000
)
?
"mrrc"
:
"mcrr"
,
(
inst
&
0x10000000
)
?
"2"
:
""
,
get_nibble
(
inst
,
2
),
get_nibble
(
inst
,
1
),
tbl_regs
[
get_nibble
(
inst
,
3
)],
tbl_regs
[
get_nibble
(
inst
,
4
)],
get_nibble
(
inst
,
0
));
return
0
;
}
struct
inst_arm
{
UINT
mask
;
...
...
@@ -1070,6 +1079,7 @@ static const struct inst_arm tbl_thumb32[] = {
{
0xff700000
,
0xf8500000
,
thumb2_disasm_ldrword
},
{
0xef000010
,
0xee000000
,
thumb2_disasm_coprocdat
},
{
0xef000010
,
0xee000010
,
thumb2_disasm_coprocmov1
},
{
0xefe00000
,
0xec400000
,
thumb2_disasm_coprocmov2
},
{
0x00000000
,
0x00000000
,
NULL
}
};
...
...
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