i965/fs: Migrate CS terminate message to the IR builder.

Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Francisco Jerez 2015-06-03 21:08:43 +03:00
parent e522f12f03
commit d5cb2e5137

View file

@ -2018,11 +2018,10 @@ fs_visitor::emit_cs_terminate()
*/
struct brw_reg g0 = retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD);
fs_reg payload = fs_reg(GRF, alloc.allocate(1), BRW_REGISTER_TYPE_UD);
fs_inst *inst = emit(MOV(payload, g0));
inst->force_writemask_all = true;
bld.exec_all().MOV(payload, g0);
/* Send a message to the thread spawner to terminate the thread. */
inst = emit(CS_OPCODE_CS_TERMINATE, reg_undef, payload);
fs_inst *inst = bld.emit(CS_OPCODE_CS_TERMINATE, reg_undef, payload);
inst->eot = true;
}