Lines Matching refs:flags
96 #define M_SI(insn,op) ((((op)->flags & TIC80_OPERAND_M_SI) != 0) && ((insn) & (1 << 17)))
97 #define M_LI(insn,op) ((((op)->flags & TIC80_OPERAND_M_LI) != 0) && ((insn) & (1 << 15)))
98 #define R_SCALED(insn,op) ((((op)->flags & TIC80_OPERAND_SCALED) != 0) && ((insn) & (1 << 11)))
107 if ((operand->flags & TIC80_OPERAND_GPR) != 0) in print_operand()
115 else if ((operand->flags & TIC80_OPERAND_FPA) != 0) in print_operand()
118 else if ((operand->flags & TIC80_OPERAND_PCREL) != 0) in print_operand()
121 else if ((operand->flags & TIC80_OPERAND_BASEREL) != 0) in print_operand()
124 else if ((operand->flags & TIC80_OPERAND_BITNUM) != 0) in print_operand()
127 else if ((operand->flags & TIC80_OPERAND_CC) != 0) in print_operand()
130 else if ((operand->flags & TIC80_OPERAND_CR) != 0) in print_operand()
133 else if ((operand->flags & TIC80_OPERAND_FLOAT) != 0) in print_operand()
136 else if ((operand->flags & TIC80_OPERAND_BITFIELD)) in print_operand()
218 if ((operand->flags & TIC80_OPERAND_SIGNED) != 0 in print_one_instruction()
226 if ((operand->flags & TIC80_OPERAND_PARENS) == 0) in print_one_instruction()
289 if (opcode->flags & TIC80_VECTOR && vec_opcode == NULL && TWO_INSN (insn)) in print_instruction()