Home | History | Annotate | Download | only in opcodes

Lines Matching defs:alias

143       /* F_PSEUDO needs to be used together with F_ALIAS to indicate an alias
147 /* Skip alias (inc. pseudo) opcode. */
449 printf ("/* Lookup opcode WORD in the opcode table. N.B. all alias\n");
562 TABLE points to the alias info table, while NUM indicates the number of
586 const opcode_node *alias = real->next;
587 for (; alias; alias = alias->next)
588 printf (" case %u:\t/* %s */\n", real_index (alias->index),
589 get_aarch64_opcode (alias)->name);
603 TABLE points to the alias info table, while NUM indicates the number of
618 printf (" /* Use the index as the key to locate the alias opcode. */\n");
642 TABLE points to the alias info table, while NUM indicates the number of
687 /* Given OPCODE, establish and return a link list of alias nodes in the
708 /* The mask of an alias opcode must be equal to or a super-set (i.e.
732 /* There must be at least one alias. */
770 const aarch64_opcode *alias = preferred [i];
774 printf ("add %s.\n", alias->name);
776 node->index = alias - aarch64_opcode_table;
787 /* Create and return alias information.
788 Return the address of the created alias info table; return the number
798 /* Calculate the total number of opcodes that have alias. */
805 /* Assert the alias relationship be flat-structured to keep
816 /* The array of real opcodes that have alias(es). */
819 /* For each opcode, establish a list of alias nodes in a preferred
837 alias information. */
1288 /* Generate alias opcode handling for the assembler or the disassembler. */