Home | History | Annotate | Download | only in opcodes

Lines Matching full:alias

142       /* F_PSEUDO needs to be used together with F_ALIAS to indicate an alias
146 /* Skip alias (inc. pseudo) opcode. */
448 printf ("/* Lookup opcode WORD in the opcode table. N.B. all alias\n");
561 TABLE points to the alias info table, while NUM indicates the number of
585 const opcode_node *alias = real->next;
586 for (; alias; alias = alias->next)
587 printf (" case %u:\t/* %s */\n", real_index (alias->index),
588 get_aarch64_opcode (alias)->name);
602 TABLE points to the alias info table, while NUM indicates the number of
617 printf (" /* Use the index as the key to locate the alias opcode. */\n");
641 TABLE points to the alias info table, while NUM indicates the number of
686 /* Given OPCODE, establish and return a link list of alias nodes in the
705 /* The mask of an alias opcode must be equal to or a super-set (i.e.
729 /* There must be at least one alias. */
767 const aarch64_opcode *alias = preferred [i];
771 printf ("add %s.\n", alias->name);
773 node->index = alias - aarch64_opcode_table;
784 /* Create and return alias information.
785 Return the address of the created alias info table; return the number
795 /* Calculate the total number of opcodes that have alias. */
802 /* Assert the alias relationship be flat-structured to keep
813 /* The array of real opcodes that have alias(es). */
816 /* For each opcode, establish a list of alias nodes in a preferred
834 alias information. */
1285 /* Generate alias opcode handling for the assembler or the disassembler. */