2011-03-24 Mike Frysinger <vapier@gentoo.org>
+ * config/bfin-parse.y (dual 32bit add/sub): Return yyerror when dest
+ reg $1 is the same as dest reg $7.
+ (quad 16bit add/sub): Return yyerror when dest reg $1 is the same as
+ dest reg $7.
+
+2011-03-24 Mike Frysinger <vapier@gentoo.org>
+
* config/bfin-parse.y (check_macfuncs): Clarify error message when
P is mismatched. Check destination regno are off by one when P is
set, or are equal when P is not set.
/* bfin-parse.y ADI Blackfin parser
- Copyright 2005, 2006, 2007, 2008, 2009, 2010
+ Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011
Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
| REG ASSIGN REG_A PLUS REG_A COMMA REG ASSIGN REG_A MINUS REG_A amod1
{
+ if (REG_SAME ($1, $7))
+ return yyerror ("Resource conflict in dest reg");
+
if (IS_DREG ($1) && IS_DREG ($7) && !REG_SAME ($3, $5)
&& IS_A1 ($9) && !IS_A1 ($11))
{
if (!IS_DREG ($1) || !IS_DREG ($3) || !IS_DREG ($5) || !IS_DREG ($7))
return yyerror ("Dregs expected");
+ if (REG_SAME ($1, $7))
+ return yyerror ("Resource conflict in dest reg");
if ($4.r0 == 1 && $10.r0 == 2)
{
2011-03-24 Mike Frysinger <vapier@gentoo.org>
+ * gas/bfin/expected_errors.s: Add invalid vector add/sub insn tests.
+ * gas/bfin/expected_errors.l: Add new error messages.
+
+2011-03-24 Mike Frysinger <vapier@gentoo.org>
+
* gas/bfin/16bit_illegals.d, gas/bfin/16bit_illegals.s: Delete.
* gas/bfin/allinsn16.d, gas/bfin/allinsn16.s: New files.
* gas/bfin/bfin.exp: Change 16bit_illegals to allinsn16.
.*:120: Error: Destination Dregs \(full\) must differ by one.
.*:121: Error: Destination Dregs \(half\) must match.
.*:122: Error: Destination Dreg sizes \(full or half\) must match.
+.*:124: Error: Resource conflict in dest reg.
+.*:125: Error: Differing source registers.
+.*:126: Error: Resource conflict in dest reg.
+.*:127: Error: Differing source registers.
+.*:129: Error: Register mismatch.
R0 = A0, R3 = A1;
R0.L = A0, R1.H = A1;
R0 = A0, R1.H = A1;
+
+ R0 = R1 +|+ R2, R0 = R1 -|- R2;
+ R0 = R4 +|+ R5, R1 = R6 -|- R7;
+ R1 = R3 +|- R7, R1 = R3 -|+ R7;
+ R7 = R3 +|- R4, R1 = R1 -|+ R2;
+
+ R0 = R3 + R4, R1 = R5 - R6;