Lines Matching defs:instr
282 enum microblaze_instr instr; member
584 #define get_field_rd(instr) ((instr & RD_MASK) >> RD_LOW) argument
585 #define get_field_r1(instr) ((instr & RA_MASK) >> RA_LOW) argument
586 #define get_field_r2(instr) ((instr & RB_MASK) >> RB_LOW) argument
587 #define get_field_rfsl(instr) (instr & RFSL_MASK) argument
588 #define get_field_imm(instr) ((int16_t)instr) argument
589 #define get_field_imm5(instr) ((int)instr & IMM5_MASK) argument
590 #define get_field_imm15(instr) ((int)instr & IMM15_MASK) argument
592 #define get_int_field_imm(instr) ((instr & IMM_MASK) >> IMM_LOW) argument
593 #define get_int_field_r1(instr) ((instr & RA_MASK) >> RA_LOW) argument
595 static int get_field_special(long instr, const struct op_code_struct *op) in get_field_special()