x86 instruction groups: Add SYSEXIT and SYSRET to the X86_GRP_IRET group

This commit is contained in:
Jay Oster 2014-06-04 00:08:46 -07:00
parent a19d3f0b60
commit 368c45b4c6
1 changed files with 8 additions and 8 deletions

View File

@ -16866,25 +16866,25 @@ static insn_map insns[] = { // full x86 instructions
{
X86_SYSEXIT, X86_INS_SYSEXIT,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
#endif
},
{
X86_SYSEXIT64, X86_INS_SYSEXIT,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
#endif
},
{
X86_SYSRET, X86_INS_SYSRET,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
#endif
},
{
X86_SYSRET64, X86_INS_SYSRET,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
#endif
},
{
@ -40625,25 +40625,25 @@ static insn_map insns[] = { // reduce x86 instructions
{
X86_SYSEXIT, X86_INS_SYSEXIT,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
#endif
},
{
X86_SYSEXIT64, X86_INS_SYSEXIT,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
#endif
},
{
X86_SYSRET, X86_INS_SYSRET,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
#endif
},
{
X86_SYSRET64, X86_INS_SYSRET,
#ifndef CAPSTONE_DIET
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
#endif
},
{