Lines Matching refs:emit

249       emit(const instruction &inst) const
251 return emit(new(shader->mem_ctx) instruction(inst));
258 emit(enum opcode opcode) const
260 return emit(instruction(opcode, dispatch_width()));
267 emit(enum opcode opcode, const dst_reg &dst) const
269 return emit(instruction(opcode, dispatch_width(), dst));
276 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0) const
286 return emit(instruction(opcode, dispatch_width(), dst,
290 return emit(instruction(opcode, dispatch_width(), dst, src0));
298 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0,
305 return emit(instruction(opcode, dispatch_width(), dst,
310 return emit(instruction(opcode, dispatch_width(), dst,
320 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0,
328 return emit(instruction(opcode, dispatch_width(), dst,
334 return emit(instruction(opcode, dispatch_width(), dst,
344 emit(enum opcode opcode, const dst_reg &dst, const src_reg srcs[],
347 /* Use the emit() methods for specific operand counts to ensure that
351 return emit(opcode, dst, srcs[0], srcs[1]);
353 return emit(opcode, dst, srcs[0], srcs[1], srcs[2]);
355 return emit(instruction(opcode, dispatch_width(), dst, srcs, n));
363 emit(instruction *inst) const
418 ubld.emit(SHADER_OPCODE_FIND_LIVE_CHANNEL, chan_index);
419 ubld.emit(SHADER_OPCODE_BROADCAST, dst, src, component(chan_index, 0));
454 set_condmod(mod, emit(opcode, right, left, right));
501 set_condmod(mod, emit(opcode, right, left, right));
576 return emit(BRW_OPCODE_##op, dst, src0); \
583 return emit(BRW_OPCODE_##op, dst, src0, src1); \
590 instruction *inst = emit(BRW_OPCODE_##op, dst, src0, src1); \
600 return emit(BRW_OPCODE_##op, dst, src0, src1, src2); \
677 emit(BRW_OPCODE_CMP, retype(dst, src0.type),
702 emit(BRW_OPCODE_CMPN, retype(dst, src0.type),
713 return set_predicate(predicate, emit(BRW_OPCODE_IF));
730 emit(BRW_OPCODE_CSEL,
748 return emit(BRW_OPCODE_LRP, dst, a, y, x);
770 instruction *inst = emit(SHADER_OPCODE_LOAD_PAYLOAD, dst, src, sources);
785 instruction *inst = emit(SHADER_OPCODE_UNDEF,