Add support for DragonFlyBSD target.
[binutils.git] / gas / config / tc-z8k.c
blob7cc061ab4c3e03e2502f87c97e00cdc3662ba4a4
1 /* tc-z8k.c -- Assemble code for the Zilog Z800n
2 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001, 2002, 2003,
3 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
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. */
22 /* Written By Steve Chamberlain <sac@cygnus.com>. */
24 #include "as.h"
25 #include "safe-ctype.h"
26 #define DEFINE_TABLE
27 #include "opcodes/z8k-opc.h"
29 const char comment_chars[] = "!";
30 const char line_comment_chars[] = "#";
31 const char line_separator_chars[] = ";";
33 extern int machine;
34 extern int coff_flags;
35 int segmented_mode;
37 /* This is non-zero if target was set from the command line. */
38 static int z8k_target_from_cmdline;
40 static void
41 s_segm (int segm)
43 if (segm)
45 segmented_mode = 1;
46 bfd_set_arch_mach (stdoutput, TARGET_ARCH, bfd_mach_z8001);
48 else
50 segmented_mode = 0;
51 bfd_set_arch_mach (stdoutput, TARGET_ARCH, bfd_mach_z8002);
55 static void
56 even (int ignore ATTRIBUTE_UNUSED)
58 frag_align (1, 0, 0);
59 record_alignment (now_seg, 1);
62 static int
63 tohex (int c)
65 if (ISDIGIT (c))
66 return c - '0';
67 if (ISLOWER (c))
68 return c - 'a' + 10;
69 return c - 'A' + 10;
72 static void
73 sval (int ignore ATTRIBUTE_UNUSED)
75 SKIP_WHITESPACE ();
76 if (*input_line_pointer == '\'')
78 int c;
79 input_line_pointer++;
80 c = *input_line_pointer++;
81 while (c != '\'')
83 if (c == '%')
85 c = (tohex (input_line_pointer[0]) << 4)
86 | tohex (input_line_pointer[1]);
87 input_line_pointer += 2;
89 FRAG_APPEND_1_CHAR (c);
90 c = *input_line_pointer++;
92 demand_empty_rest_of_line ();
96 /* This table describes all the machine specific pseudo-ops the assembler
97 has to support. The fields are:
98 pseudo-op name without dot
99 function to call to execute this pseudo-op
100 Integer arg to pass to the function
103 const pseudo_typeS md_pseudo_table[] = {
104 {"int" , cons , 2},
105 {"data.b" , cons , 1},
106 {"data.w" , cons , 2},
107 {"data.l" , cons , 4},
108 {"form" , listing_psize , 0},
109 {"heading", listing_title , 0},
110 {"import" , s_ignore , 0},
111 {"page" , listing_eject , 0},
112 {"program", s_ignore , 0},
113 {"z8001" , s_segm , 1},
114 {"z8002" , s_segm , 0},
116 {"segm" , s_segm , 1},
117 {"unsegm" , s_segm , 0},
118 {"unseg" , s_segm , 0},
119 {"name" , s_app_file , 0},
120 {"global" , s_globl , 0},
121 {"wval" , cons , 2},
122 {"lval" , cons , 4},
123 {"bval" , cons , 1},
124 {"sval" , sval , 0},
125 {"rsect" , obj_coff_section, 0},
126 {"sect" , obj_coff_section, 0},
127 {"block" , s_space , 0},
128 {"even" , even , 0},
129 {0 , 0 , 0}
132 const char EXP_CHARS[] = "eE";
134 /* Chars that mean this number is a floating point constant.
135 As in 0f12.456
136 or 0d1.2345e12 */
137 const char FLT_CHARS[] = "rRsSfFdDxXpP";
139 /* Opcode mnemonics. */
140 static struct hash_control *opcode_hash_control;
142 void
143 md_begin (void)
145 const opcode_entry_type *opcode;
146 int idx = -1;
148 opcode_hash_control = hash_new ();
150 for (opcode = z8k_table; opcode->name; opcode++)
152 /* Only enter unique codes into the table. */
153 if (idx != opcode->idx)
154 hash_insert (opcode_hash_control, opcode->name, (char *) opcode);
155 idx = opcode->idx;
158 /* Default to z8002. */
159 if (! z8k_target_from_cmdline)
160 s_segm (0);
162 /* Insert the pseudo ops, too. */
163 for (idx = 0; md_pseudo_table[idx].poc_name; idx++)
165 opcode_entry_type *fake_opcode;
166 fake_opcode = (opcode_entry_type *) malloc (sizeof (opcode_entry_type));
167 fake_opcode->name = md_pseudo_table[idx].poc_name;
168 fake_opcode->func = (void *) (md_pseudo_table + idx);
169 fake_opcode->opcode = 250;
170 hash_insert (opcode_hash_control, fake_opcode->name, fake_opcode);
174 typedef struct z8k_op {
175 /* CLASS_REG_xxx. */
176 int regsize;
178 /* 0 .. 15. */
179 unsigned int reg;
181 int mode;
183 /* Any other register associated with the mode. */
184 unsigned int x_reg;
186 /* Any expression. */
187 expressionS exp;
188 } op_type;
190 static expressionS *da_operand;
191 static expressionS *imm_operand;
193 static int reg[16];
194 static int the_cc;
195 static int the_ctrl;
196 static int the_flags;
197 static int the_interrupt;
199 /* Determine register number. src points to the ascii number
200 (after "rl", "rh", "r", "rr", or "rq"). If a character
201 outside the set of {0,',',')','('} follows the number,
202 return NULL to indicate that it's not a valid register
203 number. */
205 static char *
206 whatreg (unsigned int *preg, char *src)
208 unsigned int new_reg;
210 /* src[0] is already known to be a digit. */
211 if (ISDIGIT (src[1]))
213 new_reg = (src[0] - '0') * 10 + src[1] - '0';
214 src += 2;
216 else
218 new_reg = (src[0] - '0');
219 src += 1;
222 if (src[0] != 0 && src[0] != ',' && src[0] != '(' && src[0] != ')')
223 return NULL;
225 *preg = new_reg;
226 return src;
229 /* Parse operands
231 rh0-rh7, rl0-rl7
232 r0-r15
233 rr0-rr14
234 rq0--rq12
235 WREG r0,r1,r2,r3,r4,r5,r6,r7,fp,sp
236 r0l,r0h,..r7l,r7h
237 @WREG
238 @WREG+
239 @-WREG
240 #const
243 /* Try to parse a reg name. Return a pointer to the first character
244 in SRC after the reg name. */
246 static char *
247 parse_reg (char *src, int *mode, unsigned int *preg)
249 char *res = NULL;
250 char regno;
252 /* Check for stack pointer "sp" alias. */
253 if ((src[0] == 's' || src[0] == 'S')
254 && (src[1] == 'p' || src[1] == 'P')
255 && (src[2] == 0 || src[2] == ','))
257 if (segmented_mode)
259 *mode = CLASS_REG_LONG;
260 *preg = 14;
262 else
264 *mode = CLASS_REG_WORD;
265 *preg = 15;
267 return src + 2;
270 if (src[0] == 'r' || src[0] == 'R')
272 if (src[1] == 'r' || src[1] == 'R')
274 if (src[2] < '0' || src[2] > '9')
275 return NULL; /* Assume no register name but a label starting with 'rr'. */
276 *mode = CLASS_REG_LONG;
277 res = whatreg (preg, src + 2);
278 if (res == NULL)
279 return NULL; /* Not a valid register name. */
280 regno = *preg;
281 if (regno > 14)
282 as_bad (_("register rr%d out of range"), regno);
283 if (regno & 1)
284 as_bad (_("register rr%d does not exist"), regno);
286 else if (src[1] == 'h' || src[1] == 'H')
288 if (src[2] < '0' || src[2] > '9')
289 return NULL; /* Assume no register name but a label starting with 'rh'. */
290 *mode = CLASS_REG_BYTE;
291 res = whatreg (preg, src + 2);
292 if (res == NULL)
293 return NULL; /* Not a valid register name. */
294 regno = *preg;
295 if (regno > 7)
296 as_bad (_("register rh%d out of range"), regno);
298 else if (src[1] == 'l' || src[1] == 'L')
300 if (src[2] < '0' || src[2] > '9')
301 return NULL; /* Assume no register name but a label starting with 'rl'. */
302 *mode = CLASS_REG_BYTE;
303 res = whatreg (preg, src + 2);
304 if (res == NULL)
305 return NULL; /* Not a valid register name. */
306 regno = *preg;
307 if (regno > 7)
308 as_bad (_("register rl%d out of range"), regno);
309 *preg += 8;
311 else if (src[1] == 'q' || src[1] == 'Q')
313 if (src[2] < '0' || src[2] > '9')
314 return NULL; /* Assume no register name but a label starting with 'rq'. */
315 *mode = CLASS_REG_QUAD;
316 res = whatreg (preg, src + 2);
317 if (res == NULL)
318 return NULL; /* Not a valid register name. */
319 regno = *preg;
320 if (regno > 12)
321 as_bad (_("register rq%d out of range"), regno);
322 if (regno & 3)
323 as_bad (_("register rq%d does not exist"), regno);
325 else
327 if (src[1] < '0' || src[1] > '9')
328 return NULL; /* Assume no register name but a label starting with 'r'. */
329 *mode = CLASS_REG_WORD;
330 res = whatreg (preg, src + 1);
331 if (res == NULL)
332 return NULL; /* Not a valid register name. */
333 regno = *preg;
334 if (regno > 15)
335 as_bad (_("register r%d out of range"), regno);
338 return res;
341 static char *
342 parse_exp (char *s, expressionS *op)
344 char *save = input_line_pointer;
345 char *new_pointer;
347 input_line_pointer = s;
348 expression (op);
349 if (op->X_op == O_absent)
350 as_bad (_("missing operand"));
351 new_pointer = input_line_pointer;
352 input_line_pointer = save;
353 return new_pointer;
356 /* The many forms of operand:
358 <rb>
360 <rr>
361 <rq>
363 #exp
365 exp(r)
366 r(#exp)
367 r(r)
370 static char *
371 checkfor (char *ptr, char what)
373 if (*ptr == what)
374 ptr++;
375 else
376 as_bad (_("expected %c"), what);
378 return ptr;
381 /* Make sure the mode supplied is the size of a word. */
383 static void
384 regword (int mode, char *string)
386 int ok;
388 ok = CLASS_REG_WORD;
389 if (ok != mode)
391 as_bad (_("register is wrong size for a word %s"), string);
395 /* Make sure the mode supplied is the size of an address. */
397 static void
398 regaddr (int mode, char *string)
400 int ok;
402 ok = segmented_mode ? CLASS_REG_LONG : CLASS_REG_WORD;
403 if (ok != mode)
405 as_bad (_("register is wrong size for address %s"), string);
409 struct ctrl_names {
410 int value;
411 char *name;
414 static struct ctrl_names ctrl_table[] = {
415 { 0x1, "flags" }, /* ldctlb only. */
416 { 0x2, "fcw" }, /* ldctl only. Applies to all remaining control registers. */
417 { 0x3, "refresh" },
418 { 0x4, "psapseg" },
419 { 0x5, "psapoff" },
420 { 0x5, "psap" },
421 { 0x6, "nspseg" },
422 { 0x7, "nspoff" },
423 { 0x7, "nsp" },
424 { 0 , 0 }
427 static void
428 get_ctrl_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
430 char *src = *ptr;
431 int i, l;
433 while (*src == ' ')
434 src++;
436 mode->mode = CLASS_CTRL;
437 for (i = 0; ctrl_table[i].name; i++)
439 l = strlen (ctrl_table[i].name);
440 if (! strncasecmp (ctrl_table[i].name, src, l))
442 the_ctrl = ctrl_table[i].value;
443 if (*(src + l) && *(src + l) != ',')
444 break;
445 *ptr = src + l; /* Valid control name found: "consume" it. */
446 return;
449 the_ctrl = 0;
452 struct flag_names {
453 int value;
454 char *name;
457 static struct flag_names flag_table[] = {
458 { 0x1, "P" },
459 { 0x1, "V" },
460 { 0x2, "S" },
461 { 0x4, "Z" },
462 { 0x8, "C" },
463 { 0x0, "+" },
464 { 0x0, "," },
465 { 0, 0 }
468 static void
469 get_flags_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
471 char *src = *ptr;
472 char c;
473 int i;
474 int j;
476 while (*src == ' ')
477 src++;
479 mode->mode = CLASS_FLAGS;
480 the_flags = 0;
481 for (j = 0; j <= 9; j++)
483 if (!src[j])
484 goto done;
485 c = TOUPPER(src[j]);
486 for (i = 0; flag_table[i].name; i++)
488 if (flag_table[i].name[0] == c)
490 the_flags = the_flags | flag_table[i].value;
491 goto match;
494 goto done;
495 match:
498 done:
499 *ptr = src + j;
502 struct interrupt_names {
503 int value;
504 char *name;
507 static struct interrupt_names intr_table[] = {
508 { 0x1, "nvi" },
509 { 0x2, "vi" },
510 { 0x3, "both" },
511 { 0x3, "all" },
512 { 0, 0 }
515 static void
516 get_interrupt_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
518 char *src = *ptr;
519 int i, l;
521 while (*src == ' ')
522 src++;
524 mode->mode = CLASS_IMM;
525 the_interrupt = 0;
527 while (*src)
529 for (i = 0; intr_table[i].name; i++)
531 l = strlen (intr_table[i].name);
532 if (! strncasecmp (intr_table[i].name, src, l))
534 the_interrupt |= intr_table[i].value;
535 if (*(src + l) && *(src + l) != ',')
537 *ptr = src + l;
538 invalid:
539 as_bad (_("unknown interrupt %s"), src);
540 while (**ptr && ! is_end_of_line[(unsigned char) **ptr])
541 (*ptr)++; /* Consume rest of line. */
542 return;
544 src += l;
545 if (! *src)
547 *ptr = src;
548 return;
552 if (*src == ',')
553 src++;
554 else
556 *ptr = src;
557 goto invalid;
561 /* No interrupt type specified, opcode won't do anything. */
562 as_warn (_("opcode has no effect"));
563 the_interrupt = 0x0;
566 struct cc_names {
567 int value;
568 char *name;
571 static struct cc_names table[] = {
572 { 0x0, "f" },
573 { 0x1, "lt" },
574 { 0x2, "le" },
575 { 0x3, "ule" },
576 { 0x4, "ov/pe" },
577 { 0x4, "ov" },
578 { 0x4, "pe/ov" },
579 { 0x4, "pe" },
580 { 0x5, "mi" },
581 { 0x6, "eq" },
582 { 0x6, "z" },
583 { 0x7, "c/ult" },
584 { 0x7, "c" },
585 { 0x7, "ult/c" },
586 { 0x7, "ult" },
587 { 0x8, "t" },
588 { 0x9, "ge" },
589 { 0xa, "gt" },
590 { 0xb, "ugt" },
591 { 0xc, "nov/po" },
592 { 0xc, "nov" },
593 { 0xc, "po/nov" },
594 { 0xc, "po" },
595 { 0xd, "pl" },
596 { 0xe, "ne" },
597 { 0xe, "nz" },
598 { 0xf, "nc/uge" },
599 { 0xf, "nc" },
600 { 0xf, "uge/nc" },
601 { 0xf, "uge" },
602 { 0 , 0 }
605 static void
606 get_cc_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
608 char *src = *ptr;
609 int i, l;
611 while (*src == ' ')
612 src++;
614 mode->mode = CLASS_CC;
615 for (i = 0; table[i].name; i++)
617 l = strlen (table[i].name);
618 if (! strncasecmp (table[i].name, src, l))
620 the_cc = table[i].value;
621 if (*(src + l) && *(src + l) != ',')
622 break;
623 *ptr = src + l; /* Valid cc found: "consume" it. */
624 return;
627 the_cc = 0x8; /* Not recognizing the cc defaults to t. (Assuming no cc present.) */
630 static void
631 get_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
633 char *src = *ptr;
634 char *end;
636 mode->mode = 0;
638 while (*src == ' ')
639 src++;
640 if (*src == '#')
642 mode->mode = CLASS_IMM;
643 imm_operand = &(mode->exp);
644 src = parse_exp (src + 1, &(mode->exp));
646 else if (*src == '@')
648 mode->mode = CLASS_IR;
649 src = parse_reg (src + 1, &mode->regsize, &mode->reg);
651 else
653 unsigned int regn;
655 end = parse_reg (src, &mode->mode, &regn);
657 if (end)
659 int nw;
660 unsigned int nr;
662 src = end;
663 if (*src == '(')
665 src++;
666 end = parse_reg (src, &nw, &nr);
667 if (end)
669 /* Got Ra(Rb). */
670 src = end;
672 if (*src != ')')
673 as_bad (_("Missing ) in ra(rb)"));
674 else
675 src++;
677 regaddr (mode->mode, "ra(rb) ra");
678 mode->mode = CLASS_BX;
679 mode->reg = regn;
680 mode->x_reg = nr;
681 reg[ARG_RX] = nr;
683 else
685 /* Got Ra(disp). */
686 if (*src == '#')
687 src++;
688 src = parse_exp (src, &(mode->exp));
689 src = checkfor (src, ')');
690 mode->mode = CLASS_BA;
691 mode->reg = regn;
692 mode->x_reg = 0;
693 imm_operand = &(mode->exp);
696 else
698 mode->reg = regn;
699 mode->x_reg = 0;
702 else
704 /* No initial reg. */
705 src = parse_exp (src, &(mode->exp));
706 if (*src == '(')
708 src++;
709 end = parse_reg (src, &(mode->mode), &regn);
710 regword (mode->mode, "addr(Ra) ra");
711 mode->mode = CLASS_X;
712 mode->reg = regn;
713 mode->x_reg = 0;
714 da_operand = &(mode->exp);
715 src = checkfor (end, ')');
717 else
719 /* Just an address. */
720 mode->mode = CLASS_DA;
721 mode->reg = 0;
722 mode->x_reg = 0;
723 da_operand = &(mode->exp);
727 *ptr = src;
730 static char *
731 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand)
733 char *ptr = op_end;
734 char *savptr;
736 switch (opcode->noperands)
738 case 0:
739 operand[0].mode = 0;
740 operand[1].mode = 0;
741 while (*ptr == ' ')
742 ptr++;
743 break;
745 case 1:
746 if (opcode->arg_info[0] == CLASS_CC)
748 get_cc_operand (&ptr, operand + 0, 0);
749 while (*ptr == ' ')
750 ptr++;
751 if (*ptr && ! is_end_of_line[(unsigned char) *ptr])
753 as_bad (_("invalid condition code '%s'"), ptr);
754 while (*ptr && ! is_end_of_line[(unsigned char) *ptr])
755 ptr++; /* Consume rest of line. */
758 else if (opcode->arg_info[0] == CLASS_FLAGS)
760 get_flags_operand (&ptr, operand + 0, 0);
761 while (*ptr == ' ')
762 ptr++;
763 if (*ptr && ! is_end_of_line[(unsigned char) *ptr])
765 as_bad (_("invalid flag '%s'"), ptr);
766 while (*ptr && ! is_end_of_line[(unsigned char) *ptr])
767 ptr++; /* Consume rest of line. */
770 else if (opcode->arg_info[0] == (CLASS_IMM + (ARG_IMM2)))
771 get_interrupt_operand (&ptr, operand + 0, 0);
772 else
773 get_operand (&ptr, operand + 0, 0);
775 operand[1].mode = 0;
776 break;
778 case 2:
779 savptr = ptr;
780 if (opcode->arg_info[0] == CLASS_CC)
782 get_cc_operand (&ptr, operand + 0, 0);
783 while (*ptr == ' ')
784 ptr++;
785 if (*ptr != ',' && strchr (ptr + 1, ','))
787 savptr = ptr;
788 while (*ptr != ',')
789 ptr++;
790 *ptr = 0;
791 ptr++;
792 as_bad (_("invalid condition code '%s'"), savptr);
795 else if (opcode->arg_info[0] == CLASS_CTRL)
797 get_ctrl_operand (&ptr, operand + 0, 0);
799 if (the_ctrl == 0)
801 ptr = savptr;
802 get_operand (&ptr, operand + 0, 0);
804 if (ptr == 0)
805 return NULL;
806 if (*ptr == ',')
807 ptr++;
808 get_ctrl_operand (&ptr, operand + 1, 1);
809 if (the_ctrl == 0)
810 return NULL;
811 return ptr;
814 else
815 get_operand (&ptr, operand + 0, 0);
817 if (ptr == 0)
818 return NULL;
819 if (*ptr == ',')
820 ptr++;
821 get_operand (&ptr, operand + 1, 1);
822 break;
824 case 3:
825 get_operand (&ptr, operand + 0, 0);
826 if (*ptr == ',')
827 ptr++;
828 get_operand (&ptr, operand + 1, 1);
829 if (*ptr == ',')
830 ptr++;
831 get_operand (&ptr, operand + 2, 2);
832 break;
834 case 4:
835 get_operand (&ptr, operand + 0, 0);
836 if (*ptr == ',')
837 ptr++;
838 get_operand (&ptr, operand + 1, 1);
839 if (*ptr == ',')
840 ptr++;
841 get_operand (&ptr, operand + 2, 2);
842 if (*ptr == ',')
843 ptr++;
844 get_cc_operand (&ptr, operand + 3, 3);
845 break;
847 default:
848 abort ();
851 return ptr;
854 /* Passed a pointer to a list of opcodes which use different
855 addressing modes. Return the opcode which matches the opcodes
856 provided. */
858 static opcode_entry_type *
859 get_specific (opcode_entry_type *opcode, op_type *operands)
861 opcode_entry_type *this_try = opcode;
862 int found = 0;
863 unsigned int noperands = opcode->noperands;
865 int this_index = opcode->idx;
867 while (this_index == opcode->idx && !found)
869 unsigned int i;
871 this_try = opcode++;
872 for (i = 0; i < noperands; i++)
874 unsigned int mode = operands[i].mode;
876 if (((mode & CLASS_MASK) == CLASS_IR) && ((this_try->arg_info[i] & CLASS_MASK) == CLASS_IRO))
878 mode = operands[i].mode = (operands[i].mode & ~CLASS_MASK) | CLASS_IRO;
881 if ((mode & CLASS_MASK) != (this_try->arg_info[i] & CLASS_MASK))
883 /* It could be a pc rel operand, if this is a da mode
884 and we like disps, then insert it. */
886 if (mode == CLASS_DA && this_try->arg_info[i] == CLASS_DISP)
888 /* This is the case. */
889 operands[i].mode = CLASS_DISP;
891 else if (mode == CLASS_BA && this_try->arg_info[i])
893 /* Can't think of a way to turn what we've been
894 given into something that's OK. */
895 goto fail;
897 else if (this_try->arg_info[i] & CLASS_PR)
899 if (mode == CLASS_REG_LONG && segmented_mode)
901 /* OK. */
903 else if (mode == CLASS_REG_WORD && !segmented_mode)
905 /* OK. */
907 else
908 goto fail;
910 else
911 goto fail;
913 switch (mode & CLASS_MASK)
915 default:
916 break;
917 case CLASS_IRO:
918 if (operands[i].regsize != CLASS_REG_WORD)
919 as_bad (_("invalid indirect register size"));
920 reg[this_try->arg_info[i] & ARG_MASK] = operands[i].reg;
921 break;
922 case CLASS_IR:
923 if ((segmented_mode && operands[i].regsize != CLASS_REG_LONG)
924 || (!segmented_mode && operands[i].regsize != CLASS_REG_WORD))
925 as_bad (_("invalid indirect register size"));
926 reg[this_try->arg_info[i] & ARG_MASK] = operands[i].reg;
927 break;
928 case CLASS_X:
929 case CLASS_BA:
930 case CLASS_BX:
931 case CLASS_DISP:
932 case CLASS_REG:
933 case CLASS_REG_WORD:
934 case CLASS_REG_BYTE:
935 case CLASS_REG_QUAD:
936 case CLASS_REG_LONG:
937 case CLASS_REGN0:
938 reg[this_try->arg_info[i] & ARG_MASK] = operands[i].reg;
939 break;
940 case CLASS_CTRL:
941 if (this_try->opcode == OPC_ldctlb && the_ctrl != 1)
942 as_bad (_("invalid control register name"));
943 break;
947 found = 1;
948 fail:
951 if (found)
952 return this_try;
953 else
954 return 0;
957 static char buffer[20];
959 static void
960 newfix (int ptr, int type, int size, expressionS *operand)
962 int is_pcrel = 0;
963 fixS *fixP;
965 /* Size is in nibbles. */
966 if (operand->X_add_symbol
967 || operand->X_op_symbol
968 || operand->X_add_number)
970 switch(type)
972 case BFD_RELOC_8_PCREL:
973 case BFD_RELOC_Z8K_CALLR:
974 case BFD_RELOC_Z8K_DISP7:
975 is_pcrel = 1;
977 fixP = fix_new_exp (frag_now, ptr, size / 2,
978 operand, is_pcrel, type);
979 if (is_pcrel)
980 fixP->fx_no_overflow = 1;
984 static char *
985 apply_fix (char *ptr, int type, expressionS *operand, int size)
987 long n = operand->X_add_number;
989 /* size is in nibbles. */
991 newfix ((ptr - buffer) / 2, type, size + 1, operand);
992 switch (size)
994 case 8: /* 8 nibbles == 32 bits. */
995 *ptr++ = n >> 28;
996 *ptr++ = n >> 24;
997 *ptr++ = n >> 20;
998 *ptr++ = n >> 16;
999 case 4: /* 4 nibbles == 16 bits. */
1000 *ptr++ = n >> 12;
1001 *ptr++ = n >> 8;
1002 case 2:
1003 *ptr++ = n >> 4;
1004 case 1:
1005 *ptr++ = n >> 0;
1006 break;
1008 return ptr;
1011 /* Now we know what sort of opcodes it is. Let's build the bytes. */
1013 static void
1014 build_bytes (opcode_entry_type *this_try, struct z8k_op *operand ATTRIBUTE_UNUSED)
1016 char *output_ptr = buffer;
1017 int c;
1018 int nibble;
1019 unsigned int *class_ptr;
1021 frag_wane (frag_now);
1022 frag_new (0);
1024 if (frag_room () < 8)
1025 frag_grow (8); /* Make room for maximum instruction size. */
1027 memset (buffer, 0, sizeof (buffer));
1028 class_ptr = this_try->byte_info;
1030 for (nibble = 0; (c = *class_ptr++); nibble++)
1033 switch (c & CLASS_MASK)
1035 default:
1036 abort ();
1038 case CLASS_ADDRESS:
1039 /* Direct address, we don't cope with the SS mode right now. */
1040 if (segmented_mode)
1042 /* da_operand->X_add_number |= 0x80000000; -- Now set at relocation time. */
1043 output_ptr = apply_fix (output_ptr, BFD_RELOC_32, da_operand, 8);
1045 else
1047 output_ptr = apply_fix (output_ptr, BFD_RELOC_16, da_operand, 4);
1049 da_operand = 0;
1050 break;
1051 case CLASS_DISP8:
1052 /* pc rel 8 bit */
1053 output_ptr = apply_fix (output_ptr, BFD_RELOC_8_PCREL, da_operand, 2);
1054 da_operand = 0;
1055 break;
1057 case CLASS_0DISP7:
1058 /* pc rel 7 bit */
1059 *output_ptr = 0;
1060 output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_DISP7, da_operand, 2);
1061 da_operand = 0;
1062 break;
1064 case CLASS_1DISP7:
1065 /* pc rel 7 bit */
1066 *output_ptr = 0x80;
1067 output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_DISP7, da_operand, 2);
1068 output_ptr[-2] = 0x8;
1069 da_operand = 0;
1070 break;
1072 case CLASS_BIT_1OR2:
1073 *output_ptr = c & 0xf;
1074 if (imm_operand)
1076 if (imm_operand->X_add_number == 2)
1077 *output_ptr |= 2;
1078 else if (imm_operand->X_add_number != 1)
1079 as_bad (_("immediate must be 1 or 2"));
1081 else
1082 as_bad (_("immediate 1 or 2 expected"));
1083 output_ptr++;
1084 break;
1085 case CLASS_CC:
1086 *output_ptr++ = the_cc;
1087 break;
1088 case CLASS_0CCC:
1089 if (the_ctrl < 2 || the_ctrl > 7)
1090 as_bad (_("invalid control register name"));
1091 *output_ptr++ = the_ctrl;
1092 break;
1093 case CLASS_1CCC:
1094 if (the_ctrl < 2 || the_ctrl > 7)
1095 as_bad (_("invalid control register name"));
1096 *output_ptr++ = the_ctrl | 0x8;
1097 break;
1098 case CLASS_00II:
1099 *output_ptr++ = (~the_interrupt & 0x3);
1100 break;
1101 case CLASS_01II:
1102 *output_ptr++ = (~the_interrupt & 0x3) | 0x4;
1103 break;
1104 case CLASS_FLAGS:
1105 *output_ptr++ = the_flags;
1106 break;
1107 case CLASS_IGNORE:
1108 case CLASS_BIT:
1109 *output_ptr++ = c & 0xf;
1110 break;
1111 case CLASS_REGN0:
1112 if (reg[c & 0xf] == 0)
1113 as_bad (_("can't use R0 here"));
1114 /* Fall through. */
1115 case CLASS_REG:
1116 case CLASS_REG_BYTE:
1117 case CLASS_REG_WORD:
1118 case CLASS_REG_LONG:
1119 case CLASS_REG_QUAD:
1120 /* Insert bit mattern of right reg. */
1121 *output_ptr++ = reg[c & 0xf];
1122 break;
1123 case CLASS_DISP:
1124 switch (c & ARG_MASK)
1126 case ARG_DISP12:
1127 output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_CALLR, da_operand, 4);
1128 break;
1129 case ARG_DISP16:
1130 output_ptr = apply_fix (output_ptr, BFD_RELOC_16_PCREL, da_operand, 4);
1131 break;
1132 default:
1133 output_ptr = apply_fix (output_ptr, BFD_RELOC_16, da_operand, 4);
1135 da_operand = 0;
1136 break;
1138 case CLASS_IMM:
1140 switch (c & ARG_MASK)
1142 case ARG_NIM4:
1143 if (imm_operand->X_add_number > 15)
1144 as_bad (_("immediate value out of range"));
1145 imm_operand->X_add_number = -imm_operand->X_add_number;
1146 output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_IMM4L, imm_operand, 1);
1147 break;
1148 /*case ARG_IMMNMINUS1: not used. */
1149 case ARG_IMM4M1:
1150 imm_operand->X_add_number--;
1151 /* Drop through. */
1152 case ARG_IMM4:
1153 if (imm_operand->X_add_number > 15)
1154 as_bad (_("immediate value out of range"));
1155 output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_IMM4L, imm_operand, 1);
1156 break;
1157 case ARG_NIM8:
1158 imm_operand->X_add_number = -imm_operand->X_add_number;
1159 /* Drop through. */
1160 case ARG_IMM8:
1161 output_ptr = apply_fix (output_ptr, BFD_RELOC_8, imm_operand, 2);
1162 break;
1163 case ARG_IMM16:
1164 output_ptr = apply_fix (output_ptr, BFD_RELOC_16, imm_operand, 4);
1165 break;
1166 case ARG_IMM32:
1167 output_ptr = apply_fix (output_ptr, BFD_RELOC_32, imm_operand, 8);
1168 break;
1169 default:
1170 abort ();
1176 /* Copy from the nibble buffer into the frag. */
1178 int length = (output_ptr - buffer) / 2;
1179 char *src = buffer;
1180 char *fragp = frag_more (length);
1182 while (src < output_ptr)
1184 *fragp = (src[0] << 4) | src[1];
1185 src += 2;
1186 fragp++;
1191 /* This is the guts of the machine-dependent assembler. STR points to a
1192 machine dependent instruction. This function is supposed to emit
1193 the frags/bytes it assembles to. */
1195 void
1196 md_assemble (char *str)
1198 char c;
1199 char *op_start;
1200 char *op_end;
1201 struct z8k_op operand[4];
1202 opcode_entry_type *opcode;
1204 /* Drop leading whitespace. */
1205 while (*str == ' ')
1206 str++;
1208 /* Find the op code end. */
1209 for (op_start = op_end = str;
1210 *op_end != 0 && *op_end != ' ' && ! is_end_of_line[(unsigned char) *op_end];
1211 op_end++)
1214 if (op_end == op_start)
1216 as_bad (_("can't find opcode "));
1218 c = *op_end;
1220 *op_end = 0; /* Zero-terminate op code string for hash_find() call. */
1222 opcode = (opcode_entry_type *) hash_find (opcode_hash_control, op_start);
1224 if (opcode == NULL)
1226 as_bad (_("unknown opcode"));
1227 return;
1230 *op_end = c; /* Restore original string. */
1232 if (opcode->opcode == 250)
1234 pseudo_typeS *p;
1235 char oc;
1236 char *old = input_line_pointer;
1238 /* Was really a pseudo op. */
1240 input_line_pointer = op_end;
1242 oc = *old;
1243 *old = '\n';
1244 while (*input_line_pointer == ' ')
1245 input_line_pointer++;
1246 p = (pseudo_typeS *) (opcode->func);
1248 (p->poc_handler) (p->poc_val);
1249 input_line_pointer = old;
1250 *old = oc;
1252 else
1254 char *new_input_line_pointer;
1256 new_input_line_pointer = get_operands (opcode, op_end, operand);
1257 if (new_input_line_pointer)
1259 input_line_pointer = new_input_line_pointer;
1260 opcode = get_specific (opcode, operand);
1263 if (new_input_line_pointer == NULL || opcode == NULL)
1265 /* Couldn't find an opcode which matched the operands. */
1266 char *where = frag_more (2);
1268 where[0] = 0x0;
1269 where[1] = 0x0;
1271 as_bad (_("Can't find opcode to match operands"));
1272 return;
1275 build_bytes (opcode, operand);
1279 /* We have no need to default values of symbols. */
1281 symbolS *
1282 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
1284 return 0;
1287 /* Various routines to kill one day. */
1289 char *
1290 md_atof (int type, char *litP, int *sizeP)
1292 return ieee_md_atof (type, litP, sizeP, TRUE);
1295 const char *md_shortopts = "z:";
1297 struct option md_longopts[] =
1299 #define OPTION_RELAX (OPTION_MD_BASE)
1300 {"linkrelax", no_argument, NULL, OPTION_RELAX},
1301 {NULL, no_argument, NULL, 0}
1304 size_t md_longopts_size = sizeof (md_longopts);
1307 md_parse_option (int c, char *arg)
1309 switch (c)
1311 case 'z':
1312 if (!strcmp (arg, "8001"))
1313 s_segm (1);
1314 else if (!strcmp (arg, "8002"))
1315 s_segm (0);
1316 else
1318 as_bad (_("invalid architecture -z%s"), arg);
1319 return 0;
1321 z8k_target_from_cmdline = 1;
1322 break;
1324 case OPTION_RELAX:
1325 linkrelax = 1;
1326 break;
1328 default:
1329 return 0;
1332 return 1;
1335 void
1336 md_show_usage (FILE *stream)
1338 fprintf (stream, _("\
1339 Z8K options:\n\
1340 -z8001 generate segmented code\n\
1341 -z8002 generate unsegmented code\n\
1342 -linkrelax create linker relaxable code\n"));
1345 void
1346 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
1347 segT sec ATTRIBUTE_UNUSED,
1348 fragS *fragP ATTRIBUTE_UNUSED)
1350 printf (_("call to md_convert_frag\n"));
1351 abort ();
1354 /* Generate a machine dependent reloc from a fixup. */
1356 arelent*
1357 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED,
1358 fixS *fixp ATTRIBUTE_UNUSED)
1360 arelent *reloc;
1362 reloc = xmalloc (sizeof (*reloc));
1363 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1364 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1365 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1366 reloc->addend = fixp->fx_offset;
1367 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1369 if (! reloc->howto)
1371 as_bad_where (fixp->fx_file, fixp->fx_line,
1372 _("Cannot represent %s relocation in object file"),
1373 bfd_get_reloc_code_name (fixp->fx_r_type));
1374 abort ();
1376 return reloc;
1379 valueT
1380 md_section_align (segT seg, valueT size)
1382 int align = bfd_get_section_alignment (stdoutput, seg);
1383 valueT mask = ((valueT) 1 << align) - 1;
1385 return (size + mask) & ~mask;
1388 /* Attempt to simplify or eliminate a fixup. To indicate that a fixup
1389 has been eliminated, set fix->fx_done. If fix->fx_addsy is non-NULL,
1390 we will have to generate a reloc entry. */
1391 void
1392 md_apply_fix (fixS *fixP, valueT *valP, segT segment ATTRIBUTE_UNUSED)
1394 long val = * (long *) valP;
1395 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
1397 switch (fixP->fx_r_type)
1399 case BFD_RELOC_Z8K_IMM4L:
1400 if (fixP->fx_addsy)
1402 fixP->fx_no_overflow = 1;
1403 fixP->fx_done = 0;
1405 else
1406 buf[0] = (buf[0] & 0xf0) | (val & 0xf);
1407 break;
1409 case BFD_RELOC_8:
1410 if (fixP->fx_addsy)
1412 fixP->fx_no_overflow = 1;
1413 fixP->fx_done = 0;
1415 else
1416 *buf++ = val;
1417 break;
1419 case BFD_RELOC_16:
1420 if (fixP->fx_addsy)
1422 fixP->fx_no_overflow = 1;
1423 fixP->fx_done = 0;
1425 else
1427 *buf++ = (val >> 8);
1428 *buf++ = val;
1430 break;
1432 case BFD_RELOC_32:
1433 if (fixP->fx_addsy)
1435 fixP->fx_no_overflow = 1;
1436 fixP->fx_done = 0;
1438 else
1440 *buf++ = (val >> 24);
1441 *buf++ = (val >> 16);
1442 *buf++ = (val >> 8);
1443 *buf++ = val;
1445 break;
1447 case BFD_RELOC_8_PCREL:
1448 if (fixP->fx_addsy)
1450 fixP->fx_no_overflow = 1;
1451 fixP->fx_done = 0;
1453 else
1455 if (val & 1)
1456 as_bad_where (fixP->fx_file, fixP->fx_line,
1457 _("cannot branch to odd address"));
1458 val /= 2;
1459 if (val > 127 || val < -128)
1460 as_bad_where (fixP->fx_file, fixP->fx_line,
1461 _("relative jump out of range"));
1462 *buf++ = val;
1463 fixP->fx_no_overflow = 1;
1464 fixP->fx_done = 1;
1466 break;
1468 case BFD_RELOC_16_PCREL:
1469 if (fixP->fx_addsy)
1471 fixP->fx_no_overflow = 1;
1472 fixP->fx_done = 0;
1474 else
1476 val = val - fixP->fx_frag->fr_address + fixP->fx_where - fixP->fx_size;
1477 if (val > 32767 || val < -32768)
1478 as_bad_where (fixP->fx_file, fixP->fx_line,
1479 _("relative address out of range"));
1480 *buf++ = (val >> 8);
1481 *buf++ = val;
1482 fixP->fx_no_overflow = 1;
1483 fixP->fx_done = 1;
1485 break;
1487 case BFD_RELOC_Z8K_CALLR:
1488 if (fixP->fx_addsy)
1490 fixP->fx_no_overflow = 1;
1491 fixP->fx_done = 0;
1493 else
1495 if (val & 1)
1496 as_bad_where (fixP->fx_file, fixP->fx_line,
1497 _("cannot branch to odd address"));
1498 if (val > 4096 || val < -4095)
1499 as_bad_where (fixP->fx_file, fixP->fx_line,
1500 _("relative call out of range"));
1501 val = -val / 2;
1502 *buf = (*buf & 0xf0) | ((val >> 8) & 0xf);
1503 buf++;
1504 *buf++ = val & 0xff;
1505 fixP->fx_no_overflow = 1;
1506 fixP->fx_done = 1;
1508 break;
1510 case BFD_RELOC_Z8K_DISP7:
1511 if (fixP->fx_addsy)
1513 fixP->fx_no_overflow = 1;
1514 fixP->fx_done = 0;
1516 else
1518 if (val & 1)
1519 as_bad_where (fixP->fx_file, fixP->fx_line,
1520 _("cannot branch to odd address"));
1521 val /= 2;
1522 if (val > 0 || val < -127)
1523 as_bad_where (fixP->fx_file, fixP->fx_line,
1524 _("relative jump out of range"));
1525 *buf = (*buf & 0x80) | (-val & 0x7f);
1526 fixP->fx_no_overflow = 1;
1527 fixP->fx_done = 1;
1529 break;
1531 default:
1532 printf(_("md_apply_fix: unknown r_type 0x%x\n"), fixP->fx_r_type);
1533 abort ();
1536 if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
1537 fixP->fx_done = 1;
1541 md_estimate_size_before_relax (fragS *fragP ATTRIBUTE_UNUSED,
1542 segT segment_type ATTRIBUTE_UNUSED)
1544 printf (_("call to md_estimate_size_before_relax\n"));
1545 abort ();
1548 /* Put number into target byte order. */
1550 void
1551 md_number_to_chars (char *ptr, valueT use, int nbytes)
1553 number_to_chars_bigendian (ptr, use, nbytes);
1556 /* On the Z8000, a PC-relative offset is relative to the address of the
1557 instruction plus its size. */
1558 long
1559 md_pcrel_from (fixS *fixP)
1561 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
1564 void
1565 tc_coff_symbol_emit_hook (symbolS *s ATTRIBUTE_UNUSED)