i965: Add brw_barrier to emit a Gateway Barrier SEND

This will be used to implement the Gateway Barrier SEND needed to implement
the barrier function.

v2:
 * notify => gateway_notify (Ken)
 * combine short lines of brw_barrier proto/decl (mattst88)

Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
This commit is contained in:
Jordan Justen
2014-11-04 18:11:37 -08:00
parent 0d250cc210
commit 7953c00073
2 changed files with 32 additions and 0 deletions
+2
View File
@@ -361,6 +361,8 @@ brw_jump_scale(const struct brw_device_info *devinfo)
return 1;
}
void brw_barrier(struct brw_codegen *p, struct brw_reg src);
/* If/else/endif. Works by manipulating the execution flags on each
* channel.
*/
+30
View File
@@ -3408,6 +3408,36 @@ void brw_shader_time_add(struct brw_codegen *p,
}
/**
* Emit the SEND message for a barrier
*/
void
brw_barrier(struct brw_codegen *p, struct brw_reg src)
{
const struct brw_device_info *devinfo = p->devinfo;
struct brw_inst *inst;
assert(devinfo->gen >= 7);
inst = next_insn(p, BRW_OPCODE_SEND);
brw_set_dest(p, inst, brw_null_reg());
brw_set_src0(p, inst, src);
brw_set_src1(p, inst, brw_null_reg());
brw_set_message_descriptor(p, inst, BRW_SFID_MESSAGE_GATEWAY,
1 /* msg_length */,
0 /* response_length */,
false /* header_present */,
false /* end_of_thread */);
brw_inst_set_gateway_notify(devinfo, inst, 1);
brw_inst_set_gateway_subfuncid(devinfo, inst,
BRW_MESSAGE_GATEWAY_SFID_BARRIER_MSG);
brw_inst_set_mask_control(devinfo, inst, BRW_MASK_DISABLE);
}
/**
* Emit the wait instruction for a barrier
*/