2000-06-06 Michael Snyder <msnyder@seadog.cygnus.com>
[binutils.git] / gas / config / tc-h8500.c
blobb5e6be381903d26d082ae813e8dc44f9057b395d
1 /* tc-h8500.c -- Assemble code for the Hitachi H8/500
2 Copyright (C) 1993, 94, 95, 1998 Free Software Foundation.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
22 Written By Steve Chamberlain
23 sac@cygnus.com
26 #include <stdio.h>
27 #include "as.h"
28 #include "bfd.h"
29 #include "subsegs.h"
30 #define DEFINE_TABLE
31 #define ASSEMBLER_TABLE
32 #include "opcodes/h8500-opc.h"
33 #include <ctype.h>
35 const char comment_chars[] = "!";
36 const char line_separator_chars[] = ";";
37 const char line_comment_chars[] = "!#";
39 /* This table describes all the machine specific pseudo-ops the assembler
40 has to support. The fields are:
41 pseudo-op name without dot
42 function to call to execute this pseudo-op
43 Integer arg to pass to the function
46 void cons ();
48 const pseudo_typeS md_pseudo_table[] =
50 {"int", cons, 2},
51 {"data.b", cons, 1},
52 {"data.w", cons, 2},
53 {"data.l", cons, 4},
54 {"form", listing_psize, 0},
55 {"heading", listing_title, 0},
56 {"import", s_ignore, 0},
57 {"page", listing_eject, 0},
58 {"program", s_ignore, 0},
59 {0, 0, 0}
62 const int md_reloc_size;
64 const char EXP_CHARS[] = "eE";
66 /* Chars that mean this number is a floating point constant */
67 /* As in 0f12.456 */
68 /* or 0d1.2345e12 */
69 const char FLT_CHARS[] = "rRsSfFdDxXpP";
71 #define C(a,b) ENCODE_RELAX(a,b)
72 #define ENCODE_RELAX(what,length) (((what) << 2) + (length))
74 #define GET_WHAT(x) ((x>>2))
76 #define BYTE_DISP 1
77 #define WORD_DISP 2
78 #define UNDEF_BYTE_DISP 0
79 #define UNDEF_WORD_DISP 3
81 #define BRANCH 1
82 #define SCB_F 2
83 #define SCB_TST 3
84 #define END 4
86 #define BYTE_F 127
87 #define BYTE_B -126
88 #define WORD_F 32767
89 #define WORD_B 32768
91 relax_typeS md_relax_table[C (END, 0)];
93 static struct hash_control *opcode_hash_control; /* Opcode mnemonics */
96 This function is called once, at assembler startup time. This should
97 set up all the tables, etc that the MD part of the assembler needs
100 void
101 md_begin ()
103 h8500_opcode_info *opcode;
104 char prev_buffer[100];
105 int idx = 0;
106 register relax_typeS *table;
108 opcode_hash_control = hash_new ();
109 prev_buffer[0] = 0;
111 /* Insert unique names into hash table */
112 for (opcode = h8500_table; opcode->name; opcode++)
114 if (idx != opcode->idx)
116 hash_insert (opcode_hash_control, opcode->name, (char *) opcode);
117 idx++;
121 /* Initialize the relax table. We use a local variable to avoid
122 warnings about modifying a supposedly const data structure. */
123 table = (relax_typeS *) md_relax_table;
124 table[C (BRANCH, BYTE_DISP)].rlx_forward = BYTE_F;
125 table[C (BRANCH, BYTE_DISP)].rlx_backward = BYTE_B;
126 table[C (BRANCH, BYTE_DISP)].rlx_length = 2;
127 table[C (BRANCH, BYTE_DISP)].rlx_more = C (BRANCH, WORD_DISP);
129 table[C (BRANCH, WORD_DISP)].rlx_forward = WORD_F;
130 table[C (BRANCH, WORD_DISP)].rlx_backward = WORD_B;
131 table[C (BRANCH, WORD_DISP)].rlx_length = 3;
132 table[C (BRANCH, WORD_DISP)].rlx_more = 0;
134 table[C (SCB_F, BYTE_DISP)].rlx_forward = BYTE_F;
135 table[C (SCB_F, BYTE_DISP)].rlx_backward = BYTE_B;
136 table[C (SCB_F, BYTE_DISP)].rlx_length = 3;
137 table[C (SCB_F, BYTE_DISP)].rlx_more = C (SCB_F, WORD_DISP);
139 table[C (SCB_F, WORD_DISP)].rlx_forward = WORD_F;
140 table[C (SCB_F, WORD_DISP)].rlx_backward = WORD_B;
141 table[C (SCB_F, WORD_DISP)].rlx_length = 8;
142 table[C (SCB_F, WORD_DISP)].rlx_more = 0;
144 table[C (SCB_TST, BYTE_DISP)].rlx_forward = BYTE_F;
145 table[C (SCB_TST, BYTE_DISP)].rlx_backward = BYTE_B;
146 table[C (SCB_TST, BYTE_DISP)].rlx_length = 3;
147 table[C (SCB_TST, BYTE_DISP)].rlx_more = C (SCB_TST, WORD_DISP);
149 table[C (SCB_TST, WORD_DISP)].rlx_forward = WORD_F;
150 table[C (SCB_TST, WORD_DISP)].rlx_backward = WORD_B;
151 table[C (SCB_TST, WORD_DISP)].rlx_length = 10;
152 table[C (SCB_TST, WORD_DISP)].rlx_more = 0;
156 static int rn; /* register number used by RN */
157 static int rs; /* register number used by RS */
158 static int rd; /* register number used by RD */
159 static int crb; /* byte size cr */
160 static int crw; /* word sized cr */
161 static int cr; /* unknown size cr */
163 static expressionS displacement;/* displacement expression */
164 static int displacement_size; /* and size if given */
166 static int immediate_inpage;
167 static expressionS immediate; /* immediate expression */
168 static int immediate_size; /* and size if given */
170 static expressionS absolute; /* absolute expression */
171 static int absolute_size; /* and size if given */
173 typedef struct
175 int type;
176 int reg;
177 expressionS exp;
178 int page;
181 h8500_operand_info;
183 /* try and parse a reg name, returns number of chars consumed */
184 static int
185 parse_reg (src, mode, reg)
186 char *src;
187 int *mode;
188 int *reg;
190 char *end;
191 int len;
193 /* Cribbed from get_symbol_end(). */
194 if (!is_name_beginner (*src) || *src == '\001')
195 return 0;
196 end = src+1;
197 while (is_part_of_name (*end) || *end == '\001')
198 end++;
199 len = end - src;
201 if (len == 2 && src[0] == 'r')
203 if (src[1] >= '0' && src[1] <= '7')
205 *mode = RN;
206 *reg = (src[1] - '0');
207 return len;
210 if (len == 2 && src[0] == 's' && src[1] == 'p')
212 *mode = RN;
213 *reg = 7;
214 return len;
216 if (len == 3 && src[0] == 'c' && src[1] == 'c' && src[2] == 'r')
218 *mode = CRB;
219 *reg = 1;
220 return len;
222 if (len == 2 && src[0] == 's' && src[1] == 'r')
224 *mode = CRW;
225 *reg = 0;
226 return len;
228 if (len == 2 && src[0] == 'b' && src[1] == 'r')
230 *mode = CRB;
231 *reg = 3;
232 return len;
234 if (len == 2 && src[0] == 'e' && src[1] == 'p')
236 *mode = CRB;
237 *reg = 4;
238 return len;
240 if (len == 2 && src[0] == 'd' && src[1] == 'p')
242 *mode = CRB;
243 *reg = 5;
244 return len;
246 if (len == 2 && src[0] == 't' && src[1] == 'p')
248 *mode = CRB;
249 *reg = 7;
250 return len;
252 if (len == 2 && src[0] == 'f' && src[1] == 'p')
254 *mode = RN;
255 *reg = 6;
256 return len;
258 return 0;
261 static
262 char *
263 parse_exp (s, op, page)
264 char *s;
265 expressionS *op;
266 int *page;
268 char *save;
269 char *new;
271 save = input_line_pointer;
273 *page = 0;
274 if (s[0] == '%')
276 if (s[1] == 'p' && s[2] == 'a' && s[3] == 'g' && s[4] == 'e')
278 s += 5;
279 *page = 'p';
281 if (s[1] == 'h' && s[2] == 'i' && s[3] == '1' && s[4] == '6')
283 s += 5;
284 *page = 'h';
286 else if (s[1] == 'o' && s[2] == 'f' && s[3] == 'f')
288 s += 4;
289 *page = 'o';
293 input_line_pointer = s;
295 expression (op);
296 if (op->X_op == O_absent)
297 as_bad (_("missing operand"));
298 new = input_line_pointer;
299 input_line_pointer = save;
300 return new;
303 typedef enum
305 exp_signed, exp_unsigned, exp_sandu
306 } sign_type;
309 static char *
310 skip_colonthing (sign, ptr, exp, def, size8, size16, size24)
311 sign_type sign;
312 char *ptr;
313 h8500_operand_info *exp;
314 int def;
315 int size8;
316 int size16;
317 int size24;
319 ptr = parse_exp (ptr, &exp->exp, &exp->page);
320 if (*ptr == ':')
322 ptr++;
323 if (*ptr == '8')
325 ptr++;
326 exp->type = size8;
328 else if (ptr[0] == '1' & ptr[1] == '6')
330 ptr += 2;
331 exp->type = size16;
333 else if (ptr[0] == '2' & ptr[1] == '4')
335 if (!size24)
337 as_bad (_(":24 not valid for this opcode"));
339 ptr += 2;
340 exp->type = size24;
342 else
344 as_bad (_("expect :8,:16 or :24"));
345 exp->type = size16;
348 else
350 if (exp->page == 'p')
352 exp->type = IMM8;
354 else if (exp->page == 'h')
356 exp->type = IMM16;
358 else
360 /* Let's work out the size from the context */
361 int n = exp->exp.X_add_number;
362 if (size8
363 && exp->exp.X_op == O_constant
364 && ((sign == exp_signed && (n >= -128 && n <= 127))
365 || (sign == exp_unsigned && (n >= 0 && (n <= 255)))
366 || (sign == exp_sandu && (n >= -128 && (n <= 255)))))
368 exp->type = size8;
370 else
372 exp->type = def;
376 return ptr;
379 static int
380 parse_reglist (src, op)
381 char *src;
382 h8500_operand_info *op;
384 int mode;
385 int rn;
386 int mask = 0;
387 int rm;
388 int idx = 1; /* skip ( */
390 while (src[idx] && src[idx] != ')')
392 int done = parse_reg (src + idx, &mode, &rn);
394 if (done)
396 idx += done;
397 mask |= 1 << rn;
399 else
401 as_bad (_("syntax error in reg list"));
402 return 0;
404 if (src[idx] == '-')
406 idx++;
407 done = parse_reg (src + idx, &mode, &rm);
408 if (done)
410 idx += done;
411 while (rn <= rm)
413 mask |= 1 << rn;
414 rn++;
417 else
419 as_bad (_("missing final register in range"));
422 if (src[idx] == ',')
423 idx++;
425 idx++;
426 op->exp.X_add_symbol = 0;
427 op->exp.X_op_symbol = 0;
428 op->exp.X_add_number = mask;
429 op->exp.X_op = O_constant;
430 op->exp.X_unsigned = 1;
431 op->type = IMM8;
432 return idx;
436 /* The many forms of operand:
438 Rn Register direct
439 @Rn Register indirect
440 @(disp[:size], Rn) Register indirect with displacement
441 @Rn+
442 @-Rn
443 @aa[:size] absolute
444 #xx[:size] immediate data
448 static void
449 get_operand (ptr, op, ispage)
450 char **ptr;
451 h8500_operand_info *op;
452 char ispage;
454 char *src = *ptr;
455 int mode;
456 unsigned int num;
457 unsigned int len;
458 op->page = 0;
459 if (src[0] == '(' && src[1] == 'r')
461 /* This is a register list */
462 *ptr = src + parse_reglist (src, op);
463 return;
466 len = parse_reg (src, &op->type, &op->reg);
468 if (len)
470 *ptr = src + len;
471 return;
474 if (*src == '@')
476 src++;
477 if (*src == '-')
479 src++;
480 len = parse_reg (src, &mode, &num);
481 if (len == 0)
483 /* Oops, not a reg after all, must be ordinary exp */
484 src--;
485 /* must be a symbol */
486 *ptr = skip_colonthing (exp_unsigned, src,
487 op, ABS16, ABS8, ABS16, ABS24);
488 return;
491 op->type = RNDEC;
492 op->reg = num;
493 *ptr = src + len;
494 return;
496 if (*src == '(')
498 /* Disp */
499 src++;
501 src = skip_colonthing (exp_signed, src,
502 op, RNIND_D16, RNIND_D8, RNIND_D16, 0);
504 if (*src != ',')
506 as_bad (_("expected @(exp, Rn)"));
507 return;
509 src++;
510 len = parse_reg (src, &mode, &op->reg);
511 if (len == 0 || mode != RN)
513 as_bad (_("expected @(exp, Rn)"));
514 return;
516 src += len;
517 if (*src != ')')
519 as_bad (_("expected @(exp, Rn)"));
520 return;
522 *ptr = src + 1;
523 return;
525 len = parse_reg (src, &mode, &num);
527 if (len)
529 src += len;
530 if (*src == '+')
532 src++;
533 if (mode != RN)
535 as_bad (_("@Rn+ needs word register"));
536 return;
538 op->type = RNINC;
539 op->reg = num;
540 *ptr = src;
541 return;
543 if (mode != RN)
545 as_bad (_("@Rn needs word register"));
546 return;
548 op->type = RNIND;
549 op->reg = num;
550 *ptr = src;
551 return;
553 else
555 /* must be a symbol */
556 *ptr =
557 skip_colonthing (exp_unsigned, src, op,
558 ispage ? ABS24 : ABS16, ABS8, ABS16, ABS24);
559 return;
563 if (*src == '#')
565 src++;
566 *ptr = skip_colonthing (exp_sandu, src, op, IMM16, IMM8, IMM16, ABS24);
567 return;
569 else
571 *ptr = skip_colonthing (exp_signed, src, op,
572 ispage ? ABS24 : PCREL8, PCREL8, PCREL16, ABS24);
576 static
577 char *
578 get_operands (info, args, operand)
579 h8500_opcode_info *info;
580 char *args;
581 h8500_operand_info *operand;
584 char *ptr = args;
586 switch (info->nargs)
588 case 0:
589 operand[0].type = 0;
590 operand[1].type = 0;
591 break;
593 case 1:
594 ptr++;
595 get_operand (&ptr, operand + 0, info->name[0] == 'p');
596 operand[1].type = 0;
597 break;
599 case 2:
600 ptr++;
601 get_operand (&ptr, operand + 0, 0);
602 if (*ptr == ',')
603 ptr++;
604 get_operand (&ptr, operand + 1, 0);
605 break;
607 default:
608 abort ();
611 return ptr;
614 /* Passed a pointer to a list of opcodes which use different
615 addressing modes, return the opcode which matches the opcodes
616 provided
619 int pcrel8; /* Set when we've seen a pcrel operand */
621 static
622 h8500_opcode_info *
623 get_specific (opcode, operands)
624 h8500_opcode_info *opcode;
625 h8500_operand_info *operands;
627 h8500_opcode_info *this_try = opcode;
628 int found = 0;
629 unsigned int noperands = opcode->nargs;
631 unsigned int this_index = opcode->idx;
633 while (this_index == opcode->idx && !found)
635 unsigned int i;
637 this_try = opcode++;
639 /* look at both operands needed by the opcodes and provided by
640 the user*/
641 for (i = 0; i < noperands; i++)
643 h8500_operand_info *user = operands + i;
645 switch (this_try->arg_type[i])
647 case FPIND_D8:
648 /* Opcode needs (disp:8,fp) */
649 if (user->type == RNIND_D8 && user->reg == 6)
651 displacement = user->exp;
652 continue;
654 break;
655 case RDIND_D16:
656 if (user->type == RNIND_D16)
658 displacement = user->exp;
659 rd = user->reg;
660 continue;
662 break;
663 case RDIND_D8:
664 if (user->type == RNIND_D8)
666 displacement = user->exp;
667 rd = user->reg;
668 continue;
670 break;
671 case RNIND_D16:
672 case RNIND_D8:
673 if (user->type == this_try->arg_type[i])
675 displacement = user->exp;
676 rn = user->reg;
677 continue;
679 break;
681 case SPDEC:
682 if (user->type == RNDEC && user->reg == 7)
684 continue;
686 break;
687 case SPINC:
688 if (user->type == RNINC && user->reg == 7)
690 continue;
692 break;
693 case ABS16:
694 if (user->type == ABS16)
696 absolute = user->exp;
697 continue;
699 break;
700 case ABS8:
701 if (user->type == ABS8)
703 absolute = user->exp;
704 continue;
706 break;
707 case ABS24:
708 if (user->type == ABS24)
710 absolute = user->exp;
711 continue;
713 break;
715 case CRB:
716 if ((user->type == CRB || user->type == CR) && user->reg != 0)
718 crb = user->reg;
719 continue;
721 break;
722 case CRW:
723 if ((user->type == CRW || user->type == CR) && user->reg == 0)
725 crw = user->reg;
726 continue;
728 break;
729 case DISP16:
730 if (user->type == DISP16)
732 displacement = user->exp;
733 continue;
735 break;
736 case DISP8:
737 if (user->type == DISP8)
739 displacement = user->exp;
740 continue;
742 break;
743 case FP:
744 if (user->type == RN && user->reg == 6)
746 continue;
748 break;
749 case PCREL16:
750 if (user->type == PCREL16)
752 displacement = user->exp;
753 continue;
755 break;
756 case PCREL8:
757 if (user->type == PCREL8)
759 displacement = user->exp;
760 pcrel8 = 1;
761 continue;
763 break;
765 case IMM16:
766 if (user->type == IMM16
767 || user->type == IMM8)
769 immediate_inpage = user->page;
770 immediate = user->exp;
771 continue;
773 break;
774 case RLIST:
775 case IMM8:
776 if (user->type == IMM8)
778 immediate_inpage = user->page;
779 immediate = user->exp;
780 continue;
782 break;
783 case IMM4:
784 if (user->type == IMM8)
786 immediate_inpage = user->page;
787 immediate = user->exp;
788 continue;
790 break;
791 case QIM:
792 if (user->type == IMM8
793 && user->exp.X_op == O_constant
795 (user->exp.X_add_number == -2
796 || user->exp.X_add_number == -1
797 || user->exp.X_add_number == 1
798 || user->exp.X_add_number == 2))
800 immediate_inpage = user->page;
801 immediate = user->exp;
802 continue;
804 break;
805 case RD:
806 if (user->type == RN)
808 rd = user->reg;
809 continue;
811 break;
812 case RS:
813 if (user->type == RN)
815 rs = user->reg;
816 continue;
818 break;
819 case RDIND:
820 if (user->type == RNIND)
822 rd = user->reg;
823 continue;
826 break;
827 case RNINC:
828 case RNIND:
829 case RNDEC:
830 case RN:
832 if (user->type == this_try->arg_type[i])
834 rn = user->reg;
835 continue;
837 break;
838 case SP:
839 if (user->type == RN && user->reg == 7)
841 continue;
843 break;
844 default:
845 printf (_("unhandled %d\n"), this_try->arg_type[i]);
846 break;
849 /* If we get here this didn't work out */
850 goto fail;
852 found = 1;
853 fail:;
857 if (found)
858 return this_try;
859 else
860 return 0;
864 check (operand, low, high)
865 expressionS *operand;
866 int low;
867 int high;
869 if (operand->X_op != O_constant
870 || operand->X_add_number < low
871 || operand->X_add_number > high)
873 as_bad (_("operand must be absolute in range %d..%d"), low, high);
875 return operand->X_add_number;
878 static
879 void
880 insert (output, index, exp, reloc, pcrel)
881 char *output;
882 int index;
883 expressionS *exp;
884 int reloc;
885 int pcrel;
887 fix_new_exp (frag_now,
888 output - frag_now->fr_literal + index,
889 4, /* always say size is 4, but we know better */
890 exp,
891 pcrel,
892 reloc);
895 void
896 build_relaxable_instruction (opcode, operand)
897 h8500_opcode_info *opcode;
898 h8500_operand_info *operand;
900 /* All relaxable instructions start life as two bytes but can become
901 three bytes long if a lonely branch and up to 9 bytes if long scb
903 char *p;
904 int len;
905 int type;
907 if (opcode->bytes[0].contents == 0x01)
909 type = SCB_F;
911 else if (opcode->bytes[0].contents == 0x06
912 || opcode->bytes[0].contents == 0x07)
914 type = SCB_TST;
916 else
918 type = BRANCH;
921 p = frag_var (rs_machine_dependent,
922 md_relax_table[C (type, WORD_DISP)].rlx_length,
923 len = md_relax_table[C (type, BYTE_DISP)].rlx_length,
924 C (type, UNDEF_BYTE_DISP),
925 displacement.X_add_symbol,
926 displacement.X_add_number,
929 p[0] = opcode->bytes[0].contents;
930 if (type != BRANCH)
932 p[1] = opcode->bytes[1].contents | rs;
936 /* Now we know what sort of opcodes it is, lets build the bytes -
938 static void
939 build_bytes (opcode, operand)
940 h8500_opcode_info *opcode;
941 h8500_operand_info *operand;
944 int index;
946 if (pcrel8)
948 pcrel8 = 0;
949 build_relaxable_instruction (opcode, operand);
951 else
953 char *output = frag_more (opcode->length);
955 memset (output, 0, opcode->length);
956 for (index = 0; index < opcode->length; index++)
958 output[index] = opcode->bytes[index].contents;
960 switch (opcode->bytes[index].insert)
962 default:
963 printf (_("failed for %d\n"), opcode->bytes[index].insert);
964 break;
965 case 0:
966 break;
967 case RN:
968 output[index] |= rn;
969 break;
970 case RD:
971 case RDIND:
973 output[index] |= rd;
974 break;
975 case RS:
976 output[index] |= rs;
977 break;
978 case DISP16:
979 insert (output, index, &displacement, R_H8500_IMM16, 0);
980 index++;
981 break;
982 case DISP8:
983 case FPIND_D8:
984 insert (output, index, &displacement, R_H8500_IMM8, 0);
985 break;
987 case IMM16:
989 int p;
990 switch (immediate_inpage) {
991 case 'p':
992 p = R_H8500_HIGH16;
993 break;
994 case 'h':
995 p = R_H8500_HIGH16;
996 break;
997 default:
998 p = R_H8500_IMM16;
999 break;
1002 insert (output, index, &immediate,p, 0);
1005 index++;
1006 break;
1007 case RLIST:
1008 case IMM8:
1009 if (immediate_inpage)
1011 insert (output, index, &immediate, R_H8500_HIGH8, 0);
1013 else
1015 insert (output, index, &immediate, R_H8500_IMM8, 0);
1017 break;
1018 case PCREL16:
1019 insert (output, index, &displacement, R_H8500_PCREL16, 1);
1020 index++;
1021 break;
1022 case PCREL8:
1023 insert (output, index, &displacement, R_H8500_PCREL8, 1);
1024 break;
1025 case IMM4:
1026 output[index] |= check (&immediate, 0, 15);
1027 break;
1028 case CR:
1030 output[index] |= cr;
1031 if (cr == 0)
1033 output[0] |= 0x8;
1035 else
1037 output[0] &= ~0x8;
1040 break;
1042 case CRB:
1043 output[index] |= crb;
1044 output[0] &= ~0x8;
1045 break;
1046 case CRW:
1047 output[index] |= crw;
1048 output[0] |= 0x8;
1049 break;
1050 case ABS24:
1051 insert (output, index, &absolute, R_H8500_IMM24, 0);
1052 index += 2;
1053 break;
1054 case ABS16:
1055 insert (output, index, &absolute, R_H8500_IMM16, 0);
1056 index++;
1057 break;
1058 case ABS8:
1059 insert (output, index, &absolute, R_H8500_IMM8, 0);
1060 break;
1061 case QIM:
1062 switch (immediate.X_add_number)
1064 case -2:
1065 output[index] |= 0x5;
1066 break;
1067 case -1:
1068 output[index] |= 0x4;
1069 break;
1070 case 1:
1071 output[index] |= 0;
1072 break;
1073 case 2:
1074 output[index] |= 1;
1075 break;
1077 break;
1083 /* This is the guts of the machine-dependent assembler. STR points to a
1084 machine dependent instruction. This funciton is supposed to emit
1085 the frags/bytes it assembles to.
1088 void
1089 DEFUN (md_assemble, (str),
1090 char *str)
1092 char *op_start;
1093 char *op_end;
1094 h8500_operand_info operand[2];
1095 h8500_opcode_info *opcode;
1096 h8500_opcode_info *prev_opcode;
1097 char name[11];
1099 int nlen = 0;
1101 /* Drop leading whitespace */
1102 while (*str == ' ')
1103 str++;
1105 /* find the op code end */
1106 for (op_start = op_end = str;
1107 !is_end_of_line[(unsigned char) *op_end] && *op_end != ' ';
1108 op_end++)
1110 if ( /**op_end != '.'
1111 && *op_end != ':'
1112 && */ nlen < 10)
1114 name[nlen++] = *op_end;
1117 name[nlen] = 0;
1119 if (op_end == op_start)
1121 as_bad (_("can't find opcode "));
1124 opcode = (h8500_opcode_info *) hash_find (opcode_hash_control, name);
1126 if (opcode == NULL)
1128 as_bad (_("unknown opcode"));
1129 return;
1132 get_operands (opcode, op_end, operand);
1133 prev_opcode = opcode;
1135 opcode = get_specific (opcode, operand);
1137 if (opcode == 0)
1139 /* Couldn't find an opcode which matched the operands */
1140 char *where = frag_more (2);
1142 where[0] = 0x0;
1143 where[1] = 0x0;
1144 as_bad (_("invalid operands for opcode"));
1145 return;
1148 build_bytes (opcode, operand);
1152 void
1153 DEFUN (tc_crawl_symbol_chain, (headers),
1154 object_headers * headers)
1156 printf (_("call to tc_crawl_symbol_chain \n"));
1159 symbolS *
1160 DEFUN (md_undefined_symbol, (name),
1161 char *name)
1163 return 0;
1166 void
1167 DEFUN (tc_headers_hook, (headers),
1168 object_headers * headers)
1170 printf (_("call to tc_headers_hook \n"));
1173 /* Various routines to kill one day */
1174 /* Equal to MAX_PRECISION in atof-ieee.c */
1175 #define MAX_LITTLENUMS 6
1177 /* Turn a string in input_line_pointer into a floating point constant of type
1178 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
1179 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
1181 char *
1182 md_atof (type, litP, sizeP)
1183 char type;
1184 char *litP;
1185 int *sizeP;
1187 int prec;
1188 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1189 LITTLENUM_TYPE *wordP;
1190 char *t;
1191 char *atof_ieee ();
1193 switch (type)
1195 case 'f':
1196 case 'F':
1197 case 's':
1198 case 'S':
1199 prec = 2;
1200 break;
1202 case 'd':
1203 case 'D':
1204 case 'r':
1205 case 'R':
1206 prec = 4;
1207 break;
1209 case 'x':
1210 case 'X':
1211 prec = 6;
1212 break;
1214 case 'p':
1215 case 'P':
1216 prec = 6;
1217 break;
1219 default:
1220 *sizeP = 0;
1221 return _("Bad call to MD_ATOF()");
1223 t = atof_ieee (input_line_pointer, type, words);
1224 if (t)
1225 input_line_pointer = t;
1227 *sizeP = prec * sizeof (LITTLENUM_TYPE);
1228 for (wordP = words; prec--;)
1230 md_number_to_chars (litP, (long) (*wordP++), sizeof (LITTLENUM_TYPE));
1231 litP += sizeof (LITTLENUM_TYPE);
1233 return 0;
1236 CONST char *md_shortopts = "";
1237 struct option md_longopts[] = {
1238 {NULL, no_argument, NULL, 0}
1240 size_t md_longopts_size = sizeof(md_longopts);
1243 md_parse_option (c, arg)
1244 int c;
1245 char *arg;
1247 return 0;
1250 void
1251 md_show_usage (stream)
1252 FILE *stream;
1256 void
1257 tc_aout_fix_to_chars ()
1259 printf (_("call to tc_aout_fix_to_chars \n"));
1260 abort ();
1263 static
1264 void
1265 wordify_scb (buffer, disp_size, inst_size)
1266 char *buffer;
1267 int *disp_size;
1268 int *inst_size;
1270 int rn = buffer[1] & 0x7;
1272 switch (buffer[0])
1274 case 0x0e: /* BSR */
1275 case 0x20:
1276 case 0x21:
1277 case 0x22:
1278 case 0x23:
1279 case 0x24:
1280 case 0x25:
1281 case 0x26:
1282 case 0x27:
1283 case 0x28:
1284 case 0x29:
1285 case 0x2a:
1286 case 0x2b:
1287 case 0x2c:
1288 case 0x2d:
1289 case 0x2e:
1290 case 0x2f:
1291 buffer[0] |= 0x10;
1292 buffer[1] = 0;
1293 buffer[2] = 0;
1294 *disp_size = 2;
1295 *inst_size = 1;
1296 return;
1297 default:
1298 abort ();
1300 case 0x01:
1301 *inst_size = 6;
1302 *disp_size = 2;
1303 break;
1304 case 0x06:
1305 *inst_size = 8;
1306 *disp_size = 2;
1308 *buffer++ = 0x26; /* bne + 8 */
1309 *buffer++ = 0x08;
1310 break;
1311 case 0x07:
1312 *inst_size = 8;
1313 *disp_size = 2;
1314 *buffer++ = 0x27; /* bne + 8 */
1315 *buffer++ = 0x08;
1316 break;
1319 *buffer++ = 0xa8 | rn; /* addq -1,rn */
1320 *buffer++ = 0x0c;
1321 *buffer++ = 0x04; /* cmp #0xff:8, rn */
1322 *buffer++ = 0xff;
1323 *buffer++ = 0x70 | rn;
1324 *buffer++ = 0x36; /* bne ... */
1325 *buffer++ = 0;
1326 *buffer++ = 0;
1330 called after relaxing, change the frags so they know how big they are
1332 void
1333 md_convert_frag (headers, seg, fragP)
1334 object_headers *headers;
1335 segT seg;
1336 fragS *fragP;
1338 int disp_size = 0;
1339 int inst_size = 0;
1340 char *buffer = fragP->fr_fix + fragP->fr_literal;
1342 switch (fragP->fr_subtype)
1344 case C (BRANCH, BYTE_DISP):
1345 disp_size = 1;
1346 inst_size = 1;
1347 break;
1349 case C (SCB_F, BYTE_DISP):
1350 case C (SCB_TST, BYTE_DISP):
1351 disp_size = 1;
1352 inst_size = 2;
1353 break;
1355 /* Branches to a known 16 bit displacement */
1357 /* Turn on the 16bit bit */
1358 case C (BRANCH, WORD_DISP):
1359 case C (SCB_F, WORD_DISP):
1360 case C (SCB_TST, WORD_DISP):
1361 wordify_scb (buffer, &disp_size, &inst_size);
1362 break;
1364 case C (BRANCH, UNDEF_WORD_DISP):
1365 case C (SCB_F, UNDEF_WORD_DISP):
1366 case C (SCB_TST, UNDEF_WORD_DISP):
1367 /* This tried to be relaxed, but didn't manage it, it now needs a
1368 fix */
1369 wordify_scb (buffer, &disp_size, &inst_size);
1371 /* Make a reloc */
1372 fix_new (fragP,
1373 fragP->fr_fix + inst_size,
1375 fragP->fr_symbol,
1376 fragP->fr_offset,
1378 R_H8500_PCREL16);
1380 fragP->fr_fix += disp_size + inst_size;
1381 fragP->fr_var = 0;
1382 return;
1383 break;
1384 default:
1385 abort ();
1387 if (inst_size)
1389 /* Get the address of the end of the instruction */
1390 int next_inst = fragP->fr_fix + fragP->fr_address + disp_size + inst_size;
1391 int targ_addr = (S_GET_VALUE (fragP->fr_symbol) +
1392 fragP->fr_offset);
1393 int disp = targ_addr - next_inst;
1395 md_number_to_chars (buffer + inst_size, disp, disp_size);
1396 fragP->fr_fix += disp_size + inst_size;
1397 fragP->fr_var = 0;
1401 valueT
1402 md_section_align (seg, size)
1403 segT seg ;
1404 valueT size;
1406 return ((size + (1 << section_alignment[(int) seg]) - 1)
1407 & (-1 << section_alignment[(int) seg]));
1411 void
1412 md_apply_fix (fixP, val)
1413 fixS *fixP;
1414 long val;
1416 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
1418 if (fixP->fx_r_type == 0)
1420 fixP->fx_r_type = fixP->fx_size == 4 ? R_H8500_IMM32 : R_H8500_IMM16;
1423 switch (fixP->fx_r_type)
1426 case R_H8500_IMM8:
1427 case R_H8500_PCREL8:
1428 *buf++ = val;
1429 break;
1430 case R_H8500_IMM16:
1431 case R_H8500_LOW16:
1432 case R_H8500_PCREL16:
1433 *buf++ = (val >> 8);
1434 *buf++ = val;
1435 break;
1436 case R_H8500_HIGH8:
1437 *buf++ = val >> 16;
1438 break;
1439 case R_H8500_HIGH16:
1440 *buf++ = val >> 24;
1441 *buf++ = val >> 16;
1442 break;
1443 case R_H8500_IMM24:
1444 *buf++ = (val >> 16);
1445 *buf++ = (val >> 8);
1446 *buf++ = val;
1447 break;
1448 case R_H8500_IMM32:
1449 *buf++ = (val >> 24);
1450 *buf++ = (val >> 16);
1451 *buf++ = (val >> 8);
1452 *buf++ = val;
1453 break;
1454 default:
1455 abort ();
1461 called just before address relaxation, return the length
1462 by which a fragment must grow to reach it's destination
1465 md_estimate_size_before_relax (fragP, segment_type)
1466 register fragS *fragP;
1467 register segT segment_type;
1469 int what = GET_WHAT (fragP->fr_subtype);
1471 switch (fragP->fr_subtype)
1473 default:
1474 abort ();
1475 case C (BRANCH, UNDEF_BYTE_DISP):
1476 case C (SCB_F, UNDEF_BYTE_DISP):
1477 case C (SCB_TST, UNDEF_BYTE_DISP):
1478 /* used to be a branch to somewhere which was unknown */
1479 if (S_GET_SEGMENT (fragP->fr_symbol) == segment_type)
1481 /* Got a symbol and it's defined in this segment, become byte
1482 sized - maybe it will fix up */
1483 fragP->fr_subtype = C (what, BYTE_DISP);
1484 fragP->fr_var = md_relax_table[C (what, BYTE_DISP)].rlx_length;
1486 else
1488 /* Its got a segment, but its not ours, so it will always be long */
1489 fragP->fr_subtype = C (what, UNDEF_WORD_DISP);
1490 fragP->fr_var = md_relax_table[C (what, WORD_DISP)].rlx_length;
1491 return md_relax_table[C (what, WORD_DISP)].rlx_length;
1494 return fragP->fr_var;
1497 /* Put number into target byte order */
1499 void
1500 md_number_to_chars (ptr, use, nbytes)
1501 char *ptr;
1502 valueT use;
1503 int nbytes;
1505 number_to_chars_bigendian (ptr, use, nbytes);
1508 long
1509 md_pcrel_from (fixP)
1510 fixS *fixP;
1512 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
1515 /*ARGSUSED*/
1516 void
1517 tc_coff_symbol_emit_hook (ignore)
1518 symbolS *ignore;
1522 short
1523 tc_coff_fix2rtype (fix_ptr)
1524 fixS *fix_ptr;
1526 if (fix_ptr->fx_r_type == RELOC_32)
1528 /* cons likes to create reloc32's whatever the size of the reloc..
1530 switch (fix_ptr->fx_size)
1532 case 2:
1533 return R_H8500_IMM16;
1534 break;
1535 case 1:
1536 return R_H8500_IMM8;
1537 break;
1538 default:
1539 abort ();
1542 return fix_ptr->fx_r_type;
1545 void
1546 tc_reloc_mangle (fix_ptr, intr, base)
1547 fixS *fix_ptr;
1548 struct internal_reloc *intr;
1549 bfd_vma base;
1552 symbolS *symbol_ptr;
1554 symbol_ptr = fix_ptr->fx_addsy;
1556 /* If this relocation is attached to a symbol then it's ok
1557 to output it */
1558 if (fix_ptr->fx_r_type == RELOC_32)
1560 /* cons likes to create reloc32's whatever the size of the reloc..
1562 switch (fix_ptr->fx_size)
1564 case 2:
1565 intr->r_type = R_IMM16;
1566 break;
1567 case 1:
1568 intr->r_type = R_IMM8;
1569 break;
1570 default:
1571 abort ();
1574 else
1576 intr->r_type = fix_ptr->fx_r_type;
1579 intr->r_vaddr = fix_ptr->fx_frag->fr_address + fix_ptr->fx_where + base;
1580 intr->r_offset = fix_ptr->fx_offset;
1582 /* Turn the segment of the symbol into an offset. */
1583 if (symbol_ptr)
1585 symbolS *dot;
1587 dot = segment_info[S_GET_SEGMENT (symbol_ptr)].dot;
1588 if (dot)
1590 /* intr->r_offset -=
1591 segment_info[S_GET_SEGMENT(symbol_ptr)].scnhdr.s_paddr;*/
1592 intr->r_offset += S_GET_VALUE (symbol_ptr);
1593 intr->r_symndx = dot->sy_number;
1595 else
1597 intr->r_symndx = symbol_ptr->sy_number;
1601 else
1603 intr->r_symndx = -1;
1611 start_label (ptr)
1612 char *ptr;
1614 /* Check for :s.w */
1615 if (isalpha (ptr[1]) && ptr[2] == '.')
1616 return 0;
1617 /* Check for :s */
1618 if (isalpha (ptr[1]) && !isalpha (ptr[2]))
1619 return 0;
1620 return 1;
1625 tc_coff_sizemachdep (frag)
1626 fragS *frag;
1628 return md_relax_table[frag->fr_subtype].rlx_length;
1631 /* end of tc-h8500.c */