From 160feafa2dc3616a0731f600919056ba62581bf6 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Mon, 29 Apr 2013 10:58:26 -0700 Subject: assembler: Add support for the SENDC instruction. Reviewed-by: Damien Lespiau --- assembler/gram.y | 20 ++++++++++++-------- assembler/lex.l | 1 + 2 files changed, 13 insertions(+), 8 deletions(-) (limited to 'assembler') diff --git a/assembler/gram.y b/assembler/gram.y index 50d71d14..09f21f1b 100644 --- a/assembler/gram.y +++ b/assembler/gram.y @@ -440,7 +440,7 @@ static void resolve_subnr(struct brw_reg *reg) %token MUL MAC MACH LINE SAD2 SADA2 DP4 DPH DP3 DP2 %token AVG ADD SEL AND OR XOR SHR SHL ASR CMP CMPN PLN %token ADDC BFI1 BFREV CBIT F16TO32 F32TO16 FBH FBL -%token SEND NOP JMPI IF IFF WHILE ELSE BREAK CONT HALT MSAVE +%token SEND SENDC NOP JMPI IF IFF WHILE ELSE BREAK CONT HALT MSAVE %token PUSH MREST POP WAIT DO ENDIF ILLEGAL %token MATH_INST %token MAD LRP BFE BFI2 SUBB @@ -494,6 +494,7 @@ static void resolve_subnr(struct brw_reg *reg) %type instoption %type unaryop binaryop binaryaccop breakop %type trinaryop +%type sendop %type conditionalmodifier %type predicate %type instoptions instoption_list @@ -1099,7 +1100,10 @@ trinaryinstruction: } ; -sendinstruction: predicate SEND execsize exp post_dst payload msgtarget +sendop: SEND | SENDC +; + +sendinstruction: predicate sendop execsize exp post_dst payload msgtarget MSGLEN exp RETURNLEN exp instoptions { /* Send instructions are messy. The first argument is the @@ -1163,7 +1167,7 @@ sendinstruction: predicate SEND execsize exp post_dst payload msgtarget GEN(&$$)->bits3.generic.end_of_thread = $12.end_of_thread; } } - | predicate SEND execsize dst sendleadreg payload directsrcoperand instoptions + | predicate sendop execsize dst sendleadreg payload directsrcoperand instoptions { memset(&$$, 0, sizeof($$)); set_instruction_opcode(&$$, $2); @@ -1181,7 +1185,7 @@ sendinstruction: predicate SEND execsize exp post_dst payload msgtarget YYERROR; } - | predicate SEND execsize dst sendleadreg payload imm32reg instoptions + | predicate sendop execsize dst sendleadreg payload imm32reg instoptions { if ($7.reg.type != BRW_REGISTER_TYPE_UD && $7.reg.type != BRW_REGISTER_TYPE_D && @@ -1202,7 +1206,7 @@ sendinstruction: predicate SEND execsize exp post_dst payload msgtarget if (set_instruction_src1(&$$, &$7, &@7) != 0) YYERROR; } - | predicate SEND execsize dst sendleadreg sndopr imm32reg instoptions + | predicate sendop execsize dst sendleadreg sndopr imm32reg instoptions { struct src_operand src0; @@ -1243,7 +1247,7 @@ sendinstruction: predicate SEND execsize exp post_dst payload msgtarget GEN(&$$)->bits3.generic_gen5.end_of_thread = !!($6 & EX_DESC_EOT_MASK); } - | predicate SEND execsize dst sendleadreg sndopr directsrcoperand instoptions + | predicate sendop execsize dst sendleadreg sndopr directsrcoperand instoptions { struct src_operand src0; @@ -1284,7 +1288,7 @@ sendinstruction: predicate SEND execsize exp post_dst payload msgtarget set_instruction_src1(&$$, &$7, &@7); GEN(&$$)->bits3.generic_gen5.end_of_thread = !!($6 & EX_DESC_EOT_MASK); } - | predicate SEND execsize dst sendleadreg payload sndopr imm32reg instoptions + | predicate sendop execsize dst sendleadreg payload sndopr imm32reg instoptions { if ($8.reg.type != BRW_REGISTER_TYPE_UD && $8.reg.type != BRW_REGISTER_TYPE_D && @@ -1310,7 +1314,7 @@ sendinstruction: predicate SEND execsize exp post_dst payload msgtarget GEN(&$$)->bits3.generic_gen5.end_of_thread = !!($7 & EX_DESC_EOT_MASK); } } - | predicate SEND execsize dst sendleadreg payload exp directsrcoperand instoptions + | predicate sendop execsize dst sendleadreg payload exp directsrcoperand instoptions { memset(&$$, 0, sizeof($$)); set_instruction_opcode(&$$, $2); diff --git a/assembler/lex.l b/assembler/lex.l index 769d98b1..4f1f9616 100644 --- a/assembler/lex.l +++ b/assembler/lex.l @@ -129,6 +129,7 @@ yylval.integer = BRW_CHANNEL_W; "subb" { yylval.integer = BRW_OPCODE_SUBB; return SUBB; } "send" { yylval.integer = BRW_OPCODE_SEND; return SEND; } +"sendc" { yylval.integer = BRW_OPCODE_SENDC; return SENDC; } "nop" { yylval.integer = BRW_OPCODE_NOP; return NOP; } "jmpi" { yylval.integer = BRW_OPCODE_JMPI; return JMPI; } "if" { yylval.integer = BRW_OPCODE_IF; return IF; } -- cgit v1.2.3