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
054d930b
Commit
054d930b
authored
Aug 23, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Aug 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Add load word operators to Thumb2 disassembler.
parent
144a692f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
2 deletions
+52
-2
be_arm.c
programs/winedbg/be_arm.c
+52
-2
No files found.
programs/winedbg/be_arm.c
View file @
054d930b
...
@@ -760,6 +760,56 @@ static UINT thumb2_disasm_longmuldiv(UINT inst, ADDRESS64 *addr)
...
@@ -760,6 +760,56 @@ static UINT thumb2_disasm_longmuldiv(UINT inst, ADDRESS64 *addr)
return
inst
;
return
inst
;
}
}
static
UINT
thumb2_disasm_ldrword
(
UINT
inst
,
ADDRESS64
*
addr
)
{
WORD
op1
=
(
inst
>>
23
)
&
0x01
;
WORD
op2
=
(
inst
>>
6
)
&
0x3f
;
int
offset
;
if
(
get_nibble
(
inst
,
4
)
==
0x0f
)
{
offset
=
inst
&
0x0fff
;
if
(
!
op1
)
offset
*=
-
1
;
offset
+=
3
;
dbg_printf
(
"
\n\t
ldr
\t
%s, "
,
tbl_regs
[
get_nibble
(
inst
,
3
)]);
db_printsym
(
addr
->
Offset
+
offset
);
return
0
;
}
if
(
!
op1
&&
!
op2
)
{
dbg_printf
(
"
\n\t
ldr
\t
%s, [%s, %s, LSL #%u]"
,
tbl_regs
[
get_nibble
(
inst
,
3
)],
tbl_regs
[
get_nibble
(
inst
,
4
)],
tbl_regs
[
get_nibble
(
inst
,
0
)],
(
inst
>>
4
)
&
0x3
);
return
0
;
}
if
(
!
op1
&&
(
op2
&
0x3c
)
==
0x38
)
{
dbg_printf
(
"
\n\t
ldrt
\t
%s, [%s, #%u]"
,
tbl_regs
[
get_nibble
(
inst
,
3
)],
tbl_regs
[
get_nibble
(
inst
,
4
)],
inst
&
0xff
);
return
0
;
}
dbg_printf
(
"
\n\t
ldr
\t
%s, [%s"
,
tbl_regs
[
get_nibble
(
inst
,
3
)],
tbl_regs
[
get_nibble
(
inst
,
4
)]);
if
(
op1
)
{
dbg_printf
(
", #%u]"
,
inst
&
0x0fff
);
return
0
;
}
offset
=
inst
&
0xff
;
if
(
!
(
inst
&
0x0200
))
offset
*=
-
1
;
if
(
!
(
inst
&
0x0400
)
&&
(
inst
&
0x0100
))
dbg_printf
(
"], #%i"
,
offset
);
else
if
(
inst
&
0x0400
)
dbg_printf
(
", #%i]%s"
,
offset
,
(
inst
&
0x0100
)
?
"!"
:
""
);
else
return
inst
;
return
0
;
}
static
UINT
thumb2_disasm_coprocmov1
(
UINT
inst
,
ADDRESS64
*
addr
)
static
UINT
thumb2_disasm_coprocmov1
(
UINT
inst
,
ADDRESS64
*
addr
)
{
{
WORD
opc1
=
(
inst
>>
21
)
&
0x07
;
WORD
opc1
=
(
inst
>>
21
)
&
0x07
;
...
@@ -842,8 +892,8 @@ static const struct inst_arm tbl_thumb32[] = {
...
@@ -842,8 +892,8 @@ static const struct inst_arm tbl_thumb32[] = {
{
0xff8000c0
,
0xfb000000
,
thumb2_disasm_mul
},
{
0xff8000c0
,
0xfb000000
,
thumb2_disasm_mul
},
{
0xff8000f0
,
0xfb800000
,
thumb2_disasm_longmuldiv
},
{
0xff8000f0
,
0xfb800000
,
thumb2_disasm_longmuldiv
},
{
0xff8000f0
,
0xfb8000f0
,
thumb2_disasm_longmuldiv
},
{
0xff8000f0
,
0xfb8000f0
,
thumb2_disasm_longmuldiv
},
{
0x
ef100010
,
0xee100010
,
thumb2_disasm_coprocmov1
},
{
0x
ff700000
,
0xf8500000
,
thumb2_disasm_ldrword
},
{
0xef
1
00010
,
0xee000010
,
thumb2_disasm_coprocmov1
},
{
0xef
0
00010
,
0xee000010
,
thumb2_disasm_coprocmov1
},
{
0x00000000
,
0x00000000
,
NULL
}
{
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