* options.cc (version_script): Fix small typo in previous
[binutils.git] / gas / config / tc-z80.c
blobe2ea462a52eb82bf2ecf20e78893249bcabe084b
1 /* tc-z80.c -- Assemble code for the Zilog Z80 and ASCII R800
2 Copyright 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
3 Contributed by Arnold Metselaar <arnold_m@operamail.com>
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 #include "as.h"
23 #include "safe-ctype.h"
24 #include "subsegs.h"
26 /* Exported constants. */
27 const char comment_chars[] = ";\0";
28 const char line_comment_chars[] = "#;\0";
29 const char line_separator_chars[] = "\0";
30 const char EXP_CHARS[] = "eE\0";
31 const char FLT_CHARS[] = "RrFf\0";
33 /* For machine specific options. */
34 const char * md_shortopts = ""; /* None yet. */
36 enum options
38 OPTION_MACH_Z80 = OPTION_MD_BASE,
39 OPTION_MACH_R800,
40 OPTION_MACH_IUD,
41 OPTION_MACH_WUD,
42 OPTION_MACH_FUD,
43 OPTION_MACH_IUP,
44 OPTION_MACH_WUP,
45 OPTION_MACH_FUP
48 #define INS_Z80 1
49 #define INS_UNDOC 2
50 #define INS_UNPORT 4
51 #define INS_R800 8
53 struct option md_longopts[] =
55 { "z80", no_argument, NULL, OPTION_MACH_Z80},
56 { "r800", no_argument, NULL, OPTION_MACH_R800},
57 { "ignore-undocumented-instructions", no_argument, NULL, OPTION_MACH_IUD },
58 { "Wnud", no_argument, NULL, OPTION_MACH_IUD },
59 { "warn-undocumented-instructions", no_argument, NULL, OPTION_MACH_WUD },
60 { "Wud", no_argument, NULL, OPTION_MACH_WUD },
61 { "forbid-undocumented-instructions", no_argument, NULL, OPTION_MACH_FUD },
62 { "Fud", no_argument, NULL, OPTION_MACH_FUD },
63 { "ignore-unportable-instructions", no_argument, NULL, OPTION_MACH_IUP },
64 { "Wnup", no_argument, NULL, OPTION_MACH_IUP },
65 { "warn-unportable-instructions", no_argument, NULL, OPTION_MACH_WUP },
66 { "Wup", no_argument, NULL, OPTION_MACH_WUP },
67 { "forbid-unportable-instructions", no_argument, NULL, OPTION_MACH_FUP },
68 { "Fup", no_argument, NULL, OPTION_MACH_FUP },
70 { NULL, no_argument, NULL, 0 }
71 } ;
73 size_t md_longopts_size = sizeof (md_longopts);
75 extern int coff_flags;
76 /* Instruction classes that silently assembled. */
77 static int ins_ok = INS_Z80 | INS_UNDOC;
78 /* Instruction classes that generate errors. */
79 static int ins_err = INS_R800;
80 /* Instruction classes actually used, determines machine type. */
81 static int ins_used = INS_Z80;
83 int
84 md_parse_option (int c, char* arg ATTRIBUTE_UNUSED)
86 switch (c)
88 default:
89 return 0;
90 case OPTION_MACH_Z80:
91 ins_ok &= ~INS_R800;
92 ins_err |= INS_R800;
93 break;
94 case OPTION_MACH_R800:
95 ins_ok = INS_Z80 | INS_UNDOC | INS_R800;
96 ins_err = INS_UNPORT;
97 break;
98 case OPTION_MACH_IUD:
99 ins_ok |= INS_UNDOC;
100 ins_err &= ~INS_UNDOC;
101 break;
102 case OPTION_MACH_IUP:
103 ins_ok |= INS_UNDOC | INS_UNPORT;
104 ins_err &= ~(INS_UNDOC | INS_UNPORT);
105 break;
106 case OPTION_MACH_WUD:
107 if ((ins_ok & INS_R800) == 0)
109 ins_ok &= ~(INS_UNDOC|INS_UNPORT);
110 ins_err &= ~INS_UNDOC;
112 break;
113 case OPTION_MACH_WUP:
114 ins_ok &= ~INS_UNPORT;
115 ins_err &= ~(INS_UNDOC|INS_UNPORT);
116 break;
117 case OPTION_MACH_FUD:
118 if ((ins_ok & INS_R800) == 0)
120 ins_ok &= (INS_UNDOC | INS_UNPORT);
121 ins_err |= INS_UNDOC | INS_UNPORT;
123 break;
124 case OPTION_MACH_FUP:
125 ins_ok &= ~INS_UNPORT;
126 ins_err |= INS_UNPORT;
127 break;
130 return 1;
133 void
134 md_show_usage (FILE * f)
136 fprintf (f, "\n\
137 CPU model/instruction set options:\n\
139 -z80\t\t assemble for Z80\n\
140 -ignore-undocumented-instructions\n\
141 -Wnud\n\
142 \tsilently assemble undocumented Z80-instructions that work on R800\n\
143 -ignore-unportable-instructions\n\
144 -Wnup\n\
145 \tsilently assemble all undocumented Z80-instructions\n\
146 -warn-undocumented-instructions\n\
147 -Wud\n\
148 \tissue warnings for undocumented Z80-instructions that work on R800\n\
149 -warn-unportable-instructions\n\
150 -Wup\n\
151 \tissue warnings for other undocumented Z80-instructions\n\
152 -forbid-undocumented-instructions\n\
153 -Fud\n\
154 \ttreat all undocumented z80-instructions as errors\n\
155 -forbid-unportable-instructions\n\
156 -Fup\n\
157 \ttreat undocumented z80-instructions that do not work on R800 as errors\n\
158 -r800\t assemble for R800\n\n\
159 Default: -z80 -ignore-undocument-instructions -warn-unportable-instructions.\n");
162 static symbolS * zero;
164 void
165 md_begin (void)
167 expressionS nul;
168 char * p;
170 p = input_line_pointer;
171 input_line_pointer = "0";
172 nul.X_md=0;
173 expression (& nul);
174 input_line_pointer = p;
175 zero = make_expr_symbol (& nul);
176 /* We do not use relaxation (yet). */
177 linkrelax = 0;
180 void
181 z80_md_end (void)
183 int mach_type;
185 if (ins_used & (INS_UNPORT | INS_R800))
186 ins_used |= INS_UNDOC;
188 switch (ins_used)
190 case INS_Z80:
191 mach_type = bfd_mach_z80strict;
192 break;
193 case INS_Z80|INS_UNDOC:
194 mach_type = bfd_mach_z80;
195 break;
196 case INS_Z80|INS_UNDOC|INS_UNPORT:
197 mach_type = bfd_mach_z80full;
198 break;
199 case INS_Z80|INS_UNDOC|INS_R800:
200 mach_type = bfd_mach_r800;
201 break;
202 default:
203 mach_type = 0;
206 bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach_type);
209 static const char *
210 skip_space (const char *s)
212 while (*s == ' ' || *s == '\t')
213 ++s;
214 return s;
217 /* A non-zero return-value causes a continue in the
218 function read_a_source_file () in ../read.c. */
220 z80_start_line_hook (void)
222 char *p, quote;
223 char buf[4];
225 /* Convert one character constants. */
226 for (p = input_line_pointer; *p && *p != '\n'; ++p)
228 switch (*p)
230 case '\'':
231 if (p[1] != 0 && p[1] != '\'' && p[2] == '\'')
233 snprintf (buf, 4, "%3d", (unsigned char)p[1]);
234 *p++ = buf[0];
235 *p++ = buf[1];
236 *p++ = buf[2];
237 break;
239 case '"':
240 for (quote = *p++; quote != *p && '\n' != *p; ++p)
241 /* No escapes. */ ;
242 if (quote != *p)
244 as_bad (_("-- unterminated string"));
245 ignore_rest_of_line ();
246 return 1;
248 break;
251 /* Check for <label>[:] [.](EQU|DEFL) <value>. */
252 if (is_name_beginner (*input_line_pointer))
254 char c, *rest, *line_start;
255 int len;
257 line_start = input_line_pointer;
258 if (ignore_input ())
259 return 0;
261 c = get_symbol_end ();
262 rest = input_line_pointer + 1;
264 if (*rest == ':')
265 ++rest;
266 if (*rest == ' ' || *rest == '\t')
267 ++rest;
268 if (*rest == '.')
269 ++rest;
270 if (strncasecmp (rest, "EQU", 3) == 0)
271 len = 3;
272 else if (strncasecmp (rest, "DEFL", 4) == 0)
273 len = 4;
274 else
275 len = 0;
276 if (len && (!ISALPHA(rest[len]) ) )
278 /* Handle assignment here. */
279 if (line_start[-1] == '\n')
281 bump_line_counters ();
282 LISTING_NEWLINE ();
284 input_line_pointer = rest + len - 1;
285 /* Allow redefining with "DEFL" (len == 4), but not with "EQU". */
286 equals (line_start, len == 4);
287 return 1;
289 else
291 /* Restore line and pointer. */
292 *input_line_pointer = c;
293 input_line_pointer = line_start;
296 return 0;
299 symbolS *
300 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
302 return NULL;
305 char *
306 md_atof (int type ATTRIBUTE_UNUSED, char *litP ATTRIBUTE_UNUSED,
307 int *sizeP ATTRIBUTE_UNUSED)
309 return _("floating point numbers are not implemented");
312 valueT
313 md_section_align (segT seg ATTRIBUTE_UNUSED, valueT size)
315 return size;
318 long
319 md_pcrel_from (fixS * fixp)
321 return fixp->fx_where +
322 fixp->fx_frag->fr_address + 1;
325 typedef const char * (asfunc)(char, char, const char*);
327 typedef struct _table_t
329 char* name;
330 char prefix;
331 char opcode;
332 asfunc * fp;
333 } table_t;
335 /* Compares the key for structs that start with a char * to the key. */
336 static int
337 key_cmp (const void * a, const void * b)
339 const char *str_a, *str_b;
341 str_a = *((const char**)a);
342 str_b = *((const char**)b);
343 return strcmp (str_a, str_b);
346 #define BUFLEN 8 /* Large enough for any keyword. */
348 char buf[BUFLEN];
349 const char *key = buf;
351 #define R_STACKABLE (0x80)
352 #define R_ARITH (0x40)
353 #define R_IX (0x20)
354 #define R_IY (0x10)
355 #define R_INDEX (R_IX | R_IY)
357 #define REG_A (7)
358 #define REG_B (0)
359 #define REG_C (1)
360 #define REG_D (2)
361 #define REG_E (3)
362 #define REG_H (4)
363 #define REG_L (5)
364 #define REG_F (6 | 8)
365 #define REG_I (9)
366 #define REG_R (10)
368 #define REG_AF (3 | R_STACKABLE)
369 #define REG_BC (0 | R_STACKABLE | R_ARITH)
370 #define REG_DE (1 | R_STACKABLE | R_ARITH)
371 #define REG_HL (2 | R_STACKABLE | R_ARITH)
372 #define REG_SP (3 | R_ARITH)
374 static const struct reg_entry
376 char* name;
377 int number;
378 } regtable[] =
380 {"a", REG_A },
381 {"af", REG_AF },
382 {"b", REG_B },
383 {"bc", REG_BC },
384 {"c", REG_C },
385 {"d", REG_D },
386 {"de", REG_DE },
387 {"e", REG_E },
388 {"f", REG_F },
389 {"h", REG_H },
390 {"hl", REG_HL },
391 {"i", REG_I },
392 {"ix", REG_HL | R_IX },
393 {"ixh",REG_H | R_IX },
394 {"ixl",REG_L | R_IX },
395 {"iy", REG_HL | R_IY },
396 {"iyh",REG_H | R_IY },
397 {"iyl",REG_L | R_IY },
398 {"l", REG_L },
399 {"r", REG_R },
400 {"sp", REG_SP },
403 /* Prevent an error on a line from also generating
404 a "junk at end of line" error message. */
405 static char err_flag;
407 static void
408 error (const char * message)
410 as_bad ("%s", message);
411 err_flag = 1;
414 static void
415 ill_op (void)
417 error (_("illegal operand"));
420 static void
421 wrong_mach (int ins_type)
423 const char *p;
425 switch (ins_type)
427 case INS_UNDOC:
428 p = "undocumented instruction";
429 break;
430 case INS_UNPORT:
431 p = "instruction does not work on R800";
432 break;
433 case INS_R800:
434 p = "instruction only works R800";
435 break;
436 default:
437 p = 0; /* Not reachable. */
440 if (ins_type & ins_err)
441 error (_(p));
442 else
443 as_warn (_(p));
446 static void
447 check_mach (int ins_type)
449 if ((ins_type & ins_ok) == 0)
450 wrong_mach (ins_type);
451 ins_used |= ins_type;
454 /* Check whether an expression is indirect. */
455 static int
456 is_indir (const char *s)
458 char quote;
459 const char *p;
460 int indir, depth;
462 /* Indirection is indicated with parentheses. */
463 indir = (*s == '(');
465 for (p = s, depth = 0; *p && *p != ','; ++p)
467 switch (*p)
469 case '"':
470 case '\'':
471 for (quote = *p++; quote != *p && *p != '\n'; ++p)
472 if (*p == '\\' && p[1])
473 ++p;
474 break;
475 case '(':
476 ++ depth;
477 break;
478 case ')':
479 -- depth;
480 if (depth == 0)
482 p = skip_space (p + 1);
483 if (*p && *p != ',')
484 indir = 0;
485 --p;
487 if (depth < 0)
488 error (_("mismatched parentheses"));
489 break;
493 if (depth != 0)
494 error (_("mismatched parentheses"));
496 return indir;
499 /* Parse general expression. */
500 static const char *
501 parse_exp2 (const char *s, expressionS *op, segT *pseg)
503 const char *p;
504 int indir;
505 int i;
506 const struct reg_entry * regp;
507 expressionS offset;
509 p = skip_space (s);
510 op->X_md = indir = is_indir (p);
511 if (indir)
512 p = skip_space (p + 1);
514 for (i = 0; i < BUFLEN; ++i)
516 if (!ISALPHA (p[i])) /* Register names consist of letters only. */
517 break;
518 buf[i] = TOLOWER (p[i]);
521 if ((i < BUFLEN) && ((p[i] == 0) || (strchr (")+-, \t", p[i]))))
523 buf[i] = 0;
524 regp = bsearch (& key, regtable, ARRAY_SIZE (regtable),
525 sizeof (regtable[0]), key_cmp);
526 if (regp)
528 *pseg = reg_section;
529 op->X_add_symbol = op->X_op_symbol = 0;
530 op->X_add_number = regp->number;
531 op->X_op = O_register;
532 p += strlen (regp->name);
533 p = skip_space (p);
534 if (indir)
536 if (*p == ')')
537 ++p;
538 if ((regp->number & R_INDEX) && (regp->number & R_ARITH))
540 op->X_op = O_md1;
542 if ((*p == '+') || (*p == '-'))
544 input_line_pointer = (char*) p;
545 expression (& offset);
546 p = skip_space (input_line_pointer);
547 if (*p != ')')
548 error (_("bad offset expression syntax"));
549 else
550 ++ p;
551 op->X_add_symbol = make_expr_symbol (& offset);
552 return p;
555 /* We treat (i[xy]) as (i[xy]+0), which is how it will
556 end up anyway, unless we're processing jp (i[xy]). */
557 op->X_add_symbol = zero;
560 p = skip_space (p);
562 if ((*p == 0) || (*p == ','))
563 return p;
566 /* Not an argument involving a register; use the generic parser. */
567 input_line_pointer = (char*) s ;
568 *pseg = expression (op);
569 if (op->X_op == O_absent)
570 error (_("missing operand"));
571 if (op->X_op == O_illegal)
572 error (_("bad expression syntax"));
573 return input_line_pointer;
576 static const char *
577 parse_exp (const char *s, expressionS *op)
579 segT dummy;
580 return parse_exp2 (s, op, & dummy);
583 /* Condition codes, including some synonyms provided by HiTech zas. */
584 static const struct reg_entry cc_tab[] =
586 { "age", 6 << 3 },
587 { "alt", 7 << 3 },
588 { "c", 3 << 3 },
589 { "di", 4 << 3 },
590 { "ei", 5 << 3 },
591 { "lge", 2 << 3 },
592 { "llt", 3 << 3 },
593 { "m", 7 << 3 },
594 { "nc", 2 << 3 },
595 { "nz", 0 << 3 },
596 { "p", 6 << 3 },
597 { "pe", 5 << 3 },
598 { "po", 4 << 3 },
599 { "z", 1 << 3 },
602 /* Parse condition code. */
603 static const char *
604 parse_cc (const char *s, char * op)
606 const char *p;
607 int i;
608 struct reg_entry * cc_p;
610 for (i = 0; i < BUFLEN; ++i)
612 if (!ISALPHA (s[i])) /* Condition codes consist of letters only. */
613 break;
614 buf[i] = TOLOWER (s[i]);
617 if ((i < BUFLEN)
618 && ((s[i] == 0) || (s[i] == ',')))
620 buf[i] = 0;
621 cc_p = bsearch (&key, cc_tab, ARRAY_SIZE (cc_tab),
622 sizeof (cc_tab[0]), key_cmp);
624 else
625 cc_p = NULL;
627 if (cc_p)
629 *op = cc_p->number;
630 p = s + i;
632 else
633 p = NULL;
635 return p;
638 static const char *
639 emit_insn (char prefix, char opcode, const char * args)
641 char *p;
643 if (prefix)
645 p = frag_more (2);
646 *p++ = prefix;
648 else
649 p = frag_more (1);
650 *p = opcode;
651 return args;
654 void z80_cons_fix_new (fragS *frag_p, int offset, int nbytes, expressionS *exp)
656 bfd_reloc_code_real_type r[4] =
658 BFD_RELOC_8,
659 BFD_RELOC_16,
660 BFD_RELOC_24,
661 BFD_RELOC_32
664 if (nbytes < 1 || nbytes > 4)
666 as_bad (_("unsupported BFD relocation size %u"), nbytes);
668 else
670 fix_new_exp (frag_p, offset, nbytes, exp, 0, r[nbytes-1]);
674 static void
675 emit_byte (expressionS * val, bfd_reloc_code_real_type r_type)
677 char *p;
678 int lo, hi;
679 fixS * fixp;
681 p = frag_more (1);
682 *p = val->X_add_number;
683 if ((r_type == BFD_RELOC_8_PCREL) && (val->X_op == O_constant))
685 as_bad (_("cannot make a relative jump to an absolute location"));
687 else if (val->X_op == O_constant)
689 lo = -128;
690 hi = (BFD_RELOC_8 == r_type) ? 255 : 127;
692 if ((val->X_add_number < lo) || (val->X_add_number > hi))
694 if (r_type == BFD_RELOC_Z80_DISP8)
695 as_bad (_("offset too large"));
696 else
697 as_warn (_("overflow"));
700 else
702 fixp = fix_new_exp (frag_now, p - frag_now->fr_literal, 1, val,
703 (r_type == BFD_RELOC_8_PCREL) ? TRUE : FALSE, r_type);
704 /* FIXME : Process constant offsets immediately. */
708 static void
709 emit_word (expressionS * val)
711 char *p;
713 p = frag_more (2);
714 if ( (val->X_op == O_register)
715 || (val->X_op == O_md1))
716 ill_op ();
717 else
719 *p = val->X_add_number;
720 p[1] = (val->X_add_number>>8);
721 if (val->X_op != O_constant)
722 fix_new_exp (frag_now, p - frag_now->fr_literal, 2,
723 val, FALSE, BFD_RELOC_16);
727 static void
728 emit_mx (char prefix, char opcode, int shift, expressionS * arg)
729 /* The operand m may be r, (hl), (ix+d), (iy+d),
730 if 0 == prefix m may also be ixl, ixh, iyl, iyh. */
732 char *q;
733 int rnum;
735 rnum = arg->X_add_number;
736 switch (arg->X_op)
738 case O_register:
739 if (arg->X_md)
741 if (rnum != REG_HL)
743 ill_op ();
744 break;
746 else
747 rnum = 6;
749 else
751 if ((prefix == 0) && (rnum & R_INDEX))
753 prefix = (rnum & R_IX) ? 0xDD : 0xFD;
754 check_mach (INS_UNDOC);
755 rnum &= ~R_INDEX;
757 if (rnum > 7)
759 ill_op ();
760 break;
763 q = frag_more (prefix ? 2 : 1);
764 if (prefix)
765 * q ++ = prefix;
766 * q ++ = opcode + (rnum << shift);
767 break;
768 case O_md1:
769 q = frag_more (2);
770 *q++ = (rnum & R_IX) ? 0xDD : 0xFD;
771 *q = (prefix) ? prefix : (opcode + (6 << shift));
772 emit_byte (symbol_get_value_expression (arg->X_add_symbol),
773 BFD_RELOC_Z80_DISP8);
774 if (prefix)
776 q = frag_more (1);
777 *q = opcode+(6<<shift);
779 break;
780 default:
781 abort ();
785 /* The operand m may be r, (hl), (ix+d), (iy+d),
786 if 0 = prefix m may also be ixl, ixh, iyl, iyh. */
787 static const char *
788 emit_m (char prefix, char opcode, const char *args)
790 expressionS arg_m;
791 const char *p;
793 p = parse_exp (args, &arg_m);
794 switch (arg_m.X_op)
796 case O_md1:
797 case O_register:
798 emit_mx (prefix, opcode, 0, &arg_m);
799 break;
800 default:
801 ill_op ();
803 return p;
806 /* The operand m may be as above or one of the undocumented
807 combinations (ix+d),r and (iy+d),r (if unportable instructions
808 are allowed). */
809 static const char *
810 emit_mr (char prefix, char opcode, const char *args)
812 expressionS arg_m, arg_r;
813 const char *p;
815 p = parse_exp (args, & arg_m);
817 switch (arg_m.X_op)
819 case O_md1:
820 if (*p == ',')
822 p = parse_exp (p + 1, & arg_r);
824 if ((arg_r.X_md == 0)
825 && (arg_r.X_op == O_register)
826 && (arg_r.X_add_number < 8))
827 opcode += arg_r.X_add_number-6; /* Emit_mx () will add 6. */
828 else
830 ill_op ();
831 break;
833 check_mach (INS_UNPORT);
835 case O_register:
836 emit_mx (prefix, opcode, 0, & arg_m);
837 break;
838 default:
839 ill_op ();
841 return p;
844 static void
845 emit_sx (char prefix, char opcode, expressionS * arg_p)
847 char *q;
849 switch (arg_p->X_op)
851 case O_register:
852 case O_md1:
853 emit_mx (prefix, opcode, 0, arg_p);
854 break;
855 default:
856 if (arg_p->X_md)
857 ill_op ();
858 else
860 q = frag_more (prefix ? 2 : 1);
861 if (prefix)
862 *q++ = prefix;
863 *q = opcode ^ 0x46;
864 emit_byte (arg_p, BFD_RELOC_8);
869 /* The operand s may be r, (hl), (ix+d), (iy+d), n. */
870 static const char *
871 emit_s (char prefix, char opcode, const char *args)
873 expressionS arg_s;
874 const char *p;
876 p = parse_exp (args, & arg_s);
877 emit_sx (prefix, opcode, & arg_s);
878 return p;
881 static const char *
882 emit_call (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args)
884 expressionS addr;
885 const char *p; char *q;
887 p = parse_exp (args, &addr);
888 if (addr.X_md)
889 ill_op ();
890 else
892 q = frag_more (1);
893 *q = opcode;
894 emit_word (& addr);
896 return p;
899 /* Operand may be rr, r, (hl), (ix+d), (iy+d). */
900 static const char *
901 emit_incdec (char prefix, char opcode, const char * args)
903 expressionS operand;
904 int rnum;
905 const char *p; char *q;
907 p = parse_exp (args, &operand);
908 rnum = operand.X_add_number;
909 if ((! operand.X_md)
910 && (operand.X_op == O_register)
911 && (R_ARITH&rnum))
913 q = frag_more ((rnum & R_INDEX) ? 2 : 1);
914 if (rnum & R_INDEX)
915 *q++ = (rnum & R_IX) ? 0xDD : 0xFD;
916 *q = prefix + ((rnum & 3) << 4);
918 else
920 if ((operand.X_op == O_md1) || (operand.X_op == O_register))
921 emit_mx (0, opcode, 3, & operand);
922 else
923 ill_op ();
925 return p;
928 static const char *
929 emit_jr (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args)
931 expressionS addr;
932 const char *p;
933 char *q;
935 p = parse_exp (args, &addr);
936 if (addr.X_md)
937 ill_op ();
938 else
940 q = frag_more (1);
941 *q = opcode;
942 emit_byte (&addr, BFD_RELOC_8_PCREL);
944 return p;
947 static const char *
948 emit_jp (char prefix, char opcode, const char * args)
950 expressionS addr;
951 const char *p;
952 char *q;
953 int rnum;
955 p = parse_exp (args, & addr);
956 if (addr.X_md)
958 rnum = addr.X_add_number;
959 if ((addr.X_op == O_register && (rnum & ~R_INDEX) == REG_HL)
960 /* An operand (i[xy]) would have been rewritten to (i[xy]+0)
961 in parse_exp (). */
962 || (addr.X_op == O_md1 && addr.X_add_symbol == zero))
964 q = frag_more ((rnum & R_INDEX) ? 2 : 1);
965 if (rnum & R_INDEX)
966 *q++ = (rnum & R_IX) ? 0xDD : 0xFD;
967 *q = prefix;
969 else
970 ill_op ();
972 else
974 q = frag_more (1);
975 *q = opcode;
976 emit_word (& addr);
978 return p;
981 static const char *
982 emit_im (char prefix, char opcode, const char * args)
984 expressionS mode;
985 const char *p;
986 char *q;
988 p = parse_exp (args, & mode);
989 if (mode.X_md || (mode.X_op != O_constant))
990 ill_op ();
991 else
992 switch (mode.X_add_number)
994 case 1:
995 case 2:
996 ++mode.X_add_number;
997 /* Fall through. */
998 case 0:
999 q = frag_more (2);
1000 *q++ = prefix;
1001 *q = opcode + 8*mode.X_add_number;
1002 break;
1003 default:
1004 ill_op ();
1006 return p;
1009 static const char *
1010 emit_pop (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args)
1012 expressionS regp;
1013 const char *p;
1014 char *q;
1016 p = parse_exp (args, & regp);
1017 if ((!regp.X_md)
1018 && (regp.X_op == O_register)
1019 && (regp.X_add_number & R_STACKABLE))
1021 int rnum;
1023 rnum = regp.X_add_number;
1024 if (rnum&R_INDEX)
1026 q = frag_more (2);
1027 *q++ = (rnum&R_IX)?0xDD:0xFD;
1029 else
1030 q = frag_more (1);
1031 *q = opcode + ((rnum & 3) << 4);
1033 else
1034 ill_op ();
1036 return p;
1039 static const char *
1040 emit_retcc (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args)
1042 char cc, *q;
1043 const char *p;
1045 p = parse_cc (args, &cc);
1046 q = frag_more (1);
1047 if (p)
1048 *q = opcode + cc;
1049 else
1050 *q = prefix;
1051 return p ? p : args;
1054 static const char *
1055 emit_adc (char prefix, char opcode, const char * args)
1057 expressionS term;
1058 int rnum;
1059 const char *p;
1060 char *q;
1062 p = parse_exp (args, &term);
1063 if (*p++ != ',')
1065 error (_("bad intruction syntax"));
1066 return p;
1069 if ((term.X_md) || (term.X_op != O_register))
1070 ill_op ();
1071 else
1072 switch (term.X_add_number)
1074 case REG_A:
1075 p = emit_s (0, prefix, p);
1076 break;
1077 case REG_HL:
1078 p = parse_exp (p, &term);
1079 if ((!term.X_md) && (term.X_op == O_register))
1081 rnum = term.X_add_number;
1082 if (R_ARITH == (rnum & (R_ARITH | R_INDEX)))
1084 q = frag_more (2);
1085 *q++ = 0xED;
1086 *q = opcode + ((rnum & 3) << 4);
1087 break;
1090 /* Fall through. */
1091 default:
1092 ill_op ();
1094 return p;
1097 static const char *
1098 emit_add (char prefix, char opcode, const char * args)
1100 expressionS term;
1101 int lhs, rhs;
1102 const char *p;
1103 char *q;
1105 p = parse_exp (args, &term);
1106 if (*p++ != ',')
1108 error (_("bad intruction syntax"));
1109 return p;
1112 if ((term.X_md) || (term.X_op != O_register))
1113 ill_op ();
1114 else
1115 switch (term.X_add_number & ~R_INDEX)
1117 case REG_A:
1118 p = emit_s (0, prefix, p);
1119 break;
1120 case REG_HL:
1121 lhs = term.X_add_number;
1122 p = parse_exp (p, &term);
1123 if ((!term.X_md) && (term.X_op == O_register))
1125 rhs = term.X_add_number;
1126 if ((rhs & R_ARITH)
1127 && ((rhs == lhs) || ((rhs & ~R_INDEX) != REG_HL)))
1129 q = frag_more ((lhs & R_INDEX) ? 2 : 1);
1130 if (lhs & R_INDEX)
1131 *q++ = (lhs & R_IX) ? 0xDD : 0xFD;
1132 *q = opcode + ((rhs & 3) << 4);
1133 break;
1136 /* Fall through. */
1137 default:
1138 ill_op ();
1140 return p;
1143 static const char *
1144 emit_bit (char prefix, char opcode, const char * args)
1146 expressionS b;
1147 int bn;
1148 const char *p;
1150 p = parse_exp (args, &b);
1151 if (*p++ != ',')
1152 error (_("bad intruction syntax"));
1154 bn = b.X_add_number;
1155 if ((!b.X_md)
1156 && (b.X_op == O_constant)
1157 && (0 <= bn)
1158 && (bn < 8))
1160 if (opcode == 0x40)
1161 /* Bit : no optional third operand. */
1162 p = emit_m (prefix, opcode + (bn << 3), p);
1163 else
1164 /* Set, res : resulting byte can be copied to register. */
1165 p = emit_mr (prefix, opcode + (bn << 3), p);
1167 else
1168 ill_op ();
1169 return p;
1172 static const char *
1173 emit_jpcc (char prefix, char opcode, const char * args)
1175 char cc;
1176 const char *p;
1178 p = parse_cc (args, & cc);
1179 if (p && *p++ == ',')
1180 p = emit_call (0, opcode + cc, p);
1181 else
1182 p = (prefix == (char)0xC3)
1183 ? emit_jp (0xE9, prefix, args)
1184 : emit_call (0, prefix, args);
1185 return p;
1188 static const char *
1189 emit_jrcc (char prefix, char opcode, const char * args)
1191 char cc;
1192 const char *p;
1194 p = parse_cc (args, &cc);
1195 if (p && *p++ == ',')
1197 if (cc > (3 << 3))
1198 error (_("condition code invalid for jr"));
1199 else
1200 p = emit_jr (0, opcode + cc, p);
1202 else
1203 p = emit_jr (0, prefix, args);
1205 return p;
1208 static const char *
1209 emit_ex (char prefix_in ATTRIBUTE_UNUSED,
1210 char opcode_in ATTRIBUTE_UNUSED, const char * args)
1212 expressionS op;
1213 const char * p;
1214 char prefix, opcode;
1216 p = parse_exp (args, &op);
1217 p = skip_space (p);
1218 if (*p++ != ',')
1220 error (_("bad instruction syntax"));
1221 return p;
1224 prefix = opcode = 0;
1225 if (op.X_op == O_register)
1226 switch (op.X_add_number | (op.X_md ? 0x8000 : 0))
1228 case REG_AF:
1229 if (TOLOWER (*p++) == 'a' && TOLOWER (*p++) == 'f')
1231 /* The scrubber changes '\'' to '`' in this context. */
1232 if (*p == '`')
1233 ++p;
1234 opcode = 0x08;
1236 break;
1237 case REG_DE:
1238 if (TOLOWER (*p++) == 'h' && TOLOWER (*p++) == 'l')
1239 opcode = 0xEB;
1240 break;
1241 case REG_SP|0x8000:
1242 p = parse_exp (p, & op);
1243 if (op.X_op == O_register
1244 && op.X_md == 0
1245 && (op.X_add_number & ~R_INDEX) == REG_HL)
1247 opcode = 0xE3;
1248 if (R_INDEX & op.X_add_number)
1249 prefix = (R_IX & op.X_add_number) ? 0xDD : 0xFD;
1251 break;
1253 if (opcode)
1254 emit_insn (prefix, opcode, p);
1255 else
1256 ill_op ();
1258 return p;
1261 static const char *
1262 emit_in (char prefix ATTRIBUTE_UNUSED, char opcode ATTRIBUTE_UNUSED,
1263 const char * args)
1265 expressionS reg, port;
1266 const char *p;
1267 char *q;
1269 p = parse_exp (args, &reg);
1270 if (*p++ != ',')
1272 error (_("bad intruction syntax"));
1273 return p;
1276 p = parse_exp (p, &port);
1277 if (reg.X_md == 0
1278 && reg.X_op == O_register
1279 && (reg.X_add_number <= 7 || reg.X_add_number == REG_F)
1280 && (port.X_md))
1282 if (port.X_op != O_md1 && port.X_op != O_register)
1284 if (REG_A == reg.X_add_number)
1286 q = frag_more (1);
1287 *q = 0xDB;
1288 emit_byte (&port, BFD_RELOC_8);
1290 else
1291 ill_op ();
1293 else
1295 if (port.X_add_number == REG_C)
1297 if (reg.X_add_number == REG_F)
1298 check_mach (INS_UNDOC);
1299 else
1301 q = frag_more (2);
1302 *q++ = 0xED;
1303 *q = 0x40|((reg.X_add_number&7)<<3);
1306 else
1307 ill_op ();
1310 else
1311 ill_op ();
1312 return p;
1315 static const char *
1316 emit_out (char prefix ATTRIBUTE_UNUSED, char opcode ATTRIBUTE_UNUSED,
1317 const char * args)
1319 expressionS reg, port;
1320 const char *p;
1321 char *q;
1323 p = parse_exp (args, & port);
1324 if (*p++ != ',')
1326 error (_("bad intruction syntax"));
1327 return p;
1329 p = parse_exp (p, &reg);
1330 if (!port.X_md)
1331 { ill_op (); return p; }
1332 /* Allow "out (c), 0" as unportable instruction. */
1333 if (reg.X_op == O_constant && reg.X_add_number == 0)
1335 check_mach (INS_UNPORT);
1336 reg.X_op = O_register;
1337 reg.X_add_number = 6;
1339 if (reg.X_md
1340 || reg.X_op != O_register
1341 || reg.X_add_number > 7)
1342 ill_op ();
1343 else
1344 if (port.X_op != O_register && port.X_op != O_md1)
1346 if (REG_A == reg.X_add_number)
1348 q = frag_more (1);
1349 *q = 0xD3;
1350 emit_byte (&port, BFD_RELOC_8);
1352 else
1353 ill_op ();
1355 else
1357 if (REG_C == port.X_add_number)
1359 q = frag_more (2);
1360 *q++ = 0xED;
1361 *q = 0x41 | (reg.X_add_number << 3);
1363 else
1364 ill_op ();
1366 return p;
1369 static const char *
1370 emit_rst (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args)
1372 expressionS addr;
1373 const char *p;
1374 char *q;
1376 p = parse_exp (args, &addr);
1377 if (addr.X_op != O_constant)
1379 error ("rst needs constant address");
1380 return p;
1383 if (addr.X_add_number & ~(7 << 3))
1384 ill_op ();
1385 else
1387 q = frag_more (1);
1388 *q = opcode + (addr.X_add_number & (7 << 3));
1390 return p;
1393 static void
1394 emit_ldxhl (char prefix, char opcode, expressionS *src, expressionS *d)
1396 char *q;
1398 if (src->X_md)
1399 ill_op ();
1400 else
1402 if (src->X_op == O_register)
1404 if (src->X_add_number>7)
1405 ill_op ();
1406 if (prefix)
1408 q = frag_more (2);
1409 *q++ = prefix;
1411 else
1412 q = frag_more (1);
1413 *q = opcode + src->X_add_number;
1414 if (d)
1415 emit_byte (d, BFD_RELOC_Z80_DISP8);
1417 else
1419 if (prefix)
1421 q = frag_more (2);
1422 *q++ = prefix;
1424 else
1425 q = frag_more (1);
1426 *q = opcode^0x46;
1427 if (d)
1428 emit_byte (d, BFD_RELOC_Z80_DISP8);
1429 emit_byte (src, BFD_RELOC_8);
1434 static void
1435 emit_ldreg (int dest, expressionS * src)
1437 char *q;
1438 int rnum;
1440 switch (dest)
1442 /* 8 Bit ld group: */
1443 case REG_I:
1444 case REG_R:
1445 if (src->X_md == 0 && src->X_op == O_register && src->X_add_number == REG_A)
1447 q = frag_more (2);
1448 *q++ = 0xED;
1449 *q = (dest == REG_I) ? 0x47 : 0x4F;
1451 else
1452 ill_op ();
1453 break;
1455 case REG_A:
1456 if ((src->X_md) && src->X_op != O_register && src->X_op != O_md1)
1458 q = frag_more (1);
1459 *q = 0x3A;
1460 emit_word (src);
1461 break;
1464 if ((src->X_md)
1465 && src->X_op == O_register
1466 && (src->X_add_number == REG_BC || src->X_add_number == REG_DE))
1468 q = frag_more (1);
1469 *q = 0x0A + ((src->X_add_number & 1) << 4);
1470 break;
1473 if ((!src->X_md)
1474 && src->X_op == O_register
1475 && (src->X_add_number == REG_R || src->X_add_number == REG_I))
1477 q = frag_more (2);
1478 *q++ = 0xED;
1479 *q = (src->X_add_number == REG_I) ? 0x57 : 0x5F;
1480 break;
1482 /* Fall through. */
1483 case REG_B:
1484 case REG_C:
1485 case REG_D:
1486 case REG_E:
1487 emit_sx (0, 0x40 + (dest << 3), src);
1488 break;
1490 case REG_H:
1491 case REG_L:
1492 if ((src->X_md == 0)
1493 && (src->X_op == O_register)
1494 && (src->X_add_number & R_INDEX))
1495 ill_op ();
1496 else
1497 emit_sx (0, 0x40 + (dest << 3), src);
1498 break;
1500 case R_IX | REG_H:
1501 case R_IX | REG_L:
1502 case R_IY | REG_H:
1503 case R_IY | REG_L:
1504 if (src->X_md)
1506 ill_op ();
1507 break;
1509 check_mach (INS_UNDOC);
1510 if (src-> X_op == O_register)
1512 rnum = src->X_add_number;
1513 if ((rnum & ~R_INDEX) < 8
1514 && ((rnum & R_INDEX) == (dest & R_INDEX)
1515 || ( (rnum & ~R_INDEX) != REG_H
1516 && (rnum & ~R_INDEX) != REG_L)))
1518 q = frag_more (2);
1519 *q++ = (dest & R_IX) ? 0xDD : 0xFD;
1520 *q = 0x40 + ((dest & 0x07) << 3) + (rnum & 7);
1522 else
1523 ill_op ();
1525 else
1527 q = frag_more (2);
1528 *q++ = (dest & R_IX) ? 0xDD : 0xFD;
1529 *q = 0x06 + ((dest & 0x07) << 3);
1530 emit_byte (src, BFD_RELOC_8);
1532 break;
1534 /* 16 Bit ld group: */
1535 case REG_SP:
1536 if (src->X_md == 0
1537 && src->X_op == O_register
1538 && REG_HL == (src->X_add_number &~ R_INDEX))
1540 q = frag_more ((src->X_add_number & R_INDEX) ? 2 : 1);
1541 if (src->X_add_number & R_INDEX)
1542 *q++ = (src->X_add_number & R_IX) ? 0xDD : 0xFD;
1543 *q = 0xF9;
1544 break;
1546 /* Fall through. */
1547 case REG_BC:
1548 case REG_DE:
1549 if (src->X_op == O_register || src->X_op == O_md1)
1550 ill_op ();
1551 q = frag_more (src->X_md ? 2 : 1);
1552 if (src->X_md)
1554 *q++ = 0xED;
1555 *q = 0x4B + ((dest & 3) << 4);
1557 else
1558 *q = 0x01 + ((dest & 3) << 4);
1559 emit_word (src);
1560 break;
1562 case REG_HL:
1563 case REG_HL | R_IX:
1564 case REG_HL | R_IY:
1565 if (src->X_op == O_register || src->X_op == O_md1)
1566 ill_op ();
1567 q = frag_more ((dest & R_INDEX) ? 2 : 1);
1568 if (dest & R_INDEX)
1569 * q ++ = (dest & R_IX) ? 0xDD : 0xFD;
1570 *q = (src->X_md) ? 0x2A : 0x21;
1571 emit_word (src);
1572 break;
1574 case REG_AF:
1575 case REG_F:
1576 ill_op ();
1577 break;
1579 default:
1580 abort ();
1584 static const char *
1585 emit_ld (char prefix_in ATTRIBUTE_UNUSED, char opcode_in ATTRIBUTE_UNUSED,
1586 const char * args)
1588 expressionS dst, src;
1589 const char *p;
1590 char *q;
1591 char prefix, opcode;
1593 p = parse_exp (args, &dst);
1594 if (*p++ != ',')
1595 error (_("bad intruction syntax"));
1596 p = parse_exp (p, &src);
1598 switch (dst.X_op)
1600 case O_md1:
1601 emit_ldxhl ((dst.X_add_number & R_IX) ? 0xDD : 0xFD, 0x70,
1602 &src, symbol_get_value_expression (dst.X_add_symbol));
1603 break;
1605 case O_register:
1606 if (dst.X_md)
1608 switch (dst.X_add_number)
1610 case REG_BC:
1611 case REG_DE:
1612 if (src.X_md == 0 && src.X_op == O_register && src.X_add_number == REG_A)
1614 q = frag_more (1);
1615 *q = 0x02 + ( (dst.X_add_number & 1) << 4);
1617 else
1618 ill_op ();
1619 break;
1620 case REG_HL:
1621 emit_ldxhl (0, 0x70, &src, NULL);
1622 break;
1623 default:
1624 ill_op ();
1627 else
1628 emit_ldreg (dst.X_add_number, &src);
1629 break;
1631 default:
1632 if (src.X_md != 0 || src.X_op != O_register)
1633 ill_op ();
1634 prefix = opcode = 0;
1635 switch (src.X_add_number)
1637 case REG_A:
1638 opcode = 0x32; break;
1639 case REG_BC: case REG_DE: case REG_SP:
1640 prefix = 0xED; opcode = 0x43 + ((src.X_add_number&3)<<4); break;
1641 case REG_HL:
1642 opcode = 0x22; break;
1643 case REG_HL|R_IX:
1644 prefix = 0xDD; opcode = 0x22; break;
1645 case REG_HL|R_IY:
1646 prefix = 0xFD; opcode = 0x22; break;
1648 if (opcode)
1650 q = frag_more (prefix?2:1);
1651 if (prefix)
1652 *q++ = prefix;
1653 *q = opcode;
1654 emit_word (&dst);
1656 else
1657 ill_op ();
1659 return p;
1662 static void
1663 emit_data (int size ATTRIBUTE_UNUSED)
1665 const char *p, *q;
1666 char *u, quote;
1667 int cnt;
1668 expressionS exp;
1670 if (is_it_end_of_statement ())
1672 demand_empty_rest_of_line ();
1673 return;
1675 p = skip_space (input_line_pointer);
1679 if (*p == '\"' || *p == '\'')
1681 for (quote = *p, q = ++p, cnt = 0; *p && quote != *p; ++p, ++cnt)
1683 u = frag_more (cnt);
1684 memcpy (u, q, cnt);
1685 if (!*p)
1686 as_warn (_("unterminated string"));
1687 else
1688 p = skip_space (p+1);
1690 else
1692 p = parse_exp (p, &exp);
1693 if (exp.X_op == O_md1 || exp.X_op == O_register)
1695 ill_op ();
1696 break;
1698 if (exp.X_md)
1699 as_warn (_("parentheses ignored"));
1700 emit_byte (&exp, BFD_RELOC_8);
1701 p = skip_space (p);
1704 while (*p++ == ',') ;
1705 input_line_pointer = (char *)(p-1);
1708 static const char *
1709 emit_mulub (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args)
1711 const char *p;
1713 p = skip_space (args);
1714 if (TOLOWER (*p++) != 'a' || *p++ != ',')
1715 ill_op ();
1716 else
1718 char *q, reg;
1720 reg = TOLOWER (*p++);
1721 switch (reg)
1723 case 'b':
1724 case 'c':
1725 case 'd':
1726 case 'e':
1727 check_mach (INS_R800);
1728 if (!*skip_space (p))
1730 q = frag_more (2);
1731 *q++ = prefix;
1732 *q = opcode + ((reg - 'b') << 3);
1733 break;
1735 default:
1736 ill_op ();
1739 return p;
1742 static const char *
1743 emit_muluw (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args)
1745 const char *p;
1747 p = skip_space (args);
1748 if (TOLOWER (*p++) != 'h' || TOLOWER (*p++) != 'l' || *p++ != ',')
1749 ill_op ();
1750 else
1752 expressionS reg;
1753 char *q;
1755 p = parse_exp (p, & reg);
1757 if ((!reg.X_md) && reg.X_op == O_register)
1758 switch (reg.X_add_number)
1760 case REG_BC:
1761 case REG_SP:
1762 check_mach (INS_R800);
1763 q = frag_more (2);
1764 *q++ = prefix;
1765 *q = opcode + ((reg.X_add_number & 3) << 4);
1766 break;
1767 default:
1768 ill_op ();
1771 return p;
1774 /* Port specific pseudo ops. */
1775 const pseudo_typeS md_pseudo_table[] =
1777 { "db" , emit_data, 1},
1778 { "d24", cons, 3},
1779 { "d32", cons, 4},
1780 { "def24", cons, 3},
1781 { "def32", cons, 4},
1782 { "defb", emit_data, 1},
1783 { "defs", s_space, 1}, /* Synonym for ds on some assemblers. */
1784 { "defw", cons, 2},
1785 { "ds", s_space, 1}, /* Fill with bytes rather than words. */
1786 { "dw", cons, 2},
1787 { "psect", obj_coff_section, 0}, /* TODO: Translate attributes. */
1788 { "set", 0, 0}, /* Real instruction on z80. */
1789 { NULL, 0, 0 }
1792 static table_t instab[] =
1794 { "adc", 0x88, 0x4A, emit_adc },
1795 { "add", 0x80, 0x09, emit_add },
1796 { "and", 0x00, 0xA0, emit_s },
1797 { "bit", 0xCB, 0x40, emit_bit },
1798 { "call", 0xCD, 0xC4, emit_jpcc },
1799 { "ccf", 0x00, 0x3F, emit_insn },
1800 { "cp", 0x00, 0xB8, emit_s },
1801 { "cpd", 0xED, 0xA9, emit_insn },
1802 { "cpdr", 0xED, 0xB9, emit_insn },
1803 { "cpi", 0xED, 0xA1, emit_insn },
1804 { "cpir", 0xED, 0xB1, emit_insn },
1805 { "cpl", 0x00, 0x2F, emit_insn },
1806 { "daa", 0x00, 0x27, emit_insn },
1807 { "dec", 0x0B, 0x05, emit_incdec },
1808 { "di", 0x00, 0xF3, emit_insn },
1809 { "djnz", 0x00, 0x10, emit_jr },
1810 { "ei", 0x00, 0xFB, emit_insn },
1811 { "ex", 0x00, 0x00, emit_ex},
1812 { "exx", 0x00, 0xD9, emit_insn },
1813 { "halt", 0x00, 0x76, emit_insn },
1814 { "im", 0xED, 0x46, emit_im },
1815 { "in", 0x00, 0x00, emit_in },
1816 { "inc", 0x03, 0x04, emit_incdec },
1817 { "ind", 0xED, 0xAA, emit_insn },
1818 { "indr", 0xED, 0xBA, emit_insn },
1819 { "ini", 0xED, 0xA2, emit_insn },
1820 { "inir", 0xED, 0xB2, emit_insn },
1821 { "jp", 0xC3, 0xC2, emit_jpcc },
1822 { "jr", 0x18, 0x20, emit_jrcc },
1823 { "ld", 0x00, 0x00, emit_ld },
1824 { "ldd", 0xED, 0xA8, emit_insn },
1825 { "lddr", 0xED, 0xB8, emit_insn },
1826 { "ldi", 0xED, 0xA0, emit_insn },
1827 { "ldir", 0xED, 0xB0, emit_insn },
1828 { "mulub", 0xED, 0xC5, emit_mulub }, /* R800 only. */
1829 { "muluw", 0xED, 0xC3, emit_muluw }, /* R800 only. */
1830 { "neg", 0xed, 0x44, emit_insn },
1831 { "nop", 0x00, 0x00, emit_insn },
1832 { "or", 0x00, 0xB0, emit_s },
1833 { "otdr", 0xED, 0xBB, emit_insn },
1834 { "otir", 0xED, 0xB3, emit_insn },
1835 { "out", 0x00, 0x00, emit_out },
1836 { "outd", 0xED, 0xAB, emit_insn },
1837 { "outi", 0xED, 0xA3, emit_insn },
1838 { "pop", 0x00, 0xC1, emit_pop },
1839 { "push", 0x00, 0xC5, emit_pop },
1840 { "res", 0xCB, 0x80, emit_bit },
1841 { "ret", 0xC9, 0xC0, emit_retcc },
1842 { "reti", 0xED, 0x4D, emit_insn },
1843 { "retn", 0xED, 0x45, emit_insn },
1844 { "rl", 0xCB, 0x10, emit_mr },
1845 { "rla", 0x00, 0x17, emit_insn },
1846 { "rlc", 0xCB, 0x00, emit_mr },
1847 { "rlca", 0x00, 0x07, emit_insn },
1848 { "rld", 0xED, 0x6F, emit_insn },
1849 { "rr", 0xCB, 0x18, emit_mr },
1850 { "rra", 0x00, 0x1F, emit_insn },
1851 { "rrc", 0xCB, 0x08, emit_mr },
1852 { "rrca", 0x00, 0x0F, emit_insn },
1853 { "rrd", 0xED, 0x67, emit_insn },
1854 { "rst", 0x00, 0xC7, emit_rst},
1855 { "sbc", 0x98, 0x42, emit_adc },
1856 { "scf", 0x00, 0x37, emit_insn },
1857 { "set", 0xCB, 0xC0, emit_bit },
1858 { "sla", 0xCB, 0x20, emit_mr },
1859 { "sli", 0xCB, 0x30, emit_mr },
1860 { "sll", 0xCB, 0x30, emit_mr },
1861 { "sra", 0xCB, 0x28, emit_mr },
1862 { "srl", 0xCB, 0x38, emit_mr },
1863 { "sub", 0x00, 0x90, emit_s },
1864 { "xor", 0x00, 0xA8, emit_s },
1867 void
1868 md_assemble (char* str)
1870 const char *p;
1871 char * old_ptr;
1872 int i;
1873 table_t *insp;
1875 err_flag = 0;
1876 old_ptr = input_line_pointer;
1877 p = skip_space (str);
1878 for (i = 0; (i < BUFLEN) && (ISALPHA (*p));)
1879 buf[i++] = TOLOWER (*p++);
1881 if (i == BUFLEN)
1883 buf[BUFLEN-3] = buf[BUFLEN-2] = '.'; /* Mark opcode as abbreviated. */
1884 buf[BUFLEN-1] = 0;
1885 as_bad (_("Unknown instruction '%s'"), buf);
1887 else if ((*p) && (!ISSPACE (*p)))
1888 as_bad (_("syntax error"));
1889 else
1891 buf[i] = 0;
1892 p = skip_space (p);
1893 key = buf;
1895 insp = bsearch (&key, instab, ARRAY_SIZE (instab),
1896 sizeof (instab[0]), key_cmp);
1897 if (!insp)
1898 as_bad (_("Unknown instruction '%s'"), buf);
1899 else
1901 p = insp->fp (insp->prefix, insp->opcode, p);
1902 p = skip_space (p);
1903 if ((!err_flag) && *p)
1904 as_bad (_("junk at end of line, first unrecognized character is `%c'"),
1905 *p);
1908 input_line_pointer = old_ptr;
1911 void
1912 md_apply_fix (fixS * fixP, valueT* valP, segT seg ATTRIBUTE_UNUSED)
1914 long val = * (long *) valP;
1915 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
1917 switch (fixP->fx_r_type)
1919 case BFD_RELOC_8_PCREL:
1920 if (fixP->fx_addsy)
1922 fixP->fx_no_overflow = 1;
1923 fixP->fx_done = 0;
1925 else
1927 fixP->fx_no_overflow = (-128 <= val && val < 128);
1928 if (!fixP->fx_no_overflow)
1929 as_bad_where (fixP->fx_file, fixP->fx_line,
1930 _("relative jump out of range"));
1931 *buf++ = val;
1932 fixP->fx_done = 1;
1934 break;
1936 case BFD_RELOC_Z80_DISP8:
1937 if (fixP->fx_addsy)
1939 fixP->fx_no_overflow = 1;
1940 fixP->fx_done = 0;
1942 else
1944 fixP->fx_no_overflow = (-128 <= val && val < 128);
1945 if (!fixP->fx_no_overflow)
1946 as_bad_where (fixP->fx_file, fixP->fx_line,
1947 _("index offset out of range"));
1948 *buf++ = val;
1949 fixP->fx_done = 1;
1951 break;
1953 case BFD_RELOC_8:
1954 if (val > 255 || val < -128)
1955 as_warn_where (fixP->fx_file, fixP->fx_line, _("overflow"));
1956 *buf++ = val;
1957 fixP->fx_no_overflow = 1;
1958 if (fixP->fx_addsy == NULL)
1959 fixP->fx_done = 1;
1960 break;
1962 case BFD_RELOC_16:
1963 *buf++ = val;
1964 *buf++ = (val >> 8);
1965 fixP->fx_no_overflow = 1;
1966 if (fixP->fx_addsy == NULL)
1967 fixP->fx_done = 1;
1968 break;
1970 case BFD_RELOC_24: /* Def24 may produce this. */
1971 *buf++ = val;
1972 *buf++ = (val >> 8);
1973 *buf++ = (val >> 16);
1974 fixP->fx_no_overflow = 1;
1975 if (fixP->fx_addsy == NULL)
1976 fixP->fx_done = 1;
1977 break;
1979 case BFD_RELOC_32: /* Def32 and .long may produce this. */
1980 *buf++ = val;
1981 *buf++ = (val >> 8);
1982 *buf++ = (val >> 16);
1983 *buf++ = (val >> 24);
1984 if (fixP->fx_addsy == NULL)
1985 fixP->fx_done = 1;
1986 break;
1988 default:
1989 printf (_("md_apply_fix: unknown r_type 0x%x\n"), fixP->fx_r_type);
1990 abort ();
1994 /* GAS will call this to generate a reloc. GAS will pass the
1995 resulting reloc to `bfd_install_relocation'. This currently works
1996 poorly, as `bfd_install_relocation' often does the wrong thing, and
1997 instances of `tc_gen_reloc' have been written to work around the
1998 problems, which in turns makes it difficult to fix
1999 `bfd_install_relocation'. */
2001 /* If while processing a fixup, a reloc really
2002 needs to be created then it is done here. */
2004 arelent *
2005 tc_gen_reloc (asection *seg ATTRIBUTE_UNUSED , fixS *fixp)
2007 arelent *reloc;
2009 if (! bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type))
2011 as_bad_where (fixp->fx_file, fixp->fx_line,
2012 _("reloc %d not supported by object file format"),
2013 (int) fixp->fx_r_type);
2014 return NULL;
2017 reloc = xmalloc (sizeof (arelent));
2018 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
2019 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
2020 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
2021 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
2022 reloc->addend = fixp->fx_offset;
2024 return reloc;