Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e5b9057b
Commit
e5b9057b
authored
Feb 19, 2018
by
Huw Davies
Committed by
Alexandre Julliard
Feb 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Fix the operand order of some XMM instructions.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ec2bcdf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
30 deletions
+30
-30
db_disasm.c
programs/winedbg/db_disasm.c
+15
-15
db_disasm64.c
programs/winedbg/db_disasm64.c
+15
-15
No files found.
programs/winedbg/db_disasm.c
View file @
e5b9057b
...
@@ -301,23 +301,23 @@ static const struct inst db_inst_0f4x[] = {
...
@@ -301,23 +301,23 @@ static const struct inst db_inst_0f4x[] = {
};
};
static
const
struct
inst
db_inst_0f5x
[]
=
{
static
const
struct
inst
db_inst_0f5x
[]
=
{
/*50*/
{
"movmskps"
,
TRUE
,
NONE
,
op2
(
E
,
XMM
),
0
},
/*50*/
{
"movmskps"
,
TRUE
,
NONE
,
op2
(
E
XMM
,
R
),
0
},
/*51*/
{
"sqrtps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*51*/
{
"sqrtps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*52*/
{
"rsqrtps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*52*/
{
"rsqrtps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*53*/
{
"rcpps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*53*/
{
"rcpps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*54*/
{
"andps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*54*/
{
"andps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*55*/
{
"andnps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*55*/
{
"andnps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*56*/
{
"orps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*56*/
{
"orps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*57*/
{
"xorps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*57*/
{
"xorps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*58*/
{
"addps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*58*/
{
"addps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*59*/
{
"mulps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*59*/
{
"mulps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5a*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5a*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5b*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5b*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5c*/
{
"subps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5c*/
{
"subps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5d*/
{
"minps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5d*/
{
"minps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5e*/
{
"divps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5e*/
{
"divps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5f*/
{
"maxps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5f*/
{
"maxps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
};
};
static
const
struct
inst
db_inst_0f6x
[]
=
{
static
const
struct
inst
db_inst_0f6x
[]
=
{
...
...
programs/winedbg/db_disasm64.c
View file @
e5b9057b
...
@@ -351,23 +351,23 @@ static const struct inst db_inst_0f4x[] = {
...
@@ -351,23 +351,23 @@ static const struct inst db_inst_0f4x[] = {
};
};
static
const
struct
inst
db_inst_0f5x
[]
=
{
static
const
struct
inst
db_inst_0f5x
[]
=
{
/*50*/
{
"movmskps"
,
TRUE
,
NONE
,
op2
(
E
,
XMM
),
0
},
/*50*/
{
"movmskps"
,
TRUE
,
NONE
,
op2
(
E
XMM
,
R
),
0
},
/*51*/
{
"sqrtps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*51*/
{
"sqrtps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*52*/
{
"rsqrtps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*52*/
{
"rsqrtps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*53*/
{
"rcpps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*53*/
{
"rcpps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*54*/
{
"andps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*54*/
{
"andps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*55*/
{
"andnps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*55*/
{
"andnps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*56*/
{
"orps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*56*/
{
"orps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*57*/
{
"xorps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*57*/
{
"xorps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*58*/
{
"addps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*58*/
{
"addps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*59*/
{
"mulps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*59*/
{
"mulps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5a*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5a*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5b*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5b*/
{
"(bad)"
,
FALSE
,
NONE
,
0
,
0
},
/*5c*/
{
"subps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5c*/
{
"subps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5d*/
{
"minps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5d*/
{
"minps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5e*/
{
"divps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5e*/
{
"divps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
/*5f*/
{
"maxps"
,
TRUE
,
NONE
,
op2
(
XMM
,
E
XMM
),
0
},
/*5f*/
{
"maxps"
,
TRUE
,
NONE
,
op2
(
EXMM
,
XMM
),
0
},
};
};
static
const
struct
inst
db_inst_0f6x
[]
=
{
static
const
struct
inst
db_inst_0f6x
[]
=
{
...
...
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