x86 instruction groups: Add SYSEXIT and SYSRET to the X86_GRP_IRET group
This commit is contained in:
parent
a19d3f0b60
commit
368c45b4c6
|
@ -16866,25 +16866,25 @@ static insn_map insns[] = { // full x86 instructions
|
||||||
{
|
{
|
||||||
X86_SYSEXIT, X86_INS_SYSEXIT,
|
X86_SYSEXIT, X86_INS_SYSEXIT,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
X86_SYSEXIT64, X86_INS_SYSEXIT,
|
X86_SYSEXIT64, X86_INS_SYSEXIT,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
X86_SYSRET, X86_INS_SYSRET,
|
X86_SYSRET, X86_INS_SYSRET,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
X86_SYSRET64, X86_INS_SYSRET,
|
X86_SYSRET64, X86_INS_SYSRET,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -40625,25 +40625,25 @@ static insn_map insns[] = { // reduce x86 instructions
|
||||||
{
|
{
|
||||||
X86_SYSEXIT, X86_INS_SYSEXIT,
|
X86_SYSEXIT, X86_INS_SYSEXIT,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
X86_SYSEXIT64, X86_INS_SYSEXIT,
|
X86_SYSEXIT64, X86_INS_SYSEXIT,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
X86_SYSRET, X86_INS_SYSRET,
|
X86_SYSRET, X86_INS_SYSRET,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
X86_SYSRET64, X86_INS_SYSRET,
|
X86_SYSRET64, X86_INS_SYSRET,
|
||||||
#ifndef CAPSTONE_DIET
|
#ifndef CAPSTONE_DIET
|
||||||
{ 0 }, { 0 }, { X86_GRP_MODE64, 0 }, 0, 0
|
{ 0 }, { 0 }, { X86_GRP_MODE64, X86_GRP_IRET, 0 }, 0, 0
|
||||||
#endif
|
#endif
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue