Lines Matching refs:cat6
1008 cat6_typed: '.' T_UNTYPED { instr->cat6.typed = 0; }
1009 | '.' T_TYPED { instr->cat6.typed = 1; }
1011 cat6_dim: '.' T_1D { instr->cat6.d = 1; }
1012 | '.' T_2D { instr->cat6.d = 2; }
1013 | '.' T_3D { instr->cat6.d = 3; }
1014 | '.' T_4D { instr->cat6.d = 4; }
1016 cat6_type: '.' type { instr->cat6.type = $2; }
1020 cat6_dst_offset: offset { instr->cat6.dst_offset = $1; }
1023 cat6_immed: integer { instr->cat6.iim_val = $1; }
1094 | '.' T_BASE { instr->flags |= IR3_INSTR_B; instr->cat6.base = $2; }
1127 instr->cat6.d = $3;
1128 instr->cat6.type = TYPE_U32;