Lines Matching refs:opcode
508 aarch64_insn opcode; member
601 alias_opcode_p (const aarch64_opcode *opcode) in alias_opcode_p() argument
603 return (opcode->flags & F_ALIAS) ? TRUE : FALSE; in alias_opcode_p()
607 opcode_has_alias (const aarch64_opcode *opcode) in opcode_has_alias() argument
609 return (opcode->flags & F_HAS_ALIAS) ? TRUE : FALSE; in opcode_has_alias()
614 opcode_priority (const aarch64_opcode *opcode) in opcode_priority() argument
616 return (opcode->flags >> 2) & 0x3; in opcode_priority()
620 pseudo_opcode_p (const aarch64_opcode *opcode) in pseudo_opcode_p() argument
622 return (opcode->flags & F_PSEUDO) != 0lu ? TRUE : FALSE; in pseudo_opcode_p()
626 optional_operand_p (const aarch64_opcode *opcode, unsigned int idx) in optional_operand_p() argument
628 return (((opcode->flags >> 12) & 0x7) == idx + 1) in optional_operand_p()
633 get_optional_operand_default_value (const aarch64_opcode *opcode) in get_optional_operand_default_value() argument
635 return (opcode->flags >> 15) & 0x1f; in get_optional_operand_default_value()
639 get_opcode_dependent_value (const aarch64_opcode *opcode) in get_opcode_dependent_value() argument
641 return (opcode->flags >> 24) & 0x7; in get_opcode_dependent_value()
645 opcode_has_special_coder (const aarch64_opcode *opcode) in opcode_has_special_coder() argument
647 return (opcode->flags & (F_SF | F_LSE_SZ | F_SIZEQ | F_FPTYPE | F_SSIZE | F_T in opcode_has_special_coder()
840 const aarch64_opcode *opcode; member