From 0e57dbc55cd7f42a2298dbaa4e18fe97a85fd0d2 Mon Sep 17 00:00:00 2001 From: Francisco Jerez Date: Tue, 5 Feb 2019 20:53:06 -0800 Subject: intel/ir/gen12: Add SYNC hardware instruction. Reviewed-by: Caio Marcelo de Oliveira Filho Reviewed-by: Kenneth Graunke --- src/intel/compiler/brw_eu.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/intel/compiler/brw_eu.cpp') diff --git a/src/intel/compiler/brw_eu.cpp b/src/intel/compiler/brw_eu.cpp index a8c3e55f65f..54c8511ae8d 100644 --- a/src/intel/compiler/brw_eu.cpp +++ b/src/intel/compiler/brw_eu.cpp @@ -467,6 +467,7 @@ enum gen { static const struct opcode_desc opcode_descs[] = { /* IR, HW, name, nsrc, ndst, gens */ { BRW_OPCODE_ILLEGAL, 0, "illegal", 0, 0, GEN_ALL }, + { BRW_OPCODE_SYNC, 1, "sync", 1, 0, GEN_GE(GEN12) }, { BRW_OPCODE_MOV, 1, "mov", 1, 1, GEN_LT(GEN12) }, { BRW_OPCODE_MOV, 97, "mov", 1, 1, GEN_GE(GEN12) }, { BRW_OPCODE_SEL, 2, "sel", 2, 1, GEN_LT(GEN12) }, -- cgit v1.2.3