mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-12-12 15:56:43 +00:00
Add name to relative branch group in supported architectures. (#982)
This commit is contained in:
parent
27f03c1b5d
commit
9f6b28cc0b
@ -836,6 +836,7 @@ static name_map group_name_maps[] = {
|
|||||||
{ ARM64_GRP_RET, "return" },
|
{ ARM64_GRP_RET, "return" },
|
||||||
{ ARM64_GRP_PRIVILEGE, "privilege" },
|
{ ARM64_GRP_PRIVILEGE, "privilege" },
|
||||||
{ ARM64_GRP_INT, "int" },
|
{ ARM64_GRP_INT, "int" },
|
||||||
|
{ ARM64_GRP_BRANCH_RELATIVE, "branch_relative" },
|
||||||
|
|
||||||
// architecture-specific groups
|
// architecture-specific groups
|
||||||
{ ARM64_GRP_CRYPTO, "crypto" },
|
{ ARM64_GRP_CRYPTO, "crypto" },
|
||||||
|
@ -772,6 +772,7 @@ static name_map group_name_maps[] = {
|
|||||||
{ ARM_GRP_CALL, "call" },
|
{ ARM_GRP_CALL, "call" },
|
||||||
{ ARM_GRP_INT, "int" },
|
{ ARM_GRP_INT, "int" },
|
||||||
{ ARM_GRP_PRIVILEGE, "privilege" },
|
{ ARM_GRP_PRIVILEGE, "privilege" },
|
||||||
|
{ ARM_GRP_BRANCH_RELATIVE, "branch_relative" },
|
||||||
|
|
||||||
// architecture-specific groups
|
// architecture-specific groups
|
||||||
{ ARM_GRP_CRYPTO, "crypto" },
|
{ ARM_GRP_CRYPTO, "crypto" },
|
||||||
|
@ -350,6 +350,7 @@ static name_map group_name_maps[] = {
|
|||||||
{ M68K_GRP_JUMP, "jump" },
|
{ M68K_GRP_JUMP, "jump" },
|
||||||
{ M68K_GRP_RET , "ret" },
|
{ M68K_GRP_RET , "ret" },
|
||||||
{ M68K_GRP_IRET, "iret" },
|
{ M68K_GRP_IRET, "iret" },
|
||||||
|
{ M68K_GRP_BRANCH_RELATIVE, "branch_relative" },
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -907,6 +907,7 @@ static name_map group_name_maps[] = {
|
|||||||
{ MIPS_GRP_INT, "int" },
|
{ MIPS_GRP_INT, "int" },
|
||||||
{ MIPS_GRP_IRET, "iret" },
|
{ MIPS_GRP_IRET, "iret" },
|
||||||
{ MIPS_GRP_PRIVILEGE, "privileged" },
|
{ MIPS_GRP_PRIVILEGE, "privileged" },
|
||||||
|
{ MIPS_GRP_BRANCH_RELATIVE, "branch_relative" },
|
||||||
|
|
||||||
// architecture-specific groups
|
// architecture-specific groups
|
||||||
{ MIPS_GRP_BITCOUNT, "bitcount" },
|
{ MIPS_GRP_BITCOUNT, "bitcount" },
|
||||||
|
@ -2377,6 +2377,7 @@ static name_map group_name_maps[] = {
|
|||||||
{ X86_GRP_INT, "int" },
|
{ X86_GRP_INT, "int" },
|
||||||
{ X86_GRP_IRET, "iret" },
|
{ X86_GRP_IRET, "iret" },
|
||||||
{ X86_GRP_PRIVILEGE, "privilege" },
|
{ X86_GRP_PRIVILEGE, "privilege" },
|
||||||
|
{ X86_GRP_BRANCH_RELATIVE, "branch_relative" },
|
||||||
|
|
||||||
// architecture-specific groups
|
// architecture-specific groups
|
||||||
{ X86_GRP_VM, "vm" },
|
{ X86_GRP_VM, "vm" },
|
||||||
|
Loading…
Reference in New Issue
Block a user