struct ir3_info *info)
{
struct ir3_register *dst = instr->regs[0];
- struct ir3_register *src1 = instr->regs[1];
- struct ir3_register *src2 = instr->regs[2];
- struct ir3_register *src3 = instr->regs[3];
+ /* To simplify things when there could be zero, one, or two args other
+ * than tex/sampler idx, we use the first src reg in the ir to hold
+ * samp_tex hvec2:
+ */
+ struct ir3_register *src1 = instr->regs[2];
+ struct ir3_register *src2 = instr->regs[3];
instr_cat5_t *cat5 = ptr;
iassert_type(dst, type_size(instr->cat5.type) == 32)
assume(src1 || !src2);
- assume(src2 || !src3);
if (src1) {
cat5->full = ! (src1->flags & IR3_REG_HALF);
}
if (instr->flags & IR3_INSTR_S2EN) {
+ struct ir3_register *samp_tex = instr->regs[1];
if (src2) {
iassert(!((src1->flags ^ src2->flags) & IR3_REG_HALF));
cat5->s2en.src2 = reg(src2, info, instr->repeat, IR3_REG_HALF);
}
- if (src3) {
- iassert(src3->flags & IR3_REG_HALF);
- cat5->s2en.src3 = reg(src3, info, instr->repeat, IR3_REG_HALF);
- }
+ iassert(samp_tex->flags & IR3_REG_HALF);
+ cat5->s2en.src3 = reg(samp_tex, info, instr->repeat, IR3_REG_HALF);
iassert(!(instr->cat5.samp | instr->cat5.tex));
} else {
- iassert(!src3);
if (src2) {
iassert(!((src1->flags ^ src2->flags) & IR3_REG_HALF));
cat5->norm.src2 = reg(src2, info, instr->repeat, IR3_REG_HALF);
sam = ir3_instr_create(block, opc);
sam->flags |= flags;
ir3_reg_create(sam, 0, 0)->wrmask = wrmask;
+ // temporary step, extra dummy src which will become the
+ // hvec2(samp, tex) argument:
+ ir3_reg_create(sam, 0, 0);
if (src0) {
reg = ir3_reg_create(sam, 0, IR3_REG_SSA);
reg->wrmask = (1 << (src0->regs_count - 1)) - 1;