From: Szabolcs Nagy Date: Fri, 11 Nov 2016 10:22:56 +0000 (+0000) Subject: [AArch64] Increase max_num_aliases in aarch64-gen X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d731f6949e2b0099cfbe0cf608d60a52a66d354;p=binutils-gdb.git [AArch64] Increase max_num_aliases in aarch64-gen Some ARMv8.3 pointer authentication instructions are encoded as HINT aliases, so to allow more instruction aliases in the generator, max_num_aliases is increased from 16 to 32. opcodes/ 2016-11-11 Szabolcs Nagy * aarch64-gen.c (find_alias_opcode): Increase max_num_aliases to 32. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 53f2a94efb3..23242e0d2b7 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2016-11-11 Szabolcs Nagy + + * aarch64-gen.c (find_alias_opcode): Increase max_num_aliases to 32. + 2016-11-09 H.J. Lu PR binutils/20799 diff --git a/opcodes/aarch64-gen.c b/opcodes/aarch64-gen.c index a62f6c8e008..68b6e14afd2 100644 --- a/opcodes/aarch64-gen.c +++ b/opcodes/aarch64-gen.c @@ -687,8 +687,8 @@ opcode_node * find_alias_opcode (const aarch64_opcode *opcode) { int i; - /* Assume maximum of 16 disassemble preference candidates. */ - const int max_num_aliases = 16; + /* Assume maximum of 32 disassemble preference candidates. */ + const int max_num_aliases = 32; const aarch64_opcode *ent; const aarch64_opcode *preferred[max_num_aliases + 1]; opcode_node head, **next;