bfd/
[binutils.git] / gas / config / bfin-parse.y
blob917c2d27ba0f0104405d639af6b95a811e91dd62
1 /* bfin-parse.y ADI Blackfin parser
2 Copyright 2005
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 2, or (at your option)
10 any later version.
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
20 02110-1301, USA. */
23 #include <stdio.h>
24 #include <stdarg.h>
25 #include <obstack.h>
27 #include "bfin-aux.h" // opcode generating auxiliaries
28 #include "libbfd.h"
29 #include "elf/common.h"
30 #include "elf/bfin.h"
32 #define DSP32ALU(aopcde, HL, dst1, dst0, src0, src1, s, x, aop) \
33 bfin_gen_dsp32alu (HL, aopcde, aop, s, x, dst0, dst1, src0, src1)
35 #define DSP32MAC(op1, MM, mmod, w1, P, h01, h11, h00, h10, dst, op0, src0, src1, w0) \
36 bfin_gen_dsp32mac (op1, MM, mmod, w1, P, h01, h11, h00, h10, op0, \
37 dst, src0, src1, w0)
39 #define DSP32MULT(op1, MM, mmod, w1, P, h01, h11, h00, h10, dst, op0, src0, src1, w0) \
40 bfin_gen_dsp32mult (op1, MM, mmod, w1, P, h01, h11, h00, h10, op0, \
41 dst, src0, src1, w0)
43 #define DSP32SHIFT(sopcde, dst0, src0, src1, sop, hls) \
44 bfin_gen_dsp32shift (sopcde, dst0, src0, src1, sop, hls)
46 #define DSP32SHIFTIMM(sopcde, dst0, immag, src1, sop, hls) \
47 bfin_gen_dsp32shiftimm (sopcde, dst0, immag, src1, sop, hls)
49 #define LDIMMHALF_R(reg, h, s, z, hword) \
50 bfin_gen_ldimmhalf (reg, h, s, z, hword, 1)
52 #define LDIMMHALF_R5(reg, h, s, z, hword) \
53 bfin_gen_ldimmhalf (reg, h, s, z, hword, 2)
55 #define LDSTIDXI(ptr, reg, w, sz, z, offset) \
56 bfin_gen_ldstidxi (ptr, reg, w, sz, z, offset)
58 #define LDST(ptr, reg, aop, sz, z, w) \
59 bfin_gen_ldst (ptr, reg, aop, sz, z, w)
61 #define LDSTII(ptr, reg, offset, w, op) \
62 bfin_gen_ldstii (ptr, reg, offset, w, op)
64 #define DSPLDST(i, m, reg, aop, w) \
65 bfin_gen_dspldst (i, reg, aop, w, m)
67 #define LDSTPMOD(ptr, reg, idx, aop, w) \
68 bfin_gen_ldstpmod (ptr, reg, aop, w, idx)
70 #define LDSTIIFP(offset, reg, w) \
71 bfin_gen_ldstiifp (reg, offset, w)
73 #define LOGI2OP(dst, src, opc) \
74 bfin_gen_logi2op (opc, src, dst.regno & CODE_MASK)
76 #define ALU2OP(dst, src, opc) \
77 bfin_gen_alu2op (dst, src, opc)
79 #define BRCC(t, b, offset) \
80 bfin_gen_brcc (t, b, offset)
82 #define UJUMP(offset) \
83 bfin_gen_ujump (offset)
85 #define PROGCTRL(prgfunc, poprnd) \
86 bfin_gen_progctrl (prgfunc, poprnd)
88 #define PUSHPOPMULTIPLE(dr, pr, d, p, w) \
89 bfin_gen_pushpopmultiple (dr, pr, d, p, w)
91 #define PUSHPOPREG(reg, w) \
92 bfin_gen_pushpopreg (reg, w)
94 #define CALLA(addr, s) \
95 bfin_gen_calla (addr, s)
97 #define LINKAGE(r, framesize) \
98 bfin_gen_linkage (r, framesize)
100 #define COMPI2OPD(dst, src, op) \
101 bfin_gen_compi2opd (dst, src, op)
103 #define COMPI2OPP(dst, src, op) \
104 bfin_gen_compi2opp (dst, src, op)
106 #define DAGMODIK(i, op) \
107 bfin_gen_dagmodik (i, op)
109 #define DAGMODIM(i, m, op, br) \
110 bfin_gen_dagmodim (i, m, op, br)
112 #define COMP3OP(dst, src0, src1, opc) \
113 bfin_gen_comp3op (src0, src1, dst, opc)
115 #define PTR2OP(dst, src, opc) \
116 bfin_gen_ptr2op (dst, src, opc)
118 #define CCFLAG(x, y, opc, i, g) \
119 bfin_gen_ccflag (x, y, opc, i, g)
121 #define CCMV(src, dst, t) \
122 bfin_gen_ccmv (src, dst, t)
124 #define CACTRL(reg, a, op) \
125 bfin_gen_cactrl (reg, a, op)
127 #define LOOPSETUP(soffset, c, rop, eoffset, reg) \
128 bfin_gen_loopsetup (soffset, c, rop, eoffset, reg)
130 #define HL2(r1, r0) (IS_H (r1) << 1 | IS_H (r0))
131 #define IS_RANGE(bits, expr, sign, mul) \
132 value_match(expr, bits, sign, mul, 1)
133 #define IS_URANGE(bits, expr, sign, mul) \
134 value_match(expr, bits, sign, mul, 0)
135 #define IS_CONST(expr) (expr->type == Expr_Node_Constant)
136 #define IS_RELOC(expr) (expr->type != Expr_Node_Constant)
137 #define IS_IMM(expr, bits) value_match (expr, bits, 0, 1, 1)
138 #define IS_UIMM(expr, bits) value_match (expr, bits, 0, 1, 0)
140 #define IS_PCREL4(expr) \
141 (value_match (expr, 4, 0, 2, 0))
143 #define IS_LPPCREL10(expr) \
144 (value_match (expr, 10, 0, 2, 0))
146 #define IS_PCREL10(expr) \
147 (value_match (expr, 10, 0, 2, 1))
149 #define IS_PCREL12(expr) \
150 (value_match (expr, 12, 0, 2, 1))
152 #define IS_PCREL24(expr) \
153 (value_match (expr, 24, 0, 2, 1))
156 static int value_match (Expr_Node *expr, int sz, int sign, int mul, int issigned);
158 extern FILE *errorf;
159 extern INSTR_T insn;
161 static Expr_Node *binary (Expr_Op_Type, Expr_Node *, Expr_Node *);
162 static Expr_Node *unary (Expr_Op_Type, Expr_Node *);
164 static void notethat (char *format, ...);
166 char *current_inputline;
167 extern char *yytext;
168 int yyerror (char *msg);
170 void error (char *format, ...)
172 va_list ap;
173 char buffer[2000];
175 va_start (ap, format);
176 vsprintf (buffer, format, ap);
177 va_end (ap);
179 as_bad (buffer);
183 yyerror (char *msg)
185 if (msg[0] == '\0')
186 error ("%s", msg);
188 else if (yytext[0] != ';')
189 error ("%s. Input text was %s.", msg, yytext);
190 else
191 error ("%s.", msg);
193 return -1;
196 static int
197 in_range_p (Expr_Node *expr, int from, int to, unsigned int mask)
199 int val = EXPR_VALUE (expr);
200 if (expr->type != Expr_Node_Constant)
201 return 0;
202 if (val < from || val > to)
203 return 0;
204 return (val & mask) == 0;
207 extern int yylex (void);
209 #define imm3(x) EXPR_VALUE (x)
210 #define imm4(x) EXPR_VALUE (x)
211 #define uimm4(x) EXPR_VALUE (x)
212 #define imm5(x) EXPR_VALUE (x)
213 #define uimm5(x) EXPR_VALUE (x)
214 #define imm6(x) EXPR_VALUE (x)
215 #define imm7(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. */
226 static void
227 neg_value (Expr_Node *expr)
229 expr->value.i_value = -expr->value.i_value;
232 static int
233 valid_dreg_pair (Register *reg1, Expr_Node *reg2)
235 if (!IS_DREG (*reg1))
237 yyerror ("Dregs expected");
238 return 0;
241 if (reg1->regno != 1 && reg1->regno != 3)
243 yyerror ("Bad register pair");
244 return 0;
247 if (imm7 (reg2) != reg1->regno - 1)
249 yyerror ("Bad register pair");
250 return 0;
253 reg1->regno--;
254 return 1;
257 static int
258 check_multiply_halfregs (Macfunc *aa, Macfunc *ab)
260 if ((!REG_EQUAL (aa->s0, ab->s0) && !REG_EQUAL (aa->s0, ab->s1))
261 || (!REG_EQUAL (aa->s1, ab->s1) && !REG_EQUAL (aa->s1, ab->s0)))
262 return yyerror ("Source multiplication register mismatch");
264 return 0;
268 /* Check (vector) mac funcs and ops. */
270 static int
271 check_macfuncs (Macfunc *aa, Opt_mode *opa,
272 Macfunc *ab, Opt_mode *opb)
274 /* Variables for swapping. */
275 Macfunc mtmp;
276 Opt_mode otmp;
278 /* If a0macfunc comes before a1macfunc, swap them. */
280 if (aa->n == 0)
282 /* (M) is not allowed here. */
283 if (opa->MM != 0)
284 return yyerror ("(M) not allowed with A0MAC");
285 if (ab->n != 1)
286 return yyerror ("Vector AxMACs can't be same");
288 mtmp = *aa; *aa = *ab; *ab = mtmp;
289 otmp = *opa; *opa = *opb; *opb = otmp;
291 else
293 if (opb->MM != 0)
294 return yyerror ("(M) not allowed with A0MAC");
295 if (opa->mod != 0)
296 return yyerror ("Bad opt mode");
297 if (ab->n != 0)
298 return yyerror ("Vector AxMACs can't be same");
301 /* If both ops are != 3, we have multiply_halfregs in both
302 assignment_or_macfuncs. */
303 if (aa->op == ab->op && aa->op != 3)
305 if (check_multiply_halfregs (aa, ab) < 0)
306 return -1;
308 else
310 /* Only one of the assign_macfuncs has a half reg multiply
311 Evil trick: Just 'OR' their source register codes:
312 We can do that, because we know they were initialized to 0
313 in the rules that don't use multiply_halfregs. */
314 aa->s0.regno |= (ab->s0.regno & CODE_MASK);
315 aa->s1.regno |= (ab->s1.regno & CODE_MASK);
318 if (aa->w == ab->w && aa->P != ab->P)
320 return yyerror ("macfuncs must differ");
321 if (aa->w && (aa->dst.regno - ab->dst.regno != 1))
322 return yyerror ("Destination Dregs must differ by one");
324 /* We assign to full regs, thus obey even/odd rules. */
325 else if ((aa->w && aa->P && IS_EVEN (aa->dst))
326 || (ab->w && ab->P && !IS_EVEN (ab->dst)))
327 return yyerror ("Even/Odd register assignment mismatch");
328 /* We assign to half regs, thus obey hi/low rules. */
329 else if ( (aa->w && !aa->P && !IS_H (aa->dst))
330 || (ab->w && !aa->P && IS_H (ab->dst)))
331 return yyerror ("High/Low register assignment mismatch");
333 /* Make sure first macfunc has got both P flags ORed. */
334 aa->P |= ab->P;
336 /* Make sure mod flags get ORed, too. */
337 opb->mod |= opa->mod;
338 return 0;
342 static int
343 is_group1 (INSTR_T x)
345 /* Group1 is dpsLDST, LDSTpmod, LDST, LDSTiiFP, LDSTii. */
346 if ((x->value & 0xc000) == 0x8000 || (x->value == 0x0000))
347 return 1;
349 return 0;
352 static int
353 is_group2 (INSTR_T x)
355 if ((((x->value & 0xfc00) == 0x9c00) /* dspLDST. */
356 && !((x->value & 0xfde0) == 0x9c60) /* dagMODim. */
357 && !((x->value & 0xfde0) == 0x9ce0) /* dagMODim with bit rev. */
358 && !((x->value & 0xfde0) == 0x9d60)) /* pick dagMODik. */
359 || (x->value == 0x0000))
360 return 1;
361 return 0;
366 %union {
367 INSTR_T instr;
368 Expr_Node *expr;
369 SYMBOL_T symbol;
370 long value;
371 Register reg;
372 Macfunc macfunc;
373 struct { int r0; int s0; int x0; int aop; } modcodes;
374 struct { int r0; } r0;
375 Opt_mode mod;
379 /* Tokens. */
381 /* Vector Specific. */
382 %token BYTEOP16P BYTEOP16M
383 %token BYTEOP1P BYTEOP2P BYTEOP2M BYTEOP3P
384 %token BYTEUNPACK BYTEPACK
385 %token PACK
386 %token SAA
387 %token ALIGN8 ALIGN16 ALIGN24
388 %token VIT_MAX
389 %token EXTRACT DEPOSIT EXPADJ SEARCH
390 %token ONES SIGN SIGNBITS
392 /* Stack. */
393 %token LINK UNLINK
395 /* Registers. */
396 %token REG
397 %token PC
398 %token CCREG BYTE_DREG
399 %token REG_A_DOUBLE_ZERO REG_A_DOUBLE_ONE
400 %token A_ZERO_DOT_L A_ZERO_DOT_H A_ONE_DOT_L A_ONE_DOT_H
401 %token HALF_REG
403 /* Progctrl. */
404 %token NOP
405 %token RTI RTS RTX RTN RTE
406 %token HLT IDLE
407 %token STI CLI
408 %token CSYNC SSYNC
409 %token EMUEXCPT
410 %token RAISE EXCPT
411 %token LSETUP
412 %token LOOP
413 %token LOOP_BEGIN
414 %token LOOP_END
415 %token DISALGNEXCPT
416 %token JUMP JUMP_DOT_S JUMP_DOT_L
417 %token CALL
419 /* Emulator only. */
420 %token ABORT
422 /* Operators. */
423 %token NOT TILDA BANG
424 %token AMPERSAND BAR
425 %token PERCENT
426 %token CARET
427 %token BXOR
429 %token MINUS PLUS STAR SLASH
430 %token NEG
431 %token MIN MAX ABS
432 %token DOUBLE_BAR
433 %token _PLUS_BAR_PLUS _PLUS_BAR_MINUS _MINUS_BAR_PLUS _MINUS_BAR_MINUS
434 %token _MINUS_MINUS _PLUS_PLUS
436 /* Shift/rotate ops. */
437 %token SHIFT LSHIFT ASHIFT BXORSHIFT
438 %token _GREATER_GREATER_GREATER_THAN_ASSIGN
439 %token ROT
440 %token LESS_LESS GREATER_GREATER
441 %token _GREATER_GREATER_GREATER
442 %token _LESS_LESS_ASSIGN _GREATER_GREATER_ASSIGN
443 %token DIVS DIVQ
445 /* In place operators. */
446 %token ASSIGN _STAR_ASSIGN
447 %token _BAR_ASSIGN _CARET_ASSIGN _AMPERSAND_ASSIGN
448 %token _MINUS_ASSIGN _PLUS_ASSIGN
450 /* Assignments, comparisons. */
451 %token _ASSIGN_BANG _LESS_THAN_ASSIGN _ASSIGN_ASSIGN
452 %token GE LT LE GT
453 %token LESS_THAN
455 /* Cache. */
456 %token FLUSHINV FLUSH
457 %token IFLUSH PREFETCH
459 /* Misc. */
460 %token PRNT
461 %token OUTC
462 %token WHATREG
463 %token TESTSET
465 /* Modifiers. */
466 %token ASL ASR
467 %token B W
468 %token NS S CO SCO
469 %token TH TL
470 %token BP
471 %token BREV
472 %token X Z
473 %token M MMOD
474 %token R RND RNDL RNDH RND12 RND20
475 %token V
476 %token LO HI
478 /* Bit ops. */
479 %token BITTGL BITCLR BITSET BITTST BITMUX
481 /* Debug. */
482 %token DBGAL DBGAH DBGHALT DBG DBGA DBGCMPLX
484 /* Semantic auxiliaries. */
486 %token IF COMMA BY
487 %token COLON SEMICOLON
488 %token RPAREN LPAREN LBRACK RBRACK
489 %token STATUS_REG
490 %token MNOP
491 %token SYMBOL NUMBER
492 %token GOT GOT17M4 FUNCDESC_GOT17M4
493 %token AT PLTPC
495 /* Types. */
496 %type <instr> asm
497 %type <value> MMOD
498 %type <mod> opt_mode
500 %type <value> NUMBER
501 %type <r0> aligndir
502 %type <modcodes> byteop_mod
503 %type <reg> a_assign
504 %type <reg> a_plusassign
505 %type <reg> a_minusassign
506 %type <macfunc> multiply_halfregs
507 %type <macfunc> assign_macfunc
508 %type <macfunc> a_macfunc
509 %type <expr> expr_1
510 %type <instr> asm_1
511 %type <r0> vmod
512 %type <modcodes> vsmod
513 %type <modcodes> ccstat
514 %type <r0> cc_op
515 %type <reg> CCREG
516 %type <reg> reg_with_postinc
517 %type <reg> reg_with_predec
519 %type <r0> searchmod
520 %type <expr> symbol
521 %type <symbol> SYMBOL
522 %type <expr> eterm
523 %type <reg> REG
524 %type <reg> BYTE_DREG
525 %type <reg> REG_A_DOUBLE_ZERO
526 %type <reg> REG_A_DOUBLE_ONE
527 %type <reg> REG_A
528 %type <reg> STATUS_REG
529 %type <expr> expr
530 %type <r0> xpmod
531 %type <r0> xpmod1
532 %type <modcodes> smod
533 %type <modcodes> b3_op
534 %type <modcodes> rnd_op
535 %type <modcodes> post_op
536 %type <reg> HALF_REG
537 %type <r0> iu_or_nothing
538 %type <r0> plus_minus
539 %type <r0> asr_asl
540 %type <r0> asr_asl_0
541 %type <modcodes> sco
542 %type <modcodes> amod0
543 %type <modcodes> amod1
544 %type <modcodes> amod2
545 %type <r0> op_bar_op
546 %type <r0> w32_or_nothing
547 %type <r0> c_align
548 %type <r0> min_max
549 %type <expr> got
550 %type <expr> got_or_expr
551 %type <expr> pltpc
552 %type <value> any_gotrel GOT GOT17M4 FUNCDESC_GOT17M4
554 /* Precedence rules. */
555 %left BAR
556 %left CARET
557 %left AMPERSAND
558 %left LESS_LESS GREATER_GREATER
559 %left PLUS MINUS
560 %left STAR SLASH PERCENT
562 %right ASSIGN
564 %right TILDA BANG
565 %start statement
567 statement:
568 | asm
570 insn = $1;
571 if (insn == (INSTR_T) 0)
572 return NO_INSN_GENERATED;
573 else if (insn == (INSTR_T) - 1)
574 return SEMANTIC_ERROR;
575 else
576 return INSN_GENERATED;
580 asm: asm_1 SEMICOLON
581 /* Parallel instructions. */
582 | asm_1 DOUBLE_BAR asm_1 DOUBLE_BAR asm_1 SEMICOLON
584 if (($1->value & 0xf800) == 0xc000)
586 if (is_group1 ($3) && is_group2 ($5))
587 $$ = bfin_gen_multi_instr ($1, $3, $5);
588 else if (is_group2 ($3) && is_group1 ($5))
589 $$ = bfin_gen_multi_instr ($1, $5, $3);
590 else
591 return yyerror ("Wrong 16 bit instructions groups, slot 2 and slot 3 must be 16-bit instrution group");
593 else if (($3->value & 0xf800) == 0xc000)
595 if (is_group1 ($1) && is_group2 ($5))
596 $$ = bfin_gen_multi_instr ($3, $1, $5);
597 else if (is_group2 ($1) && is_group1 ($5))
598 $$ = bfin_gen_multi_instr ($3, $5, $1);
599 else
600 return yyerror ("Wrong 16 bit instructions groups, slot 1 and slot 3 must be 16-bit instrution group");
602 else if (($5->value & 0xf800) == 0xc000)
604 if (is_group1 ($1) && is_group2 ($3))
605 $$ = bfin_gen_multi_instr ($5, $1, $3);
606 else if (is_group2 ($1) && is_group1 ($3))
607 $$ = bfin_gen_multi_instr ($5, $3, $1);
608 else
609 return yyerror ("Wrong 16 bit instructions groups, slot 1 and slot 2 must be 16-bit instrution group");
611 else
612 error ("\nIllegal Multi Issue Construct, at least any one of the slot must be DSP32 instruction group\n");
615 | asm_1 DOUBLE_BAR asm_1 SEMICOLON
617 if (($1->value & 0xf800) == 0xc000)
619 if (is_group1 ($3))
620 $$ = bfin_gen_multi_instr ($1, $3, 0);
621 else if (is_group2 ($3))
622 $$ = bfin_gen_multi_instr ($1, 0, $3);
623 else
624 return yyerror ("Wrong 16 bit instructions groups, slot 2 must be the 16-bit instruction group");
626 else if (($3->value & 0xf800) == 0xc000)
628 if (is_group1 ($1))
629 $$ = bfin_gen_multi_instr ($3, $1, 0);
630 else if (is_group2 ($1))
631 $$ = bfin_gen_multi_instr ($3, 0, $1);
632 else
633 return yyerror ("Wrong 16 bit instructions groups, slot 1 must be the 16-bit instruction group");
635 else if (is_group1 ($1) && is_group2 ($3))
636 $$ = bfin_gen_multi_instr (0, $1, $3);
637 else if (is_group2 ($1) && is_group1 ($3))
638 $$ = bfin_gen_multi_instr (0, $3, $1);
639 else
640 return yyerror ("Wrong 16 bit instructions groups, slot 1 and slot 2 must be the 16-bit instruction group");
642 | error
644 $$ = 0;
645 yyerror ("");
646 yyerrok;
650 /* DSPMAC. */
652 asm_1:
653 MNOP
655 $$ = DSP32MAC (3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0);
657 | assign_macfunc opt_mode
659 int op0, op1;
660 int w0 = 0, w1 = 0;
661 int h00, h10, h01, h11;
663 if ($1.n == 0)
665 if ($2.MM)
666 return yyerror ("(m) not allowed with a0 unit");
667 op1 = 3;
668 op0 = $1.op;
669 w1 = 0;
670 w0 = $1.w;
671 h00 = IS_H ($1.s0);
672 h10 = IS_H ($1.s1);
673 h01 = h11 = 0;
675 else
677 op1 = $1.op;
678 op0 = 3;
679 w1 = $1.w;
680 w0 = 0;
681 h00 = h10 = 0;
682 h01 = IS_H ($1.s0);
683 h11 = IS_H ($1.s1);
685 $$ = DSP32MAC (op1, $2.MM, $2.mod, w1, $1.P, h01, h11, h00, h10,
686 &$1.dst, op0, &$1.s0, &$1.s1, w0);
690 /* VECTOR MACs. */
692 | assign_macfunc opt_mode COMMA assign_macfunc opt_mode
694 Register *dst;
696 if (check_macfuncs (&$1, &$2, &$4, &$5) < 0)
697 return -1;
698 notethat ("assign_macfunc (.), assign_macfunc (.)\n");
700 if ($1.w)
701 dst = &$1.dst;
702 else
703 dst = &$4.dst;
705 $$ = DSP32MAC ($1.op, $2.MM, $5.mod, $1.w, $1.P,
706 IS_H ($1.s0), IS_H ($1.s1), IS_H ($4.s0), IS_H ($4.s1),
707 dst, $4.op, &$1.s0, &$1.s1, $4.w);
710 /* DSPALU. */
712 | DISALGNEXCPT
714 notethat ("dsp32alu: DISALGNEXCPT\n");
715 $$ = DSP32ALU (18, 0, 0, 0, 0, 0, 0, 0, 3);
717 | REG ASSIGN LPAREN a_plusassign REG_A RPAREN
719 if (IS_DREG ($1) && !IS_A1 ($4) && IS_A1 ($5))
721 notethat ("dsp32alu: dregs = ( A0 += A1 )\n");
722 $$ = DSP32ALU (11, 0, 0, &$1, 0, 0, 0, 0, 0);
724 else
725 return yyerror ("Register mismatch");
727 | HALF_REG ASSIGN LPAREN a_plusassign REG_A RPAREN
729 if (!IS_A1 ($4) && IS_A1 ($5))
731 notethat ("dsp32alu: dregs_half = ( A0 += A1 )\n");
732 $$ = DSP32ALU (11, IS_H ($1), 0, &$1, 0, 0, 0, 0, 1);
734 else
735 return yyerror ("Register mismatch");
737 | A_ZERO_DOT_H ASSIGN HALF_REG
739 notethat ("dsp32alu: A_ZERO_DOT_H = dregs_hi\n");
740 $$ = DSP32ALU (9, IS_H ($3), 0, 0, &$3, 0, 0, 0, 0);
742 | A_ONE_DOT_H ASSIGN HALF_REG
744 notethat ("dsp32alu: A_ZERO_DOT_H = dregs_hi\n");
745 $$ = DSP32ALU (9, IS_H ($3), 0, 0, &$3, 0, 0, 0, 2);
747 | LPAREN REG COMMA REG RPAREN ASSIGN BYTEOP16P LPAREN REG
748 COLON expr COMMA REG COLON expr RPAREN aligndir
750 if (!IS_DREG ($2) || !IS_DREG ($4))
751 return yyerror ("Dregs expected");
752 else if (!valid_dreg_pair (&$9, $11))
753 return yyerror ("Bad dreg pair");
754 else if (!valid_dreg_pair (&$13, $15))
755 return yyerror ("Bad dreg pair");
756 else
758 notethat ("dsp32alu: (dregs , dregs ) = BYTEOP16P (dregs_pair , dregs_pair ) (half)\n");
759 $$ = DSP32ALU (21, 0, &$2, &$4, &$9, &$13, $17.r0, 0, 0);
763 | LPAREN REG COMMA REG RPAREN ASSIGN BYTEOP16M LPAREN REG COLON expr COMMA
764 REG COLON expr RPAREN aligndir
766 if (!IS_DREG ($2) || !IS_DREG($4))
767 return yyerror ("Dregs expected");
768 else if (!valid_dreg_pair (&$9, $11))
769 return yyerror ("Bad dreg pair");
770 else if (!valid_dreg_pair (&$13, $15))
771 return yyerror ("Bad dreg pair");
772 else
774 notethat ("dsp32alu: (dregs , dregs ) = BYTEOP16M (dregs_pair , dregs_pair ) (aligndir)\n");
775 $$ = DSP32ALU (21, 0, &$2, &$4, &$9, &$13, $17.r0, 0, 1);
779 | LPAREN REG COMMA REG RPAREN ASSIGN BYTEUNPACK REG COLON expr aligndir
781 if (!IS_DREG ($2) || !IS_DREG ($4))
782 return yyerror ("Dregs expected");
783 else if (!valid_dreg_pair (&$8, $10))
784 return yyerror ("Bad dreg pair");
785 else
787 notethat ("dsp32alu: (dregs , dregs ) = BYTEUNPACK dregs_pair (aligndir)\n");
788 $$ = DSP32ALU (24, 0, &$2, &$4, &$8, 0, $11.r0, 0, 1);
791 | LPAREN REG COMMA REG RPAREN ASSIGN SEARCH REG LPAREN searchmod RPAREN
793 if (IS_DREG ($2) && IS_DREG ($4) && IS_DREG ($8))
795 notethat ("dsp32alu: (dregs , dregs ) = SEARCH dregs (searchmod)\n");
796 $$ = DSP32ALU (13, 0, &$2, &$4, &$8, 0, 0, 0, $10.r0);
798 else
799 return yyerror ("Register mismatch");
801 | REG ASSIGN A_ONE_DOT_L PLUS A_ONE_DOT_H COMMA
802 REG ASSIGN A_ZERO_DOT_L PLUS A_ZERO_DOT_H
804 if (IS_DREG ($1) && IS_DREG ($7))
806 notethat ("dsp32alu: dregs = A1.l + A1.h, dregs = A0.l + A0.h \n");
807 $$ = DSP32ALU (12, 0, &$1, &$7, 0, 0, 0, 0, 1);
809 else
810 return yyerror ("Register mismatch");
814 | REG ASSIGN REG_A PLUS REG_A COMMA REG ASSIGN REG_A MINUS REG_A amod1
816 if (IS_DREG ($1) && IS_DREG ($7) && !REG_SAME ($3, $5)
817 && IS_A1 ($9) && !IS_A1 ($11))
819 notethat ("dsp32alu: dregs = A1 + A0 , dregs = A1 - A0 (amod1)\n");
820 $$ = DSP32ALU (17, 0, &$1, &$7, 0, 0, $12.s0, $12.x0, 0);
823 else if (IS_DREG ($1) && IS_DREG ($7) && !REG_SAME ($3, $5)
824 && !IS_A1 ($9) && IS_A1 ($11))
826 notethat ("dsp32alu: dregs = A0 + A1 , dregs = A0 - A1 (amod1)\n");
827 $$ = DSP32ALU (17, 0, &$1, &$7, 0, 0, $12.s0, $12.x0, 1);
829 else
830 return yyerror ("Register mismatch");
833 | REG ASSIGN REG plus_minus REG COMMA REG ASSIGN REG plus_minus REG amod1
835 if ($4.r0 == $10.r0)
836 return yyerror ("Operators must differ");
838 if (IS_DREG ($1) && IS_DREG ($3) && IS_DREG ($5)
839 && REG_SAME ($3, $9) && REG_SAME ($5, $11))
841 notethat ("dsp32alu: dregs = dregs + dregs,"
842 "dregs = dregs - dregs (amod1)\n");
843 $$ = DSP32ALU (4, 0, &$1, &$7, &$3, &$5, $12.s0, $12.x0, 2);
845 else
846 return yyerror ("Register mismatch");
849 /* Bar Operations. */
851 | REG ASSIGN REG op_bar_op REG COMMA REG ASSIGN REG op_bar_op REG amod2
853 if (!REG_SAME ($3, $9) || !REG_SAME ($5, $11))
854 return yyerror ("Differing source registers");
856 if (!IS_DREG ($1) || !IS_DREG ($3) || !IS_DREG ($5) || !IS_DREG ($7))
857 return yyerror ("Dregs expected");
860 if ($4.r0 == 1 && $10.r0 == 2)
862 notethat ("dsp32alu: dregs = dregs .|. dregs , dregs = dregs .|. dregs (amod2)\n");
863 $$ = DSP32ALU (1, 1, &$1, &$7, &$3, &$5, $12.s0, $12.x0, $12.r0);
865 else if ($4.r0 == 0 && $10.r0 == 3)
867 notethat ("dsp32alu: dregs = dregs .|. dregs , dregs = dregs .|. dregs (amod2)\n");
868 $$ = DSP32ALU (1, 0, &$1, &$7, &$3, &$5, $12.s0, $12.x0, $12.r0);
870 else
871 return yyerror ("Bar operand mismatch");
874 | REG ASSIGN ABS REG vmod
876 int op;
878 if (IS_DREG ($1) && IS_DREG ($4))
880 if ($5.r0)
882 notethat ("dsp32alu: dregs = ABS dregs (v)\n");
883 op = 6;
885 else
887 /* Vector version of ABS. */
888 notethat ("dsp32alu: dregs = ABS dregs\n");
889 op = 7;
891 $$ = DSP32ALU (op, 0, 0, &$1, &$4, 0, 0, 0, 2);
893 else
894 return yyerror ("Dregs expected");
896 | a_assign ABS REG_A
898 notethat ("dsp32alu: Ax = ABS Ax\n");
899 $$ = DSP32ALU (16, IS_A1 ($1), 0, 0, 0, 0, 0, 0, IS_A1 ($3));
901 | A_ZERO_DOT_L ASSIGN HALF_REG
903 if (IS_DREG_L ($3))
905 notethat ("dsp32alu: A0.l = reg_half\n");
906 $$ = DSP32ALU (9, IS_H ($3), 0, 0, &$3, 0, 0, 0, 0);
908 else
909 return yyerror ("A0.l = Rx.l expected");
911 | A_ONE_DOT_L ASSIGN HALF_REG
913 if (IS_DREG_L ($3))
915 notethat ("dsp32alu: A1.l = reg_half\n");
916 $$ = DSP32ALU (9, IS_H ($3), 0, 0, &$3, 0, 0, 0, 2);
918 else
919 return yyerror ("A1.l = Rx.l expected");
922 | REG ASSIGN c_align LPAREN REG COMMA REG RPAREN
924 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG ($7))
926 notethat ("dsp32shift: dregs = ALIGN8 (dregs , dregs )\n");
927 $$ = DSP32SHIFT (13, &$1, &$7, &$5, $3.r0, 0);
929 else
930 return yyerror ("Dregs expected");
933 | REG ASSIGN BYTEOP1P LPAREN REG COLON expr COMMA REG COLON expr RPAREN byteop_mod
935 if (!IS_DREG ($1))
936 return yyerror ("Dregs expected");
937 else if (!valid_dreg_pair (&$5, $7))
938 return yyerror ("Bad dreg pair");
939 else if (!valid_dreg_pair (&$9, $11))
940 return yyerror ("Bad dreg pair");
941 else
943 notethat ("dsp32alu: dregs = BYTEOP1P (dregs_pair , dregs_pair ) (T)\n");
944 $$ = DSP32ALU (20, 0, 0, &$1, &$5, &$9, $13.s0, 0, $13.r0);
947 | REG ASSIGN BYTEOP1P LPAREN REG COLON expr COMMA REG COLON expr RPAREN
949 if (!IS_DREG ($1))
950 return yyerror ("Dregs expected");
951 else if (!valid_dreg_pair (&$5, $7))
952 return yyerror ("Bad dreg pair");
953 else if (!valid_dreg_pair (&$9, $11))
954 return yyerror ("Bad dreg pair");
955 else
957 notethat ("dsp32alu: dregs = BYTEOP1P (dregs_pair , dregs_pair ) (T)\n");
958 $$ = DSP32ALU (20, 0, 0, &$1, &$5, &$9, 0, 0, 0);
962 | REG ASSIGN BYTEOP2P LPAREN REG COLON expr COMMA REG COLON expr RPAREN
963 rnd_op
965 if (!IS_DREG ($1))
966 return yyerror ("Dregs expected");
967 else if (!valid_dreg_pair (&$5, $7))
968 return yyerror ("Bad dreg pair");
969 else if (!valid_dreg_pair (&$9, $11))
970 return yyerror ("Bad dreg pair");
971 else
973 notethat ("dsp32alu: dregs = BYTEOP2P (dregs_pair , dregs_pair ) (rnd_op)\n");
974 $$ = DSP32ALU (22, $13.r0, 0, &$1, &$5, &$9, $13.s0, $13.x0, $13.aop);
978 | REG ASSIGN BYTEOP2M LPAREN REG COLON expr COMMA REG COLON expr RPAREN
979 rnd_op
981 if (!IS_DREG ($1))
982 return yyerror ("Dregs expected");
983 else if (!valid_dreg_pair (&$5, $7))
984 return yyerror ("Bad dreg pair");
985 else if (!valid_dreg_pair (&$9, $11))
986 return yyerror ("Bad dreg pair");
987 else
989 notethat ("dsp32alu: dregs = BYTEOP2P (dregs_pair , dregs_pair ) (rnd_op)\n");
990 $$ = DSP32ALU (22, $13.r0, 0, &$1, &$5, &$9, $13.s0, 0, $13.x0);
994 | REG ASSIGN BYTEOP3P LPAREN REG COLON expr COMMA REG COLON expr RPAREN
995 b3_op
997 if (!IS_DREG ($1))
998 return yyerror ("Dregs expected");
999 else if (!valid_dreg_pair (&$5, $7))
1000 return yyerror ("Bad dreg pair");
1001 else if (!valid_dreg_pair (&$9, $11))
1002 return yyerror ("Bad dreg pair");
1003 else
1005 notethat ("dsp32alu: dregs = BYTEOP3P (dregs_pair , dregs_pair ) (b3_op)\n");
1006 $$ = DSP32ALU (23, $13.x0, 0, &$1, &$5, &$9, $13.s0, 0, 0);
1010 | REG ASSIGN BYTEPACK LPAREN REG COMMA REG RPAREN
1012 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG ($7))
1014 notethat ("dsp32alu: dregs = BYTEPACK (dregs , dregs )\n");
1015 $$ = DSP32ALU (24, 0, 0, &$1, &$5, &$7, 0, 0, 0);
1017 else
1018 return yyerror ("Dregs expected");
1021 | HALF_REG ASSIGN HALF_REG ASSIGN SIGN LPAREN HALF_REG RPAREN STAR
1022 HALF_REG PLUS SIGN LPAREN HALF_REG RPAREN STAR HALF_REG
1024 if (IS_HCOMPL ($1, $3) && IS_HCOMPL ($7, $14) && IS_HCOMPL ($10, $17))
1026 notethat ("dsp32alu: dregs_hi = dregs_lo ="
1027 "SIGN (dregs_hi) * dregs_hi + "
1028 "SIGN (dregs_lo) * dregs_lo \n");
1030 $$ = DSP32ALU (12, 0, 0, &$1, &$7, &$10, 0, 0, 0);
1032 else
1033 return yyerror ("Dregs expected");
1035 | REG ASSIGN REG plus_minus REG amod1
1037 if (IS_DREG ($1) && IS_DREG ($3) && IS_DREG ($5))
1039 if ($6.aop == 0)
1041 /* No saturation flag specified, generate the 16 bit variant. */
1042 notethat ("COMP3op: dregs = dregs +- dregs\n");
1043 $$ = COMP3OP (&$1, &$3, &$5, $4.r0);
1045 else
1047 /* Saturation flag specified, generate the 32 bit variant. */
1048 notethat ("dsp32alu: dregs = dregs +- dregs (amod1)\n");
1049 $$ = DSP32ALU (4, 0, 0, &$1, &$3, &$5, $6.s0, $6.x0, $4.r0);
1052 else
1053 if (IS_PREG ($1) && IS_PREG ($3) && IS_PREG ($5) && $4.r0 == 0)
1055 notethat ("COMP3op: pregs = pregs + pregs\n");
1056 $$ = COMP3OP (&$1, &$3, &$5, 5);
1058 else
1059 return yyerror ("Dregs expected");
1061 | REG ASSIGN min_max LPAREN REG COMMA REG RPAREN vmod
1063 int op;
1065 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG ($7))
1067 if ($9.r0)
1068 op = 6;
1069 else
1070 op = 7;
1072 notethat ("dsp32alu: dregs = {MIN|MAX} (dregs, dregs)\n");
1073 $$ = DSP32ALU (op, 0, 0, &$1, &$5, &$7, 0, 0, $3.r0);
1075 else
1076 return yyerror ("Dregs expected");
1079 | a_assign MINUS REG_A
1081 notethat ("dsp32alu: Ax = - Ax\n");
1082 $$ = DSP32ALU (14, IS_A1 ($1), 0, 0, 0, 0, 0, 0, IS_A1 ($3));
1084 | HALF_REG ASSIGN HALF_REG plus_minus HALF_REG amod1
1086 notethat ("dsp32alu: dregs_lo = dregs_lo +- dregs_lo (amod1)\n");
1087 $$ = DSP32ALU (2 | $4.r0, IS_H ($1), 0, &$1, &$3, &$5,
1088 $6.s0, $6.x0, HL2 ($3, $5));
1090 | a_assign a_assign expr
1092 if (EXPR_VALUE ($3) == 0 && !REG_SAME ($1, $2))
1094 notethat ("dsp32alu: A1 = A0 = 0\n");
1095 $$ = DSP32ALU (8, 0, 0, 0, 0, 0, 0, 0, 2);
1097 else
1098 return yyerror ("Bad value, 0 expected");
1101 /* Saturating. */
1102 | a_assign REG_A LPAREN S RPAREN
1104 if (REG_SAME ($1, $2))
1106 notethat ("dsp32alu: Ax = Ax (S)\n");
1107 $$ = DSP32ALU (8, 0, 0, 0, 0, 0, 1, 0, IS_A1 ($1));
1109 else
1110 return yyerror ("Registers must be equal");
1113 | HALF_REG ASSIGN REG LPAREN RND RPAREN
1115 if (IS_DREG ($3))
1117 notethat ("dsp32alu: dregs_half = dregs (RND)\n");
1118 $$ = DSP32ALU (12, IS_H ($1), 0, &$1, &$3, 0, 0, 0, 3);
1120 else
1121 return yyerror ("Dregs expected");
1124 | HALF_REG ASSIGN REG plus_minus REG LPAREN RND12 RPAREN
1126 if (IS_DREG ($3) && IS_DREG ($5))
1128 notethat ("dsp32alu: dregs_half = dregs (+-) dregs (RND12)\n");
1129 $$ = DSP32ALU (5, IS_H ($1), 0, &$1, &$3, &$5, 0, 0, $4.r0);
1131 else
1132 return yyerror ("Dregs expected");
1135 | HALF_REG ASSIGN REG plus_minus REG LPAREN RND20 RPAREN
1137 if (IS_DREG ($3) && IS_DREG ($5))
1139 notethat ("dsp32alu: dregs_half = dregs -+ dregs (RND20)\n");
1140 $$ = DSP32ALU (5, IS_H ($1), 0, &$1, &$3, &$5, 0, 1, $4.r0 | 2);
1142 else
1143 return yyerror ("Dregs expected");
1146 | a_assign REG_A
1148 if (!REG_SAME ($1, $2))
1150 notethat ("dsp32alu: An = Am\n");
1151 $$ = DSP32ALU (8, 0, 0, 0, 0, 0, IS_A1 ($1), 0, 3);
1153 else
1154 return yyerror ("Accu reg arguments must differ");
1157 | a_assign REG
1159 if (IS_DREG ($2))
1161 notethat ("dsp32alu: An = dregs\n");
1162 $$ = DSP32ALU (9, 0, 0, 0, &$2, 0, 1, 0, IS_A1 ($1) << 1);
1164 else
1165 return yyerror ("Dregs expected");
1168 | REG ASSIGN HALF_REG xpmod
1170 if (!IS_H ($3))
1172 if ($1.regno == REG_A0x && IS_DREG ($3))
1174 notethat ("dsp32alu: A0.x = dregs_lo\n");
1175 $$ = DSP32ALU (9, 0, 0, 0, &$3, 0, 0, 0, 1);
1177 else if ($1.regno == REG_A1x && IS_DREG ($3))
1179 notethat ("dsp32alu: A1.x = dregs_lo\n");
1180 $$ = DSP32ALU (9, 0, 0, 0, &$3, 0, 0, 0, 3);
1182 else if (IS_DREG ($1) && IS_DREG ($3))
1184 notethat ("ALU2op: dregs = dregs_lo\n");
1185 $$ = ALU2OP (&$1, &$3, 10 | ($4.r0 ? 0: 1));
1187 else
1188 return yyerror ("Register mismatch");
1190 else
1191 return yyerror ("Low reg expected");
1194 | HALF_REG ASSIGN expr
1196 notethat ("LDIMMhalf: pregs_half = imm16\n");
1198 if (!IS_DREG ($1) && !IS_PREG ($1) && !IS_IREG ($1)
1199 && !IS_MREG ($1) && !IS_BREG ($1) && !IS_LREG ($1))
1200 return yyerror ("Wrong register for load immediate");
1202 if (!IS_IMM ($3, 16) && !IS_UIMM ($3, 16))
1203 return yyerror ("Constant out of range");
1205 $$ = LDIMMHALF_R (&$1, IS_H ($1), 0, 0, $3);
1208 | a_assign expr
1210 notethat ("dsp32alu: An = 0\n");
1212 if (imm7 ($2) != 0)
1213 return yyerror ("0 expected");
1215 $$ = DSP32ALU (8, 0, 0, 0, 0, 0, 0, 0, IS_A1 ($1));
1218 | REG ASSIGN expr xpmod1
1220 if (!IS_DREG ($1) && !IS_PREG ($1) && !IS_IREG ($1)
1221 && !IS_MREG ($1) && !IS_BREG ($1) && !IS_LREG ($1))
1222 return yyerror ("Wrong register for load immediate");
1224 if ($4.r0 == 0)
1226 /* 7 bit immediate value if possible.
1227 We will check for that constant value for efficiency
1228 If it goes to reloc, it will be 16 bit. */
1229 if (IS_CONST ($3) && IS_IMM ($3, 7) && IS_DREG ($1))
1231 notethat ("COMPI2opD: dregs = imm7 (x) \n");
1232 $$ = COMPI2OPD (&$1, imm7 ($3), 0);
1234 else if (IS_CONST ($3) && IS_IMM ($3, 7) && IS_PREG ($1))
1236 notethat ("COMPI2opP: pregs = imm7 (x)\n");
1237 $$ = COMPI2OPP (&$1, imm7 ($3), 0);
1239 else
1241 if (IS_CONST ($3) && !IS_IMM ($3, 16))
1242 return yyerror ("Immediate value out of range");
1244 notethat ("LDIMMhalf: regs = luimm16 (x)\n");
1245 /* reg, H, S, Z. */
1246 $$ = LDIMMHALF_R5 (&$1, 0, 1, 0, $3);
1249 else
1251 /* (z) There is no 7 bit zero extended instruction.
1252 If the expr is a relocation, generate it. */
1254 if (IS_CONST ($3) && !IS_UIMM ($3, 16))
1255 return yyerror ("Immediate value out of range");
1257 notethat ("LDIMMhalf: regs = luimm16 (x)\n");
1258 /* reg, H, S, Z. */
1259 $$ = LDIMMHALF_R5 (&$1, 0, 0, 1, $3);
1263 | HALF_REG ASSIGN REG
1265 if (IS_H ($1))
1266 return yyerror ("Low reg expected");
1268 if (IS_DREG ($1) && $3.regno == REG_A0x)
1270 notethat ("dsp32alu: dregs_lo = A0.x\n");
1271 $$ = DSP32ALU (10, 0, 0, &$1, 0, 0, 0, 0, 0);
1273 else if (IS_DREG ($1) && $3.regno == REG_A1x)
1275 notethat ("dsp32alu: dregs_lo = A1.x\n");
1276 $$ = DSP32ALU (10, 0, 0, &$1, 0, 0, 0, 0, 1);
1278 else
1279 return yyerror ("Register mismatch");
1282 | REG ASSIGN REG op_bar_op REG amod0
1284 if (IS_DREG ($1) && IS_DREG ($3) && IS_DREG ($5))
1286 notethat ("dsp32alu: dregs = dregs .|. dregs (amod0)\n");
1287 $$ = DSP32ALU (0, 0, 0, &$1, &$3, &$5, $6.s0, $6.x0, $4.r0);
1289 else
1290 return yyerror ("Register mismatch");
1293 | REG ASSIGN BYTE_DREG xpmod
1295 if (IS_DREG ($1) && IS_DREG ($3))
1297 notethat ("ALU2op: dregs = dregs_byte\n");
1298 $$ = ALU2OP (&$1, &$3, 12 | ($4.r0 ? 0: 1));
1300 else
1301 return yyerror ("Register mismatch");
1304 | a_assign ABS REG_A COMMA a_assign ABS REG_A
1306 if (REG_SAME ($1, $3) && REG_SAME ($5, $7) && !REG_SAME ($1, $5))
1308 notethat ("dsp32alu: A1 = ABS A1 , A0 = ABS A0\n");
1309 $$ = DSP32ALU (16, 0, 0, 0, 0, 0, 0, 0, 3);
1311 else
1312 return yyerror ("Register mismatch");
1315 | a_assign MINUS REG_A COMMA a_assign MINUS REG_A
1317 if (REG_SAME ($1, $3) && REG_SAME ($5, $7) && !REG_SAME ($1, $5))
1319 notethat ("dsp32alu: A1 = - A1 , A0 = - A0\n");
1320 $$ = DSP32ALU (14, 0, 0, 0, 0, 0, 0, 0, 3);
1322 else
1323 return yyerror ("Register mismatch");
1326 | a_minusassign REG_A w32_or_nothing
1328 if (!IS_A1 ($1) && IS_A1 ($2))
1330 notethat ("dsp32alu: A0 -= A1\n");
1331 $$ = DSP32ALU (11, 0, 0, 0, 0, 0, $3.r0, 0, 3);
1333 else
1334 return yyerror ("Register mismatch");
1337 | REG _MINUS_ASSIGN expr
1339 if (IS_IREG ($1) && EXPR_VALUE ($3) == 4)
1341 notethat ("dagMODik: iregs -= 4\n");
1342 $$ = DAGMODIK (&$1, 3);
1344 else if (IS_IREG ($1) && EXPR_VALUE ($3) == 2)
1346 notethat ("dagMODik: iregs -= 2\n");
1347 $$ = DAGMODIK (&$1, 1);
1349 else
1350 return yyerror ("Register or value mismatch");
1353 | REG _PLUS_ASSIGN REG LPAREN BREV RPAREN
1355 if (IS_IREG ($1) && IS_MREG ($3))
1357 notethat ("dagMODim: iregs += mregs (opt_brev)\n");
1358 /* i, m, op, br. */
1359 $$ = DAGMODIM (&$1, &$3, 0, 1);
1361 else if (IS_PREG ($1) && IS_PREG ($3))
1363 notethat ("PTR2op: pregs += pregs (BREV )\n");
1364 $$ = PTR2OP (&$1, &$3, 5);
1366 else
1367 return yyerror ("Register mismatch");
1370 | REG _MINUS_ASSIGN REG
1372 if (IS_IREG ($1) && IS_MREG ($3))
1374 notethat ("dagMODim: iregs -= mregs\n");
1375 $$ = DAGMODIM (&$1, &$3, 1, 0);
1377 else if (IS_PREG ($1) && IS_PREG ($3))
1379 notethat ("PTR2op: pregs -= pregs\n");
1380 $$ = PTR2OP (&$1, &$3, 0);
1382 else
1383 return yyerror ("Register mismatch");
1386 | REG_A _PLUS_ASSIGN REG_A w32_or_nothing
1388 if (!IS_A1 ($1) && IS_A1 ($3))
1390 notethat ("dsp32alu: A0 += A1 (W32)\n");
1391 $$ = DSP32ALU (11, 0, 0, 0, 0, 0, $4.r0, 0, 2);
1393 else
1394 return yyerror ("Register mismatch");
1397 | REG _PLUS_ASSIGN REG
1399 if (IS_IREG ($1) && IS_MREG ($3))
1401 notethat ("dagMODim: iregs += mregs\n");
1402 $$ = DAGMODIM (&$1, &$3, 0, 0);
1404 else
1405 return yyerror ("iregs += mregs expected");
1408 | REG _PLUS_ASSIGN expr
1410 if (IS_IREG ($1))
1412 if (EXPR_VALUE ($3) == 4)
1414 notethat ("dagMODik: iregs += 4\n");
1415 $$ = DAGMODIK (&$1, 2);
1417 else if (EXPR_VALUE ($3) == 2)
1419 notethat ("dagMODik: iregs += 2\n");
1420 $$ = DAGMODIK (&$1, 0);
1422 else
1423 return yyerror ("iregs += [ 2 | 4 ");
1425 else if (IS_PREG ($1) && IS_IMM ($3, 7))
1427 notethat ("COMPI2opP: pregs += imm7\n");
1428 $$ = COMPI2OPP (&$1, imm7 ($3), 1);
1430 else if (IS_DREG ($1) && IS_IMM ($3, 7))
1432 notethat ("COMPI2opD: dregs += imm7\n");
1433 $$ = COMPI2OPD (&$1, imm7 ($3), 1);
1435 else
1436 return yyerror ("Register mismatch");
1439 | REG _STAR_ASSIGN REG
1441 if (IS_DREG ($1) && IS_DREG ($3))
1443 notethat ("ALU2op: dregs *= dregs\n");
1444 $$ = ALU2OP (&$1, &$3, 3);
1446 else
1447 return yyerror ("Register mismatch");
1450 | SAA LPAREN REG COLON expr COMMA REG COLON expr RPAREN aligndir
1452 if (!valid_dreg_pair (&$3, $5))
1453 return yyerror ("Bad dreg pair");
1454 else if (!valid_dreg_pair (&$7, $9))
1455 return yyerror ("Bad dreg pair");
1456 else
1458 notethat ("dsp32alu: SAA (dregs_pair , dregs_pair ) (aligndir)\n");
1459 $$ = DSP32ALU (18, 0, 0, 0, &$3, &$7, $11.r0, 0, 0);
1463 | a_assign REG_A LPAREN S RPAREN COMMA a_assign REG_A LPAREN S RPAREN
1465 if (REG_SAME ($1, $2) && REG_SAME ($7, $8) && !REG_SAME ($1, $7))
1467 notethat ("dsp32alu: A1 = A1 (S) , A0 = A0 (S)\n");
1468 $$ = DSP32ALU (8, 0, 0, 0, 0, 0, 1, 0, 2);
1470 else
1471 return yyerror ("Register mismatch");
1474 | REG ASSIGN LPAREN REG PLUS REG RPAREN LESS_LESS expr
1476 if (IS_DREG ($1) && IS_DREG ($4) && IS_DREG ($6)
1477 && REG_SAME ($1, $4))
1479 if (EXPR_VALUE ($9) == 1)
1481 notethat ("ALU2op: dregs = (dregs + dregs) << 1\n");
1482 $$ = ALU2OP (&$1, &$6, 4);
1484 else if (EXPR_VALUE ($9) == 2)
1486 notethat ("ALU2op: dregs = (dregs + dregs) << 2\n");
1487 $$ = ALU2OP (&$1, &$6, 5);
1489 else
1490 return yyerror ("Bad shift value");
1492 else if (IS_PREG ($1) && IS_PREG ($4) && IS_PREG ($6)
1493 && REG_SAME ($1, $4))
1495 if (EXPR_VALUE ($9) == 1)
1497 notethat ("PTR2op: pregs = (pregs + pregs) << 1\n");
1498 $$ = PTR2OP (&$1, &$6, 6);
1500 else if (EXPR_VALUE ($9) == 2)
1502 notethat ("PTR2op: pregs = (pregs + pregs) << 2\n");
1503 $$ = PTR2OP (&$1, &$6, 7);
1505 else
1506 return yyerror ("Bad shift value");
1508 else
1509 return yyerror ("Register mismatch");
1512 /* COMP3 CCFLAG. */
1513 | REG ASSIGN REG BAR REG
1515 if (IS_DREG ($1) && IS_DREG ($3) && IS_DREG ($5))
1517 notethat ("COMP3op: dregs = dregs | dregs\n");
1518 $$ = COMP3OP (&$1, &$3, &$5, 3);
1520 else
1521 return yyerror ("Dregs expected");
1523 | REG ASSIGN REG CARET REG
1525 if (IS_DREG ($1) && IS_DREG ($3) && IS_DREG ($5))
1527 notethat ("COMP3op: dregs = dregs ^ dregs\n");
1528 $$ = COMP3OP (&$1, &$3, &$5, 4);
1530 else
1531 return yyerror ("Dregs expected");
1533 | REG ASSIGN REG PLUS LPAREN REG LESS_LESS expr RPAREN
1535 if (IS_PREG ($1) && IS_PREG ($3) && IS_PREG ($6))
1537 if (EXPR_VALUE ($8) == 1)
1539 notethat ("COMP3op: pregs = pregs + (pregs << 1)\n");
1540 $$ = COMP3OP (&$1, &$3, &$6, 6);
1542 else if (EXPR_VALUE ($8) == 2)
1544 notethat ("COMP3op: pregs = pregs + (pregs << 2)\n");
1545 $$ = COMP3OP (&$1, &$3, &$6, 7);
1547 else
1548 return yyerror ("Bad shift value");
1550 else
1551 return yyerror ("Dregs expected");
1553 | CCREG ASSIGN REG_A _ASSIGN_ASSIGN REG_A
1555 if (!REG_SAME ($3, $5))
1557 notethat ("CCflag: CC = A0 == A1\n");
1558 $$ = CCFLAG (0, 0, 5, 0, 0);
1560 else
1561 return yyerror ("CC register expected");
1563 | CCREG ASSIGN REG_A LESS_THAN REG_A
1565 if (!REG_SAME ($3, $5))
1567 notethat ("CCflag: CC = A0 < A1\n");
1568 $$ = CCFLAG (0, 0, 6, 0, 0);
1570 else
1571 return yyerror ("Register mismatch");
1573 | CCREG ASSIGN REG LESS_THAN REG iu_or_nothing
1575 if (REG_CLASS($3) == REG_CLASS($5))
1577 notethat ("CCflag: CC = dpregs < dpregs\n");
1578 $$ = CCFLAG (&$3, $5.regno & CODE_MASK, $6.r0, 0, IS_PREG ($3) ? 1 : 0);
1580 else
1581 return yyerror ("Compare only of same register class");
1583 | CCREG ASSIGN REG LESS_THAN expr iu_or_nothing
1585 if (($6.r0 == 1 && IS_IMM ($5, 3))
1586 || ($6.r0 == 3 && IS_UIMM ($5, 3)))
1588 notethat ("CCflag: CC = dpregs < (u)imm3\n");
1589 $$ = CCFLAG (&$3, imm3 ($5), $6.r0, 1, IS_PREG ($3) ? 1 : 0);
1591 else
1592 return yyerror ("Bad constant value");
1594 | CCREG ASSIGN REG _ASSIGN_ASSIGN REG
1596 if (REG_CLASS($3) == REG_CLASS($5))
1598 notethat ("CCflag: CC = dpregs == dpregs\n");
1599 $$ = CCFLAG (&$3, $5.regno & CODE_MASK, 0, 0, IS_PREG ($3) ? 1 : 0);
1602 | CCREG ASSIGN REG _ASSIGN_ASSIGN expr
1604 if (IS_IMM ($5, 3))
1606 notethat ("CCflag: CC = dpregs == imm3\n");
1607 $$ = CCFLAG (&$3, imm3 ($5), 0, 1, IS_PREG ($3) ? 1 : 0);
1609 else
1610 return yyerror ("Bad constant range");
1612 | CCREG ASSIGN REG_A _LESS_THAN_ASSIGN REG_A
1614 if (!REG_SAME ($3, $5))
1616 notethat ("CCflag: CC = A0 <= A1\n");
1617 $$ = CCFLAG (0, 0, 7, 0, 0);
1619 else
1620 return yyerror ("CC register expected");
1622 | CCREG ASSIGN REG _LESS_THAN_ASSIGN REG iu_or_nothing
1624 if (REG_CLASS($3) == REG_CLASS($5))
1626 notethat ("CCflag: CC = pregs <= pregs (..)\n");
1627 $$ = CCFLAG (&$3, $5.regno & CODE_MASK,
1628 1 + $6.r0, 0, IS_PREG ($3) ? 1 : 0);
1630 else
1631 return yyerror ("Compare only of same register class");
1633 | CCREG ASSIGN REG _LESS_THAN_ASSIGN expr iu_or_nothing
1635 if (($6.r0 == 1 && IS_IMM ($5, 3))
1636 || ($6.r0 == 3 && IS_UIMM ($5, 3)))
1638 if (IS_DREG ($3))
1640 notethat ("CCflag: CC = dregs <= (u)imm3\n");
1641 /* x y opc I G */
1642 $$ = CCFLAG (&$3, imm3 ($5), 1 + $6.r0, 1, 0);
1644 else if (IS_PREG ($3))
1646 notethat ("CCflag: CC = pregs <= (u)imm3\n");
1647 /* x y opc I G */
1648 $$ = CCFLAG (&$3, imm3 ($5), 1 + $6.r0, 1, 1);
1650 else
1651 return yyerror ("Dreg or Preg expected");
1653 else
1654 return yyerror ("Bad constant value");
1657 | REG ASSIGN REG AMPERSAND REG
1659 if (IS_DREG ($1) && IS_DREG ($3) && IS_DREG ($5))
1661 notethat ("COMP3op: dregs = dregs & dregs\n");
1662 $$ = COMP3OP (&$1, &$3, &$5, 2);
1664 else
1665 return yyerror ("Dregs expected");
1668 | ccstat
1670 notethat ("CC2stat operation\n");
1671 $$ = bfin_gen_cc2stat ($1.r0, $1.x0, $1.s0);
1674 | REG ASSIGN REG
1676 if (IS_ALLREG ($1) && IS_ALLREG ($3))
1678 notethat ("REGMV: allregs = allregs\n");
1679 $$ = bfin_gen_regmv (&$3, &$1);
1681 else
1682 return yyerror ("Register mismatch");
1685 | CCREG ASSIGN REG
1687 if (IS_DREG ($3))
1689 notethat ("CC2dreg: CC = dregs\n");
1690 $$ = bfin_gen_cc2dreg (1, &$3);
1692 else
1693 return yyerror ("Register mismatch");
1696 | REG ASSIGN CCREG
1698 if (IS_DREG ($1))
1700 notethat ("CC2dreg: dregs = CC\n");
1701 $$ = bfin_gen_cc2dreg (0, &$1);
1703 else
1704 return yyerror ("Register mismatch");
1707 | CCREG _ASSIGN_BANG CCREG
1709 notethat ("CC2dreg: CC =! CC\n");
1710 $$ = bfin_gen_cc2dreg (3, 0);
1713 /* DSPMULT. */
1715 | HALF_REG ASSIGN multiply_halfregs opt_mode
1717 notethat ("dsp32mult: dregs_half = multiply_halfregs (opt_mode)\n");
1719 if (!IS_H ($1) && $4.MM)
1720 return yyerror ("(M) not allowed with MAC0");
1722 if (IS_H ($1))
1724 $$ = DSP32MULT (0, $4.MM, $4.mod, 1, 0,
1725 IS_H ($3.s0), IS_H ($3.s1), 0, 0,
1726 &$1, 0, &$3.s0, &$3.s1, 0);
1728 else
1730 $$ = DSP32MULT (0, 0, $4.mod, 0, 0,
1731 0, 0, IS_H ($3.s0), IS_H ($3.s1),
1732 &$1, 0, &$3.s0, &$3.s1, 1);
1736 | REG ASSIGN multiply_halfregs opt_mode
1738 /* Odd registers can use (M). */
1739 if (!IS_DREG ($1))
1740 return yyerror ("Dreg expected");
1742 if (!IS_EVEN ($1))
1744 notethat ("dsp32mult: dregs = multiply_halfregs (opt_mode)\n");
1746 $$ = DSP32MULT (0, $4.MM, $4.mod, 1, 1,
1747 IS_H ($3.s0), IS_H ($3.s1), 0, 0,
1748 &$1, 0, &$3.s0, &$3.s1, 0);
1750 else if ($4.MM == 0)
1752 notethat ("dsp32mult: dregs = multiply_halfregs opt_mode\n");
1753 $$ = DSP32MULT (0, 0, $4.mod, 0, 1,
1754 0, 0, IS_H ($3.s0), IS_H ($3.s1),
1755 &$1, 0, &$3.s0, &$3.s1, 1);
1757 else
1758 return yyerror ("Register or mode mismatch");
1761 | HALF_REG ASSIGN multiply_halfregs opt_mode COMMA
1762 HALF_REG ASSIGN multiply_halfregs opt_mode
1764 if (!IS_DREG ($1) || !IS_DREG ($6))
1765 return yyerror ("Dregs expected");
1767 if (check_multiply_halfregs (&$3, &$8) < 0)
1768 return -1;
1770 if (IS_H ($1) && !IS_H ($6))
1772 notethat ("dsp32mult: dregs_hi = multiply_halfregs mxd_mod, "
1773 "dregs_lo = multiply_halfregs opt_mode\n");
1774 $$ = DSP32MULT (0, $4.MM, $9.mod, 1, 0,
1775 IS_H ($3.s0), IS_H ($3.s1), IS_H ($8.s0), IS_H ($8.s1),
1776 &$1, 0, &$3.s0, &$3.s1, 1);
1778 else if (!IS_H ($1) && IS_H ($6) && $4.MM == 0)
1780 $$ = DSP32MULT (0, $9.MM, $9.mod, 1, 0,
1781 IS_H ($8.s0), IS_H ($8.s1), IS_H ($3.s0), IS_H ($3.s1),
1782 &$1, 0, &$3.s0, &$3.s1, 1);
1784 else
1785 return yyerror ("Multfunc Register or mode mismatch");
1788 | REG ASSIGN multiply_halfregs opt_mode COMMA REG ASSIGN multiply_halfregs opt_mode
1790 if (!IS_DREG ($1) || !IS_DREG ($6))
1791 return yyerror ("Dregs expected");
1793 if (check_multiply_halfregs (&$3, &$8) < 0)
1794 return -1;
1796 notethat ("dsp32mult: dregs = multiply_halfregs mxd_mod, "
1797 "dregs = multiply_halfregs opt_mode\n");
1798 if (IS_EVEN ($1))
1800 if ($6.regno - $1.regno != 1 || $4.MM != 0)
1801 return yyerror ("Dest registers or mode mismatch");
1803 /* op1 MM mmod */
1804 $$ = DSP32MULT (0, 0, $9.mod, 1, 1,
1805 IS_H ($8.s0), IS_H ($8.s1), IS_H ($3.s0), IS_H ($3.s1),
1806 &$1, 0, &$3.s0, &$3.s1, 1);
1809 else
1811 if ($1.regno - $6.regno != 1)
1812 return yyerror ("Dest registers mismatch");
1814 $$ = DSP32MULT (0, $9.MM, $9.mod, 1, 1,
1815 IS_H ($3.s0), IS_H ($3.s1), IS_H ($8.s0), IS_H ($8.s1),
1816 &$1, 0, &$3.s0, &$3.s1, 1);
1821 /* SHIFTs. */
1822 | a_assign ASHIFT REG_A BY HALF_REG
1824 if (!REG_SAME ($1, $3))
1825 return yyerror ("Aregs must be same");
1827 if (IS_DREG ($5) && !IS_H ($5))
1829 notethat ("dsp32shift: A0 = ASHIFT A0 BY dregs_lo\n");
1830 $$ = DSP32SHIFT (3, 0, &$5, 0, 0, IS_A1 ($1));
1832 else
1833 return yyerror ("Dregs expected");
1836 | HALF_REG ASSIGN ASHIFT HALF_REG BY HALF_REG smod
1838 if (IS_DREG ($6) && !IS_H ($6))
1840 notethat ("dsp32shift: dregs_half = ASHIFT dregs_half BY dregs_lo\n");
1841 $$ = DSP32SHIFT (0, &$1, &$6, &$4, $7.s0, HL2 ($1, $4));
1843 else
1844 return yyerror ("Dregs expected");
1847 | a_assign REG_A LESS_LESS expr
1849 if (!REG_SAME ($1, $2))
1850 return yyerror ("Aregs must be same");
1852 if (IS_UIMM ($4, 5))
1854 notethat ("dsp32shiftimm: A0 = A0 << uimm5\n");
1855 $$ = DSP32SHIFTIMM (3, 0, imm5 ($4), 0, 0, IS_A1 ($1));
1857 else
1858 return yyerror ("Bad shift value");
1861 | REG ASSIGN REG LESS_LESS expr vsmod
1863 if (IS_DREG ($1) && IS_DREG ($3) && IS_UIMM ($5, 5))
1865 if ($6.r0)
1867 /* Vector? */
1868 notethat ("dsp32shiftimm: dregs = dregs << expr (V, .)\n");
1869 $$ = DSP32SHIFTIMM (1, &$1, imm4 ($5), &$3, $6.s0 ? 1 : 2, 0);
1871 else
1873 notethat ("dsp32shiftimm: dregs = dregs << uimm5 (.)\n");
1874 $$ = DSP32SHIFTIMM (2, &$1, imm6 ($5), &$3, $6.s0 ? 1 : 2, 0);
1877 else if ($6.s0 == 0 && IS_PREG ($1) && IS_PREG ($3))
1879 if (EXPR_VALUE ($5) == 2)
1881 notethat ("PTR2op: pregs = pregs << 2\n");
1882 $$ = PTR2OP (&$1, &$3, 1);
1884 else if (EXPR_VALUE ($5) == 1)
1886 notethat ("COMP3op: pregs = pregs << 1\n");
1887 $$ = COMP3OP (&$1, &$3, &$3, 5);
1889 else
1890 return yyerror ("Bad shift value");
1892 else
1893 return yyerror ("Bad shift value or register");
1895 | HALF_REG ASSIGN HALF_REG LESS_LESS expr
1897 if (IS_UIMM ($5, 4))
1899 notethat ("dsp32shiftimm: dregs_half = dregs_half << uimm4\n");
1900 $$ = DSP32SHIFTIMM (0x0, &$1, imm5 ($5), &$3, 2, HL2 ($1, $3));
1902 else
1903 return yyerror ("Bad shift value");
1905 | HALF_REG ASSIGN HALF_REG LESS_LESS expr smod
1907 if (IS_UIMM ($5, 4))
1909 notethat ("dsp32shiftimm: dregs_half = dregs_half << uimm4\n");
1910 $$ = DSP32SHIFTIMM (0x0, &$1, imm5 ($5), &$3, $6.s0, HL2 ($1, $3));
1912 else
1913 return yyerror ("Bad shift value");
1915 | REG ASSIGN ASHIFT REG BY HALF_REG vsmod
1917 int op;
1919 if (IS_DREG ($1) && IS_DREG ($4) && IS_DREG ($6) && !IS_H ($6))
1921 if ($7.r0)
1923 op = 1;
1924 notethat ("dsp32shift: dregs = ASHIFT dregs BY "
1925 "dregs_lo (V, .)\n");
1927 else
1930 op = 2;
1931 notethat ("dsp32shift: dregs = ASHIFT dregs BY dregs_lo (.)\n");
1933 $$ = DSP32SHIFT (op, &$1, &$6, &$4, $7.s0, 0);
1935 else
1936 return yyerror ("Dregs expected");
1939 /* EXPADJ. */
1940 | HALF_REG ASSIGN EXPADJ LPAREN REG COMMA HALF_REG RPAREN vmod
1942 if (IS_DREG_L ($1) && IS_DREG_L ($5) && IS_DREG_L ($7))
1944 notethat ("dsp32shift: dregs_lo = EXPADJ (dregs , dregs_lo )\n");
1945 $$ = DSP32SHIFT (7, &$1, &$7, &$5, $9.r0, 0);
1947 else
1948 return yyerror ("Bad shift value or register");
1952 | HALF_REG ASSIGN EXPADJ LPAREN HALF_REG COMMA HALF_REG RPAREN
1954 if (IS_DREG_L ($1) && IS_DREG_L ($5) && IS_DREG_L ($7))
1956 notethat ("dsp32shift: dregs_lo = EXPADJ (dregs_lo, dregs_lo)\n");
1957 $$ = DSP32SHIFT (7, &$1, &$7, &$5, 2, 0);
1959 else if (IS_DREG_L ($1) && IS_DREG_H ($5) && IS_DREG_L ($7))
1961 notethat ("dsp32shift: dregs_lo = EXPADJ (dregs_hi, dregs_lo)\n");
1962 $$ = DSP32SHIFT (7, &$1, &$7, &$5, 3, 0);
1964 else
1965 return yyerror ("Bad shift value or register");
1968 /* DEPOSIT. */
1970 | REG ASSIGN DEPOSIT LPAREN REG COMMA REG RPAREN
1972 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG ($7))
1974 notethat ("dsp32shift: dregs = DEPOSIT (dregs , dregs )\n");
1975 $$ = DSP32SHIFT (10, &$1, &$7, &$5, 2, 0);
1977 else
1978 return yyerror ("Register mismatch");
1981 | REG ASSIGN DEPOSIT LPAREN REG COMMA REG RPAREN LPAREN X RPAREN
1983 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG ($7))
1985 notethat ("dsp32shift: dregs = DEPOSIT (dregs , dregs ) (X)\n");
1986 $$ = DSP32SHIFT (10, &$1, &$7, &$5, 3, 0);
1988 else
1989 return yyerror ("Register mismatch");
1992 | REG ASSIGN EXTRACT LPAREN REG COMMA HALF_REG RPAREN xpmod
1994 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG_L ($7))
1996 notethat ("dsp32shift: dregs = EXTRACT (dregs, dregs_lo ) (.)\n");
1997 $$ = DSP32SHIFT (10, &$1, &$7, &$5, $9.r0, 0);
1999 else
2000 return yyerror ("Register mismatch");
2003 | a_assign REG_A _GREATER_GREATER_GREATER expr
2005 if (!REG_SAME ($1, $2))
2006 return yyerror ("Aregs must be same");
2008 if (IS_UIMM ($4, 5))
2010 notethat ("dsp32shiftimm: Ax = Ax >>> uimm5\n");
2011 $$ = DSP32SHIFTIMM (3, 0, -imm6 ($4), 0, 0, IS_A1 ($1));
2013 else
2014 return yyerror ("Shift value range error");
2016 | a_assign LSHIFT REG_A BY HALF_REG
2018 if (REG_SAME ($1, $3) && IS_DREG_L ($5))
2020 notethat ("dsp32shift: Ax = LSHIFT Ax BY dregs_lo\n");
2021 $$ = DSP32SHIFT (3, 0, &$5, 0, 1, IS_A1 ($1));
2023 else
2024 return yyerror ("Register mismatch");
2027 | HALF_REG ASSIGN LSHIFT HALF_REG BY HALF_REG
2029 if (IS_DREG ($1) && IS_DREG ($4) && IS_DREG_L ($6))
2031 notethat ("dsp32shift: dregs_lo = LSHIFT dregs_hi BY dregs_lo\n");
2032 $$ = DSP32SHIFT (0, &$1, &$6, &$4, 2, HL2 ($1, $4));
2034 else
2035 return yyerror ("Register mismatch");
2038 | REG ASSIGN LSHIFT REG BY HALF_REG vmod
2040 if (IS_DREG ($1) && IS_DREG ($4) && IS_DREG_L ($6))
2042 notethat ("dsp32shift: dregs = LSHIFT dregs BY dregs_lo (V )\n");
2043 $$ = DSP32SHIFT ($7.r0 ? 1: 2, &$1, &$6, &$4, 2, 0);
2045 else
2046 return yyerror ("Register mismatch");
2049 | REG ASSIGN SHIFT REG BY HALF_REG
2051 if (IS_DREG ($1) && IS_DREG ($4) && IS_DREG_L ($6))
2053 notethat ("dsp32shift: dregs = SHIFT dregs BY dregs_lo\n");
2054 $$ = DSP32SHIFT (2, &$1, &$6, &$4, 2, 0);
2056 else
2057 return yyerror ("Register mismatch");
2060 | a_assign REG_A GREATER_GREATER expr
2062 if (REG_SAME ($1, $2) && IS_IMM ($4, 6) >= 0)
2064 notethat ("dsp32shiftimm: Ax = Ax >> imm6\n");
2065 $$ = DSP32SHIFTIMM (3, 0, -imm6 ($4), 0, 1, IS_A1 ($1));
2067 else
2068 return yyerror ("Accu register expected");
2071 | REG ASSIGN REG GREATER_GREATER expr vmod
2073 if ($6.r0 == 1)
2075 if (IS_DREG ($1) && IS_DREG ($3) && IS_UIMM ($5, 5))
2077 notethat ("dsp32shiftimm: dregs = dregs >> uimm5 (V)\n");
2078 $$ = DSP32SHIFTIMM (1, &$1, -uimm5 ($5), &$3, 2, 0);
2080 else
2081 return yyerror ("Register mismatch");
2083 else
2085 if (IS_DREG ($1) && IS_DREG ($3) && IS_UIMM ($5, 5))
2087 notethat ("dsp32shiftimm: dregs = dregs >> uimm5\n");
2088 $$ = DSP32SHIFTIMM (2, &$1, -imm6 ($5), &$3, 2, 0);
2090 else if (IS_PREG ($1) && IS_PREG ($3) && EXPR_VALUE ($5) == 2)
2092 notethat ("PTR2op: pregs = pregs >> 2\n");
2093 $$ = PTR2OP (&$1, &$3, 3);
2095 else if (IS_PREG ($1) && IS_PREG ($3) && EXPR_VALUE ($5) == 1)
2097 notethat ("PTR2op: pregs = pregs >> 1\n");
2098 $$ = PTR2OP (&$1, &$3, 4);
2100 else
2101 return yyerror ("Register mismatch");
2104 | HALF_REG ASSIGN HALF_REG GREATER_GREATER expr
2106 if (IS_UIMM ($5, 5))
2108 notethat ("dsp32shiftimm: dregs_half = dregs_half >> uimm5\n");
2109 $$ = DSP32SHIFTIMM (0, &$1, -uimm5 ($5), &$3, 2, HL2 ($1, $3));
2111 else
2112 return yyerror ("Register mismatch");
2114 | HALF_REG ASSIGN HALF_REG _GREATER_GREATER_GREATER expr smod
2116 if (IS_UIMM ($5, 5))
2118 notethat ("dsp32shiftimm: dregs_half = dregs_half >>> uimm5\n");
2119 $$ = DSP32SHIFTIMM (0, &$1, -uimm5 ($5), &$3,
2120 $6.s0, HL2 ($1, $3));
2122 else
2123 return yyerror ("Register or modifier mismatch");
2127 | REG ASSIGN REG _GREATER_GREATER_GREATER expr vsmod
2129 if (IS_DREG ($1) && IS_DREG ($3) && IS_UIMM ($5, 5))
2131 if ($6.r0)
2133 /* Vector? */
2134 notethat ("dsp32shiftimm: dregs = dregs >>> uimm5 (V, .)\n");
2135 $$ = DSP32SHIFTIMM (1, &$1, -uimm5 ($5), &$3, $6.s0, 0);
2137 else
2139 notethat ("dsp32shiftimm: dregs = dregs >>> uimm5 (.)\n");
2140 $$ = DSP32SHIFTIMM (2, &$1, -uimm5 ($5), &$3, $6.s0, 0);
2143 else
2144 return yyerror ("Register mismatch");
2147 | HALF_REG ASSIGN ONES REG
2149 if (IS_DREG_L ($1) && IS_DREG ($4))
2151 notethat ("dsp32shift: dregs_lo = ONES dregs\n");
2152 $$ = DSP32SHIFT (6, &$1, 0, &$4, 3, 0);
2154 else
2155 return yyerror ("Register mismatch");
2158 | REG ASSIGN PACK LPAREN HALF_REG COMMA HALF_REG RPAREN
2160 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG ($7))
2162 notethat ("dsp32shift: dregs = PACK (dregs_hi , dregs_hi )\n");
2163 $$ = DSP32SHIFT (4, &$1, &$7, &$5, HL2 ($5, $7), 0);
2165 else
2166 return yyerror ("Register mismatch");
2169 | HALF_REG ASSIGN CCREG ASSIGN BXORSHIFT LPAREN REG_A COMMA REG RPAREN
2171 if (IS_DREG ($1)
2172 && $7.regno == REG_A0
2173 && IS_DREG ($9) && !IS_H ($1) && !IS_A1 ($7))
2175 notethat ("dsp32shift: dregs_lo = CC = BXORSHIFT (A0 , dregs )\n");
2176 $$ = DSP32SHIFT (11, &$1, &$9, 0, 0, 0);
2178 else
2179 return yyerror ("Register mismatch");
2182 | HALF_REG ASSIGN CCREG ASSIGN BXOR LPAREN REG_A COMMA REG RPAREN
2184 if (IS_DREG ($1)
2185 && $7.regno == REG_A0
2186 && IS_DREG ($9) && !IS_H ($1) && !IS_A1 ($7))
2188 notethat ("dsp32shift: dregs_lo = CC = BXOR (A0 , dregs)\n");
2189 $$ = DSP32SHIFT (11, &$1, &$9, 0, 1, 0);
2191 else
2192 return yyerror ("Register mismatch");
2195 | HALF_REG ASSIGN CCREG ASSIGN BXOR LPAREN REG_A COMMA REG_A COMMA CCREG RPAREN
2197 if (IS_DREG ($1) && !IS_H ($1) && !REG_SAME ($7, $9))
2199 notethat ("dsp32shift: dregs_lo = CC = BXOR (A0 , A1 , CC)\n");
2200 $$ = DSP32SHIFT (12, &$1, 0, 0, 1, 0);
2202 else
2203 return yyerror ("Register mismatch");
2206 | a_assign ROT REG_A BY HALF_REG
2208 if (REG_SAME ($1, $3) && IS_DREG_L ($5))
2210 notethat ("dsp32shift: Ax = ROT Ax BY dregs_lo\n");
2211 $$ = DSP32SHIFT (3, 0, &$5, 0, 2, IS_A1 ($1));
2213 else
2214 return yyerror ("Register mismatch");
2217 | REG ASSIGN ROT REG BY HALF_REG
2219 if (IS_DREG ($1) && IS_DREG ($4) && IS_DREG_L ($6))
2221 notethat ("dsp32shift: dregs = ROT dregs BY dregs_lo\n");
2222 $$ = DSP32SHIFT (2, &$1, &$6, &$4, 3, 0);
2224 else
2225 return yyerror ("Register mismatch");
2228 | a_assign ROT REG_A BY expr
2230 if (IS_IMM ($5, 6))
2232 notethat ("dsp32shiftimm: An = ROT An BY imm6\n");
2233 $$ = DSP32SHIFTIMM (3, 0, imm6 ($5), 0, 2, IS_A1 ($1));
2235 else
2236 return yyerror ("Register mismatch");
2239 | REG ASSIGN ROT REG BY expr
2241 if (IS_DREG ($1) && IS_DREG ($4) && IS_IMM ($6, 6))
2243 $$ = DSP32SHIFTIMM (2, &$1, imm6 ($6), &$4, 3, IS_A1 ($1));
2245 else
2246 return yyerror ("Register mismatch");
2249 | HALF_REG ASSIGN SIGNBITS REG_A
2251 if (IS_DREG_L ($1))
2253 notethat ("dsp32shift: dregs_lo = SIGNBITS An\n");
2254 $$ = DSP32SHIFT (6, &$1, 0, 0, IS_A1 ($4), 0);
2256 else
2257 return yyerror ("Register mismatch");
2260 | HALF_REG ASSIGN SIGNBITS REG
2262 if (IS_DREG_L ($1) && IS_DREG ($4))
2264 notethat ("dsp32shift: dregs_lo = SIGNBITS dregs\n");
2265 $$ = DSP32SHIFT (5, &$1, 0, &$4, 0, 0);
2267 else
2268 return yyerror ("Register mismatch");
2271 | HALF_REG ASSIGN SIGNBITS HALF_REG
2273 if (IS_DREG_L ($1))
2275 notethat ("dsp32shift: dregs_lo = SIGNBITS dregs_lo\n");
2276 $$ = DSP32SHIFT (5, &$1, 0, &$4, 1 + IS_H ($4), 0);
2278 else
2279 return yyerror ("Register mismatch");
2282 /* The ASR bit is just inverted here. */
2283 | HALF_REG ASSIGN VIT_MAX LPAREN REG RPAREN asr_asl
2285 if (IS_DREG_L ($1) && IS_DREG ($5))
2287 notethat ("dsp32shift: dregs_lo = VIT_MAX (dregs) (..)\n");
2288 $$ = DSP32SHIFT (9, &$1, 0, &$5, ($7.r0 ? 0 : 1), 0);
2290 else
2291 return yyerror ("Register mismatch");
2294 | REG ASSIGN VIT_MAX LPAREN REG COMMA REG RPAREN asr_asl
2296 if (IS_DREG ($1) && IS_DREG ($5) && IS_DREG ($7))
2298 notethat ("dsp32shift: dregs = VIT_MAX (dregs, dregs) (ASR)\n");
2299 $$ = DSP32SHIFT (9, &$1, &$7, &$5, 2 | ($9.r0 ? 0 : 1), 0);
2301 else
2302 return yyerror ("Register mismatch");
2305 | BITMUX LPAREN REG COMMA REG COMMA REG_A RPAREN asr_asl
2307 if (IS_DREG ($3) && IS_DREG ($5) && !IS_A1 ($7))
2309 notethat ("dsp32shift: BITMUX (dregs , dregs , A0) (ASR)\n");
2310 $$ = DSP32SHIFT (8, 0, &$3, &$5, $9.r0, 0);
2312 else
2313 return yyerror ("Register mismatch");
2316 | a_assign BXORSHIFT LPAREN REG_A COMMA REG_A COMMA CCREG RPAREN
2318 if (!IS_A1 ($1) && !IS_A1 ($4) && IS_A1 ($6))
2320 notethat ("dsp32shift: A0 = BXORSHIFT (A0 , A1 , CC )\n");
2321 $$ = DSP32SHIFT (12, 0, 0, 0, 0, 0);
2323 else
2324 return yyerror ("Dregs expected");
2328 /* LOGI2op: BITCLR (dregs, uimm5). */
2329 | BITCLR LPAREN REG COMMA expr RPAREN
2331 if (IS_DREG ($3) && IS_UIMM ($5, 5))
2333 notethat ("LOGI2op: BITCLR (dregs , uimm5 )\n");
2334 $$ = LOGI2OP ($3, uimm5 ($5), 4);
2336 else
2337 return yyerror ("Register mismatch");
2340 /* LOGI2op: BITSET (dregs, uimm5). */
2341 | BITSET LPAREN REG COMMA expr RPAREN
2343 if (IS_DREG ($3) && IS_UIMM ($5, 5))
2345 notethat ("LOGI2op: BITCLR (dregs , uimm5 )\n");
2346 $$ = LOGI2OP ($3, uimm5 ($5), 2);
2348 else
2349 return yyerror ("Register mismatch");
2352 /* LOGI2op: BITTGL (dregs, uimm5). */
2353 | BITTGL LPAREN REG COMMA expr RPAREN
2355 if (IS_DREG ($3) && IS_UIMM ($5, 5))
2357 notethat ("LOGI2op: BITCLR (dregs , uimm5 )\n");
2358 $$ = LOGI2OP ($3, uimm5 ($5), 3);
2360 else
2361 return yyerror ("Register mismatch");
2364 | CCREG _ASSIGN_BANG BITTST LPAREN REG COMMA expr RPAREN
2366 if (IS_DREG ($5) && IS_UIMM ($7, 5))
2368 notethat ("LOGI2op: CC =! BITTST (dregs , uimm5 )\n");
2369 $$ = LOGI2OP ($5, uimm5 ($7), 0);
2371 else
2372 return yyerror ("Register mismatch or value error");
2375 | CCREG ASSIGN BITTST LPAREN REG COMMA expr RPAREN
2377 if (IS_DREG ($5) && IS_UIMM ($7, 5))
2379 notethat ("LOGI2op: CC = BITTST (dregs , uimm5 )\n");
2380 $$ = LOGI2OP ($5, uimm5 ($7), 1);
2382 else
2383 return yyerror ("Register mismatch or value error");
2386 | IF BANG CCREG REG ASSIGN REG
2388 if ((IS_DREG ($4) || IS_PREG ($4))
2389 && (IS_DREG ($6) || IS_PREG ($6)))
2391 notethat ("ccMV: IF ! CC gregs = gregs\n");
2392 $$ = CCMV (&$6, &$4, 0);
2394 else
2395 return yyerror ("Register mismatch");
2398 | IF CCREG REG ASSIGN REG
2400 if ((IS_DREG ($5) || IS_PREG ($5))
2401 && (IS_DREG ($3) || IS_PREG ($3)))
2403 notethat ("ccMV: IF CC gregs = gregs\n");
2404 $$ = CCMV (&$5, &$3, 1);
2406 else
2407 return yyerror ("Register mismatch");
2410 | IF BANG CCREG JUMP expr
2412 if (IS_PCREL10 ($5))
2414 notethat ("BRCC: IF !CC JUMP pcrel11m2\n");
2415 $$ = BRCC (0, 0, $5);
2417 else
2418 return yyerror ("Bad jump offset");
2421 | IF BANG CCREG JUMP expr LPAREN BP RPAREN
2423 if (IS_PCREL10 ($5))
2425 notethat ("BRCC: IF !CC JUMP pcrel11m2\n");
2426 $$ = BRCC (0, 1, $5);
2428 else
2429 return yyerror ("Bad jump offset");
2432 | IF CCREG JUMP expr
2434 if (IS_PCREL10 ($4))
2436 notethat ("BRCC: IF CC JUMP pcrel11m2\n");
2437 $$ = BRCC (1, 0, $4);
2439 else
2440 return yyerror ("Bad jump offset");
2443 | IF CCREG JUMP expr LPAREN BP RPAREN
2445 if (IS_PCREL10 ($4))
2447 notethat ("BRCC: IF !CC JUMP pcrel11m2\n");
2448 $$ = BRCC (1, 1, $4);
2450 else
2451 return yyerror ("Bad jump offset");
2453 | NOP
2455 notethat ("ProgCtrl: NOP\n");
2456 $$ = PROGCTRL (0, 0);
2459 | RTS
2461 notethat ("ProgCtrl: RTS\n");
2462 $$ = PROGCTRL (1, 0);
2465 | RTI
2467 notethat ("ProgCtrl: RTI\n");
2468 $$ = PROGCTRL (1, 1);
2471 | RTX
2473 notethat ("ProgCtrl: RTX\n");
2474 $$ = PROGCTRL (1, 2);
2477 | RTN
2479 notethat ("ProgCtrl: RTN\n");
2480 $$ = PROGCTRL (1, 3);
2483 | RTE
2485 notethat ("ProgCtrl: RTE\n");
2486 $$ = PROGCTRL (1, 4);
2489 | IDLE
2491 notethat ("ProgCtrl: IDLE\n");
2492 $$ = PROGCTRL (2, 0);
2495 | CSYNC
2497 notethat ("ProgCtrl: CSYNC\n");
2498 $$ = PROGCTRL (2, 3);
2501 | SSYNC
2503 notethat ("ProgCtrl: SSYNC\n");
2504 $$ = PROGCTRL (2, 4);
2507 | EMUEXCPT
2509 notethat ("ProgCtrl: EMUEXCPT\n");
2510 $$ = PROGCTRL (2, 5);
2513 | CLI REG
2515 if (IS_DREG ($2))
2517 notethat ("ProgCtrl: CLI dregs\n");
2518 $$ = PROGCTRL (3, $2.regno & CODE_MASK);
2520 else
2521 return yyerror ("Dreg expected for CLI");
2524 | STI REG
2526 if (IS_DREG ($2))
2528 notethat ("ProgCtrl: STI dregs\n");
2529 $$ = PROGCTRL (4, $2.regno & CODE_MASK);
2531 else
2532 return yyerror ("Dreg expected for STI");
2535 | JUMP LPAREN REG RPAREN
2537 if (IS_PREG ($3))
2539 notethat ("ProgCtrl: JUMP (pregs )\n");
2540 $$ = PROGCTRL (5, $3.regno & CODE_MASK);
2542 else
2543 return yyerror ("Bad register for indirect jump");
2546 | CALL LPAREN REG RPAREN
2548 if (IS_PREG ($3))
2550 notethat ("ProgCtrl: CALL (pregs )\n");
2551 $$ = PROGCTRL (6, $3.regno & CODE_MASK);
2553 else
2554 return yyerror ("Bad register for indirect call");
2557 | CALL LPAREN PC PLUS REG RPAREN
2559 if (IS_PREG ($5))
2561 notethat ("ProgCtrl: CALL (PC + pregs )\n");
2562 $$ = PROGCTRL (7, $5.regno & CODE_MASK);
2564 else
2565 return yyerror ("Bad register for indirect call");
2568 | JUMP LPAREN PC PLUS REG RPAREN
2570 if (IS_PREG ($5))
2572 notethat ("ProgCtrl: JUMP (PC + pregs )\n");
2573 $$ = PROGCTRL (8, $5.regno & CODE_MASK);
2575 else
2576 return yyerror ("Bad register for indirect jump");
2579 | RAISE expr
2581 if (IS_UIMM ($2, 4))
2583 notethat ("ProgCtrl: RAISE uimm4\n");
2584 $$ = PROGCTRL (9, uimm4 ($2));
2586 else
2587 return yyerror ("Bad value for RAISE");
2590 | EXCPT expr
2592 notethat ("ProgCtrl: EMUEXCPT\n");
2593 $$ = PROGCTRL (10, uimm4 ($2));
2596 | TESTSET LPAREN REG RPAREN
2598 if (IS_PREG ($3))
2600 notethat ("ProgCtrl: TESTSET (pregs )\n");
2601 $$ = PROGCTRL (11, $3.regno & CODE_MASK);
2603 else
2604 return yyerror ("Preg expected");
2607 | JUMP expr
2609 if (IS_PCREL12 ($2))
2611 notethat ("UJUMP: JUMP pcrel12\n");
2612 $$ = UJUMP ($2);
2614 else
2615 return yyerror ("Bad value for relative jump");
2618 | JUMP_DOT_S expr
2620 if (IS_PCREL12 ($2))
2622 notethat ("UJUMP: JUMP_DOT_S pcrel12\n");
2623 $$ = UJUMP($2);
2625 else
2626 return yyerror ("Bad value for relative jump");
2629 | JUMP_DOT_L expr
2631 if (IS_PCREL24 ($2))
2633 notethat ("CALLa: jump.l pcrel24\n");
2634 $$ = CALLA ($2, 0);
2636 else
2637 return yyerror ("Bad value for long jump");
2640 | JUMP_DOT_L pltpc
2642 if (IS_PCREL24 ($2))
2644 notethat ("CALLa: jump.l pcrel24\n");
2645 $$ = CALLA ($2, 2);
2647 else
2648 return yyerror ("Bad value for long jump");
2651 | CALL expr
2653 if (IS_PCREL24 ($2))
2655 notethat ("CALLa: CALL pcrel25m2\n");
2656 $$ = CALLA ($2, 1);
2658 else
2659 return yyerror ("Bad call address");
2661 | CALL pltpc
2663 if (IS_PCREL24 ($2))
2665 notethat ("CALLa: CALL pcrel25m2\n");
2666 $$ = CALLA ($2, 2);
2668 else
2669 return yyerror ("Bad call address");
2672 /* ALU2ops. */
2673 /* ALU2op: DIVQ (dregs, dregs). */
2674 | DIVQ LPAREN REG COMMA REG RPAREN
2676 if (IS_DREG ($3) && IS_DREG ($5))
2677 $$ = ALU2OP (&$3, &$5, 8);
2678 else
2679 return yyerror ("Bad registers for DIVQ");
2682 | DIVS LPAREN REG COMMA REG RPAREN
2684 if (IS_DREG ($3) && IS_DREG ($5))
2685 $$ = ALU2OP (&$3, &$5, 9);
2686 else
2687 return yyerror ("Bad registers for DIVS");
2690 | REG ASSIGN MINUS REG vsmod
2692 if (IS_DREG ($1) && IS_DREG ($4))
2694 if ($5.r0 == 0 && $5.s0 == 0 && $5.aop == 0)
2696 notethat ("ALU2op: dregs = - dregs\n");
2697 $$ = ALU2OP (&$1, &$4, 14);
2699 else if ($5.r0 == 1 && $5.s0 == 0 && $5.aop == 3)
2701 notethat ("dsp32alu: dregs = - dregs (.)\n");
2702 $$ = DSP32ALU (15, 0, 0, &$1, &$4, 0, $5.s0, 0, 3);
2704 else
2706 notethat ("dsp32alu: dregs = - dregs (.)\n");
2707 $$ = DSP32ALU (7, 0, 0, &$1, &$4, 0, $5.s0, 0, 3);
2710 else
2711 return yyerror ("Dregs expected");
2714 | REG ASSIGN TILDA REG
2716 if (IS_DREG ($1) && IS_DREG ($4))
2718 notethat ("ALU2op: dregs = ~dregs\n");
2719 $$ = ALU2OP (&$1, &$4, 15);
2721 else
2722 return yyerror ("Dregs expected");
2725 | REG _GREATER_GREATER_ASSIGN REG
2727 if (IS_DREG ($1) && IS_DREG ($3))
2729 notethat ("ALU2op: dregs >>= dregs\n");
2730 $$ = ALU2OP (&$1, &$3, 1);
2732 else
2733 return yyerror ("Dregs expected");
2736 | REG _GREATER_GREATER_ASSIGN expr
2738 if (IS_DREG ($1) && IS_UIMM ($3, 5))
2740 notethat ("LOGI2op: dregs >>= uimm5\n");
2741 $$ = LOGI2OP ($1, uimm5 ($3), 6);
2743 else
2744 return yyerror ("Dregs expected or value error");
2747 | REG _GREATER_GREATER_GREATER_THAN_ASSIGN REG
2749 if (IS_DREG ($1) && IS_DREG ($3))
2751 notethat ("ALU2op: dregs >>>= dregs\n");
2752 $$ = ALU2OP (&$1, &$3, 0);
2754 else
2755 return yyerror ("Dregs expected");
2758 | REG _LESS_LESS_ASSIGN REG
2760 if (IS_DREG ($1) && IS_DREG ($3))
2762 notethat ("ALU2op: dregs <<= dregs\n");
2763 $$ = ALU2OP (&$1, &$3, 2);
2765 else
2766 return yyerror ("Dregs expected");
2769 | REG _LESS_LESS_ASSIGN expr
2771 if (IS_DREG ($1) && IS_UIMM ($3, 5))
2773 notethat ("LOGI2op: dregs <<= uimm5\n");
2774 $$ = LOGI2OP ($1, uimm5 ($3), 7);
2776 else
2777 return yyerror ("Dregs expected or const value error");
2781 | REG _GREATER_GREATER_GREATER_THAN_ASSIGN expr
2783 if (IS_DREG ($1) && IS_UIMM ($3, 5))
2785 notethat ("LOGI2op: dregs >>>= uimm5\n");
2786 $$ = LOGI2OP ($1, uimm5 ($3), 5);
2788 else
2789 return yyerror ("Dregs expected");
2792 /* Cache Control. */
2794 | FLUSH LBRACK REG RBRACK
2796 notethat ("CaCTRL: FLUSH [ pregs ]\n");
2797 if (IS_PREG ($3))
2798 $$ = CACTRL (&$3, 0, 2);
2799 else
2800 return yyerror ("Bad register(s) for FLUSH");
2803 | FLUSH reg_with_postinc
2805 if (IS_PREG ($2))
2807 notethat ("CaCTRL: FLUSH [ pregs ++ ]\n");
2808 $$ = CACTRL (&$2, 1, 2);
2810 else
2811 return yyerror ("Bad register(s) for FLUSH");
2814 | FLUSHINV LBRACK REG RBRACK
2816 if (IS_PREG ($3))
2818 notethat ("CaCTRL: FLUSHINV [ pregs ]\n");
2819 $$ = CACTRL (&$3, 0, 1);
2821 else
2822 return yyerror ("Bad register(s) for FLUSH");
2825 | FLUSHINV reg_with_postinc
2827 if (IS_PREG ($2))
2829 notethat ("CaCTRL: FLUSHINV [ pregs ++ ]\n");
2830 $$ = CACTRL (&$2, 1, 1);
2832 else
2833 return yyerror ("Bad register(s) for FLUSH");
2836 /* CaCTRL: IFLUSH [pregs]. */
2837 | IFLUSH LBRACK REG RBRACK
2839 if (IS_PREG ($3))
2841 notethat ("CaCTRL: IFLUSH [ pregs ]\n");
2842 $$ = CACTRL (&$3, 0, 3);
2844 else
2845 return yyerror ("Bad register(s) for FLUSH");
2848 | IFLUSH reg_with_postinc
2850 if (IS_PREG ($2))
2852 notethat ("CaCTRL: IFLUSH [ pregs ++ ]\n");
2853 $$ = CACTRL (&$2, 1, 3);
2855 else
2856 return yyerror ("Bad register(s) for FLUSH");
2859 | PREFETCH LBRACK REG RBRACK
2861 if (IS_PREG ($3))
2863 notethat ("CaCTRL: PREFETCH [ pregs ]\n");
2864 $$ = CACTRL (&$3, 0, 0);
2866 else
2867 return yyerror ("Bad register(s) for PREFETCH");
2870 | PREFETCH reg_with_postinc
2872 if (IS_PREG ($2))
2874 notethat ("CaCTRL: PREFETCH [ pregs ++ ]\n");
2875 $$ = CACTRL (&$2, 1, 0);
2877 else
2878 return yyerror ("Bad register(s) for PREFETCH");
2881 /* LOAD/STORE. */
2882 /* LDST: B [ pregs <post_op> ] = dregs. */
2884 | B LBRACK REG post_op RBRACK ASSIGN REG
2886 if (IS_PREG ($3) && IS_DREG ($7))
2888 notethat ("LDST: B [ pregs <post_op> ] = dregs\n");
2889 $$ = LDST (&$3, &$7, $4.x0, 2, 0, 1);
2891 else
2892 return yyerror ("Register mismatch");
2895 /* LDSTidxI: B [ pregs + imm16 ] = dregs. */
2896 | B LBRACK REG plus_minus expr RBRACK ASSIGN REG
2898 if (IS_PREG ($3) && IS_RANGE(16, $5, $4.r0, 1) && IS_DREG ($8))
2900 notethat ("LDST: B [ pregs + imm16 ] = dregs\n");
2901 if ($4.r0)
2902 neg_value ($5);
2903 $$ = LDSTIDXI (&$3, &$8, 1, 2, 0, $5);
2905 else
2906 return yyerror ("Register mismatch or const size wrong");
2910 /* LDSTii: W [ pregs + uimm4s2 ] = dregs. */
2911 | W LBRACK REG plus_minus expr RBRACK ASSIGN REG
2913 if (IS_PREG ($3) && IS_URANGE (4, $5, $4.r0, 2) && IS_DREG ($8))
2915 notethat ("LDSTii: W [ pregs +- uimm5m2 ] = dregs\n");
2916 $$ = LDSTII (&$3, &$8, $5, 1, 1);
2918 else if (IS_PREG ($3) && IS_RANGE(16, $5, $4.r0, 2) && IS_DREG ($8))
2920 notethat ("LDSTidxI: W [ pregs + imm17m2 ] = dregs\n");
2921 if ($4.r0)
2922 neg_value ($5);
2923 $$ = LDSTIDXI (&$3, &$8, 1, 1, 0, $5);
2925 else
2926 return yyerror ("Bad register(s) or wrong constant size");
2929 /* LDST: W [ pregs <post_op> ] = dregs. */
2930 | W LBRACK REG post_op RBRACK ASSIGN REG
2932 if (IS_PREG ($3) && IS_DREG ($7))
2934 notethat ("LDST: W [ pregs <post_op> ] = dregs\n");
2935 $$ = LDST (&$3, &$7, $4.x0, 1, 0, 1);
2937 else
2938 return yyerror ("Bad register(s) for STORE");
2941 | W LBRACK REG post_op RBRACK ASSIGN HALF_REG
2943 if (IS_IREG ($3))
2945 notethat ("dspLDST: W [ iregs <post_op> ] = dregs_half\n");
2946 $$ = DSPLDST (&$3, 1 + IS_H ($7), &$7, $4.x0, 1);
2948 else if ($4.x0 == 2 && IS_PREG ($3) && IS_DREG ($7))
2950 notethat ("LDSTpmod: W [ pregs <post_op>] = dregs_half\n");
2951 $$ = LDSTPMOD (&$3, &$7, &$3, 1 + IS_H ($7), 1);
2954 else
2955 return yyerror ("Bad register(s) for STORE");
2958 /* LDSTiiFP: [ FP - const ] = dpregs. */
2959 | LBRACK REG plus_minus expr RBRACK ASSIGN REG
2961 Expr_Node *tmp = $4;
2962 int ispreg = IS_PREG ($7);
2964 if (!IS_PREG ($2))
2965 return yyerror ("Preg expected for indirect");
2967 if (!IS_DREG ($7) && !ispreg)
2968 return yyerror ("Bad source register for STORE");
2970 if ($3.r0)
2971 tmp = unary (Expr_Op_Type_NEG, tmp);
2973 if (in_range_p (tmp, 0, 63, 3))
2975 notethat ("LDSTii: dpregs = [ pregs + uimm6m4 ]\n");
2976 $$ = LDSTII (&$2, &$7, tmp, 1, ispreg ? 3 : 0);
2978 else if ($2.regno == REG_FP && in_range_p (tmp, -128, 0, 3))
2980 notethat ("LDSTiiFP: dpregs = [ FP - uimm7m4 ]\n");
2981 tmp = unary (Expr_Op_Type_NEG, tmp);
2982 $$ = LDSTIIFP (tmp, &$7, 1);
2984 else if (in_range_p (tmp, -131072, 131071, 3))
2986 notethat ("LDSTidxI: [ pregs + imm18m4 ] = dpregs\n");
2987 $$ = LDSTIDXI (&$2, &$7, 1, 0, ispreg ? 1: 0, tmp);
2989 else
2990 return yyerror ("Displacement out of range for store");
2993 | REG ASSIGN W LBRACK REG plus_minus expr RBRACK xpmod
2995 if (IS_DREG ($1) && IS_PREG ($5) && IS_URANGE (4, $7, $6.r0, 2))
2997 notethat ("LDSTii: dregs = W [ pregs + uimm4s2 ] (.)\n");
2998 $$ = LDSTII (&$5, &$1, $7, 0, 1 << $9.r0);
3000 else if (IS_DREG ($1) && IS_PREG ($5) && IS_RANGE(16, $7, $6.r0, 2))
3002 notethat ("LDSTidxI: dregs = W [ pregs + imm17m2 ] (.)\n");
3003 if ($6.r0)
3004 neg_value ($7);
3005 $$ = LDSTIDXI (&$5, &$1, 0, 1, $9.r0, $7);
3007 else
3008 return yyerror ("Bad register or constant for LOAD");
3011 | HALF_REG ASSIGN W LBRACK REG post_op RBRACK
3013 if (IS_IREG ($5))
3015 notethat ("dspLDST: dregs_half = W [ iregs ]\n");
3016 $$ = DSPLDST(&$5, 1 + IS_H ($1), &$1, $6.x0, 0);
3018 else if ($6.x0 == 2 && IS_DREG ($1) && IS_PREG ($5))
3020 notethat ("LDSTpmod: dregs_half = W [ pregs ]\n");
3021 $$ = LDSTPMOD (&$5, &$1, &$5, 1 + IS_H ($1), 0);
3023 else
3024 return yyerror ("Bad register or post_op for LOAD");
3028 | REG ASSIGN W LBRACK REG post_op RBRACK xpmod
3030 if (IS_DREG ($1) && IS_PREG ($5))
3032 notethat ("LDST: dregs = W [ pregs <post_op> ] (.)\n");
3033 $$ = LDST (&$5, &$1, $6.x0, 1, $8.r0, 0);
3035 else
3036 return yyerror ("Bad register for LOAD");
3039 | REG ASSIGN W LBRACK REG _PLUS_PLUS REG RBRACK xpmod
3041 if (IS_DREG ($1) && IS_PREG ($5) && IS_PREG ($7))
3043 notethat ("LDSTpmod: dregs = W [ pregs ++ pregs ] (.)\n");
3044 $$ = LDSTPMOD (&$5, &$1, &$7, 3, $9.r0);
3046 else
3047 return yyerror ("Bad register for LOAD");
3050 | HALF_REG ASSIGN W LBRACK REG _PLUS_PLUS REG RBRACK
3052 if (IS_DREG ($1) && IS_PREG ($5) && IS_PREG ($7))
3054 notethat ("LDSTpmod: dregs_half = W [ pregs ++ pregs ]\n");
3055 $$ = LDSTPMOD (&$5, &$1, &$7, 1 + IS_H ($1), 0);
3057 else
3058 return yyerror ("Bad register for LOAD");
3061 | LBRACK REG post_op RBRACK ASSIGN REG
3063 if (IS_IREG ($2) && IS_DREG ($6))
3065 notethat ("dspLDST: [ iregs <post_op> ] = dregs\n");
3066 $$ = DSPLDST(&$2, 0, &$6, $3.x0, 1);
3068 else if (IS_PREG ($2) && IS_DREG ($6))
3070 notethat ("LDST: [ pregs <post_op> ] = dregs\n");
3071 $$ = LDST (&$2, &$6, $3.x0, 0, 0, 1);
3073 else if (IS_PREG ($2) && IS_PREG ($6))
3075 notethat ("LDST: [ pregs <post_op> ] = pregs\n");
3076 $$ = LDST (&$2, &$6, $3.x0, 0, 1, 1);
3078 else
3079 return yyerror ("Bad register for STORE");
3082 | LBRACK REG _PLUS_PLUS REG RBRACK ASSIGN REG
3084 if (! IS_DREG ($7))
3085 return yyerror ("Expected Dreg for last argument");
3087 if (IS_IREG ($2) && IS_MREG ($4))
3089 notethat ("dspLDST: [ iregs ++ mregs ] = dregs\n");
3090 $$ = DSPLDST(&$2, $4.regno & CODE_MASK, &$7, 3, 1);
3092 else if (IS_PREG ($2) && IS_PREG ($4))
3094 notethat ("LDSTpmod: [ pregs ++ pregs ] = dregs\n");
3095 $$ = LDSTPMOD (&$2, &$7, &$4, 0, 1);
3097 else
3098 return yyerror ("Bad register for STORE");
3101 | W LBRACK REG _PLUS_PLUS REG RBRACK ASSIGN HALF_REG
3103 if (!IS_DREG ($8))
3104 return yyerror ("Expect Dreg as last argument");
3105 if (IS_PREG ($3) && IS_PREG ($5))
3107 notethat ("LDSTpmod: W [ pregs ++ pregs ] = dregs_half\n");
3108 $$ = LDSTPMOD (&$3, &$8, &$5, 1 + IS_H ($8), 1);
3110 else
3111 return yyerror ("Bad register for STORE");
3114 | REG ASSIGN B LBRACK REG plus_minus expr RBRACK xpmod
3116 if (IS_DREG ($1) && IS_PREG ($5) && IS_RANGE(16, $7, $6.r0, 1))
3118 notethat ("LDSTidxI: dregs = B [ pregs + imm16 ] (%c)\n",
3119 $9.r0 ? 'X' : 'Z');
3120 if ($6.r0)
3121 neg_value ($7);
3122 $$ = LDSTIDXI (&$5, &$1, 0, 2, $9.r0, $7);
3124 else
3125 return yyerror ("Bad register or value for LOAD");
3128 | REG ASSIGN B LBRACK REG post_op RBRACK xpmod
3130 if (IS_DREG ($1) && IS_PREG ($5))
3132 notethat ("LDST: dregs = B [ pregs <post_op> ] (%c)\n",
3133 $8.r0 ? 'X' : 'Z');
3134 $$ = LDST (&$5, &$1, $6.x0, 2, $8.r0, 0);
3136 else
3137 return yyerror ("Bad register for LOAD");
3140 | REG ASSIGN LBRACK REG _PLUS_PLUS REG RBRACK
3142 if (IS_DREG ($1) && IS_IREG ($4) && IS_MREG ($6))
3144 notethat ("dspLDST: dregs = [ iregs ++ mregs ]\n");
3145 $$ = DSPLDST(&$4, $6.regno & CODE_MASK, &$1, 3, 0);
3147 else if (IS_DREG ($1) && IS_PREG ($4) && IS_PREG ($6))
3149 notethat ("LDSTpmod: dregs = [ pregs ++ pregs ]\n");
3150 $$ = LDSTPMOD (&$4, &$1, &$6, 0, 0);
3152 else
3153 return yyerror ("Bad register for LOAD");
3156 | REG ASSIGN LBRACK REG plus_minus got_or_expr RBRACK
3158 Expr_Node *tmp = $6;
3159 int ispreg = IS_PREG ($1);
3160 int isgot = IS_RELOC($6);
3162 if (!IS_PREG ($4))
3163 return yyerror ("Preg expected for indirect");
3165 if (!IS_DREG ($1) && !ispreg)
3166 return yyerror ("Bad destination register for LOAD");
3168 if ($5.r0)
3169 tmp = unary (Expr_Op_Type_NEG, tmp);
3171 if(isgot){
3172 notethat ("LDSTidxI: dpregs = [ pregs + sym@got ]\n");
3173 $$ = LDSTIDXI (&$4, &$1, 0, 0, ispreg ? 1: 0, tmp);
3175 else if (in_range_p (tmp, 0, 63, 3))
3177 notethat ("LDSTii: dpregs = [ pregs + uimm7m4 ]\n");
3178 $$ = LDSTII (&$4, &$1, tmp, 0, ispreg ? 3 : 0);
3180 else if ($4.regno == REG_FP && in_range_p (tmp, -128, 0, 3))
3182 notethat ("LDSTiiFP: dpregs = [ FP - uimm7m4 ]\n");
3183 tmp = unary (Expr_Op_Type_NEG, tmp);
3184 $$ = LDSTIIFP (tmp, &$1, 0);
3186 else if (in_range_p (tmp, -131072, 131071, 3))
3188 notethat ("LDSTidxI: dpregs = [ pregs + imm18m4 ]\n");
3189 $$ = LDSTIDXI (&$4, &$1, 0, 0, ispreg ? 1: 0, tmp);
3192 else
3193 return yyerror ("Displacement out of range for load");
3196 | REG ASSIGN LBRACK REG post_op RBRACK
3198 if (IS_DREG ($1) && IS_IREG ($4))
3200 notethat ("dspLDST: dregs = [ iregs <post_op> ]\n");
3201 $$ = DSPLDST (&$4, 0, &$1, $5.x0, 0);
3203 else if (IS_DREG ($1) && IS_PREG ($4))
3205 notethat ("LDST: dregs = [ pregs <post_op> ]\n");
3206 $$ = LDST (&$4, &$1, $5.x0, 0, 0, 0);
3208 else if (IS_PREG ($1) && IS_PREG ($4))
3210 if (REG_SAME ($1, $4) && $5.x0 != 2)
3211 return yyerror ("Pregs can't be same");
3213 notethat ("LDST: pregs = [ pregs <post_op> ]\n");
3214 $$ = LDST (&$4, &$1, $5.x0, 0, 1, 0);
3216 else if ($4.regno == REG_SP && IS_ALLREG ($1) && $5.x0 == 0)
3218 notethat ("PushPopReg: allregs = [ SP ++ ]\n");
3219 $$ = PUSHPOPREG (&$1, 0);
3221 else
3222 return yyerror ("Bad register or value");
3227 /* Expression Assignment. */
3229 | expr ASSIGN expr
3231 bfin_equals ($1);
3232 $$ = 0;
3236 /* PushPopMultiple. */
3237 | reg_with_predec ASSIGN LPAREN REG COLON expr COMMA REG COLON expr RPAREN
3239 if ($1.regno != REG_SP)
3240 yyerror ("Stack Pointer expected");
3241 if ($4.regno == REG_R7
3242 && IN_RANGE ($6, 0, 7)
3243 && $8.regno == REG_P5
3244 && IN_RANGE ($10, 0, 5))
3246 notethat ("PushPopMultiple: [ -- SP ] = (R7 : reglim , P5 : reglim )\n");
3247 $$ = PUSHPOPMULTIPLE (imm5 ($6), imm5 ($10), 1, 1, 1);
3249 else
3250 return yyerror ("Bad register for PushPopMultiple");
3253 | reg_with_predec ASSIGN LPAREN REG COLON expr RPAREN
3255 if ($1.regno != REG_SP)
3256 yyerror ("Stack Pointer expected");
3258 if ($4.regno == REG_R7 && IN_RANGE ($6, 0, 7))
3260 notethat ("PushPopMultiple: [ -- SP ] = (R7 : reglim )\n");
3261 $$ = PUSHPOPMULTIPLE (imm5 ($6), 0, 1, 0, 1);
3263 else if ($4.regno == REG_P5 && IN_RANGE ($6, 0, 6))
3265 notethat ("PushPopMultiple: [ -- SP ] = (P5 : reglim )\n");
3266 $$ = PUSHPOPMULTIPLE (0, imm5 ($6), 0, 1, 1);
3268 else
3269 return yyerror ("Bad register for PushPopMultiple");
3272 | LPAREN REG COLON expr COMMA REG COLON expr RPAREN ASSIGN reg_with_postinc
3274 if ($11.regno != REG_SP)
3275 yyerror ("Stack Pointer expected");
3276 if ($2.regno == REG_R7 && (IN_RANGE ($4, 0, 7))
3277 && $6.regno == REG_P5 && (IN_RANGE ($8, 0, 6)))
3279 notethat ("PushPopMultiple: (R7 : reglim , P5 : reglim ) = [ SP ++ ]\n");
3280 $$ = PUSHPOPMULTIPLE (imm5 ($4), imm5 ($8), 1, 1, 0);
3282 else
3283 return yyerror ("Bad register range for PushPopMultiple");
3286 | LPAREN REG COLON expr RPAREN ASSIGN reg_with_postinc
3288 if ($7.regno != REG_SP)
3289 yyerror ("Stack Pointer expected");
3291 if ($2.regno == REG_R7 && IN_RANGE ($4, 0, 7))
3293 notethat ("PushPopMultiple: (R7 : reglim ) = [ SP ++ ]\n");
3294 $$ = PUSHPOPMULTIPLE (imm5 ($4), 0, 1, 0, 0);
3296 else if ($2.regno == REG_P5 && IN_RANGE ($4, 0, 6))
3298 notethat ("PushPopMultiple: (P5 : reglim ) = [ SP ++ ]\n");
3299 $$ = PUSHPOPMULTIPLE (0, imm5 ($4), 0, 1, 0);
3301 else
3302 return yyerror ("Bad register range for PushPopMultiple");
3305 | reg_with_predec ASSIGN REG
3307 if ($1.regno != REG_SP)
3308 yyerror ("Stack Pointer expected");
3310 if (IS_ALLREG ($3))
3312 notethat ("PushPopReg: [ -- SP ] = allregs\n");
3313 $$ = PUSHPOPREG (&$3, 1);
3315 else
3316 return yyerror ("Bad register for PushPopReg");
3319 /* Linkage. */
3321 | LINK expr
3323 if (IS_URANGE (16, $2, 0, 4))
3324 $$ = LINKAGE (0, uimm16s4 ($2));
3325 else
3326 return yyerror ("Bad constant for LINK");
3329 | UNLINK
3331 notethat ("linkage: UNLINK\n");
3332 $$ = LINKAGE (1, 0);
3336 /* LSETUP. */
3338 | LSETUP LPAREN expr COMMA expr RPAREN REG
3340 if (IS_PCREL4 ($3) && IS_LPPCREL10 ($5) && IS_CREG ($7))
3342 notethat ("LoopSetup: LSETUP (pcrel4 , lppcrel10 ) counters\n");
3343 $$ = LOOPSETUP ($3, &$7, 0, $5, 0);
3345 else
3346 return yyerror ("Bad register or values for LSETUP");
3349 | LSETUP LPAREN expr COMMA expr RPAREN REG ASSIGN REG
3351 if (IS_PCREL4 ($3) && IS_LPPCREL10 ($5)
3352 && IS_PREG ($9) && IS_CREG ($7))
3354 notethat ("LoopSetup: LSETUP (pcrel4 , lppcrel10 ) counters = pregs\n");
3355 $$ = LOOPSETUP ($3, &$7, 1, $5, &$9);
3357 else
3358 return yyerror ("Bad register or values for LSETUP");
3361 | LSETUP LPAREN expr COMMA expr RPAREN REG ASSIGN REG GREATER_GREATER expr
3363 if (IS_PCREL4 ($3) && IS_LPPCREL10 ($5)
3364 && IS_PREG ($9) && IS_CREG ($7)
3365 && EXPR_VALUE ($11) == 1)
3367 notethat ("LoopSetup: LSETUP (pcrel4 , lppcrel10 ) counters = pregs >> 1\n");
3368 $$ = LOOPSETUP ($3, &$7, 3, $5, &$9);
3370 else
3371 return yyerror ("Bad register or values for LSETUP");
3374 /* LOOP. */
3375 | LOOP expr REG
3377 if (!IS_RELOC ($2))
3378 return yyerror ("Invalid expression in loop statement");
3379 if (!IS_CREG ($3))
3380 return yyerror ("Invalid loop counter register");
3381 $$ = bfin_gen_loop ($2, &$3, 0, 0);
3383 | LOOP expr REG ASSIGN REG
3385 if (IS_RELOC ($2) && IS_PREG ($5) && IS_CREG ($3))
3387 notethat ("Loop: LOOP expr counters = pregs\n");
3388 $$ = bfin_gen_loop ($2, &$3, 1, &$5);
3390 else
3391 return yyerror ("Bad register or values for LOOP");
3393 | LOOP expr REG ASSIGN REG GREATER_GREATER expr
3395 if (IS_RELOC ($2) && IS_PREG ($5) && IS_CREG ($3) && EXPR_VALUE ($7) == 1)
3397 notethat ("Loop: LOOP expr counters = pregs >> 1\n");
3398 $$ = bfin_gen_loop ($2, &$3, 3, &$5);
3400 else
3401 return yyerror ("Bad register or values for LOOP");
3403 /* pseudoDEBUG. */
3405 | DBG
3407 notethat ("pseudoDEBUG: DBG\n");
3408 $$ = bfin_gen_pseudodbg (3, 7, 0);
3410 | DBG REG_A
3412 notethat ("pseudoDEBUG: DBG REG_A\n");
3413 $$ = bfin_gen_pseudodbg (3, IS_A1 ($2), 0);
3415 | DBG REG
3417 notethat ("pseudoDEBUG: DBG allregs\n");
3418 $$ = bfin_gen_pseudodbg (0, $2.regno & CODE_MASK, $2.regno & CLASS_MASK);
3421 | DBGCMPLX LPAREN REG RPAREN
3423 if (!IS_DREG ($3))
3424 return yyerror ("Dregs expected");
3425 notethat ("pseudoDEBUG: DBGCMPLX (dregs )\n");
3426 $$ = bfin_gen_pseudodbg (3, 6, $3.regno & CODE_MASK);
3429 | DBGHALT
3431 notethat ("psedoDEBUG: DBGHALT\n");
3432 $$ = bfin_gen_pseudodbg (3, 5, 0);
3435 | DBGA LPAREN HALF_REG COMMA expr RPAREN
3437 notethat ("pseudodbg_assert: DBGA (dregs_lo , uimm16 )\n");
3438 $$ = bfin_gen_pseudodbg_assert (IS_H ($3), &$3, uimm16 ($5));
3441 | DBGAH LPAREN REG COMMA expr RPAREN
3443 notethat ("pseudodbg_assert: DBGAH (dregs , uimm16 )\n");
3444 $$ = bfin_gen_pseudodbg_assert (3, &$3, uimm16 ($5));
3447 | DBGAL LPAREN REG COMMA expr RPAREN
3449 notethat ("psedodbg_assert: DBGAL (dregs , uimm16 )\n");
3450 $$ = bfin_gen_pseudodbg_assert (2, &$3, uimm16 ($5));
3456 /* AUX RULES. */
3458 /* Register rules. */
3460 REG_A: REG_A_DOUBLE_ZERO
3462 $$ = $1;
3464 | REG_A_DOUBLE_ONE
3466 $$ = $1;
3471 /* Modifiers. */
3473 opt_mode:
3475 $$.MM = 0;
3476 $$.mod = 0;
3478 | LPAREN M COMMA MMOD RPAREN
3480 $$.MM = 1;
3481 $$.mod = $4;
3483 | LPAREN MMOD COMMA M RPAREN
3485 $$.MM = 1;
3486 $$.mod = $2;
3488 | LPAREN MMOD RPAREN
3490 $$.MM = 0;
3491 $$.mod = $2;
3493 | LPAREN M RPAREN
3495 $$.MM = 1;
3496 $$.mod = 0;
3500 asr_asl: LPAREN ASL RPAREN
3502 $$.r0 = 1;
3504 | LPAREN ASR RPAREN
3506 $$.r0 = 0;
3510 sco:
3512 $$.s0 = 0;
3513 $$.x0 = 0;
3517 $$.s0 = 1;
3518 $$.x0 = 0;
3520 | CO
3522 $$.s0 = 0;
3523 $$.x0 = 1;
3525 | SCO
3527 $$.s0 = 1;
3528 $$.x0 = 1;
3532 asr_asl_0:
3535 $$.r0 = 1;
3537 | ASR
3539 $$.r0 = 0;
3543 amod0:
3545 $$.s0 = 0;
3546 $$.x0 = 0;
3548 | LPAREN sco RPAREN
3550 $$.s0 = $2.s0;
3551 $$.x0 = $2.x0;
3555 amod1:
3557 $$.s0 = 0;
3558 $$.x0 = 0;
3559 $$.aop = 0;
3561 | LPAREN NS RPAREN
3563 $$.s0 = 0;
3564 $$.x0 = 0;
3565 $$.aop = 1;
3567 | LPAREN S RPAREN
3569 $$.s0 = 1;
3570 $$.x0 = 0;
3571 $$.aop = 1;
3575 amod2:
3577 $$.r0 = 0;
3578 $$.s0 = 0;
3579 $$.x0 = 0;
3581 | LPAREN asr_asl_0 RPAREN
3583 $$.r0 = 2 + $2.r0;
3584 $$.s0 = 0;
3585 $$.x0 = 0;
3587 | LPAREN sco RPAREN
3589 $$.r0 = 0;
3590 $$.s0 = $2.s0;
3591 $$.x0 = $2.x0;
3593 | LPAREN asr_asl_0 COMMA sco RPAREN
3595 $$.r0 = 2 + $2.r0;
3596 $$.s0 = $4.s0;
3597 $$.x0 = $4.x0;
3599 | LPAREN sco COMMA asr_asl_0 RPAREN
3601 $$.r0 = 2 + $4.r0;
3602 $$.s0 = $2.s0;
3603 $$.x0 = $2.x0;
3607 xpmod:
3609 $$.r0 = 0;
3611 | LPAREN Z RPAREN
3613 $$.r0 = 0;
3615 | LPAREN X RPAREN
3617 $$.r0 = 1;
3621 xpmod1:
3623 $$.r0 = 0;
3625 | LPAREN X RPAREN
3627 $$.r0 = 0;
3629 | LPAREN Z RPAREN
3631 $$.r0 = 1;
3635 vsmod:
3637 $$.r0 = 0;
3638 $$.s0 = 0;
3639 $$.aop = 0;
3641 | LPAREN NS RPAREN
3643 $$.r0 = 0;
3644 $$.s0 = 0;
3645 $$.aop = 3;
3647 | LPAREN S RPAREN
3649 $$.r0 = 0;
3650 $$.s0 = 1;
3651 $$.aop = 3;
3653 | LPAREN V RPAREN
3655 $$.r0 = 1;
3656 $$.s0 = 0;
3657 $$.aop = 3;
3659 | LPAREN V COMMA S RPAREN
3661 $$.r0 = 1;
3662 $$.s0 = 1;
3664 | LPAREN S COMMA V RPAREN
3666 $$.r0 = 1;
3667 $$.s0 = 1;
3671 vmod:
3673 $$.r0 = 0;
3675 | LPAREN V RPAREN
3677 $$.r0 = 1;
3681 smod:
3683 $$.s0 = 0;
3685 | LPAREN S RPAREN
3687 $$.s0 = 1;
3691 searchmod:
3694 $$.r0 = 1;
3696 | GT
3698 $$.r0 = 0;
3700 | LE
3702 $$.r0 = 3;
3704 | LT
3706 $$.r0 = 2;
3710 aligndir:
3712 $$.r0 = 0;
3714 | LPAREN R RPAREN
3716 $$.r0 = 1;
3720 byteop_mod:
3721 LPAREN R RPAREN
3723 $$.r0 = 0;
3724 $$.s0 = 1;
3726 | LPAREN MMOD RPAREN
3728 if ($2 != M_T)
3729 return yyerror ("Bad modifier");
3730 $$.r0 = 1;
3731 $$.s0 = 0;
3733 | LPAREN MMOD COMMA R RPAREN
3735 if ($2 != M_T)
3736 return yyerror ("Bad modifier");
3737 $$.r0 = 1;
3738 $$.s0 = 1;
3740 | LPAREN R COMMA MMOD RPAREN
3742 if ($4 != M_T)
3743 return yyerror ("Bad modifier");
3744 $$.r0 = 1;
3745 $$.s0 = 1;
3751 c_align:
3752 ALIGN8
3754 $$.r0 = 0;
3756 | ALIGN16
3758 $$.r0 = 1;
3760 | ALIGN24
3762 $$.r0 = 2;
3766 w32_or_nothing:
3768 $$.r0 = 0;
3770 | LPAREN MMOD RPAREN
3772 if ($2 == M_W32)
3773 $$.r0 = 1;
3774 else
3775 return yyerror ("Only (W32) allowed");
3779 iu_or_nothing:
3781 $$.r0 = 1;
3783 | LPAREN MMOD RPAREN
3785 if ($2 == M_IU)
3786 $$.r0 = 3;
3787 else
3788 return yyerror ("(IU) expected");
3792 reg_with_predec: LBRACK _MINUS_MINUS REG RBRACK
3794 $$ = $3;
3798 reg_with_postinc: LBRACK REG _PLUS_PLUS RBRACK
3800 $$ = $2;
3804 /* Operators. */
3806 min_max:
3809 $$.r0 = 1;
3811 | MAX
3813 $$.r0 = 0;
3817 op_bar_op:
3818 _PLUS_BAR_PLUS
3820 $$.r0 = 0;
3822 | _PLUS_BAR_MINUS
3824 $$.r0 = 1;
3826 | _MINUS_BAR_PLUS
3828 $$.r0 = 2;
3830 | _MINUS_BAR_MINUS
3832 $$.r0 = 3;
3836 plus_minus:
3837 PLUS
3839 $$.r0 = 0;
3841 | MINUS
3843 $$.r0 = 1;
3847 rnd_op:
3848 LPAREN RNDH RPAREN
3850 $$.r0 = 1; /* HL. */
3851 $$.s0 = 0; /* s. */
3852 $$.x0 = 0; /* x. */
3853 $$.aop = 0; /* aop. */
3856 | LPAREN TH RPAREN
3858 $$.r0 = 1; /* HL. */
3859 $$.s0 = 0; /* s. */
3860 $$.x0 = 0; /* x. */
3861 $$.aop = 1; /* aop. */
3864 | LPAREN RNDL RPAREN
3866 $$.r0 = 0; /* HL. */
3867 $$.s0 = 0; /* s. */
3868 $$.x0 = 0; /* x. */
3869 $$.aop = 0; /* aop. */
3872 | LPAREN TL RPAREN
3874 $$.r0 = 0; /* HL. */
3875 $$.s0 = 0; /* s. */
3876 $$.x0 = 0; /* x. */
3877 $$.aop = 1;
3880 | LPAREN RNDH COMMA R RPAREN
3882 $$.r0 = 1; /* HL. */
3883 $$.s0 = 1; /* s. */
3884 $$.x0 = 0; /* x. */
3885 $$.aop = 0; /* aop. */
3887 | LPAREN TH COMMA R RPAREN
3889 $$.r0 = 1; /* HL. */
3890 $$.s0 = 1; /* s. */
3891 $$.x0 = 0; /* x. */
3892 $$.aop = 1; /* aop. */
3894 | LPAREN RNDL COMMA R RPAREN
3896 $$.r0 = 0; /* HL. */
3897 $$.s0 = 1; /* s. */
3898 $$.x0 = 0; /* x. */
3899 $$.aop = 0; /* aop. */
3902 | LPAREN TL COMMA R RPAREN
3904 $$.r0 = 0; /* HL. */
3905 $$.s0 = 1; /* s. */
3906 $$.x0 = 0; /* x. */
3907 $$.aop = 1; /* aop. */
3911 b3_op:
3912 LPAREN LO RPAREN
3914 $$.s0 = 0; /* s. */
3915 $$.x0 = 0; /* HL. */
3917 | LPAREN HI RPAREN
3919 $$.s0 = 0; /* s. */
3920 $$.x0 = 1; /* HL. */
3922 | LPAREN LO COMMA R RPAREN
3924 $$.s0 = 1; /* s. */
3925 $$.x0 = 0; /* HL. */
3927 | LPAREN HI COMMA R RPAREN
3929 $$.s0 = 1; /* s. */
3930 $$.x0 = 1; /* HL. */
3934 post_op:
3936 $$.x0 = 2;
3938 | _PLUS_PLUS
3940 $$.x0 = 0;
3942 | _MINUS_MINUS
3944 $$.x0 = 1;
3948 /* Assignments, Macfuncs. */
3950 a_assign:
3951 REG_A ASSIGN
3953 $$ = $1;
3957 a_minusassign:
3958 REG_A _MINUS_ASSIGN
3960 $$ = $1;
3964 a_plusassign:
3965 REG_A _PLUS_ASSIGN
3967 $$ = $1;
3971 assign_macfunc:
3972 REG ASSIGN REG_A
3974 $$.w = 1;
3975 $$.P = 1;
3976 $$.n = IS_A1 ($3);
3977 $$.op = 3;
3978 $$.dst = $1;
3979 $$.s0.regno = 0;
3980 $$.s1.regno = 0;
3982 if (IS_A1 ($3) && IS_EVEN ($1))
3983 return yyerror ("Cannot move A1 to even register");
3984 else if (!IS_A1 ($3) && !IS_EVEN ($1))
3985 return yyerror ("Cannot move A0 to odd register");
3987 | a_macfunc
3989 $$ = $1;
3990 $$.w = 0; $$.P = 0;
3991 $$.dst.regno = 0;
3993 | REG ASSIGN LPAREN a_macfunc RPAREN
3995 $$ = $4;
3996 $$.w = 1;
3997 $$.P = 1;
3998 $$.dst = $1;
4001 | HALF_REG ASSIGN LPAREN a_macfunc RPAREN
4003 $$ = $4;
4004 $$.w = 1;
4005 $$.P = 0;
4006 $$.dst = $1;
4009 | HALF_REG ASSIGN REG_A
4011 $$.w = 1;
4012 $$.P = 0;
4013 $$.n = IS_A1 ($3);
4014 $$.op = 3;
4015 $$.dst = $1;
4016 $$.s0.regno = 0;
4017 $$.s1.regno = 0;
4019 if (IS_A1 ($3) && !IS_H ($1))
4020 return yyerror ("Cannot move A1 to low half of register");
4021 else if (!IS_A1 ($3) && IS_H ($1))
4022 return yyerror ("Cannot move A0 to high half of register");
4026 a_macfunc:
4027 a_assign multiply_halfregs
4029 $$.n = IS_A1 ($1);
4030 $$.op = 0;
4031 $$.s0 = $2.s0;
4032 $$.s1 = $2.s1;
4034 | a_plusassign multiply_halfregs
4036 $$.n = IS_A1 ($1);
4037 $$.op = 1;
4038 $$.s0 = $2.s0;
4039 $$.s1 = $2.s1;
4041 | a_minusassign multiply_halfregs
4043 $$.n = IS_A1 ($1);
4044 $$.op = 2;
4045 $$.s0 = $2.s0;
4046 $$.s1 = $2.s1;
4050 multiply_halfregs:
4051 HALF_REG STAR HALF_REG
4053 if (IS_DREG ($1) && IS_DREG ($3))
4055 $$.s0 = $1;
4056 $$.s1 = $3;
4058 else
4059 return yyerror ("Dregs expected");
4063 cc_op:
4064 ASSIGN
4066 $$.r0 = 0;
4068 | _BAR_ASSIGN
4070 $$.r0 = 1;
4072 | _AMPERSAND_ASSIGN
4074 $$.r0 = 2;
4076 | _CARET_ASSIGN
4078 $$.r0 = 3;
4082 ccstat:
4083 CCREG cc_op STATUS_REG
4085 $$.r0 = $3.regno;
4086 $$.x0 = $2.r0;
4087 $$.s0 = 0;
4089 | CCREG cc_op V
4091 $$.r0 = 0x18;
4092 $$.x0 = $2.r0;
4093 $$.s0 = 0;
4095 | STATUS_REG cc_op CCREG
4097 $$.r0 = $1.regno;
4098 $$.x0 = $2.r0;
4099 $$.s0 = 1;
4101 | V cc_op CCREG
4103 $$.r0 = 0x18;
4104 $$.x0 = $2.r0;
4105 $$.s0 = 1;
4109 /* Expressions and Symbols. */
4111 symbol: SYMBOL
4113 Expr_Node_Value val;
4114 val.s_value = S_GET_NAME($1);
4115 $$ = Expr_Node_Create (Expr_Node_Reloc, val, NULL, NULL);
4119 any_gotrel:
4121 { $$ = BFD_RELOC_BFIN_GOT; }
4122 | GOT17M4
4123 { $$ = BFD_RELOC_BFIN_GOT17M4; }
4124 | FUNCDESC_GOT17M4
4125 { $$ = BFD_RELOC_BFIN_FUNCDESC_GOT17M4; }
4128 got: symbol AT any_gotrel
4130 Expr_Node_Value val;
4131 val.i_value = $3;
4132 $$ = Expr_Node_Create (Expr_Node_GOT_Reloc, val, $1, NULL);
4136 got_or_expr: got
4138 $$ = $1;
4140 | expr
4142 $$ = $1;
4146 pltpc :
4147 symbol AT PLTPC
4149 $$ = $1;
4153 eterm: NUMBER
4155 Expr_Node_Value val;
4156 val.i_value = $1;
4157 $$ = Expr_Node_Create (Expr_Node_Constant, val, NULL, NULL);
4159 | symbol
4161 $$ = $1;
4163 | LPAREN expr_1 RPAREN
4165 $$ = $2;
4167 | TILDA expr_1
4169 $$ = unary (Expr_Op_Type_COMP, $2);
4171 | MINUS expr_1 %prec TILDA
4173 $$ = unary (Expr_Op_Type_NEG, $2);
4177 expr: expr_1
4179 $$ = $1;
4183 expr_1: expr_1 STAR expr_1
4185 $$ = binary (Expr_Op_Type_Mult, $1, $3);
4187 | expr_1 SLASH expr_1
4189 $$ = binary (Expr_Op_Type_Div, $1, $3);
4191 | expr_1 PERCENT expr_1
4193 $$ = binary (Expr_Op_Type_Mod, $1, $3);
4195 | expr_1 PLUS expr_1
4197 $$ = binary (Expr_Op_Type_Add, $1, $3);
4199 | expr_1 MINUS expr_1
4201 $$ = binary (Expr_Op_Type_Sub, $1, $3);
4203 | expr_1 LESS_LESS expr_1
4205 $$ = binary (Expr_Op_Type_Lshift, $1, $3);
4207 | expr_1 GREATER_GREATER expr_1
4209 $$ = binary (Expr_Op_Type_Rshift, $1, $3);
4211 | expr_1 AMPERSAND expr_1
4213 $$ = binary (Expr_Op_Type_BAND, $1, $3);
4215 | expr_1 CARET expr_1
4217 $$ = binary (Expr_Op_Type_LOR, $1, $3);
4219 | expr_1 BAR expr_1
4221 $$ = binary (Expr_Op_Type_BOR, $1, $3);
4223 | eterm
4225 $$ = $1;
4232 EXPR_T
4233 mkexpr (int x, SYMBOL_T s)
4235 EXPR_T e = (EXPR_T) ALLOCATE (sizeof (struct expression_cell));
4236 e->value = x;
4237 EXPR_SYMBOL(e) = s;
4238 return e;
4241 static int
4242 value_match (Expr_Node *expr, int sz, int sign, int mul, int issigned)
4244 long umax = (1L << sz) - 1;
4245 long min = -1L << (sz - 1);
4246 long max = (1L << (sz - 1)) - 1;
4248 long v = EXPR_VALUE (expr);
4250 if ((v % mul) != 0)
4252 error ("%s:%d: Value Error -- Must align to %d\n", __FILE__, __LINE__, mul);
4253 return 0;
4256 v /= mul;
4258 if (sign)
4259 v = -v;
4261 if (issigned)
4263 if (v >= min && v <= max) return 1;
4265 #ifdef DEBUG
4266 fprintf(stderr, "signed value %lx out of range\n", v * mul);
4267 #endif
4268 return 0;
4270 if (v <= umax && v >= 0)
4271 return 1;
4272 #ifdef DEBUG
4273 fprintf(stderr, "unsigned value %lx out of range\n", v * mul);
4274 #endif
4275 return 0;
4278 /* Return the expression structure that allows symbol operations.
4279 If the left and right children are constants, do the operation. */
4280 static Expr_Node *
4281 binary (Expr_Op_Type op, Expr_Node *x, Expr_Node *y)
4283 if (x->type == Expr_Node_Constant && y->type == Expr_Node_Constant)
4285 switch (op)
4287 case Expr_Op_Type_Add:
4288 x->value.i_value += y->value.i_value;
4289 break;
4290 case Expr_Op_Type_Sub:
4291 x->value.i_value -= y->value.i_value;
4292 break;
4293 case Expr_Op_Type_Mult:
4294 x->value.i_value *= y->value.i_value;
4295 break;
4296 case Expr_Op_Type_Div:
4297 if (y->value.i_value == 0)
4298 error ("Illegal Expression: Division by zero.");
4299 else
4300 x->value.i_value /= y->value.i_value;
4301 break;
4302 case Expr_Op_Type_Mod:
4303 x->value.i_value %= y->value.i_value;
4304 break;
4305 case Expr_Op_Type_Lshift:
4306 x->value.i_value <<= y->value.i_value;
4307 break;
4308 case Expr_Op_Type_Rshift:
4309 x->value.i_value >>= y->value.i_value;
4310 break;
4311 case Expr_Op_Type_BAND:
4312 x->value.i_value &= y->value.i_value;
4313 break;
4314 case Expr_Op_Type_BOR:
4315 x->value.i_value |= y->value.i_value;
4316 break;
4317 case Expr_Op_Type_BXOR:
4318 x->value.i_value ^= y->value.i_value;
4319 break;
4320 case Expr_Op_Type_LAND:
4321 x->value.i_value = x->value.i_value && y->value.i_value;
4322 break;
4323 case Expr_Op_Type_LOR:
4324 x->value.i_value = x->value.i_value || y->value.i_value;
4325 break;
4327 default:
4328 error ("%s:%d: Internal compiler error\n", __FILE__, __LINE__);
4330 return x;
4332 else
4334 /* Create a new expression structure. */
4335 Expr_Node_Value val;
4336 val.op_value = op;
4337 return Expr_Node_Create (Expr_Node_Binop, val, x, y);
4341 static Expr_Node *
4342 unary (Expr_Op_Type op, Expr_Node *x)
4344 if (x->type == Expr_Node_Constant)
4346 switch (op)
4348 case Expr_Op_Type_NEG:
4349 x->value.i_value = -x->value.i_value;
4350 break;
4351 case Expr_Op_Type_COMP:
4352 x->value.i_value = ~x->value.i_value;
4353 break;
4354 default:
4355 error ("%s:%d: Internal compiler error\n", __FILE__, __LINE__);
4357 return x;
4359 else
4361 /* Create a new expression structure. */
4362 Expr_Node_Value val;
4363 val.op_value = op;
4364 return Expr_Node_Create (Expr_Node_Unop, val, x, NULL);
4368 int debug_codeselection = 0;
4369 static void
4370 notethat (char *format, ...)
4372 va_list ap;
4373 va_start (ap, format);
4374 if (debug_codeselection)
4376 vfprintf (errorf, format, ap);
4378 va_end (ap);
4381 #ifdef TEST
4382 main (int argc, char **argv)
4384 yyparse();
4386 #endif