Lines Matching refs:cat6
1092 cat6_typed: '.' T_UNTYPED { instr->cat6.typed = 0; }
1093 | '.' T_TYPED { instr->cat6.typed = 1; }
1095 cat6_dim: '.' T_1D { instr->cat6.d = 1; }
1096 | '.' T_2D { instr->cat6.d = 2; }
1097 | '.' T_3D { instr->cat6.d = 3; }
1098 | '.' T_4D { instr->cat6.d = 4; }
1100 cat6_type: '.' type { instr->cat6.type = $2; }
1104 cat6_dst_offset: offset { instr->cat6.dst_offset = $1; }
1107 cat6_immed: integer { instr->cat6.iim_val = $1; }
1204 | '.' T_BASE { instr->flags |= IR3_INSTR_B; instr->cat6.base = $2; }
1238 … T_OFFSET '.' cat6_immed '.' cat6_bindless_mode dst_reg { instr->cat6.d = $1; }
1242 instr->cat6.type = TYPE_U32;