1 /* bfin-parse.y ADI Blackfin parser
2 Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
26 #include "bfin-aux.h" /* Opcode generating auxiliaries. */
28 #include "elf/common.h"
31 #define DSP32ALU(aopcde, HL, dst1, dst0, src0, src1, s, x, aop) \
32 bfin_gen_dsp32alu
(HL
, aopcde
, aop
, s
, x
, dst0
, dst1
, src0
, src1
)
34 #define DSP32MAC(op1, MM, mmod, w1, P, h01, h11, h00, h10, dst, op0, src0, src1, w0) \
35 bfin_gen_dsp32mac
(op1
, MM
, mmod
, w1
, P
, h01
, h11
, h00
, h10
, op0
, \
38 #define DSP32MULT(op1, MM, mmod, w1, P, h01, h11, h00, h10, dst, op0, src0, src1, w0) \
39 bfin_gen_dsp32mult
(op1
, MM
, mmod
, w1
, P
, h01
, h11
, h00
, h10
, op0
, \
42 #define DSP32SHIFT(sopcde, dst0, src0, src1, sop, hls) \
43 bfin_gen_dsp32shift
(sopcde
, dst0
, src0
, src1
, sop
, hls
)
45 #define DSP32SHIFTIMM(sopcde, dst0, immag, src1, sop, hls) \
46 bfin_gen_dsp32shiftimm
(sopcde
, dst0
, immag
, src1
, sop
, hls
)
48 #define LDIMMHALF_R(reg, h, s, z, hword) \
49 bfin_gen_ldimmhalf
(reg
, h
, s
, z
, hword
, 1)
51 #define LDIMMHALF_R5(reg, h, s, z, hword) \
52 bfin_gen_ldimmhalf
(reg
, h
, s
, z
, hword
, 2)
54 #define LDSTIDXI(ptr, reg, w, sz, z, offset) \
55 bfin_gen_ldstidxi
(ptr
, reg
, w
, sz
, z
, offset
)
57 #define LDST(ptr, reg, aop, sz, z, w) \
58 bfin_gen_ldst
(ptr
, reg
, aop
, sz
, z
, w
)
60 #define LDSTII(ptr, reg, offset, w, op) \
61 bfin_gen_ldstii
(ptr
, reg
, offset
, w
, op
)
63 #define DSPLDST(i, m, reg, aop, w) \
64 bfin_gen_dspldst
(i
, reg
, aop
, w
, m
)
66 #define LDSTPMOD(ptr, reg, idx, aop, w) \
67 bfin_gen_ldstpmod
(ptr
, reg
, aop
, w
, idx
)
69 #define LDSTIIFP(offset, reg, w) \
70 bfin_gen_ldstiifp
(reg
, offset
, w
)
72 #define LOGI2OP(dst, src, opc) \
73 bfin_gen_logi2op
(opc
, src
, dst.regno
& CODE_MASK
)
75 #define ALU2OP(dst, src, opc) \
76 bfin_gen_alu2op
(dst
, src
, opc
)
78 #define BRCC(t, b, offset) \
79 bfin_gen_brcc
(t
, b
, offset
)
81 #define UJUMP(offset) \
82 bfin_gen_ujump
(offset
)
84 #define PROGCTRL(prgfunc, poprnd) \
85 bfin_gen_progctrl
(prgfunc
, poprnd
)
87 #define PUSHPOPMULTIPLE(dr, pr, d, p, w) \
88 bfin_gen_pushpopmultiple
(dr
, pr
, d
, p
, w
)
90 #define PUSHPOPREG(reg, w) \
91 bfin_gen_pushpopreg
(reg
, w
)
93 #define CALLA(addr, s) \
94 bfin_gen_calla
(addr
, s
)
96 #define LINKAGE(r, framesize) \
97 bfin_gen_linkage
(r
, framesize
)
99 #define COMPI2OPD(dst, src, op) \
100 bfin_gen_compi2opd
(dst
, src
, op
)
102 #define COMPI2OPP(dst, src, op) \
103 bfin_gen_compi2opp
(dst
, src
, op
)
105 #define DAGMODIK(i, op) \
106 bfin_gen_dagmodik
(i
, op
)
108 #define DAGMODIM(i, m, op, br) \
109 bfin_gen_dagmodim
(i
, m
, op
, br
)
111 #define COMP3OP(dst, src0, src1, opc) \
112 bfin_gen_comp3op
(src0
, src1
, dst
, opc
)
114 #define PTR2OP(dst, src, opc) \
115 bfin_gen_ptr2op
(dst
, src
, opc
)
117 #define CCFLAG(x, y, opc, i, g) \
118 bfin_gen_ccflag
(x
, y
, opc
, i
, g
)
120 #define CCMV(src, dst, t) \
121 bfin_gen_ccmv
(src
, dst
, t
)
123 #define CACTRL(reg, a, op) \
124 bfin_gen_cactrl
(reg
, a
, op
)
126 #define LOOPSETUP(soffset, c, rop, eoffset, reg) \
127 bfin_gen_loopsetup
(soffset
, c
, rop
, eoffset
, reg
)
129 #define HL2(r1, r0) (IS_H (r1) << 1 | IS_H (r0))
130 #define IS_RANGE(bits, expr, sign, mul) \
131 value_match
(expr
, bits
, sign
, mul
, 1)
132 #define IS_URANGE(bits, expr, sign, mul) \
133 value_match
(expr
, bits
, sign
, mul
, 0)
134 #define IS_CONST(expr) (expr->type == Expr_Node_Constant)
135 #define IS_RELOC(expr) (expr->type != Expr_Node_Constant)
136 #define IS_IMM(expr, bits) value_match (expr, bits, 0, 1, 1)
137 #define IS_UIMM(expr, bits) value_match (expr, bits, 0, 1, 0)
139 #define IS_PCREL4(expr) \
140 (value_match
(expr
, 4, 0, 2, 0))
142 #define IS_LPPCREL10(expr) \
143 (value_match
(expr
, 10, 0, 2, 0))
145 #define IS_PCREL10(expr) \
146 (value_match
(expr
, 10, 0, 2, 1))
148 #define IS_PCREL12(expr) \
149 (value_match
(expr
, 12, 0, 2, 1))
151 #define IS_PCREL24(expr) \
152 (value_match
(expr
, 24, 0, 2, 1))
155 static int value_match
(Expr_Node
*, int, int, int, int);
160 static Expr_Node
*binary
(Expr_Op_Type
, Expr_Node
*, Expr_Node
*);
161 static Expr_Node
*unary
(Expr_Op_Type
, Expr_Node
*);
163 static void notethat
(char *, ...
);
165 char *current_inputline
;
167 int yyerror (char *);
169 void error (char *format
, ...
)
172 static char buffer
[2000];
174 va_start
(ap
, format
);
175 vsprintf
(buffer
, format
, ap
);
178 as_bad
("%s", buffer
);
187 else if
(yytext
[0] != ';')
188 error ("%s. Input text was %s.", msg
, yytext
);
196 in_range_p
(Expr_Node
*exp
, int from
, int to
, unsigned int mask
)
198 int val
= EXPR_VALUE
(exp
);
199 if
(exp
->type
!= Expr_Node_Constant
)
201 if
(val
< from || val
> to
)
203 return
(val
& mask
) == 0;
206 extern
int yylex (void);
208 #define imm3(x) EXPR_VALUE (x)
209 #define imm4(x) EXPR_VALUE (x)
210 #define uimm4(x) EXPR_VALUE (x)
211 #define imm5(x) EXPR_VALUE (x)
212 #define uimm5(x) EXPR_VALUE (x)
213 #define imm6(x) EXPR_VALUE (x)
214 #define imm7(x) EXPR_VALUE (x)
215 #define uimm8(x) EXPR_VALUE (x)
216 #define imm16(x) EXPR_VALUE (x)
217 #define uimm16s4(x) ((EXPR_VALUE (x)) >> 2)
218 #define uimm16(x) EXPR_VALUE (x)
220 /* Return true if a value is inside a range. */
221 #define IN_RANGE(x, low, high) \
222 (((EXPR_VALUE
(x
)) >= (low
)) && (EXPR_VALUE
(x
)) <= ((high
)))
224 /* Auxiliary functions. */
227 valid_dreg_pair
(Register
*reg1
, Expr_Node
*reg2
)
229 if
(!IS_DREG
(*reg1
))
231 yyerror ("Dregs expected");
235 if
(reg1
->regno
!= 1 && reg1
->regno
!= 3)
237 yyerror ("Bad register pair");
241 if
(imm7
(reg2
) != reg1
->regno
- 1)
243 yyerror ("Bad register pair");
252 check_multiply_halfregs
(Macfunc
*aa
, Macfunc
*ab
)
254 if
((!REG_EQUAL
(aa
->s0
, ab
->s0
) && !REG_EQUAL
(aa
->s0
, ab
->s1
))
255 ||
(!REG_EQUAL
(aa
->s1
, ab
->s1
) && !REG_EQUAL
(aa
->s1
, ab
->s0
)))
256 return
yyerror ("Source multiplication register mismatch");
262 /* Check mac option. */
265 check_macfunc_option
(Macfunc
*a
, Opt_mode
*opt
)
267 /* Default option is always valid. */
271 if
((a
->w
== 1 && a
->P
== 1
272 && opt
->mod
!= M_FU
&& opt
->mod
!= M_IS
&& opt
->mod
!= M_IU
273 && opt
->mod
!= M_S2RND
&& opt
->mod
!= M_ISS2
)
274 ||
(a
->w
== 1 && a
->P
== 0
275 && opt
->mod
!= M_FU
&& opt
->mod
!= M_IS
&& opt
->mod
!= M_IU
276 && opt
->mod
!= M_T
&& opt
->mod
!= M_TFU
&& opt
->mod
!= M_S2RND
277 && opt
->mod
!= M_ISS2
&& opt
->mod
!= M_IH
)
278 ||
(a
->w
== 0 && a
->P
== 0
279 && opt
->mod
!= M_FU
&& opt
->mod
!= M_IS
&& opt
->mod
!= M_W32
))
285 /* Check (vector) mac funcs and ops. */
288 check_macfuncs
(Macfunc
*aa
, Opt_mode
*opa
,
289 Macfunc
*ab
, Opt_mode
*opb
)
291 /* Variables for swapping. */
295 /* The option mode should be put at the end of the second instruction
296 of the vector except M, which should follow MAC1 instruction. */
298 return
yyerror ("Bad opt mode");
300 /* If a0macfunc comes before a1macfunc, swap them. */
304 /* (M) is not allowed here. */
306 return
yyerror ("(M) not allowed with A0MAC");
308 return
yyerror ("Vector AxMACs can't be same");
310 mtmp
= *aa
; *aa
= *ab
; *ab
= mtmp
;
311 otmp
= *opa
; *opa
= *opb
; *opb
= otmp
;
316 return
yyerror ("(M) not allowed with A0MAC");
318 return
yyerror ("Vector AxMACs can't be same");
321 /* If both ops are one of 0, 1, or 2, we have multiply_halfregs in both
322 assignment_or_macfuncs. */
323 if
((aa
->op
== 0 || aa
->op
== 1 || aa
->op
== 2)
324 && (ab
->op
== 0 || ab
->op
== 1 || ab
->op
== 2))
326 if
(check_multiply_halfregs
(aa
, ab
) < 0)
331 /* Only one of the assign_macfuncs has a half reg multiply
332 Evil trick: Just 'OR' their source register codes:
333 We can do that, because we know they were initialized to 0
334 in the rules that don't use multiply_halfregs. */
335 aa
->s0.regno |
= (ab
->s0.regno
& CODE_MASK
);
336 aa
->s1.regno |
= (ab
->s1.regno
& CODE_MASK
);
339 if
(aa
->w
== ab
->w
&& aa
->P
!= ab
->P
)
340 return
yyerror ("Destination Dreg sizes (full or half) must match");
344 if
(aa
->P
&& (aa
->dst.regno
- ab
->dst.regno
) != 1)
345 return
yyerror ("Destination Dregs (full) must differ by one");
346 if
(!aa
->P
&& aa
->dst.regno
!= ab
->dst.regno
)
347 return
yyerror ("Destination Dregs (half) must match");
350 /* Make sure mod flags get ORed, too. */
351 opb
->mod |
= opa
->mod
;
354 if
(check_macfunc_option
(aa
, opb
) < 0
355 && check_macfunc_option
(ab
, opb
) < 0)
356 return
yyerror ("bad option");
358 /* Make sure first macfunc has got both P flags ORed. */
366 is_group1
(INSTR_T x
)
368 /* Group1 is dpsLDST, LDSTpmod, LDST, LDSTiiFP, LDSTii. */
369 if
((x
->value
& 0xc000) == 0x8000 ||
(x
->value
== 0x0000))
376 is_group2
(INSTR_T x
)
378 if
((((x
->value
& 0xfc00) == 0x9c00) /* dspLDST. */
379 && !((x
->value
& 0xfde0) == 0x9c60) /* dagMODim. */
380 && !((x
->value
& 0xfde0) == 0x9ce0) /* dagMODim with bit rev. */
381 && !((x
->value
& 0xfde0) == 0x9d60)) /* pick dagMODik. */
382 ||
(x
->value
== 0x0000))
393 if
((x
->value
& 0xf000) == 0x8000)
395 int aop
= ((x
->value
>> 9) & 0x3);
396 int w
= ((x
->value
>> 11) & 0x1);
402 if
(((x
->value
& 0xFF60) == 0x9E60) ||
/* dagMODim_0 */
403 ((x
->value
& 0xFFF0) == 0x9F60)) /* dagMODik_0 */
406 /* decode_dspLDST_0 */
407 if
((x
->value
& 0xFC00) == 0x9C00)
409 int w
= ((x
->value
>> 9) & 0x1);
418 gen_multi_instr_1
(INSTR_T dsp32
, INSTR_T dsp16_grp1
, INSTR_T dsp16_grp2
)
420 int mask1
= dsp32 ? insn_regmask
(dsp32
->value
, dsp32
->next
->value
) : 0;
421 int mask2
= dsp16_grp1 ? insn_regmask
(dsp16_grp1
->value
, 0) : 0;
422 int mask3
= dsp16_grp2 ? insn_regmask
(dsp16_grp2
->value
, 0) : 0;
424 if
((mask1
& mask2
) ||
(mask1
& mask3
) ||
(mask2
& mask3
))
425 yyerror ("resource conflict in multi-issue instruction");
427 /* Anomaly 05000074 */
428 if
(ENABLE_AC_05000074
429 && dsp32
!= NULL
&& dsp16_grp1
!= NULL
430 && (dsp32
->value
& 0xf780) == 0xc680
431 && ((dsp16_grp1
->value
& 0xfe40) == 0x9240
432 ||
(dsp16_grp1
->value
& 0xfe08) == 0xba08
433 ||
(dsp16_grp1
->value
& 0xfc00) == 0xbc00))
434 yyerror ("anomaly 05000074 - Multi-Issue Instruction with \
435 dsp32shiftimm in slot1 and P-reg Store in slot2 Not Supported");
437 if
(is_store
(dsp16_grp1
) && is_store
(dsp16_grp2
))
438 yyerror ("Only one instruction in multi-issue instruction can be a store");
440 return bfin_gen_multi_instr
(dsp32
, dsp16_grp1
, dsp16_grp2
);
452 struct { int r0
; int s0
; int x0
; int aop
; } modcodes
;
453 struct { int r0
; } r0
;
460 /* Vector Specific. */
461 %token BYTEOP16P BYTEOP16M
462 %token BYTEOP1P BYTEOP2P BYTEOP3P
463 %token BYTEUNPACK BYTEPACK
466 %token ALIGN8 ALIGN16 ALIGN24
468 %token EXTRACT DEPOSIT EXPADJ SEARCH
469 %token ONES SIGN SIGNBITS
477 %token CCREG BYTE_DREG
478 %token REG_A_DOUBLE_ZERO REG_A_DOUBLE_ONE
479 %token A_ZERO_DOT_L A_ZERO_DOT_H A_ONE_DOT_L A_ONE_DOT_H
484 %token RTI RTS RTX RTN RTE
495 %token JUMP JUMP_DOT_S JUMP_DOT_L
502 %token NOT TILDA BANG
508 %token MINUS PLUS STAR SLASH
512 %token _PLUS_BAR_PLUS _PLUS_BAR_MINUS _MINUS_BAR_PLUS _MINUS_BAR_MINUS
513 %token _MINUS_MINUS _PLUS_PLUS
515 /* Shift/rotate ops. */
516 %token SHIFT LSHIFT ASHIFT BXORSHIFT
517 %token _GREATER_GREATER_GREATER_THAN_ASSIGN
519 %token LESS_LESS GREATER_GREATER
520 %token _GREATER_GREATER_GREATER
521 %token _LESS_LESS_ASSIGN _GREATER_GREATER_ASSIGN
524 /* In place operators. */
525 %token ASSIGN _STAR_ASSIGN
526 %token _BAR_ASSIGN _CARET_ASSIGN _AMPERSAND_ASSIGN
527 %token _MINUS_ASSIGN _PLUS_ASSIGN
529 /* Assignments, comparisons. */
530 %token _ASSIGN_BANG _LESS_THAN_ASSIGN _ASSIGN_ASSIGN
535 %token FLUSHINV FLUSH
536 %token IFLUSH PREFETCH
553 %token R RND RNDL RNDH RND12 RND20
558 %token BITTGL BITCLR BITSET BITTST BITMUX
561 %token DBGAL DBGAH DBGHALT DBG DBGA DBGCMPLX
563 /* Semantic auxiliaries. */
566 %token COLON SEMICOLON
567 %token RPAREN LPAREN LBRACK RBRACK
571 %token GOT GOT17M4 FUNCDESC_GOT17M4
581 %type
<modcodes
> byteop_mod
583 %type
<reg
> a_plusassign
584 %type
<reg
> a_minusassign
585 %type
<macfunc
> multiply_halfregs
586 %type
<macfunc
> assign_macfunc
587 %type
<macfunc
> a_macfunc
591 %type
<modcodes
> vsmod
592 %type
<modcodes
> ccstat
595 %type
<reg
> reg_with_postinc
596 %type
<reg
> reg_with_predec
600 %type
<symbol
> SYMBOL
603 %type
<reg
> BYTE_DREG
604 %type
<reg
> REG_A_DOUBLE_ZERO
605 %type
<reg
> REG_A_DOUBLE_ONE
607 %type
<reg
> STATUS_REG
611 %type
<modcodes
> smod
612 %type
<modcodes
> b3_op
613 %type
<modcodes
> rnd_op
614 %type
<modcodes
> post_op
616 %type
<r0
> iu_or_nothing
617 %type
<r0
> plus_minus
621 %type
<modcodes
> amod0
622 %type
<modcodes
> amod1
623 %type
<modcodes
> amod2
625 %type
<r0
> w32_or_nothing
629 %type
<expr
> got_or_expr
631 %type
<value
> any_gotrel GOT GOT17M4 FUNCDESC_GOT17M4
633 /* Precedence rules. */
637 %left LESS_LESS GREATER_GREATER
639 %left STAR SLASH PERCENT
650 if
(insn
== (INSTR_T
) 0)
651 return NO_INSN_GENERATED
;
652 else if
(insn
== (INSTR_T
) - 1)
653 return SEMANTIC_ERROR
;
655 return INSN_GENERATED
;
660 /* Parallel instructions. */
661 | asm_1 DOUBLE_BAR asm_1 DOUBLE_BAR asm_1 SEMICOLON
663 if
(($1->value
& 0xf800) == 0xc000)
665 if
(is_group1
($3) && is_group2
($5))
666 $$
= gen_multi_instr_1
($1, $3, $5);
667 else if
(is_group2
($3) && is_group1
($5))
668 $$
= gen_multi_instr_1
($1, $5, $3);
670 return
yyerror ("Wrong 16 bit instructions groups, slot 2 and slot 3 must be 16-bit instrution group");
672 else if
(($3->value
& 0xf800) == 0xc000)
674 if
(is_group1
($1) && is_group2
($5))
675 $$
= gen_multi_instr_1
($3, $1, $5);
676 else if
(is_group2
($1) && is_group1
($5))
677 $$
= gen_multi_instr_1
($3, $5, $1);
679 return
yyerror ("Wrong 16 bit instructions groups, slot 1 and slot 3 must be 16-bit instrution group");
681 else if
(($5->value
& 0xf800) == 0xc000)
683 if
(is_group1
($1) && is_group2
($3))
684 $$
= gen_multi_instr_1
($5, $1, $3);
685 else if
(is_group2
($1) && is_group1
($3))
686 $$
= gen_multi_instr_1
($5, $3, $1);
688 return
yyerror ("Wrong 16 bit instructions groups, slot 1 and slot 2 must be 16-bit instrution group");
691 error ("\nIllegal Multi Issue Construct, at least any one of the slot must be DSP32 instruction group\n");
694 | asm_1 DOUBLE_BAR asm_1 SEMICOLON
696 if
(($1->value
& 0xf800) == 0xc000)
699 $$
= gen_multi_instr_1
($1, $3, 0);
700 else if
(is_group2
($3))
701 $$
= gen_multi_instr_1
($1, 0, $3);
703 return
yyerror ("Wrong 16 bit instructions groups, slot 2 must be the 16-bit instruction group");
705 else if
(($3->value
& 0xf800) == 0xc000)
708 $$
= gen_multi_instr_1
($3, $1, 0);
709 else if
(is_group2
($1))
710 $$
= gen_multi_instr_1
($3, 0, $1);
712 return
yyerror ("Wrong 16 bit instructions groups, slot 1 must be the 16-bit instruction group");
714 else if
(is_group1
($1) && is_group2
($3))
715 $$
= gen_multi_instr_1
(0, $1, $3);
716 else if
(is_group2
($1) && is_group1
($3))
717 $$
= gen_multi_instr_1
(0, $3, $1);
719 return
yyerror ("Wrong 16 bit instructions groups, slot 1 and slot 2 must be the 16-bit instruction group");
734 $$
= DSP32MAC
(3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0);
736 | assign_macfunc opt_mode
740 int h00
, h10
, h01
, h11
;
742 if
(check_macfunc_option
(&$1, &$2) < 0)
743 return
yyerror ("bad option");
748 return
yyerror ("(m) not allowed with a0 unit");
767 $$
= DSP32MAC
(op1
, $2.MM
, $2.mod
, w1
, $1.P
, h01
, h11
, h00
, h10
,
768 &$1.dst
, op0
, &$1.s0
, &$1.s1
, w0
);
774 | assign_macfunc opt_mode COMMA assign_macfunc opt_mode
778 if
(check_macfuncs
(&$1, &$2, &$4, &$5) < 0)
780 notethat
("assign_macfunc (.), assign_macfunc (.)\n");
787 $$
= DSP32MAC
($1.op
, $2.MM
, $5.mod
, $1.w
, $1.P
,
788 IS_H
($1.s0
), IS_H
($1.s1
), IS_H
($4.s0
), IS_H
($4.s1
),
789 dst
, $4.op
, &$1.s0
, &$1.s1
, $4.w
);
796 notethat
("dsp32alu: DISALGNEXCPT\n");
797 $$
= DSP32ALU
(18, 0, 0, 0, 0, 0, 0, 0, 3);
799 | REG ASSIGN LPAREN a_plusassign REG_A RPAREN
801 if
(IS_DREG
($1) && !IS_A1
($4) && IS_A1
($5))
803 notethat
("dsp32alu: dregs = ( A0 += A1 )\n");
804 $$
= DSP32ALU
(11, 0, 0, &$1, 0, 0, 0, 0, 0);
807 return
yyerror ("Register mismatch");
809 | HALF_REG ASSIGN LPAREN a_plusassign REG_A RPAREN
811 if
(!IS_A1
($4) && IS_A1
($5))
813 notethat
("dsp32alu: dregs_half = ( A0 += A1 )\n");
814 $$
= DSP32ALU
(11, IS_H
($1), 0, &$1, 0, 0, 0, 0, 1);
817 return
yyerror ("Register mismatch");
819 | A_ZERO_DOT_H ASSIGN HALF_REG
821 notethat
("dsp32alu: A_ZERO_DOT_H = dregs_hi\n");
822 $$
= DSP32ALU
(9, IS_H
($3), 0, 0, &$3, 0, 0, 0, 0);
824 | A_ONE_DOT_H ASSIGN HALF_REG
826 notethat
("dsp32alu: A_ZERO_DOT_H = dregs_hi\n");
827 $$
= DSP32ALU
(9, IS_H
($3), 0, 0, &$3, 0, 0, 0, 2);
829 | LPAREN REG COMMA REG RPAREN ASSIGN BYTEOP16P LPAREN REG
830 COLON expr COMMA REG COLON expr RPAREN aligndir
832 if
(!IS_DREG
($2) ||
!IS_DREG
($4))
833 return
yyerror ("Dregs expected");
834 else if
(REG_SAME
($2, $4))
835 return
yyerror ("Illegal dest register combination");
836 else if
(!valid_dreg_pair
(&$9, $11))
837 return
yyerror ("Bad dreg pair");
838 else if
(!valid_dreg_pair
(&$13, $15))
839 return
yyerror ("Bad dreg pair");
842 notethat
("dsp32alu: (dregs , dregs ) = BYTEOP16P (dregs_pair , dregs_pair ) (aligndir)\n");
843 $$
= DSP32ALU
(21, 0, &$2, &$4, &$9, &$13, $17.r0
, 0, 0);
847 | LPAREN REG COMMA REG RPAREN ASSIGN BYTEOP16M LPAREN REG COLON expr COMMA
848 REG COLON expr RPAREN aligndir
850 if
(!IS_DREG
($2) ||
!IS_DREG
($4))
851 return
yyerror ("Dregs expected");
852 else if
(REG_SAME
($2, $4))
853 return
yyerror ("Illegal dest register combination");
854 else if
(!valid_dreg_pair
(&$9, $11))
855 return
yyerror ("Bad dreg pair");
856 else if
(!valid_dreg_pair
(&$13, $15))
857 return
yyerror ("Bad dreg pair");
860 notethat
("dsp32alu: (dregs , dregs ) = BYTEOP16M (dregs_pair , dregs_pair ) (aligndir)\n");
861 $$
= DSP32ALU
(21, 0, &$2, &$4, &$9, &$13, $17.r0
, 0, 1);
865 | LPAREN REG COMMA REG RPAREN ASSIGN BYTEUNPACK REG COLON expr aligndir
867 if
(!IS_DREG
($2) ||
!IS_DREG
($4))
868 return
yyerror ("Dregs expected");
869 else if
(REG_SAME
($2, $4))
870 return
yyerror ("Illegal dest register combination");
871 else if
(!valid_dreg_pair
(&$8, $10))
872 return
yyerror ("Bad dreg pair");
875 notethat
("dsp32alu: (dregs , dregs ) = BYTEUNPACK dregs_pair (aligndir)\n");
876 $$
= DSP32ALU
(24, 0, &$2, &$4, &$8, 0, $11.r0
, 0, 1);
879 | LPAREN REG COMMA REG RPAREN ASSIGN SEARCH REG LPAREN searchmod RPAREN
881 if
(REG_SAME
($2, $4))
882 return
yyerror ("Illegal dest register combination");
884 if
(IS_DREG
($2) && IS_DREG
($4) && IS_DREG
($8))
886 notethat
("dsp32alu: (dregs , dregs ) = SEARCH dregs (searchmod)\n");
887 $$
= DSP32ALU
(13, 0, &$2, &$4, &$8, 0, 0, 0, $10.r0
);
890 return
yyerror ("Register mismatch");
892 | REG ASSIGN A_ONE_DOT_L PLUS A_ONE_DOT_H COMMA
893 REG ASSIGN A_ZERO_DOT_L PLUS A_ZERO_DOT_H
895 if
(REG_SAME
($1, $7))
896 return
yyerror ("Illegal dest register combination");
898 if
(IS_DREG
($1) && IS_DREG
($7))
900 notethat
("dsp32alu: dregs = A1.l + A1.h, dregs = A0.l + A0.h \n");
901 $$
= DSP32ALU
(12, 0, &$1, &$7, 0, 0, 0, 0, 1);
904 return
yyerror ("Register mismatch");
908 | REG ASSIGN REG_A PLUS REG_A COMMA REG ASSIGN REG_A MINUS REG_A amod1
910 if
(REG_SAME
($1, $7))
911 return
yyerror ("Resource conflict in dest reg");
913 if
(IS_DREG
($1) && IS_DREG
($7) && !REG_SAME
($3, $5)
914 && IS_A1
($9) && !IS_A1
($11))
916 notethat
("dsp32alu: dregs = A1 + A0 , dregs = A1 - A0 (amod1)\n");
917 $$
= DSP32ALU
(17, 0, &$1, &$7, 0, 0, $12.s0
, $12.x0
, 0);
920 else if
(IS_DREG
($1) && IS_DREG
($7) && !REG_SAME
($3, $5)
921 && !IS_A1
($9) && IS_A1
($11))
923 notethat
("dsp32alu: dregs = A0 + A1 , dregs = A0 - A1 (amod1)\n");
924 $$
= DSP32ALU
(17, 0, &$1, &$7, 0, 0, $12.s0
, $12.x0
, 1);
927 return
yyerror ("Register mismatch");
930 | REG ASSIGN REG plus_minus REG COMMA REG ASSIGN REG plus_minus REG amod1
933 return
yyerror ("Operators must differ");
935 if
(IS_DREG
($1) && IS_DREG
($3) && IS_DREG
($5)
936 && REG_SAME
($3, $9) && REG_SAME
($5, $11))
938 notethat
("dsp32alu: dregs = dregs + dregs,"
939 "dregs = dregs - dregs (amod1)\n");
940 $$
= DSP32ALU
(4, 0, &$1, &$7, &$3, &$5, $12.s0
, $12.x0
, 2);
943 return
yyerror ("Register mismatch");
946 /* Bar Operations. */
948 | REG ASSIGN REG op_bar_op REG COMMA REG ASSIGN REG op_bar_op REG amod2
950 if
(!REG_SAME
($3, $9) ||
!REG_SAME
($5, $11))
951 return
yyerror ("Differing source registers");
953 if
(!IS_DREG
($1) ||
!IS_DREG
($3) ||
!IS_DREG
($5) ||
!IS_DREG
($7))
954 return
yyerror ("Dregs expected");
956 if
(REG_SAME
($1, $7))
957 return
yyerror ("Resource conflict in dest reg");
959 if
($4.r0
== 1 && $10.r0
== 2)
961 notethat
("dsp32alu: dregs = dregs .|. dregs , dregs = dregs .|. dregs (amod2)\n");
962 $$
= DSP32ALU
(1, 1, &$1, &$7, &$3, &$5, $12.s0
, $12.x0
, $12.r0
);
964 else if
($4.r0
== 0 && $10.r0
== 3)
966 notethat
("dsp32alu: dregs = dregs .|. dregs , dregs = dregs .|. dregs (amod2)\n");
967 $$
= DSP32ALU
(1, 0, &$1, &$7, &$3, &$5, $12.s0
, $12.x0
, $12.r0
);
970 return
yyerror ("Bar operand mismatch");
973 | REG ASSIGN ABS REG vmod
977 if
(IS_DREG
($1) && IS_DREG
($4))
981 notethat
("dsp32alu: dregs = ABS dregs (v)\n");
986 /* Vector version of ABS. */
987 notethat
("dsp32alu: dregs = ABS dregs\n");
990 $$
= DSP32ALU
(op
, 0, 0, &$1, &$4, 0, 0, 0, 2);
993 return
yyerror ("Dregs expected");
997 notethat
("dsp32alu: Ax = ABS Ax\n");
998 $$
= DSP32ALU
(16, IS_A1
($1), 0, 0, 0, 0, 0, 0, IS_A1
($3));
1000 | A_ZERO_DOT_L ASSIGN HALF_REG
1004 notethat
("dsp32alu: A0.l = reg_half\n");
1005 $$
= DSP32ALU
(9, IS_H
($3), 0, 0, &$3, 0, 0, 0, 0);
1008 return
yyerror ("A0.l = Rx.l expected");
1010 | A_ONE_DOT_L ASSIGN HALF_REG
1014 notethat
("dsp32alu: A1.l = reg_half\n");
1015 $$
= DSP32ALU
(9, IS_H
($3), 0, 0, &$3, 0, 0, 0, 2);
1018 return
yyerror ("A1.l = Rx.l expected");
1021 | REG ASSIGN c_align LPAREN REG COMMA REG RPAREN
1023 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG
($7))
1025 notethat
("dsp32shift: dregs = ALIGN8 (dregs , dregs )\n");
1026 $$
= DSP32SHIFT
(13, &$1, &$7, &$5, $3.r0
, 0);
1029 return
yyerror ("Dregs expected");
1032 | REG ASSIGN BYTEOP1P LPAREN REG COLON expr COMMA REG COLON expr RPAREN byteop_mod
1035 return
yyerror ("Dregs expected");
1036 else if
(!valid_dreg_pair
(&$5, $7))
1037 return
yyerror ("Bad dreg pair");
1038 else if
(!valid_dreg_pair
(&$9, $11))
1039 return
yyerror ("Bad dreg pair");
1042 notethat
("dsp32alu: dregs = BYTEOP1P (dregs_pair , dregs_pair ) (T)\n");
1043 $$
= DSP32ALU
(20, 0, 0, &$1, &$5, &$9, $13.s0
, 0, $13.r0
);
1046 | REG ASSIGN BYTEOP1P LPAREN REG COLON expr COMMA REG COLON expr RPAREN
1049 return
yyerror ("Dregs expected");
1050 else if
(!valid_dreg_pair
(&$5, $7))
1051 return
yyerror ("Bad dreg pair");
1052 else if
(!valid_dreg_pair
(&$9, $11))
1053 return
yyerror ("Bad dreg pair");
1056 notethat
("dsp32alu: dregs = BYTEOP1P (dregs_pair , dregs_pair ) (T)\n");
1057 $$
= DSP32ALU
(20, 0, 0, &$1, &$5, &$9, 0, 0, 0);
1061 | REG ASSIGN BYTEOP2P LPAREN REG COLON expr COMMA REG COLON expr RPAREN
1065 return
yyerror ("Dregs expected");
1066 else if
(!valid_dreg_pair
(&$5, $7))
1067 return
yyerror ("Bad dreg pair");
1068 else if
(!valid_dreg_pair
(&$9, $11))
1069 return
yyerror ("Bad dreg pair");
1072 notethat
("dsp32alu: dregs = BYTEOP2P (dregs_pair , dregs_pair ) (rnd_op)\n");
1073 $$
= DSP32ALU
(22, $13.r0
, 0, &$1, &$5, &$9, $13.s0
, $13.x0
, $13.aop
);
1077 | REG ASSIGN BYTEOP3P LPAREN REG COLON expr COMMA REG COLON expr RPAREN
1081 return
yyerror ("Dregs expected");
1082 else if
(!valid_dreg_pair
(&$5, $7))
1083 return
yyerror ("Bad dreg pair");
1084 else if
(!valid_dreg_pair
(&$9, $11))
1085 return
yyerror ("Bad dreg pair");
1088 notethat
("dsp32alu: dregs = BYTEOP3P (dregs_pair , dregs_pair ) (b3_op)\n");
1089 $$
= DSP32ALU
(23, $13.x0
, 0, &$1, &$5, &$9, $13.s0
, 0, 0);
1093 | REG ASSIGN BYTEPACK LPAREN REG COMMA REG RPAREN
1095 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG
($7))
1097 notethat
("dsp32alu: dregs = BYTEPACK (dregs , dregs )\n");
1098 $$
= DSP32ALU
(24, 0, 0, &$1, &$5, &$7, 0, 0, 0);
1101 return
yyerror ("Dregs expected");
1104 | HALF_REG ASSIGN HALF_REG ASSIGN SIGN LPAREN HALF_REG RPAREN STAR
1105 HALF_REG PLUS SIGN LPAREN HALF_REG RPAREN STAR HALF_REG
1107 if
(IS_HCOMPL
($1, $3) && IS_HCOMPL
($7, $14) && IS_HCOMPL
($10, $17))
1109 notethat
("dsp32alu: dregs_hi = dregs_lo ="
1110 "SIGN (dregs_hi) * dregs_hi + "
1111 "SIGN (dregs_lo) * dregs_lo \n");
1113 $$
= DSP32ALU
(12, 0, 0, &$1, &$7, &$10, 0, 0, 0);
1116 return
yyerror ("Dregs expected");
1118 | REG ASSIGN REG plus_minus REG amod1
1120 if
(IS_DREG
($1) && IS_DREG
($3) && IS_DREG
($5))
1124 /* No saturation flag specified, generate the 16 bit variant. */
1125 notethat
("COMP3op: dregs = dregs +- dregs\n");
1126 $$
= COMP3OP
(&$1, &$3, &$5, $4.r0
);
1130 /* Saturation flag specified, generate the 32 bit variant. */
1131 notethat
("dsp32alu: dregs = dregs +- dregs (amod1)\n");
1132 $$
= DSP32ALU
(4, 0, 0, &$1, &$3, &$5, $6.s0
, $6.x0
, $4.r0
);
1136 if
(IS_PREG
($1) && IS_PREG
($3) && IS_PREG
($5) && $4.r0
== 0)
1138 notethat
("COMP3op: pregs = pregs + pregs\n");
1139 $$
= COMP3OP
(&$1, &$3, &$5, 5);
1142 return
yyerror ("Dregs expected");
1144 | REG ASSIGN min_max LPAREN REG COMMA REG RPAREN vmod
1148 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG
($7))
1155 notethat
("dsp32alu: dregs = {MIN|MAX} (dregs, dregs)\n");
1156 $$
= DSP32ALU
(op
, 0, 0, &$1, &$5, &$7, 0, 0, $3.r0
);
1159 return
yyerror ("Dregs expected");
1162 | a_assign MINUS REG_A
1164 notethat
("dsp32alu: Ax = - Ax\n");
1165 $$
= DSP32ALU
(14, IS_A1
($1), 0, 0, 0, 0, 0, 0, IS_A1
($3));
1167 | HALF_REG ASSIGN HALF_REG plus_minus HALF_REG amod1
1169 notethat
("dsp32alu: dregs_lo = dregs_lo +- dregs_lo (amod1)\n");
1170 $$
= DSP32ALU
(2 |
$4.r0
, IS_H
($1), 0, &$1, &$3, &$5,
1171 $6.s0
, $6.x0
, HL2
($3, $5));
1173 | a_assign a_assign expr
1175 if
(EXPR_VALUE
($3) == 0 && !REG_SAME
($1, $2))
1177 notethat
("dsp32alu: A1 = A0 = 0\n");
1178 $$
= DSP32ALU
(8, 0, 0, 0, 0, 0, 0, 0, 2);
1181 return
yyerror ("Bad value, 0 expected");
1185 | a_assign REG_A LPAREN S RPAREN
1187 if
(REG_SAME
($1, $2))
1189 notethat
("dsp32alu: Ax = Ax (S)\n");
1190 $$
= DSP32ALU
(8, 0, 0, 0, 0, 0, 1, 0, IS_A1
($1));
1193 return
yyerror ("Registers must be equal");
1196 | HALF_REG ASSIGN REG LPAREN RND RPAREN
1200 notethat
("dsp32alu: dregs_half = dregs (RND)\n");
1201 $$
= DSP32ALU
(12, IS_H
($1), 0, &$1, &$3, 0, 0, 0, 3);
1204 return
yyerror ("Dregs expected");
1207 | HALF_REG ASSIGN REG plus_minus REG LPAREN RND12 RPAREN
1209 if
(IS_DREG
($3) && IS_DREG
($5))
1211 notethat
("dsp32alu: dregs_half = dregs (+-) dregs (RND12)\n");
1212 $$
= DSP32ALU
(5, IS_H
($1), 0, &$1, &$3, &$5, 0, 0, $4.r0
);
1215 return
yyerror ("Dregs expected");
1218 | HALF_REG ASSIGN REG plus_minus REG LPAREN RND20 RPAREN
1220 if
(IS_DREG
($3) && IS_DREG
($5))
1222 notethat
("dsp32alu: dregs_half = dregs -+ dregs (RND20)\n");
1223 $$
= DSP32ALU
(5, IS_H
($1), 0, &$1, &$3, &$5, 0, 1, $4.r0 |
2);
1226 return
yyerror ("Dregs expected");
1231 if
(!REG_SAME
($1, $2))
1233 notethat
("dsp32alu: An = Am\n");
1234 $$
= DSP32ALU
(8, 0, 0, 0, 0, 0, IS_A1
($1), 0, 3);
1237 return
yyerror ("Accu reg arguments must differ");
1244 notethat
("dsp32alu: An = dregs\n");
1245 $$
= DSP32ALU
(9, 0, 0, 0, &$2, 0, 1, 0, IS_A1
($1) << 1);
1248 return
yyerror ("Dregs expected");
1251 | REG ASSIGN HALF_REG xpmod
1255 if
($1.regno
== REG_A0x
&& IS_DREG
($3))
1257 notethat
("dsp32alu: A0.x = dregs_lo\n");
1258 $$
= DSP32ALU
(9, 0, 0, 0, &$3, 0, 0, 0, 1);
1260 else if
($1.regno
== REG_A1x
&& IS_DREG
($3))
1262 notethat
("dsp32alu: A1.x = dregs_lo\n");
1263 $$
= DSP32ALU
(9, 0, 0, 0, &$3, 0, 0, 0, 3);
1265 else if
(IS_DREG
($1) && IS_DREG
($3))
1267 notethat
("ALU2op: dregs = dregs_lo\n");
1268 $$
= ALU2OP
(&$1, &$3, 10 |
($4.r0 ?
0: 1));
1271 return
yyerror ("Register mismatch");
1274 return
yyerror ("Low reg expected");
1277 | HALF_REG ASSIGN expr
1279 notethat
("LDIMMhalf: pregs_half = imm16\n");
1281 if
(!IS_DREG
($1) && !IS_PREG
($1) && !IS_IREG
($1)
1282 && !IS_MREG
($1) && !IS_BREG
($1) && !IS_LREG
($1))
1283 return
yyerror ("Wrong register for load immediate");
1285 if
(!IS_IMM
($3, 16) && !IS_UIMM
($3, 16))
1286 return
yyerror ("Constant out of range");
1288 $$
= LDIMMHALF_R
(&$1, IS_H
($1), 0, 0, $3);
1293 notethat
("dsp32alu: An = 0\n");
1296 return
yyerror ("0 expected");
1298 $$
= DSP32ALU
(8, 0, 0, 0, 0, 0, 0, 0, IS_A1
($1));
1301 | REG ASSIGN expr xpmod1
1303 if
(!IS_DREG
($1) && !IS_PREG
($1) && !IS_IREG
($1)
1304 && !IS_MREG
($1) && !IS_BREG
($1) && !IS_LREG
($1))
1305 return
yyerror ("Wrong register for load immediate");
1309 /* 7 bit immediate value if possible.
1310 We will check for that constant value for efficiency
1311 If it goes to reloc, it will be 16 bit. */
1312 if
(IS_CONST
($3) && IS_IMM
($3, 7) && IS_DREG
($1))
1314 notethat
("COMPI2opD: dregs = imm7 (x) \n");
1315 $$
= COMPI2OPD
(&$1, imm7
($3), 0);
1317 else if
(IS_CONST
($3) && IS_IMM
($3, 7) && IS_PREG
($1))
1319 notethat
("COMPI2opP: pregs = imm7 (x)\n");
1320 $$
= COMPI2OPP
(&$1, imm7
($3), 0);
1324 if
(IS_CONST
($3) && !IS_IMM
($3, 16))
1325 return
yyerror ("Immediate value out of range");
1327 notethat
("LDIMMhalf: regs = luimm16 (x)\n");
1329 $$
= LDIMMHALF_R5
(&$1, 0, 1, 0, $3);
1334 /* (z) There is no 7 bit zero extended instruction.
1335 If the expr is a relocation, generate it. */
1337 if
(IS_CONST
($3) && !IS_UIMM
($3, 16))
1338 return
yyerror ("Immediate value out of range");
1340 notethat
("LDIMMhalf: regs = luimm16 (x)\n");
1342 $$
= LDIMMHALF_R5
(&$1, 0, 0, 1, $3);
1346 | HALF_REG ASSIGN REG
1349 return
yyerror ("Low reg expected");
1351 if
(IS_DREG
($1) && $3.regno
== REG_A0x
)
1353 notethat
("dsp32alu: dregs_lo = A0.x\n");
1354 $$
= DSP32ALU
(10, 0, 0, &$1, 0, 0, 0, 0, 0);
1356 else if
(IS_DREG
($1) && $3.regno
== REG_A1x
)
1358 notethat
("dsp32alu: dregs_lo = A1.x\n");
1359 $$
= DSP32ALU
(10, 0, 0, &$1, 0, 0, 0, 0, 1);
1362 return
yyerror ("Register mismatch");
1365 | REG ASSIGN REG op_bar_op REG amod0
1367 if
(IS_DREG
($1) && IS_DREG
($3) && IS_DREG
($5))
1369 notethat
("dsp32alu: dregs = dregs .|. dregs (amod0)\n");
1370 $$
= DSP32ALU
(0, 0, 0, &$1, &$3, &$5, $6.s0
, $6.x0
, $4.r0
);
1373 return
yyerror ("Register mismatch");
1376 | REG ASSIGN BYTE_DREG xpmod
1378 if
(IS_DREG
($1) && IS_DREG
($3))
1380 notethat
("ALU2op: dregs = dregs_byte\n");
1381 $$
= ALU2OP
(&$1, &$3, 12 |
($4.r0 ?
0: 1));
1384 return
yyerror ("Register mismatch");
1387 | a_assign ABS REG_A COMMA a_assign ABS REG_A
1389 if
(REG_SAME
($1, $3) && REG_SAME
($5, $7) && !REG_SAME
($1, $5))
1391 notethat
("dsp32alu: A1 = ABS A1 , A0 = ABS A0\n");
1392 $$
= DSP32ALU
(16, 0, 0, 0, 0, 0, 0, 0, 3);
1395 return
yyerror ("Register mismatch");
1398 | a_assign MINUS REG_A COMMA a_assign MINUS REG_A
1400 if
(REG_SAME
($1, $3) && REG_SAME
($5, $7) && !REG_SAME
($1, $5))
1402 notethat
("dsp32alu: A1 = - A1 , A0 = - A0\n");
1403 $$
= DSP32ALU
(14, 0, 0, 0, 0, 0, 0, 0, 3);
1406 return
yyerror ("Register mismatch");
1409 | a_minusassign REG_A w32_or_nothing
1411 if
(!IS_A1
($1) && IS_A1
($2))
1413 notethat
("dsp32alu: A0 -= A1\n");
1414 $$
= DSP32ALU
(11, 0, 0, 0, 0, 0, $3.r0
, 0, 3);
1417 return
yyerror ("Register mismatch");
1420 | REG _MINUS_ASSIGN expr
1422 if
(IS_IREG
($1) && EXPR_VALUE
($3) == 4)
1424 notethat
("dagMODik: iregs -= 4\n");
1425 $$
= DAGMODIK
(&$1, 3);
1427 else if
(IS_IREG
($1) && EXPR_VALUE
($3) == 2)
1429 notethat
("dagMODik: iregs -= 2\n");
1430 $$
= DAGMODIK
(&$1, 1);
1433 return
yyerror ("Register or value mismatch");
1436 | REG _PLUS_ASSIGN REG LPAREN BREV RPAREN
1438 if
(IS_IREG
($1) && IS_MREG
($3))
1440 notethat
("dagMODim: iregs += mregs (opt_brev)\n");
1442 $$
= DAGMODIM
(&$1, &$3, 0, 1);
1444 else if
(IS_PREG
($1) && IS_PREG
($3))
1446 notethat
("PTR2op: pregs += pregs (BREV )\n");
1447 $$
= PTR2OP
(&$1, &$3, 5);
1450 return
yyerror ("Register mismatch");
1453 | REG _MINUS_ASSIGN REG
1455 if
(IS_IREG
($1) && IS_MREG
($3))
1457 notethat
("dagMODim: iregs -= mregs\n");
1458 $$
= DAGMODIM
(&$1, &$3, 1, 0);
1460 else if
(IS_PREG
($1) && IS_PREG
($3))
1462 notethat
("PTR2op: pregs -= pregs\n");
1463 $$
= PTR2OP
(&$1, &$3, 0);
1466 return
yyerror ("Register mismatch");
1469 | REG_A _PLUS_ASSIGN REG_A w32_or_nothing
1471 if
(!IS_A1
($1) && IS_A1
($3))
1473 notethat
("dsp32alu: A0 += A1 (W32)\n");
1474 $$
= DSP32ALU
(11, 0, 0, 0, 0, 0, $4.r0
, 0, 2);
1477 return
yyerror ("Register mismatch");
1480 | REG _PLUS_ASSIGN REG
1482 if
(IS_IREG
($1) && IS_MREG
($3))
1484 notethat
("dagMODim: iregs += mregs\n");
1485 $$
= DAGMODIM
(&$1, &$3, 0, 0);
1488 return
yyerror ("iregs += mregs expected");
1491 | REG _PLUS_ASSIGN expr
1495 if
(EXPR_VALUE
($3) == 4)
1497 notethat
("dagMODik: iregs += 4\n");
1498 $$
= DAGMODIK
(&$1, 2);
1500 else if
(EXPR_VALUE
($3) == 2)
1502 notethat
("dagMODik: iregs += 2\n");
1503 $$
= DAGMODIK
(&$1, 0);
1506 return
yyerror ("iregs += [ 2 | 4 ");
1508 else if
(IS_PREG
($1) && IS_IMM
($3, 7))
1510 notethat
("COMPI2opP: pregs += imm7\n");
1511 $$
= COMPI2OPP
(&$1, imm7
($3), 1);
1513 else if
(IS_DREG
($1) && IS_IMM
($3, 7))
1515 notethat
("COMPI2opD: dregs += imm7\n");
1516 $$
= COMPI2OPD
(&$1, imm7
($3), 1);
1518 else if
((IS_DREG
($1) || IS_PREG
($1)) && IS_CONST
($3))
1519 return
yyerror ("Immediate value out of range");
1521 return
yyerror ("Register mismatch");
1524 | REG _STAR_ASSIGN REG
1526 if
(IS_DREG
($1) && IS_DREG
($3))
1528 notethat
("ALU2op: dregs *= dregs\n");
1529 $$
= ALU2OP
(&$1, &$3, 3);
1532 return
yyerror ("Register mismatch");
1535 | SAA LPAREN REG COLON expr COMMA REG COLON expr RPAREN aligndir
1537 if
(!valid_dreg_pair
(&$3, $5))
1538 return
yyerror ("Bad dreg pair");
1539 else if
(!valid_dreg_pair
(&$7, $9))
1540 return
yyerror ("Bad dreg pair");
1543 notethat
("dsp32alu: SAA (dregs_pair , dregs_pair ) (aligndir)\n");
1544 $$
= DSP32ALU
(18, 0, 0, 0, &$3, &$7, $11.r0
, 0, 0);
1548 | a_assign REG_A LPAREN S RPAREN COMMA a_assign REG_A LPAREN S RPAREN
1550 if
(REG_SAME
($1, $2) && REG_SAME
($7, $8) && !REG_SAME
($1, $7))
1552 notethat
("dsp32alu: A1 = A1 (S) , A0 = A0 (S)\n");
1553 $$
= DSP32ALU
(8, 0, 0, 0, 0, 0, 1, 0, 2);
1556 return
yyerror ("Register mismatch");
1559 | REG ASSIGN LPAREN REG PLUS REG RPAREN LESS_LESS expr
1561 if
(IS_DREG
($1) && IS_DREG
($4) && IS_DREG
($6)
1562 && REG_SAME
($1, $4))
1564 if
(EXPR_VALUE
($9) == 1)
1566 notethat
("ALU2op: dregs = (dregs + dregs) << 1\n");
1567 $$
= ALU2OP
(&$1, &$6, 4);
1569 else if
(EXPR_VALUE
($9) == 2)
1571 notethat
("ALU2op: dregs = (dregs + dregs) << 2\n");
1572 $$
= ALU2OP
(&$1, &$6, 5);
1575 return
yyerror ("Bad shift value");
1577 else if
(IS_PREG
($1) && IS_PREG
($4) && IS_PREG
($6)
1578 && REG_SAME
($1, $4))
1580 if
(EXPR_VALUE
($9) == 1)
1582 notethat
("PTR2op: pregs = (pregs + pregs) << 1\n");
1583 $$
= PTR2OP
(&$1, &$6, 6);
1585 else if
(EXPR_VALUE
($9) == 2)
1587 notethat
("PTR2op: pregs = (pregs + pregs) << 2\n");
1588 $$
= PTR2OP
(&$1, &$6, 7);
1591 return
yyerror ("Bad shift value");
1594 return
yyerror ("Register mismatch");
1598 | REG ASSIGN REG BAR REG
1600 if
(IS_DREG
($1) && IS_DREG
($3) && IS_DREG
($5))
1602 notethat
("COMP3op: dregs = dregs | dregs\n");
1603 $$
= COMP3OP
(&$1, &$3, &$5, 3);
1606 return
yyerror ("Dregs expected");
1608 | REG ASSIGN REG CARET REG
1610 if
(IS_DREG
($1) && IS_DREG
($3) && IS_DREG
($5))
1612 notethat
("COMP3op: dregs = dregs ^ dregs\n");
1613 $$
= COMP3OP
(&$1, &$3, &$5, 4);
1616 return
yyerror ("Dregs expected");
1618 | REG ASSIGN REG PLUS LPAREN REG LESS_LESS expr RPAREN
1620 if
(IS_PREG
($1) && IS_PREG
($3) && IS_PREG
($6))
1622 if
(EXPR_VALUE
($8) == 1)
1624 notethat
("COMP3op: pregs = pregs + (pregs << 1)\n");
1625 $$
= COMP3OP
(&$1, &$3, &$6, 6);
1627 else if
(EXPR_VALUE
($8) == 2)
1629 notethat
("COMP3op: pregs = pregs + (pregs << 2)\n");
1630 $$
= COMP3OP
(&$1, &$3, &$6, 7);
1633 return
yyerror ("Bad shift value");
1636 return
yyerror ("Dregs expected");
1638 | CCREG ASSIGN REG_A _ASSIGN_ASSIGN REG_A
1640 if
($3.regno
== REG_A0
&& $5.regno
== REG_A1
)
1642 notethat
("CCflag: CC = A0 == A1\n");
1643 $$
= CCFLAG
(0, 0, 5, 0, 0);
1646 return
yyerror ("AREGs are in bad order or same");
1648 | CCREG ASSIGN REG_A LESS_THAN REG_A
1650 if
($3.regno
== REG_A0
&& $5.regno
== REG_A1
)
1652 notethat
("CCflag: CC = A0 < A1\n");
1653 $$
= CCFLAG
(0, 0, 6, 0, 0);
1656 return
yyerror ("AREGs are in bad order or same");
1658 | CCREG ASSIGN REG LESS_THAN REG iu_or_nothing
1660 if
((IS_DREG
($3) && IS_DREG
($5))
1661 ||
(IS_PREG
($3) && IS_PREG
($5)))
1663 notethat
("CCflag: CC = dpregs < dpregs\n");
1664 $$
= CCFLAG
(&$3, $5.regno
& CODE_MASK
, $6.r0
, 0, IS_PREG
($3) ?
1 : 0);
1667 return
yyerror ("Bad register in comparison");
1669 | CCREG ASSIGN REG LESS_THAN expr iu_or_nothing
1671 if
(!IS_DREG
($3) && !IS_PREG
($3))
1672 return
yyerror ("Bad register in comparison");
1674 if
(($6.r0
== 1 && IS_IMM
($5, 3))
1675 ||
($6.r0
== 3 && IS_UIMM
($5, 3)))
1677 notethat
("CCflag: CC = dpregs < (u)imm3\n");
1678 $$
= CCFLAG
(&$3, imm3
($5), $6.r0
, 1, IS_PREG
($3) ?
1 : 0);
1681 return
yyerror ("Bad constant value");
1683 | CCREG ASSIGN REG _ASSIGN_ASSIGN REG
1685 if
((IS_DREG
($3) && IS_DREG
($5))
1686 ||
(IS_PREG
($3) && IS_PREG
($5)))
1688 notethat
("CCflag: CC = dpregs == dpregs\n");
1689 $$
= CCFLAG
(&$3, $5.regno
& CODE_MASK
, 0, 0, IS_PREG
($3) ?
1 : 0);
1692 return
yyerror ("Bad register in comparison");
1694 | CCREG ASSIGN REG _ASSIGN_ASSIGN expr
1696 if
(!IS_DREG
($3) && !IS_PREG
($3))
1697 return
yyerror ("Bad register in comparison");
1701 notethat
("CCflag: CC = dpregs == imm3\n");
1702 $$
= CCFLAG
(&$3, imm3
($5), 0, 1, IS_PREG
($3) ?
1 : 0);
1705 return
yyerror ("Bad constant range");
1707 | CCREG ASSIGN REG_A _LESS_THAN_ASSIGN REG_A
1709 if
($3.regno
== REG_A0
&& $5.regno
== REG_A1
)
1711 notethat
("CCflag: CC = A0 <= A1\n");
1712 $$
= CCFLAG
(0, 0, 7, 0, 0);
1715 return
yyerror ("AREGs are in bad order or same");
1717 | CCREG ASSIGN REG _LESS_THAN_ASSIGN REG iu_or_nothing
1719 if
((IS_DREG
($3) && IS_DREG
($5))
1720 ||
(IS_PREG
($3) && IS_PREG
($5)))
1722 notethat
("CCflag: CC = dpregs <= dpregs (..)\n");
1723 $$
= CCFLAG
(&$3, $5.regno
& CODE_MASK
,
1724 1 + $6.r0
, 0, IS_PREG
($3) ?
1 : 0);
1727 return
yyerror ("Bad register in comparison");
1729 | CCREG ASSIGN REG _LESS_THAN_ASSIGN expr iu_or_nothing
1731 if
(!IS_DREG
($3) && !IS_PREG
($3))
1732 return
yyerror ("Bad register in comparison");
1734 if
(($6.r0
== 1 && IS_IMM
($5, 3))
1735 ||
($6.r0
== 3 && IS_UIMM
($5, 3)))
1737 notethat
("CCflag: CC = dpregs <= (u)imm3\n");
1738 $$
= CCFLAG
(&$3, imm3
($5), 1 + $6.r0
, 1, IS_PREG
($3) ?
1 : 0);
1741 return
yyerror ("Bad constant value");
1744 | REG ASSIGN REG AMPERSAND REG
1746 if
(IS_DREG
($1) && IS_DREG
($3) && IS_DREG
($5))
1748 notethat
("COMP3op: dregs = dregs & dregs\n");
1749 $$
= COMP3OP
(&$1, &$3, &$5, 2);
1752 return
yyerror ("Dregs expected");
1757 notethat
("CC2stat operation\n");
1758 $$
= bfin_gen_cc2stat
($1.r0
, $1.x0
, $1.s0
);
1763 if
((IS_GENREG
($1) && IS_GENREG
($3))
1764 ||
(IS_GENREG
($1) && IS_DAGREG
($3))
1765 ||
(IS_DAGREG
($1) && IS_GENREG
($3))
1766 ||
(IS_DAGREG
($1) && IS_DAGREG
($3))
1767 ||
(IS_GENREG
($1) && $3.regno
== REG_USP
)
1768 ||
($1.regno
== REG_USP
&& IS_GENREG
($3))
1769 ||
($1.regno
== REG_USP
&& $3.regno
== REG_USP
)
1770 ||
(IS_DREG
($1) && IS_SYSREG
($3))
1771 ||
(IS_PREG
($1) && IS_SYSREG
($3))
1772 ||
(IS_SYSREG
($1) && IS_GENREG
($3))
1773 ||
(IS_ALLREG
($1) && IS_EMUDAT
($3))
1774 ||
(IS_EMUDAT
($1) && IS_ALLREG
($3))
1775 ||
(IS_SYSREG
($1) && $3.regno
== REG_USP
))
1777 $$
= bfin_gen_regmv
(&$3, &$1);
1780 return
yyerror ("Unsupported register move");
1787 notethat
("CC2dreg: CC = dregs\n");
1788 $$
= bfin_gen_cc2dreg
(1, &$3);
1791 return
yyerror ("Only 'CC = Dreg' supported");
1798 notethat
("CC2dreg: dregs = CC\n");
1799 $$
= bfin_gen_cc2dreg
(0, &$1);
1802 return
yyerror ("Only 'Dreg = CC' supported");
1805 | CCREG _ASSIGN_BANG CCREG
1807 notethat
("CC2dreg: CC =! CC\n");
1808 $$
= bfin_gen_cc2dreg
(3, 0);
1813 | HALF_REG ASSIGN multiply_halfregs opt_mode
1815 notethat
("dsp32mult: dregs_half = multiply_halfregs (opt_mode)\n");
1817 if
(!IS_H
($1) && $4.MM
)
1818 return
yyerror ("(M) not allowed with MAC0");
1820 if
($4.mod
!= 0 && $4.mod
!= M_FU
&& $4.mod
!= M_IS
1821 && $4.mod
!= M_IU
&& $4.mod
!= M_T
&& $4.mod
!= M_TFU
1822 && $4.mod
!= M_S2RND
&& $4.mod
!= M_ISS2
&& $4.mod
!= M_IH
)
1823 return
yyerror ("bad option.");
1827 $$
= DSP32MULT
(0, $4.MM
, $4.mod
, 1, 0,
1828 IS_H
($3.s0
), IS_H
($3.s1
), 0, 0,
1829 &$1, 0, &$3.s0
, &$3.s1
, 0);
1833 $$
= DSP32MULT
(0, 0, $4.mod
, 0, 0,
1834 0, 0, IS_H
($3.s0
), IS_H
($3.s1
),
1835 &$1, 0, &$3.s0
, &$3.s1
, 1);
1839 | REG ASSIGN multiply_halfregs opt_mode
1841 /* Odd registers can use (M). */
1843 return
yyerror ("Dreg expected");
1845 if
(IS_EVEN
($1) && $4.MM
)
1846 return
yyerror ("(M) not allowed with MAC0");
1848 if
($4.mod
!= 0 && $4.mod
!= M_FU
&& $4.mod
!= M_IS
1849 && $4.mod
!= M_S2RND
&& $4.mod
!= M_ISS2
)
1850 return
yyerror ("bad option");
1854 notethat
("dsp32mult: dregs = multiply_halfregs (opt_mode)\n");
1856 $$
= DSP32MULT
(0, $4.MM
, $4.mod
, 1, 1,
1857 IS_H
($3.s0
), IS_H
($3.s1
), 0, 0,
1858 &$1, 0, &$3.s0
, &$3.s1
, 0);
1862 notethat
("dsp32mult: dregs = multiply_halfregs opt_mode\n");
1863 $$
= DSP32MULT
(0, 0, $4.mod
, 0, 1,
1864 0, 0, IS_H
($3.s0
), IS_H
($3.s1
),
1865 &$1, 0, &$3.s0
, &$3.s1
, 1);
1869 | HALF_REG ASSIGN multiply_halfregs opt_mode COMMA
1870 HALF_REG ASSIGN multiply_halfregs opt_mode
1872 if
(!IS_DREG
($1) ||
!IS_DREG
($6))
1873 return
yyerror ("Dregs expected");
1875 if
(!IS_HCOMPL
($1, $6))
1876 return
yyerror ("Dest registers mismatch");
1878 if
(check_multiply_halfregs
(&$3, &$8) < 0)
1881 if
((!IS_H
($1) && $4.MM
)
1882 ||
(!IS_H
($6) && $9.MM
))
1883 return
yyerror ("(M) not allowed with MAC0");
1885 notethat
("dsp32mult: dregs_hi = multiply_halfregs mxd_mod, "
1886 "dregs_lo = multiply_halfregs opt_mode\n");
1889 $$
= DSP32MULT
(0, $4.MM
, $9.mod
, 1, 0,
1890 IS_H
($3.s0
), IS_H
($3.s1
), IS_H
($8.s0
), IS_H
($8.s1
),
1891 &$1, 0, &$3.s0
, &$3.s1
, 1);
1893 $$
= DSP32MULT
(0, $9.MM
, $9.mod
, 1, 0,
1894 IS_H
($8.s0
), IS_H
($8.s1
), IS_H
($3.s0
), IS_H
($3.s1
),
1895 &$1, 0, &$3.s0
, &$3.s1
, 1);
1898 | REG ASSIGN multiply_halfregs opt_mode COMMA REG ASSIGN multiply_halfregs opt_mode
1900 if
(!IS_DREG
($1) ||
!IS_DREG
($6))
1901 return
yyerror ("Dregs expected");
1903 if
((IS_EVEN
($1) && $6.regno
- $1.regno
!= 1)
1904 ||
(IS_EVEN
($6) && $1.regno
- $6.regno
!= 1))
1905 return
yyerror ("Dest registers mismatch");
1907 if
(check_multiply_halfregs
(&$3, &$8) < 0)
1910 if
((IS_EVEN
($1) && $4.MM
)
1911 ||
(IS_EVEN
($6) && $9.MM
))
1912 return
yyerror ("(M) not allowed with MAC0");
1914 notethat
("dsp32mult: dregs = multiply_halfregs mxd_mod, "
1915 "dregs = multiply_halfregs opt_mode\n");
1918 $$
= DSP32MULT
(0, $9.MM
, $9.mod
, 1, 1,
1919 IS_H
($8.s0
), IS_H
($8.s1
), IS_H
($3.s0
), IS_H
($3.s1
),
1920 &$1, 0, &$3.s0
, &$3.s1
, 1);
1922 $$
= DSP32MULT
(0, $4.MM
, $9.mod
, 1, 1,
1923 IS_H
($3.s0
), IS_H
($3.s1
), IS_H
($8.s0
), IS_H
($8.s1
),
1924 &$1, 0, &$3.s0
, &$3.s1
, 1);
1929 | a_assign ASHIFT REG_A BY HALF_REG
1931 if
(!REG_SAME
($1, $3))
1932 return
yyerror ("Aregs must be same");
1934 if
(IS_DREG
($5) && !IS_H
($5))
1936 notethat
("dsp32shift: A0 = ASHIFT A0 BY dregs_lo\n");
1937 $$
= DSP32SHIFT
(3, 0, &$5, 0, 0, IS_A1
($1));
1940 return
yyerror ("Dregs expected");
1943 | HALF_REG ASSIGN ASHIFT HALF_REG BY HALF_REG smod
1945 if
(IS_DREG
($6) && !IS_H
($6))
1947 notethat
("dsp32shift: dregs_half = ASHIFT dregs_half BY dregs_lo\n");
1948 $$
= DSP32SHIFT
(0, &$1, &$6, &$4, $7.s0
, HL2
($1, $4));
1951 return
yyerror ("Dregs expected");
1954 | a_assign REG_A LESS_LESS expr
1956 if
(!REG_SAME
($1, $2))
1957 return
yyerror ("Aregs must be same");
1959 if
(IS_UIMM
($4, 5))
1961 notethat
("dsp32shiftimm: A0 = A0 << uimm5\n");
1962 $$
= DSP32SHIFTIMM
(3, 0, imm5
($4), 0, 0, IS_A1
($1));
1965 return
yyerror ("Bad shift value");
1968 | REG ASSIGN REG LESS_LESS expr vsmod
1970 if
(IS_DREG
($1) && IS_DREG
($3) && IS_UIMM
($5, 5))
1975 notethat
("dsp32shiftimm: dregs = dregs << expr (V, .)\n");
1976 $$
= DSP32SHIFTIMM
(1, &$1, imm4
($5), &$3, $6.s0 ?
1 : 2, 0);
1980 notethat
("dsp32shiftimm: dregs = dregs << uimm5 (.)\n");
1981 $$
= DSP32SHIFTIMM
(2, &$1, imm6
($5), &$3, $6.s0 ?
1 : 2, 0);
1984 else if
($6.s0
== 0 && IS_PREG
($1) && IS_PREG
($3))
1986 if
(EXPR_VALUE
($5) == 2)
1988 notethat
("PTR2op: pregs = pregs << 2\n");
1989 $$
= PTR2OP
(&$1, &$3, 1);
1991 else if
(EXPR_VALUE
($5) == 1)
1993 notethat
("COMP3op: pregs = pregs << 1\n");
1994 $$
= COMP3OP
(&$1, &$3, &$3, 5);
1997 return
yyerror ("Bad shift value");
2000 return
yyerror ("Bad shift value or register");
2002 | HALF_REG ASSIGN HALF_REG LESS_LESS expr smod
2004 if
(IS_UIMM
($5, 4))
2008 notethat
("dsp32shiftimm: dregs_half = dregs_half << uimm4 (S)\n");
2009 $$
= DSP32SHIFTIMM
(0x0, &$1, imm5
($5), &$3, $6.s0
, HL2
($1, $3));
2013 notethat
("dsp32shiftimm: dregs_half = dregs_half << uimm4\n");
2014 $$
= DSP32SHIFTIMM
(0x0, &$1, imm5
($5), &$3, 2, HL2
($1, $3));
2018 return
yyerror ("Bad shift value");
2020 | REG ASSIGN ASHIFT REG BY HALF_REG vsmod
2024 if
(IS_DREG
($1) && IS_DREG
($4) && IS_DREG
($6) && !IS_H
($6))
2029 notethat
("dsp32shift: dregs = ASHIFT dregs BY "
2030 "dregs_lo (V, .)\n");
2036 notethat
("dsp32shift: dregs = ASHIFT dregs BY dregs_lo (.)\n");
2038 $$
= DSP32SHIFT
(op
, &$1, &$6, &$4, $7.s0
, 0);
2041 return
yyerror ("Dregs expected");
2045 | HALF_REG ASSIGN EXPADJ LPAREN REG COMMA HALF_REG RPAREN vmod
2047 if
(IS_DREG_L
($1) && IS_DREG_L
($5) && IS_DREG_L
($7))
2049 notethat
("dsp32shift: dregs_lo = EXPADJ (dregs , dregs_lo )\n");
2050 $$
= DSP32SHIFT
(7, &$1, &$7, &$5, $9.r0
, 0);
2053 return
yyerror ("Bad shift value or register");
2057 | HALF_REG ASSIGN EXPADJ LPAREN HALF_REG COMMA HALF_REG RPAREN
2059 if
(IS_DREG_L
($1) && IS_DREG_L
($5) && IS_DREG_L
($7))
2061 notethat
("dsp32shift: dregs_lo = EXPADJ (dregs_lo, dregs_lo)\n");
2062 $$
= DSP32SHIFT
(7, &$1, &$7, &$5, 2, 0);
2064 else if
(IS_DREG_L
($1) && IS_DREG_H
($5) && IS_DREG_L
($7))
2066 notethat
("dsp32shift: dregs_lo = EXPADJ (dregs_hi, dregs_lo)\n");
2067 $$
= DSP32SHIFT
(7, &$1, &$7, &$5, 3, 0);
2070 return
yyerror ("Bad shift value or register");
2075 | REG ASSIGN DEPOSIT LPAREN REG COMMA REG RPAREN
2077 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG
($7))
2079 notethat
("dsp32shift: dregs = DEPOSIT (dregs , dregs )\n");
2080 $$
= DSP32SHIFT
(10, &$1, &$7, &$5, 2, 0);
2083 return
yyerror ("Register mismatch");
2086 | REG ASSIGN DEPOSIT LPAREN REG COMMA REG RPAREN LPAREN X RPAREN
2088 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG
($7))
2090 notethat
("dsp32shift: dregs = DEPOSIT (dregs , dregs ) (X)\n");
2091 $$
= DSP32SHIFT
(10, &$1, &$7, &$5, 3, 0);
2094 return
yyerror ("Register mismatch");
2097 | REG ASSIGN EXTRACT LPAREN REG COMMA HALF_REG RPAREN xpmod
2099 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG_L
($7))
2101 notethat
("dsp32shift: dregs = EXTRACT (dregs, dregs_lo ) (.)\n");
2102 $$
= DSP32SHIFT
(10, &$1, &$7, &$5, $9.r0
, 0);
2105 return
yyerror ("Register mismatch");
2108 | a_assign REG_A _GREATER_GREATER_GREATER expr
2110 if
(!REG_SAME
($1, $2))
2111 return
yyerror ("Aregs must be same");
2113 if
(IS_UIMM
($4, 5))
2115 notethat
("dsp32shiftimm: Ax = Ax >>> uimm5\n");
2116 $$
= DSP32SHIFTIMM
(3, 0, -imm6
($4), 0, 0, IS_A1
($1));
2119 return
yyerror ("Shift value range error");
2121 | a_assign LSHIFT REG_A BY HALF_REG
2123 if
(REG_SAME
($1, $3) && IS_DREG_L
($5))
2125 notethat
("dsp32shift: Ax = LSHIFT Ax BY dregs_lo\n");
2126 $$
= DSP32SHIFT
(3, 0, &$5, 0, 1, IS_A1
($1));
2129 return
yyerror ("Register mismatch");
2132 | HALF_REG ASSIGN LSHIFT HALF_REG BY HALF_REG
2134 if
(IS_DREG
($1) && IS_DREG
($4) && IS_DREG_L
($6))
2136 notethat
("dsp32shift: dregs_lo = LSHIFT dregs_hi BY dregs_lo\n");
2137 $$
= DSP32SHIFT
(0, &$1, &$6, &$4, 2, HL2
($1, $4));
2140 return
yyerror ("Register mismatch");
2143 | REG ASSIGN LSHIFT REG BY HALF_REG vmod
2145 if
(IS_DREG
($1) && IS_DREG
($4) && IS_DREG_L
($6))
2147 notethat
("dsp32shift: dregs = LSHIFT dregs BY dregs_lo (V )\n");
2148 $$
= DSP32SHIFT
($7.r0 ?
1: 2, &$1, &$6, &$4, 2, 0);
2151 return
yyerror ("Register mismatch");
2154 | REG ASSIGN SHIFT REG BY HALF_REG
2156 if
(IS_DREG
($1) && IS_DREG
($4) && IS_DREG_L
($6))
2158 notethat
("dsp32shift: dregs = SHIFT dregs BY dregs_lo\n");
2159 $$
= DSP32SHIFT
(2, &$1, &$6, &$4, 2, 0);
2162 return
yyerror ("Register mismatch");
2165 | a_assign REG_A GREATER_GREATER expr
2167 if
(REG_SAME
($1, $2) && IS_IMM
($4, 6) >= 0)
2169 notethat
("dsp32shiftimm: Ax = Ax >> imm6\n");
2170 $$
= DSP32SHIFTIMM
(3, 0, -imm6
($4), 0, 1, IS_A1
($1));
2173 return
yyerror ("Accu register expected");
2176 | REG ASSIGN REG GREATER_GREATER expr vmod
2180 if
(IS_DREG
($1) && IS_DREG
($3) && IS_UIMM
($5, 5))
2182 notethat
("dsp32shiftimm: dregs = dregs >> uimm5 (V)\n");
2183 $$
= DSP32SHIFTIMM
(1, &$1, -uimm5
($5), &$3, 2, 0);
2186 return
yyerror ("Register mismatch");
2190 if
(IS_DREG
($1) && IS_DREG
($3) && IS_UIMM
($5, 5))
2192 notethat
("dsp32shiftimm: dregs = dregs >> uimm5\n");
2193 $$
= DSP32SHIFTIMM
(2, &$1, -imm6
($5), &$3, 2, 0);
2195 else if
(IS_PREG
($1) && IS_PREG
($3) && EXPR_VALUE
($5) == 2)
2197 notethat
("PTR2op: pregs = pregs >> 2\n");
2198 $$
= PTR2OP
(&$1, &$3, 3);
2200 else if
(IS_PREG
($1) && IS_PREG
($3) && EXPR_VALUE
($5) == 1)
2202 notethat
("PTR2op: pregs = pregs >> 1\n");
2203 $$
= PTR2OP
(&$1, &$3, 4);
2206 return
yyerror ("Register mismatch");
2209 | HALF_REG ASSIGN HALF_REG GREATER_GREATER expr
2211 if
(IS_UIMM
($5, 5))
2213 notethat
("dsp32shiftimm: dregs_half = dregs_half >> uimm5\n");
2214 $$
= DSP32SHIFTIMM
(0, &$1, -uimm5
($5), &$3, 2, HL2
($1, $3));
2217 return
yyerror ("Register mismatch");
2219 | HALF_REG ASSIGN HALF_REG _GREATER_GREATER_GREATER expr smod
2221 if
(IS_UIMM
($5, 5))
2223 notethat
("dsp32shiftimm: dregs_half = dregs_half >>> uimm5\n");
2224 $$
= DSP32SHIFTIMM
(0, &$1, -uimm5
($5), &$3,
2225 $6.s0
, HL2
($1, $3));
2228 return
yyerror ("Register or modifier mismatch");
2232 | REG ASSIGN REG _GREATER_GREATER_GREATER expr vsmod
2234 if
(IS_DREG
($1) && IS_DREG
($3) && IS_UIMM
($5, 5))
2239 notethat
("dsp32shiftimm: dregs = dregs >>> uimm5 (V, .)\n");
2240 $$
= DSP32SHIFTIMM
(1, &$1, -uimm5
($5), &$3, $6.s0
, 0);
2244 notethat
("dsp32shiftimm: dregs = dregs >>> uimm5 (.)\n");
2245 $$
= DSP32SHIFTIMM
(2, &$1, -uimm5
($5), &$3, $6.s0
, 0);
2249 return
yyerror ("Register mismatch");
2252 | HALF_REG ASSIGN ONES REG
2254 if
(IS_DREG_L
($1) && IS_DREG
($4))
2256 notethat
("dsp32shift: dregs_lo = ONES dregs\n");
2257 $$
= DSP32SHIFT
(6, &$1, 0, &$4, 3, 0);
2260 return
yyerror ("Register mismatch");
2263 | REG ASSIGN PACK LPAREN HALF_REG COMMA HALF_REG RPAREN
2265 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG
($7))
2267 notethat
("dsp32shift: dregs = PACK (dregs_hi , dregs_hi )\n");
2268 $$
= DSP32SHIFT
(4, &$1, &$7, &$5, HL2
($5, $7), 0);
2271 return
yyerror ("Register mismatch");
2274 | HALF_REG ASSIGN CCREG ASSIGN BXORSHIFT LPAREN REG_A COMMA REG RPAREN
2277 && $7.regno
== REG_A0
2278 && IS_DREG
($9) && !IS_H
($1) && !IS_A1
($7))
2280 notethat
("dsp32shift: dregs_lo = CC = BXORSHIFT (A0 , dregs )\n");
2281 $$
= DSP32SHIFT
(11, &$1, &$9, 0, 0, 0);
2284 return
yyerror ("Register mismatch");
2287 | HALF_REG ASSIGN CCREG ASSIGN BXOR LPAREN REG_A COMMA REG RPAREN
2290 && $7.regno
== REG_A0
2291 && IS_DREG
($9) && !IS_H
($1) && !IS_A1
($7))
2293 notethat
("dsp32shift: dregs_lo = CC = BXOR (A0 , dregs)\n");
2294 $$
= DSP32SHIFT
(11, &$1, &$9, 0, 1, 0);
2297 return
yyerror ("Register mismatch");
2300 | HALF_REG ASSIGN CCREG ASSIGN BXOR LPAREN REG_A COMMA REG_A COMMA CCREG RPAREN
2302 if
(IS_DREG
($1) && !IS_H
($1) && !REG_SAME
($7, $9))
2304 notethat
("dsp32shift: dregs_lo = CC = BXOR (A0 , A1 , CC)\n");
2305 $$
= DSP32SHIFT
(12, &$1, 0, 0, 1, 0);
2308 return
yyerror ("Register mismatch");
2311 | a_assign ROT REG_A BY HALF_REG
2313 if
(REG_SAME
($1, $3) && IS_DREG_L
($5))
2315 notethat
("dsp32shift: Ax = ROT Ax BY dregs_lo\n");
2316 $$
= DSP32SHIFT
(3, 0, &$5, 0, 2, IS_A1
($1));
2319 return
yyerror ("Register mismatch");
2322 | REG ASSIGN ROT REG BY HALF_REG
2324 if
(IS_DREG
($1) && IS_DREG
($4) && IS_DREG_L
($6))
2326 notethat
("dsp32shift: dregs = ROT dregs BY dregs_lo\n");
2327 $$
= DSP32SHIFT
(2, &$1, &$6, &$4, 3, 0);
2330 return
yyerror ("Register mismatch");
2333 | a_assign ROT REG_A BY expr
2337 notethat
("dsp32shiftimm: An = ROT An BY imm6\n");
2338 $$
= DSP32SHIFTIMM
(3, 0, imm6
($5), 0, 2, IS_A1
($1));
2341 return
yyerror ("Register mismatch");
2344 | REG ASSIGN ROT REG BY expr
2346 if
(IS_DREG
($1) && IS_DREG
($4) && IS_IMM
($6, 6))
2348 $$
= DSP32SHIFTIMM
(2, &$1, imm6
($6), &$4, 3, IS_A1
($1));
2351 return
yyerror ("Register mismatch");
2354 | HALF_REG ASSIGN SIGNBITS REG_A
2358 notethat
("dsp32shift: dregs_lo = SIGNBITS An\n");
2359 $$
= DSP32SHIFT
(6, &$1, 0, 0, IS_A1
($4), 0);
2362 return
yyerror ("Register mismatch");
2365 | HALF_REG ASSIGN SIGNBITS REG
2367 if
(IS_DREG_L
($1) && IS_DREG
($4))
2369 notethat
("dsp32shift: dregs_lo = SIGNBITS dregs\n");
2370 $$
= DSP32SHIFT
(5, &$1, 0, &$4, 0, 0);
2373 return
yyerror ("Register mismatch");
2376 | HALF_REG ASSIGN SIGNBITS HALF_REG
2380 notethat
("dsp32shift: dregs_lo = SIGNBITS dregs_lo\n");
2381 $$
= DSP32SHIFT
(5, &$1, 0, &$4, 1 + IS_H
($4), 0);
2384 return
yyerror ("Register mismatch");
2387 /* The ASR bit is just inverted here. */
2388 | HALF_REG ASSIGN VIT_MAX LPAREN REG RPAREN asr_asl
2390 if
(IS_DREG_L
($1) && IS_DREG
($5))
2392 notethat
("dsp32shift: dregs_lo = VIT_MAX (dregs) (..)\n");
2393 $$
= DSP32SHIFT
(9, &$1, 0, &$5, ($7.r0 ?
0 : 1), 0);
2396 return
yyerror ("Register mismatch");
2399 | REG ASSIGN VIT_MAX LPAREN REG COMMA REG RPAREN asr_asl
2401 if
(IS_DREG
($1) && IS_DREG
($5) && IS_DREG
($7))
2403 notethat
("dsp32shift: dregs = VIT_MAX (dregs, dregs) (ASR)\n");
2404 $$
= DSP32SHIFT
(9, &$1, &$7, &$5, 2 |
($9.r0 ?
0 : 1), 0);
2407 return
yyerror ("Register mismatch");
2410 | BITMUX LPAREN REG COMMA REG COMMA REG_A RPAREN asr_asl
2412 if
(REG_SAME
($3, $5))
2413 return
yyerror ("Illegal source register combination");
2415 if
(IS_DREG
($3) && IS_DREG
($5) && !IS_A1
($7))
2417 notethat
("dsp32shift: BITMUX (dregs , dregs , A0) (ASR)\n");
2418 $$
= DSP32SHIFT
(8, 0, &$3, &$5, $9.r0
, 0);
2421 return
yyerror ("Register mismatch");
2424 | a_assign BXORSHIFT LPAREN REG_A COMMA REG_A COMMA CCREG RPAREN
2426 if
(!IS_A1
($1) && !IS_A1
($4) && IS_A1
($6))
2428 notethat
("dsp32shift: A0 = BXORSHIFT (A0 , A1 , CC )\n");
2429 $$
= DSP32SHIFT
(12, 0, 0, 0, 0, 0);
2432 return
yyerror ("Dregs expected");
2436 /* LOGI2op: BITCLR (dregs, uimm5). */
2437 | BITCLR LPAREN REG COMMA expr RPAREN
2439 if
(IS_DREG
($3) && IS_UIMM
($5, 5))
2441 notethat
("LOGI2op: BITCLR (dregs , uimm5 )\n");
2442 $$
= LOGI2OP
($3, uimm5
($5), 4);
2445 return
yyerror ("Register mismatch");
2448 /* LOGI2op: BITSET (dregs, uimm5). */
2449 | BITSET LPAREN REG COMMA expr RPAREN
2451 if
(IS_DREG
($3) && IS_UIMM
($5, 5))
2453 notethat
("LOGI2op: BITCLR (dregs , uimm5 )\n");
2454 $$
= LOGI2OP
($3, uimm5
($5), 2);
2457 return
yyerror ("Register mismatch");
2460 /* LOGI2op: BITTGL (dregs, uimm5). */
2461 | BITTGL LPAREN REG COMMA expr RPAREN
2463 if
(IS_DREG
($3) && IS_UIMM
($5, 5))
2465 notethat
("LOGI2op: BITCLR (dregs , uimm5 )\n");
2466 $$
= LOGI2OP
($3, uimm5
($5), 3);
2469 return
yyerror ("Register mismatch");
2472 | CCREG _ASSIGN_BANG BITTST LPAREN REG COMMA expr RPAREN
2474 if
(IS_DREG
($5) && IS_UIMM
($7, 5))
2476 notethat
("LOGI2op: CC =! BITTST (dregs , uimm5 )\n");
2477 $$
= LOGI2OP
($5, uimm5
($7), 0);
2480 return
yyerror ("Register mismatch or value error");
2483 | CCREG ASSIGN BITTST LPAREN REG COMMA expr RPAREN
2485 if
(IS_DREG
($5) && IS_UIMM
($7, 5))
2487 notethat
("LOGI2op: CC = BITTST (dregs , uimm5 )\n");
2488 $$
= LOGI2OP
($5, uimm5
($7), 1);
2491 return
yyerror ("Register mismatch or value error");
2494 | IF BANG CCREG REG ASSIGN REG
2496 if
((IS_DREG
($4) || IS_PREG
($4))
2497 && (IS_DREG
($6) || IS_PREG
($6)))
2499 notethat
("ccMV: IF ! CC gregs = gregs\n");
2500 $$
= CCMV
(&$6, &$4, 0);
2503 return
yyerror ("Register mismatch");
2506 | IF CCREG REG ASSIGN REG
2508 if
((IS_DREG
($5) || IS_PREG
($5))
2509 && (IS_DREG
($3) || IS_PREG
($3)))
2511 notethat
("ccMV: IF CC gregs = gregs\n");
2512 $$
= CCMV
(&$5, &$3, 1);
2515 return
yyerror ("Register mismatch");
2518 | IF BANG CCREG JUMP expr
2520 if
(IS_PCREL10
($5))
2522 notethat
("BRCC: IF !CC JUMP pcrel11m2\n");
2523 $$
= BRCC
(0, 0, $5);
2526 return
yyerror ("Bad jump offset");
2529 | IF BANG CCREG JUMP expr LPAREN BP RPAREN
2531 if
(IS_PCREL10
($5))
2533 notethat
("BRCC: IF !CC JUMP pcrel11m2\n");
2534 $$
= BRCC
(0, 1, $5);
2537 return
yyerror ("Bad jump offset");
2540 | IF CCREG JUMP expr
2542 if
(IS_PCREL10
($4))
2544 notethat
("BRCC: IF CC JUMP pcrel11m2\n");
2545 $$
= BRCC
(1, 0, $4);
2548 return
yyerror ("Bad jump offset");
2551 | IF CCREG JUMP expr LPAREN BP RPAREN
2553 if
(IS_PCREL10
($4))
2555 notethat
("BRCC: IF !CC JUMP pcrel11m2\n");
2556 $$
= BRCC
(1, 1, $4);
2559 return
yyerror ("Bad jump offset");
2563 notethat
("ProgCtrl: NOP\n");
2564 $$
= PROGCTRL
(0, 0);
2569 notethat
("ProgCtrl: RTS\n");
2570 $$
= PROGCTRL
(1, 0);
2575 notethat
("ProgCtrl: RTI\n");
2576 $$
= PROGCTRL
(1, 1);
2581 notethat
("ProgCtrl: RTX\n");
2582 $$
= PROGCTRL
(1, 2);
2587 notethat
("ProgCtrl: RTN\n");
2588 $$
= PROGCTRL
(1, 3);
2593 notethat
("ProgCtrl: RTE\n");
2594 $$
= PROGCTRL
(1, 4);
2599 notethat
("ProgCtrl: IDLE\n");
2600 $$
= PROGCTRL
(2, 0);
2605 notethat
("ProgCtrl: CSYNC\n");
2606 $$
= PROGCTRL
(2, 3);
2611 notethat
("ProgCtrl: SSYNC\n");
2612 $$
= PROGCTRL
(2, 4);
2617 notethat
("ProgCtrl: EMUEXCPT\n");
2618 $$
= PROGCTRL
(2, 5);
2625 notethat
("ProgCtrl: CLI dregs\n");
2626 $$
= PROGCTRL
(3, $2.regno
& CODE_MASK
);
2629 return
yyerror ("Dreg expected for CLI");
2636 notethat
("ProgCtrl: STI dregs\n");
2637 $$
= PROGCTRL
(4, $2.regno
& CODE_MASK
);
2640 return
yyerror ("Dreg expected for STI");
2643 | JUMP LPAREN REG RPAREN
2647 notethat
("ProgCtrl: JUMP (pregs )\n");
2648 $$
= PROGCTRL
(5, $3.regno
& CODE_MASK
);
2651 return
yyerror ("Bad register for indirect jump");
2654 | CALL LPAREN REG RPAREN
2658 notethat
("ProgCtrl: CALL (pregs )\n");
2659 $$
= PROGCTRL
(6, $3.regno
& CODE_MASK
);
2662 return
yyerror ("Bad register for indirect call");
2665 | CALL LPAREN PC PLUS REG RPAREN
2669 notethat
("ProgCtrl: CALL (PC + pregs )\n");
2670 $$
= PROGCTRL
(7, $5.regno
& CODE_MASK
);
2673 return
yyerror ("Bad register for indirect call");
2676 | JUMP LPAREN PC PLUS REG RPAREN
2680 notethat
("ProgCtrl: JUMP (PC + pregs )\n");
2681 $$
= PROGCTRL
(8, $5.regno
& CODE_MASK
);
2684 return
yyerror ("Bad register for indirect jump");
2689 if
(IS_UIMM
($2, 4))
2691 notethat
("ProgCtrl: RAISE uimm4\n");
2692 $$
= PROGCTRL
(9, uimm4
($2));
2695 return
yyerror ("Bad value for RAISE");
2700 notethat
("ProgCtrl: EMUEXCPT\n");
2701 $$
= PROGCTRL
(10, uimm4
($2));
2704 | TESTSET LPAREN REG RPAREN
2708 if
($3.regno
== REG_SP ||
$3.regno
== REG_FP
)
2709 return
yyerror ("Bad register for TESTSET");
2711 notethat
("ProgCtrl: TESTSET (pregs )\n");
2712 $$
= PROGCTRL
(11, $3.regno
& CODE_MASK
);
2715 return
yyerror ("Preg expected");
2720 if
(IS_PCREL12
($2))
2722 notethat
("UJUMP: JUMP pcrel12\n");
2726 return
yyerror ("Bad value for relative jump");
2731 if
(IS_PCREL12
($2))
2733 notethat
("UJUMP: JUMP_DOT_S pcrel12\n");
2737 return
yyerror ("Bad value for relative jump");
2742 if
(IS_PCREL24
($2))
2744 notethat
("CALLa: jump.l pcrel24\n");
2748 return
yyerror ("Bad value for long jump");
2753 if
(IS_PCREL24
($2))
2755 notethat
("CALLa: jump.l pcrel24\n");
2759 return
yyerror ("Bad value for long jump");
2764 if
(IS_PCREL24
($2))
2766 notethat
("CALLa: CALL pcrel25m2\n");
2770 return
yyerror ("Bad call address");
2774 if
(IS_PCREL24
($2))
2776 notethat
("CALLa: CALL pcrel25m2\n");
2780 return
yyerror ("Bad call address");
2784 /* ALU2op: DIVQ (dregs, dregs). */
2785 | DIVQ LPAREN REG COMMA REG RPAREN
2787 if
(IS_DREG
($3) && IS_DREG
($5))
2788 $$
= ALU2OP
(&$3, &$5, 8);
2790 return
yyerror ("Bad registers for DIVQ");
2793 | DIVS LPAREN REG COMMA REG RPAREN
2795 if
(IS_DREG
($3) && IS_DREG
($5))
2796 $$
= ALU2OP
(&$3, &$5, 9);
2798 return
yyerror ("Bad registers for DIVS");
2801 | REG ASSIGN MINUS REG vsmod
2803 if
(IS_DREG
($1) && IS_DREG
($4))
2805 if
($5.r0
== 0 && $5.s0
== 0 && $5.aop
== 0)
2807 notethat
("ALU2op: dregs = - dregs\n");
2808 $$
= ALU2OP
(&$1, &$4, 14);
2810 else if
($5.r0
== 1 && $5.s0
== 0 && $5.aop
== 3)
2812 notethat
("dsp32alu: dregs = - dregs (.)\n");
2813 $$
= DSP32ALU
(15, 0, 0, &$1, &$4, 0, $5.s0
, 0, 3);
2817 notethat
("dsp32alu: dregs = - dregs (.)\n");
2818 $$
= DSP32ALU
(7, 0, 0, &$1, &$4, 0, $5.s0
, 0, 3);
2822 return
yyerror ("Dregs expected");
2825 | REG ASSIGN TILDA REG
2827 if
(IS_DREG
($1) && IS_DREG
($4))
2829 notethat
("ALU2op: dregs = ~dregs\n");
2830 $$
= ALU2OP
(&$1, &$4, 15);
2833 return
yyerror ("Dregs expected");
2836 | REG _GREATER_GREATER_ASSIGN REG
2838 if
(IS_DREG
($1) && IS_DREG
($3))
2840 notethat
("ALU2op: dregs >>= dregs\n");
2841 $$
= ALU2OP
(&$1, &$3, 1);
2844 return
yyerror ("Dregs expected");
2847 | REG _GREATER_GREATER_ASSIGN expr
2849 if
(IS_DREG
($1) && IS_UIMM
($3, 5))
2851 notethat
("LOGI2op: dregs >>= uimm5\n");
2852 $$
= LOGI2OP
($1, uimm5
($3), 6);
2855 return
yyerror ("Dregs expected or value error");
2858 | REG _GREATER_GREATER_GREATER_THAN_ASSIGN REG
2860 if
(IS_DREG
($1) && IS_DREG
($3))
2862 notethat
("ALU2op: dregs >>>= dregs\n");
2863 $$
= ALU2OP
(&$1, &$3, 0);
2866 return
yyerror ("Dregs expected");
2869 | REG _LESS_LESS_ASSIGN REG
2871 if
(IS_DREG
($1) && IS_DREG
($3))
2873 notethat
("ALU2op: dregs <<= dregs\n");
2874 $$
= ALU2OP
(&$1, &$3, 2);
2877 return
yyerror ("Dregs expected");
2880 | REG _LESS_LESS_ASSIGN expr
2882 if
(IS_DREG
($1) && IS_UIMM
($3, 5))
2884 notethat
("LOGI2op: dregs <<= uimm5\n");
2885 $$
= LOGI2OP
($1, uimm5
($3), 7);
2888 return
yyerror ("Dregs expected or const value error");
2892 | REG _GREATER_GREATER_GREATER_THAN_ASSIGN expr
2894 if
(IS_DREG
($1) && IS_UIMM
($3, 5))
2896 notethat
("LOGI2op: dregs >>>= uimm5\n");
2897 $$
= LOGI2OP
($1, uimm5
($3), 5);
2900 return
yyerror ("Dregs expected");
2903 /* Cache Control. */
2905 | FLUSH LBRACK REG RBRACK
2907 notethat
("CaCTRL: FLUSH [ pregs ]\n");
2909 $$
= CACTRL
(&$3, 0, 2);
2911 return
yyerror ("Bad register(s) for FLUSH");
2914 | FLUSH reg_with_postinc
2918 notethat
("CaCTRL: FLUSH [ pregs ++ ]\n");
2919 $$
= CACTRL
(&$2, 1, 2);
2922 return
yyerror ("Bad register(s) for FLUSH");
2925 | FLUSHINV LBRACK REG RBRACK
2929 notethat
("CaCTRL: FLUSHINV [ pregs ]\n");
2930 $$
= CACTRL
(&$3, 0, 1);
2933 return
yyerror ("Bad register(s) for FLUSH");
2936 | FLUSHINV reg_with_postinc
2940 notethat
("CaCTRL: FLUSHINV [ pregs ++ ]\n");
2941 $$
= CACTRL
(&$2, 1, 1);
2944 return
yyerror ("Bad register(s) for FLUSH");
2947 /* CaCTRL: IFLUSH [pregs]. */
2948 | IFLUSH LBRACK REG RBRACK
2952 notethat
("CaCTRL: IFLUSH [ pregs ]\n");
2953 $$
= CACTRL
(&$3, 0, 3);
2956 return
yyerror ("Bad register(s) for FLUSH");
2959 | IFLUSH reg_with_postinc
2963 notethat
("CaCTRL: IFLUSH [ pregs ++ ]\n");
2964 $$
= CACTRL
(&$2, 1, 3);
2967 return
yyerror ("Bad register(s) for FLUSH");
2970 | PREFETCH LBRACK REG RBRACK
2974 notethat
("CaCTRL: PREFETCH [ pregs ]\n");
2975 $$
= CACTRL
(&$3, 0, 0);
2978 return
yyerror ("Bad register(s) for PREFETCH");
2981 | PREFETCH reg_with_postinc
2985 notethat
("CaCTRL: PREFETCH [ pregs ++ ]\n");
2986 $$
= CACTRL
(&$2, 1, 0);
2989 return
yyerror ("Bad register(s) for PREFETCH");
2993 /* LDST: B [ pregs <post_op> ] = dregs. */
2995 | B LBRACK REG post_op RBRACK ASSIGN REG
2998 return
yyerror ("Dreg expected for source operand");
3000 return
yyerror ("Preg expected in address");
3002 notethat
("LDST: B [ pregs <post_op> ] = dregs\n");
3003 $$
= LDST
(&$3, &$7, $4.x0
, 2, 0, 1);
3006 /* LDSTidxI: B [ pregs + imm16 ] = dregs. */
3007 | B LBRACK REG plus_minus expr RBRACK ASSIGN REG
3009 Expr_Node
*tmp
= $5;
3012 return
yyerror ("Dreg expected for source operand");
3014 return
yyerror ("Preg expected in address");
3017 return
yyerror ("Plain symbol used as offset");
3020 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3022 if
(in_range_p
(tmp
, -32768, 32767, 0))
3024 notethat
("LDST: B [ pregs + imm16 ] = dregs\n");
3025 $$
= LDSTIDXI
(&$3, &$8, 1, 2, 0, $5);
3028 return
yyerror ("Displacement out of range");
3032 /* LDSTii: W [ pregs + uimm4s2 ] = dregs. */
3033 | W LBRACK REG plus_minus expr RBRACK ASSIGN REG
3035 Expr_Node
*tmp
= $5;
3038 return
yyerror ("Dreg expected for source operand");
3040 return
yyerror ("Preg expected in address");
3043 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3046 return
yyerror ("Plain symbol used as offset");
3048 if
(in_range_p
(tmp
, 0, 30, 1))
3050 notethat
("LDSTii: W [ pregs +- uimm5m2 ] = dregs\n");
3051 $$
= LDSTII
(&$3, &$8, tmp
, 1, 1);
3053 else if
(in_range_p
(tmp
, -65536, 65535, 1))
3055 notethat
("LDSTidxI: W [ pregs + imm17m2 ] = dregs\n");
3056 $$
= LDSTIDXI
(&$3, &$8, 1, 1, 0, tmp
);
3059 return
yyerror ("Displacement out of range");
3062 /* LDST: W [ pregs <post_op> ] = dregs. */
3063 | W LBRACK REG post_op RBRACK ASSIGN REG
3066 return
yyerror ("Dreg expected for source operand");
3068 return
yyerror ("Preg expected in address");
3070 notethat
("LDST: W [ pregs <post_op> ] = dregs\n");
3071 $$
= LDST
(&$3, &$7, $4.x0
, 1, 0, 1);
3074 | W LBRACK REG post_op RBRACK ASSIGN HALF_REG
3077 return
yyerror ("Dreg expected for source operand");
3080 if
(!IS_IREG
($3) && !IS_PREG
($3))
3081 return
yyerror ("Ireg or Preg expected in address");
3083 else if
(!IS_IREG
($3))
3084 return
yyerror ("Ireg expected in address");
3088 notethat
("dspLDST: W [ iregs <post_op> ] = dregs_half\n");
3089 $$
= DSPLDST
(&$3, 1 + IS_H
($7), &$7, $4.x0
, 1);
3093 notethat
("LDSTpmod: W [ pregs ] = dregs_half\n");
3094 $$
= LDSTPMOD
(&$3, &$7, &$3, 1 + IS_H
($7), 1);
3098 /* LDSTiiFP: [ FP - const ] = dpregs. */
3099 | LBRACK REG plus_minus expr RBRACK ASSIGN REG
3101 Expr_Node
*tmp
= $4;
3102 int ispreg
= IS_PREG
($7);
3105 return
yyerror ("Preg expected in address");
3107 if
(!IS_DREG
($7) && !ispreg
)
3108 return
yyerror ("Preg expected for source operand");
3111 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3114 return
yyerror ("Plain symbol used as offset");
3116 if
(in_range_p
(tmp
, 0, 63, 3))
3118 notethat
("LDSTii: dpregs = [ pregs + uimm6m4 ]\n");
3119 $$
= LDSTII
(&$2, &$7, tmp
, 1, ispreg ?
3 : 0);
3121 else if
($2.regno
== REG_FP
&& in_range_p
(tmp
, -128, 0, 3))
3123 notethat
("LDSTiiFP: dpregs = [ FP - uimm7m4 ]\n");
3124 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3125 $$
= LDSTIIFP
(tmp
, &$7, 1);
3127 else if
(in_range_p
(tmp
, -131072, 131071, 3))
3129 notethat
("LDSTidxI: [ pregs + imm18m4 ] = dpregs\n");
3130 $$
= LDSTIDXI
(&$2, &$7, 1, 0, ispreg ?
1 : 0, tmp
);
3133 return
yyerror ("Displacement out of range");
3136 | REG ASSIGN W LBRACK REG plus_minus expr RBRACK xpmod
3138 Expr_Node
*tmp
= $7;
3140 return
yyerror ("Dreg expected for destination operand");
3142 return
yyerror ("Preg expected in address");
3145 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3148 return
yyerror ("Plain symbol used as offset");
3150 if
(in_range_p
(tmp
, 0, 30, 1))
3152 notethat
("LDSTii: dregs = W [ pregs + uimm5m2 ] (.)\n");
3153 $$
= LDSTII
(&$5, &$1, tmp
, 0, 1 << $9.r0
);
3155 else if
(in_range_p
(tmp
, -65536, 65535, 1))
3157 notethat
("LDSTidxI: dregs = W [ pregs + imm17m2 ] (.)\n");
3158 $$
= LDSTIDXI
(&$5, &$1, 0, 1, $9.r0
, tmp
);
3161 return
yyerror ("Displacement out of range");
3164 | HALF_REG ASSIGN W LBRACK REG post_op RBRACK
3167 return
yyerror ("Dreg expected for source operand");
3170 if
(!IS_IREG
($5) && !IS_PREG
($5))
3171 return
yyerror ("Ireg or Preg expected in address");
3173 else if
(!IS_IREG
($5))
3174 return
yyerror ("Ireg expected in address");
3178 notethat
("dspLDST: dregs_half = W [ iregs <post_op> ]\n");
3179 $$
= DSPLDST
(&$5, 1 + IS_H
($1), &$1, $6.x0
, 0);
3183 notethat
("LDSTpmod: dregs_half = W [ pregs <post_op> ]\n");
3184 $$
= LDSTPMOD
(&$5, &$1, &$5, 1 + IS_H
($1), 0);
3189 | REG ASSIGN W LBRACK REG post_op RBRACK xpmod
3192 return
yyerror ("Dreg expected for destination operand");
3194 return
yyerror ("Preg expected in address");
3196 notethat
("LDST: dregs = W [ pregs <post_op> ] (.)\n");
3197 $$
= LDST
(&$5, &$1, $6.x0
, 1, $8.r0
, 0);
3200 | REG ASSIGN W LBRACK REG _PLUS_PLUS REG RBRACK xpmod
3203 return
yyerror ("Dreg expected for destination operand");
3204 if
(!IS_PREG
($5) ||
!IS_PREG
($7))
3205 return
yyerror ("Preg expected in address");
3207 notethat
("LDSTpmod: dregs = W [ pregs ++ pregs ] (.)\n");
3208 $$
= LDSTPMOD
(&$5, &$1, &$7, 3, $9.r0
);
3211 | HALF_REG ASSIGN W LBRACK REG _PLUS_PLUS REG RBRACK
3214 return
yyerror ("Dreg expected for destination operand");
3215 if
(!IS_PREG
($5) ||
!IS_PREG
($7))
3216 return
yyerror ("Preg expected in address");
3218 notethat
("LDSTpmod: dregs_half = W [ pregs ++ pregs ]\n");
3219 $$
= LDSTPMOD
(&$5, &$1, &$7, 1 + IS_H
($1), 0);
3222 | LBRACK REG post_op RBRACK ASSIGN REG
3224 if
(!IS_IREG
($2) && !IS_PREG
($2))
3225 return
yyerror ("Ireg or Preg expected in address");
3226 else if
(IS_IREG
($2) && !IS_DREG
($6))
3227 return
yyerror ("Dreg expected for source operand");
3228 else if
(IS_PREG
($2) && !IS_DREG
($6) && !IS_PREG
($6))
3229 return
yyerror ("Dreg or Preg expected for source operand");
3233 notethat
("dspLDST: [ iregs <post_op> ] = dregs\n");
3234 $$
= DSPLDST
(&$2, 0, &$6, $3.x0
, 1);
3236 else if
(IS_DREG
($6))
3238 notethat
("LDST: [ pregs <post_op> ] = dregs\n");
3239 $$
= LDST
(&$2, &$6, $3.x0
, 0, 0, 1);
3243 notethat
("LDST: [ pregs <post_op> ] = pregs\n");
3244 $$
= LDST
(&$2, &$6, $3.x0
, 0, 1, 1);
3248 | LBRACK REG _PLUS_PLUS REG RBRACK ASSIGN REG
3251 return
yyerror ("Dreg expected for source operand");
3253 if
(IS_IREG
($2) && IS_MREG
($4))
3255 notethat
("dspLDST: [ iregs ++ mregs ] = dregs\n");
3256 $$
= DSPLDST
(&$2, $4.regno
& CODE_MASK
, &$7, 3, 1);
3258 else if
(IS_PREG
($2) && IS_PREG
($4))
3260 notethat
("LDSTpmod: [ pregs ++ pregs ] = dregs\n");
3261 $$
= LDSTPMOD
(&$2, &$7, &$4, 0, 1);
3264 return
yyerror ("Preg ++ Preg or Ireg ++ Mreg expected in address");
3267 | W LBRACK REG _PLUS_PLUS REG RBRACK ASSIGN HALF_REG
3270 return
yyerror ("Dreg expected for source operand");
3272 if
(IS_PREG
($3) && IS_PREG
($5))
3274 notethat
("LDSTpmod: W [ pregs ++ pregs ] = dregs_half\n");
3275 $$
= LDSTPMOD
(&$3, &$8, &$5, 1 + IS_H
($8), 1);
3278 return
yyerror ("Preg ++ Preg expected in address");
3281 | REG ASSIGN B LBRACK REG plus_minus expr RBRACK xpmod
3283 Expr_Node
*tmp
= $7;
3285 return
yyerror ("Dreg expected for destination operand");
3287 return
yyerror ("Preg expected in address");
3290 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3293 return
yyerror ("Plain symbol used as offset");
3295 if
(in_range_p
(tmp
, -32768, 32767, 0))
3297 notethat
("LDSTidxI: dregs = B [ pregs + imm16 ] (%c)\n",
3299 $$
= LDSTIDXI
(&$5, &$1, 0, 2, $9.r0
, tmp
);
3302 return
yyerror ("Displacement out of range");
3305 | REG ASSIGN B LBRACK REG post_op RBRACK xpmod
3308 return
yyerror ("Dreg expected for destination operand");
3310 return
yyerror ("Preg expected in address");
3312 notethat
("LDST: dregs = B [ pregs <post_op> ] (%c)\n",
3314 $$
= LDST
(&$5, &$1, $6.x0
, 2, $8.r0
, 0);
3317 | REG ASSIGN LBRACK REG _PLUS_PLUS REG RBRACK
3320 return
yyerror ("Dreg expected for destination operand");
3322 if
(IS_IREG
($4) && IS_MREG
($6))
3324 notethat
("dspLDST: dregs = [ iregs ++ mregs ]\n");
3325 $$
= DSPLDST
(&$4, $6.regno
& CODE_MASK
, &$1, 3, 0);
3327 else if
(IS_PREG
($4) && IS_PREG
($6))
3329 notethat
("LDSTpmod: dregs = [ pregs ++ pregs ]\n");
3330 $$
= LDSTPMOD
(&$4, &$1, &$6, 0, 0);
3333 return
yyerror ("Preg ++ Preg or Ireg ++ Mreg expected in address");
3336 | REG ASSIGN LBRACK REG plus_minus got_or_expr RBRACK
3338 Expr_Node
*tmp
= $6;
3339 int ispreg
= IS_PREG
($1);
3340 int isgot
= IS_RELOC
($6);
3343 return
yyerror ("Preg expected in address");
3345 if
(!IS_DREG
($1) && !ispreg
)
3346 return
yyerror ("Dreg or Preg expected for destination operand");
3348 if
(tmp
->type
== Expr_Node_Reloc
3349 && strcmp
(tmp
->value.s_value
,
3350 "_current_shared_library_p5_offset_") != 0)
3351 return
yyerror ("Plain symbol used as offset");
3354 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3358 notethat
("LDSTidxI: dpregs = [ pregs + sym@got ]\n");
3359 $$
= LDSTIDXI
(&$4, &$1, 0, 0, ispreg ?
1 : 0, tmp
);
3361 else if
(in_range_p
(tmp
, 0, 63, 3))
3363 notethat
("LDSTii: dpregs = [ pregs + uimm7m4 ]\n");
3364 $$
= LDSTII
(&$4, &$1, tmp
, 0, ispreg ?
3 : 0);
3366 else if
($4.regno
== REG_FP
&& in_range_p
(tmp
, -128, 0, 3))
3368 notethat
("LDSTiiFP: dpregs = [ FP - uimm7m4 ]\n");
3369 tmp
= unary
(Expr_Op_Type_NEG
, tmp
);
3370 $$
= LDSTIIFP
(tmp
, &$1, 0);
3372 else if
(in_range_p
(tmp
, -131072, 131071, 3))
3374 notethat
("LDSTidxI: dpregs = [ pregs + imm18m4 ]\n");
3375 $$
= LDSTIDXI
(&$4, &$1, 0, 0, ispreg ?
1 : 0, tmp
);
3379 return
yyerror ("Displacement out of range");
3382 | REG ASSIGN LBRACK REG post_op RBRACK
3384 if
(!IS_IREG
($4) && !IS_PREG
($4))
3385 return
yyerror ("Ireg or Preg expected in address");
3386 else if
(IS_IREG
($4) && !IS_DREG
($1))
3387 return
yyerror ("Dreg expected in destination operand");
3388 else if
(IS_PREG
($4) && !IS_DREG
($1) && !IS_PREG
($1)
3389 && ($4.regno
!= REG_SP ||
!IS_ALLREG
($1) ||
$5.x0
!= 0))
3390 return
yyerror ("Dreg or Preg expected in destination operand");
3394 notethat
("dspLDST: dregs = [ iregs <post_op> ]\n");
3395 $$
= DSPLDST
(&$4, 0, &$1, $5.x0
, 0);
3397 else if
(IS_DREG
($1))
3399 notethat
("LDST: dregs = [ pregs <post_op> ]\n");
3400 $$
= LDST
(&$4, &$1, $5.x0
, 0, 0, 0);
3402 else if
(IS_PREG
($1))
3404 if
(REG_SAME
($1, $4) && $5.x0
!= 2)
3405 return
yyerror ("Pregs can't be same");
3407 notethat
("LDST: pregs = [ pregs <post_op> ]\n");
3408 $$
= LDST
(&$4, &$1, $5.x0
, 0, 1, 0);
3412 notethat
("PushPopReg: allregs = [ SP ++ ]\n");
3413 $$
= PUSHPOPREG
(&$1, 0);
3418 /* PushPopMultiple. */
3419 | reg_with_predec ASSIGN LPAREN REG COLON expr COMMA REG COLON expr RPAREN
3421 if
($1.regno
!= REG_SP
)
3422 yyerror ("Stack Pointer expected");
3423 if
($4.regno
== REG_R7
3424 && IN_RANGE
($6, 0, 7)
3425 && $8.regno
== REG_P5
3426 && IN_RANGE
($10, 0, 5))
3428 notethat
("PushPopMultiple: [ -- SP ] = (R7 : reglim , P5 : reglim )\n");
3429 $$
= PUSHPOPMULTIPLE
(imm5
($6), imm5
($10), 1, 1, 1);
3432 return
yyerror ("Bad register for PushPopMultiple");
3435 | reg_with_predec ASSIGN LPAREN REG COLON expr RPAREN
3437 if
($1.regno
!= REG_SP
)
3438 yyerror ("Stack Pointer expected");
3440 if
($4.regno
== REG_R7
&& IN_RANGE
($6, 0, 7))
3442 notethat
("PushPopMultiple: [ -- SP ] = (R7 : reglim )\n");
3443 $$
= PUSHPOPMULTIPLE
(imm5
($6), 0, 1, 0, 1);
3445 else if
($4.regno
== REG_P5
&& IN_RANGE
($6, 0, 6))
3447 notethat
("PushPopMultiple: [ -- SP ] = (P5 : reglim )\n");
3448 $$
= PUSHPOPMULTIPLE
(0, imm5
($6), 0, 1, 1);
3451 return
yyerror ("Bad register for PushPopMultiple");
3454 | LPAREN REG COLON expr COMMA REG COLON expr RPAREN ASSIGN reg_with_postinc
3456 if
($11.regno
!= REG_SP
)
3457 yyerror ("Stack Pointer expected");
3458 if
($2.regno
== REG_R7
&& (IN_RANGE
($4, 0, 7))
3459 && $6.regno
== REG_P5
&& (IN_RANGE
($8, 0, 6)))
3461 notethat
("PushPopMultiple: (R7 : reglim , P5 : reglim ) = [ SP ++ ]\n");
3462 $$
= PUSHPOPMULTIPLE
(imm5
($4), imm5
($8), 1, 1, 0);
3465 return
yyerror ("Bad register range for PushPopMultiple");
3468 | LPAREN REG COLON expr RPAREN ASSIGN reg_with_postinc
3470 if
($7.regno
!= REG_SP
)
3471 yyerror ("Stack Pointer expected");
3473 if
($2.regno
== REG_R7
&& IN_RANGE
($4, 0, 7))
3475 notethat
("PushPopMultiple: (R7 : reglim ) = [ SP ++ ]\n");
3476 $$
= PUSHPOPMULTIPLE
(imm5
($4), 0, 1, 0, 0);
3478 else if
($2.regno
== REG_P5
&& IN_RANGE
($4, 0, 6))
3480 notethat
("PushPopMultiple: (P5 : reglim ) = [ SP ++ ]\n");
3481 $$
= PUSHPOPMULTIPLE
(0, imm5
($4), 0, 1, 0);
3484 return
yyerror ("Bad register range for PushPopMultiple");
3487 | reg_with_predec ASSIGN REG
3489 if
($1.regno
!= REG_SP
)
3490 yyerror ("Stack Pointer expected");
3494 notethat
("PushPopReg: [ -- SP ] = allregs\n");
3495 $$
= PUSHPOPREG
(&$3, 1);
3498 return
yyerror ("Bad register for PushPopReg");
3505 if
(IS_URANGE
(16, $2, 0, 4))
3506 $$
= LINKAGE
(0, uimm16s4
($2));
3508 return
yyerror ("Bad constant for LINK");
3513 notethat
("linkage: UNLINK\n");
3514 $$
= LINKAGE
(1, 0);
3520 | LSETUP LPAREN expr COMMA expr RPAREN REG
3522 if
(IS_PCREL4
($3) && IS_LPPCREL10
($5) && IS_CREG
($7))
3524 notethat
("LoopSetup: LSETUP (pcrel4 , lppcrel10 ) counters\n");
3525 $$
= LOOPSETUP
($3, &$7, 0, $5, 0);
3528 return
yyerror ("Bad register or values for LSETUP");
3531 | LSETUP LPAREN expr COMMA expr RPAREN REG ASSIGN REG
3533 if
(IS_PCREL4
($3) && IS_LPPCREL10
($5)
3534 && IS_PREG
($9) && IS_CREG
($7))
3536 notethat
("LoopSetup: LSETUP (pcrel4 , lppcrel10 ) counters = pregs\n");
3537 $$
= LOOPSETUP
($3, &$7, 1, $5, &$9);
3540 return
yyerror ("Bad register or values for LSETUP");
3543 | LSETUP LPAREN expr COMMA expr RPAREN REG ASSIGN REG GREATER_GREATER expr
3545 if
(IS_PCREL4
($3) && IS_LPPCREL10
($5)
3546 && IS_PREG
($9) && IS_CREG
($7)
3547 && EXPR_VALUE
($11) == 1)
3549 notethat
("LoopSetup: LSETUP (pcrel4 , lppcrel10 ) counters = pregs >> 1\n");
3550 $$
= LOOPSETUP
($3, &$7, 3, $5, &$9);
3553 return
yyerror ("Bad register or values for LSETUP");
3560 return
yyerror ("Invalid expression in loop statement");
3562 return
yyerror ("Invalid loop counter register");
3563 $$
= bfin_gen_loop
($2, &$3, 0, 0);
3565 | LOOP expr REG ASSIGN REG
3567 if
(IS_RELOC
($2) && IS_PREG
($5) && IS_CREG
($3))
3569 notethat
("Loop: LOOP expr counters = pregs\n");
3570 $$
= bfin_gen_loop
($2, &$3, 1, &$5);
3573 return
yyerror ("Bad register or values for LOOP");
3575 | LOOP expr REG ASSIGN REG GREATER_GREATER expr
3577 if
(IS_RELOC
($2) && IS_PREG
($5) && IS_CREG
($3) && EXPR_VALUE
($7) == 1)
3579 notethat
("Loop: LOOP expr counters = pregs >> 1\n");
3580 $$
= bfin_gen_loop
($2, &$3, 3, &$5);
3583 return
yyerror ("Bad register or values for LOOP");
3589 Expr_Node_Value val
;
3591 Expr_Node
*tmp
= Expr_Node_Create
(Expr_Node_Constant
, val
, NULL
, NULL
);
3592 bfin_loop_attempt_create_label
(tmp
, 1);
3593 if
(!IS_RELOC
(tmp
))
3594 return
yyerror ("Invalid expression in LOOP_BEGIN statement");
3595 bfin_loop_beginend
(tmp
, 1);
3601 return
yyerror ("Invalid expression in LOOP_BEGIN statement");
3603 bfin_loop_beginend
($2, 1);
3610 Expr_Node_Value val
;
3612 Expr_Node
*tmp
= Expr_Node_Create
(Expr_Node_Constant
, val
, NULL
, NULL
);
3613 bfin_loop_attempt_create_label
(tmp
, 1);
3614 if
(!IS_RELOC
(tmp
))
3615 return
yyerror ("Invalid expression in LOOP_END statement");
3616 bfin_loop_beginend
(tmp
, 0);
3622 return
yyerror ("Invalid expression in LOOP_END statement");
3624 bfin_loop_beginend
($2, 0);
3632 notethat
("psedoDEBUG: ABORT\n");
3633 $$
= bfin_gen_pseudodbg
(3, 3, 0);
3638 notethat
("pseudoDEBUG: DBG\n");
3639 $$
= bfin_gen_pseudodbg
(3, 7, 0);
3643 notethat
("pseudoDEBUG: DBG REG_A\n");
3644 $$
= bfin_gen_pseudodbg
(3, IS_A1
($2), 0);
3648 notethat
("pseudoDEBUG: DBG allregs\n");
3649 $$
= bfin_gen_pseudodbg
(0, $2.regno
& CODE_MASK
, ($2.regno
& CLASS_MASK
) >> 4);
3652 | DBGCMPLX LPAREN REG RPAREN
3655 return
yyerror ("Dregs expected");
3656 notethat
("pseudoDEBUG: DBGCMPLX (dregs )\n");
3657 $$
= bfin_gen_pseudodbg
(3, 6, ($3.regno
& CODE_MASK
) >> 4);
3662 notethat
("psedoDEBUG: DBGHALT\n");
3663 $$
= bfin_gen_pseudodbg
(3, 5, 0);
3668 notethat
("psedoDEBUG: HLT\n");
3669 $$
= bfin_gen_pseudodbg
(3, 4, 0);
3672 | DBGA LPAREN HALF_REG COMMA expr RPAREN
3674 notethat
("pseudodbg_assert: DBGA (regs_lo/hi , uimm16 )\n");
3675 $$
= bfin_gen_pseudodbg_assert
(IS_H
($3), &$3, uimm16
($5));
3678 | DBGAH LPAREN REG COMMA expr RPAREN
3680 notethat
("pseudodbg_assert: DBGAH (regs , uimm16 )\n");
3681 $$
= bfin_gen_pseudodbg_assert
(3, &$3, uimm16
($5));
3684 | DBGAL LPAREN REG COMMA expr RPAREN
3686 notethat
("psedodbg_assert: DBGAL (regs , uimm16 )\n");
3687 $$
= bfin_gen_pseudodbg_assert
(2, &$3, uimm16
($5));
3692 if
(!IS_UIMM
($2, 8))
3693 return
yyerror ("Constant out of range");
3694 notethat
("psedodbg_assert: OUTC uimm8\n");
3695 $$
= bfin_gen_pseudochr
(uimm8
($2));
3701 return
yyerror ("Dregs expected");
3702 notethat
("psedodbg_assert: OUTC dreg\n");
3703 $$
= bfin_gen_pseudodbg
(2, $2.regno
& CODE_MASK
, 0);
3710 /* Register rules. */
3712 REG_A: REG_A_DOUBLE_ZERO
3730 | LPAREN M COMMA MMOD RPAREN
3735 | LPAREN MMOD COMMA M RPAREN
3740 | LPAREN MMOD RPAREN
3752 asr_asl: LPAREN ASL RPAREN
3833 | LPAREN asr_asl_0 RPAREN
3845 | LPAREN asr_asl_0 COMMA sco RPAREN
3851 | LPAREN sco COMMA asr_asl_0 RPAREN
3911 | LPAREN V COMMA S RPAREN
3916 | LPAREN S COMMA V RPAREN
3978 | LPAREN MMOD RPAREN
3981 return
yyerror ("Bad modifier");
3985 | LPAREN MMOD COMMA R RPAREN
3988 return
yyerror ("Bad modifier");
3992 | LPAREN R COMMA MMOD RPAREN
3995 return
yyerror ("Bad modifier");
4022 | LPAREN MMOD RPAREN
4027 return
yyerror ("Only (W32) allowed");
4035 | LPAREN MMOD RPAREN
4040 return
yyerror ("(IU) expected");
4044 reg_with_predec: LBRACK _MINUS_MINUS REG RBRACK
4050 reg_with_postinc: LBRACK REG _PLUS_PLUS RBRACK
4102 $$.r0
= 1; /* HL. */
4105 $$.aop
= 0; /* aop. */
4110 $$.r0
= 1; /* HL. */
4113 $$.aop
= 1; /* aop. */
4116 | LPAREN RNDL RPAREN
4118 $$.r0
= 0; /* HL. */
4121 $$.aop
= 0; /* aop. */
4126 $$.r0
= 0; /* HL. */
4132 | LPAREN RNDH COMMA R RPAREN
4134 $$.r0
= 1; /* HL. */
4137 $$.aop
= 0; /* aop. */
4139 | LPAREN TH COMMA R RPAREN
4141 $$.r0
= 1; /* HL. */
4144 $$.aop
= 1; /* aop. */
4146 | LPAREN RNDL COMMA R RPAREN
4148 $$.r0
= 0; /* HL. */
4151 $$.aop
= 0; /* aop. */
4154 | LPAREN TL COMMA R RPAREN
4156 $$.r0
= 0; /* HL. */
4159 $$.aop
= 1; /* aop. */
4167 $$.x0
= 0; /* HL. */
4172 $$.x0
= 1; /* HL. */
4174 | LPAREN LO COMMA R RPAREN
4177 $$.x0
= 0; /* HL. */
4179 | LPAREN HI COMMA R RPAREN
4182 $$.x0
= 1; /* HL. */
4200 /* Assignments, Macfuncs. */
4226 if
(IS_A1
($3) && IS_EVEN
($1))
4227 return
yyerror ("Cannot move A1 to even register");
4228 else if
(!IS_A1
($3) && !IS_EVEN
($1))
4229 return
yyerror ("Cannot move A0 to odd register");
4245 | REG ASSIGN LPAREN a_macfunc RPAREN
4247 if
($4.n
&& IS_EVEN
($1))
4248 return
yyerror ("Cannot move A1 to even register");
4249 else if
(!$4.n
&& !IS_EVEN
($1))
4250 return
yyerror ("Cannot move A0 to odd register");
4258 | HALF_REG ASSIGN LPAREN a_macfunc RPAREN
4260 if
($4.n
&& !IS_H
($1))
4261 return
yyerror ("Cannot move A1 to low half of register");
4262 else if
(!$4.n
&& IS_H
($1))
4263 return
yyerror ("Cannot move A0 to high half of register");
4271 | HALF_REG ASSIGN REG_A
4273 if
(IS_A1
($3) && !IS_H
($1))
4274 return
yyerror ("Cannot move A1 to low half of register");
4275 else if
(!IS_A1
($3) && IS_H
($1))
4276 return
yyerror ("Cannot move A0 to high half of register");
4289 a_assign multiply_halfregs
4296 | a_plusassign multiply_halfregs
4303 | a_minusassign multiply_halfregs
4313 HALF_REG STAR HALF_REG
4315 if
(IS_DREG
($1) && IS_DREG
($3))
4321 return
yyerror ("Dregs expected");
4345 CCREG cc_op STATUS_REG
4357 | STATUS_REG cc_op CCREG
4371 /* Expressions and Symbols. */
4375 Expr_Node_Value val
;
4376 val.s_value
= S_GET_NAME
($1);
4377 $$
= Expr_Node_Create
(Expr_Node_Reloc
, val
, NULL
, NULL
);
4383 { $$
= BFD_RELOC_BFIN_GOT
; }
4385 { $$
= BFD_RELOC_BFIN_GOT17M4
; }
4387 { $$
= BFD_RELOC_BFIN_FUNCDESC_GOT17M4
; }
4390 got: symbol AT any_gotrel
4392 Expr_Node_Value val
;
4394 $$
= Expr_Node_Create
(Expr_Node_GOT_Reloc
, val
, $1, NULL
);
4417 Expr_Node_Value val
;
4419 $$
= Expr_Node_Create
(Expr_Node_Constant
, val
, NULL
, NULL
);
4425 | LPAREN expr_1 RPAREN
4431 $$
= unary
(Expr_Op_Type_COMP
, $2);
4433 | MINUS expr_1 %prec TILDA
4435 $$
= unary
(Expr_Op_Type_NEG
, $2);
4445 expr_1: expr_1 STAR expr_1
4447 $$
= binary
(Expr_Op_Type_Mult
, $1, $3);
4449 | expr_1 SLASH expr_1
4451 $$
= binary
(Expr_Op_Type_Div
, $1, $3);
4453 | expr_1 PERCENT expr_1
4455 $$
= binary
(Expr_Op_Type_Mod
, $1, $3);
4457 | expr_1 PLUS expr_1
4459 $$
= binary
(Expr_Op_Type_Add
, $1, $3);
4461 | expr_1 MINUS expr_1
4463 $$
= binary
(Expr_Op_Type_Sub
, $1, $3);
4465 | expr_1 LESS_LESS expr_1
4467 $$
= binary
(Expr_Op_Type_Lshift
, $1, $3);
4469 | expr_1 GREATER_GREATER expr_1
4471 $$
= binary
(Expr_Op_Type_Rshift
, $1, $3);
4473 | expr_1 AMPERSAND expr_1
4475 $$
= binary
(Expr_Op_Type_BAND
, $1, $3);
4477 | expr_1 CARET expr_1
4479 $$
= binary
(Expr_Op_Type_LOR
, $1, $3);
4483 $$
= binary
(Expr_Op_Type_BOR
, $1, $3);
4495 mkexpr
(int x
, SYMBOL_T s
)
4497 EXPR_T e
= (EXPR_T
) ALLOCATE
(sizeof
(struct expression_cell
));
4504 value_match
(Expr_Node
*exp
, int sz
, int sign
, int mul
, int issigned
)
4506 int umax
= (1 << sz
) - 1;
4507 int min
= -1 << (sz
- 1);
4508 int max
= (1 << (sz
- 1)) - 1;
4510 int v
= (EXPR_VALUE
(exp
)) & 0xffffffff;
4514 error ("%s:%d: Value Error -- Must align to %d\n", __FILE__
, __LINE__
, mul
);
4525 if
(v
>= min
&& v
<= max
) return
1;
4528 fprintf
(stderr
, "signed value %lx out of range\n", v
* mul
);
4532 if
(v
<= umax
&& v
>= 0)
4535 fprintf
(stderr
, "unsigned value %lx out of range\n", v
* mul
);
4540 /* Return the expression structure that allows symbol operations.
4541 If the left and right children are constants, do the operation. */
4543 binary
(Expr_Op_Type op
, Expr_Node
*x
, Expr_Node
*y
)
4545 Expr_Node_Value val
;
4547 if
(x
->type
== Expr_Node_Constant
&& y
->type
== Expr_Node_Constant
)
4551 case Expr_Op_Type_Add
:
4552 x
->value.i_value
+= y
->value.i_value
;
4554 case Expr_Op_Type_Sub
:
4555 x
->value.i_value
-= y
->value.i_value
;
4557 case Expr_Op_Type_Mult
:
4558 x
->value.i_value
*= y
->value.i_value
;
4560 case Expr_Op_Type_Div
:
4561 if
(y
->value.i_value
== 0)
4562 error ("Illegal Expression: Division by zero.");
4564 x
->value.i_value
/= y
->value.i_value
;
4566 case Expr_Op_Type_Mod
:
4567 x
->value.i_value %
= y
->value.i_value
;
4569 case Expr_Op_Type_Lshift
:
4570 x
->value.i_value
<<= y
->value.i_value
;
4572 case Expr_Op_Type_Rshift
:
4573 x
->value.i_value
>>= y
->value.i_value
;
4575 case Expr_Op_Type_BAND
:
4576 x
->value.i_value
&= y
->value.i_value
;
4578 case Expr_Op_Type_BOR
:
4579 x
->value.i_value |
= y
->value.i_value
;
4581 case Expr_Op_Type_BXOR
:
4582 x
->value.i_value ^
= y
->value.i_value
;
4584 case Expr_Op_Type_LAND
:
4585 x
->value.i_value
= x
->value.i_value
&& y
->value.i_value
;
4587 case Expr_Op_Type_LOR
:
4588 x
->value.i_value
= x
->value.i_value || y
->value.i_value
;
4592 error ("%s:%d: Internal assembler error\n", __FILE__
, __LINE__
);
4596 /* Canonicalize order to EXPR OP CONSTANT. */
4597 if
(x
->type
== Expr_Node_Constant
)
4603 /* Canonicalize subtraction of const to addition of negated const. */
4604 if
(op
== Expr_Op_Type_Sub
&& y
->type
== Expr_Node_Constant
)
4606 op
= Expr_Op_Type_Add
;
4607 y
->value.i_value
= -y
->value.i_value
;
4609 if
(y
->type
== Expr_Node_Constant
&& x
->type
== Expr_Node_Binop
4610 && x
->Right_Child
->type
== Expr_Node_Constant
)
4612 if
(op
== x
->value.op_value
&& x
->value.op_value
== Expr_Op_Type_Add
)
4614 x
->Right_Child
->value.i_value
+= y
->value.i_value
;
4619 /* Create a new expression structure. */
4621 return Expr_Node_Create
(Expr_Node_Binop
, val
, x
, y
);
4625 unary
(Expr_Op_Type op
, Expr_Node
*x
)
4627 if
(x
->type
== Expr_Node_Constant
)
4631 case Expr_Op_Type_NEG
:
4632 x
->value.i_value
= -x
->value.i_value
;
4634 case Expr_Op_Type_COMP
:
4635 x
->value.i_value
= ~x
->value.i_value
;
4638 error ("%s:%d: Internal assembler error\n", __FILE__
, __LINE__
);
4644 /* Create a new expression structure. */
4645 Expr_Node_Value val
;
4647 return Expr_Node_Create
(Expr_Node_Unop
, val
, x
, NULL
);
4651 int debug_codeselection
= 0;
4653 notethat
(char *format
, ...
)
4656 va_start
(ap
, format
);
4657 if
(debug_codeselection
)
4659 vfprintf
(errorf
, format
, ap
);
4665 main
(int argc
, char **argv
)