2000-08-11 Carlo Wood <carlo@alinoe.com>
[binutils.git] / gas / config / tc-m88k.c
bloba8f5b431980a796c8277984ca67463385b2fc0b1
1 /* m88k.c -- Assembler for the Motorola 88000
2 Contributed by Devon Bowen of Buffalo University
3 and Torbjorn Granlund of the Swedish Institute of Computer Science.
4 Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999
5 Free Software Foundation, Inc.
7 This file is part of GAS, the GNU Assembler.
9 GAS is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 GAS is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GAS; see the file COPYING. If not, write to the Free
21 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 02111-1307, USA. */
24 #include <ctype.h>
25 #include "as.h"
26 #include "subsegs.h"
27 #include "m88k-opcode.h"
29 struct field_val_assoc
31 char *name;
32 unsigned val;
35 struct field_val_assoc cr_regs[] =
37 {"PID", 0},
38 {"PSR", 1},
39 {"EPSR", 2},
40 {"SSBR", 3},
41 {"SXIP", 4},
42 {"SNIP", 5},
43 {"SFIP", 6},
44 {"VBR", 7},
45 {"DMT0", 8},
46 {"DMD0", 9},
47 {"DMA0", 10},
48 {"DMT1", 11},
49 {"DMD1", 12},
50 {"DMA1", 13},
51 {"DMT2", 14},
52 {"DMD2", 15},
53 {"DMA2", 16},
54 {"SR0", 17},
55 {"SR1", 18},
56 {"SR2", 19},
57 {"SR3", 20},
59 {NULL, 0},
62 struct field_val_assoc fcr_regs[] =
64 {"FPECR", 0},
65 {"FPHS1", 1},
66 {"FPLS1", 2},
67 {"FPHS2", 3},
68 {"FPLS2", 4},
69 {"FPPT", 5},
70 {"FPRH", 6},
71 {"FPRL", 7},
72 {"FPIT", 8},
74 {"FPSR", 62},
75 {"FPCR", 63},
77 {NULL, 0},
80 struct field_val_assoc cmpslot[] =
82 /* Integer Floating point */
83 {"nc", 0},
84 {"cp", 1},
85 {"eq", 2},
86 {"ne", 3},
87 {"gt", 4},
88 {"le", 5},
89 {"lt", 6},
90 {"ge", 7},
91 {"hi", 8}, {"ou", 8},
92 {"ls", 9}, {"ib", 9},
93 {"lo", 10}, {"in", 10},
94 {"hs", 11}, {"ob", 11},
95 {"be", 12}, {"ue", 12},
96 {"nb", 13}, {"lg", 13},
97 {"he", 14}, {"ug", 14},
98 {"nh", 15}, {"ule", 15},
99 {"ul", 16},
100 {"uge", 17},
102 {NULL, 0},
105 struct field_val_assoc cndmsk[] =
107 {"gt0", 1},
108 {"eq0", 2},
109 {"ge0", 3},
110 {"lt0", 12},
111 {"ne0", 13},
112 {"le0", 14},
114 {NULL, 0},
117 struct m88k_insn
119 unsigned long opcode;
120 expressionS exp;
121 enum reloc_type reloc;
124 static char *get_bf PARAMS ((char *param, unsigned *valp));
125 static char *get_cmp PARAMS ((char *param, unsigned *valp));
126 static char *get_cnd PARAMS ((char *param, unsigned *valp));
127 static char *get_cr PARAMS ((char *param, unsigned *regnop));
128 static char *get_fcr PARAMS ((char *param, unsigned *regnop));
129 static char *get_imm16 PARAMS ((char *param, struct m88k_insn *insn));
130 static char *get_o6 PARAMS ((char *param, unsigned *valp));
131 static char *get_reg PARAMS ((char *param, unsigned *regnop, int reg_prefix));
132 static char *get_vec9 PARAMS ((char *param, unsigned *valp));
133 static char *getval PARAMS ((char *param, unsigned int *valp));
135 static char *get_pcr PARAMS ((char *param, struct m88k_insn *insn,
136 enum reloc_type reloc));
138 static int calcop PARAMS ((struct m88k_opcode *format,
139 char *param, struct m88k_insn *insn));
142 extern char *myname;
143 static struct hash_control *op_hash = NULL;
145 /* These bits should be turned off in the first address of every segment */
146 int md_seg_align = 7;
148 /* These chars start a comment anywhere in a source file (except inside
149 another comment */
150 const char comment_chars[] = ";";
152 /* These chars only start a comment at the beginning of a line. */
153 const char line_comment_chars[] = "#";
155 const char line_separator_chars[] = "";
157 /* Chars that can be used to separate mant from exp in floating point nums */
158 const char EXP_CHARS[] = "eE";
160 /* Chars that mean this number is a floating point constant */
161 /* as in 0f123.456 */
162 /* or 0H1.234E-12 (see exp chars above) */
163 const char FLT_CHARS[] = "dDfF";
165 extern void float_cons (), cons (), s_globl (), s_space (),
166 s_set (), s_lcomm ();
168 const pseudo_typeS md_pseudo_table[] =
170 {"align", s_align_bytes, 4},
171 {"def", s_set, 0},
172 {"dfloat", float_cons, 'd'},
173 {"ffloat", float_cons, 'f'},
174 {"global", s_globl, 0},
175 {"half", cons, 2},
176 {"bss", s_lcomm, 1},
177 {"string", stringer, 0},
178 {"word", cons, 4},
179 /* Force set to be treated as an instruction. */
180 {"set", NULL, 0},
181 {".set", s_set, 0},
185 void
186 md_begin ()
188 const char *retval = NULL;
189 unsigned int i = 0;
191 /* initialize hash table */
193 op_hash = hash_new ();
195 /* loop until you see the end of the list */
197 while (*m88k_opcodes[i].name)
199 char *name = m88k_opcodes[i].name;
201 /* hash each mnemonic and record its position */
203 retval = hash_insert (op_hash, name, &m88k_opcodes[i]);
205 if (retval != NULL)
206 as_fatal (_("Can't hash instruction '%s':%s"),
207 m88k_opcodes[i].name, retval);
209 /* skip to next unique mnemonic or end of list */
211 for (i++; !strcmp (m88k_opcodes[i].name, name); i++)
216 CONST char *md_shortopts = "";
217 struct option md_longopts[] = {
218 {NULL, no_argument, NULL, 0}
220 size_t md_longopts_size = sizeof(md_longopts);
223 md_parse_option (c, arg)
224 int c;
225 char *arg;
227 return 0;
230 void
231 md_show_usage (stream)
232 FILE *stream;
236 void
237 md_assemble (op)
238 char *op;
240 char *param, *thisfrag;
241 char c;
242 struct m88k_opcode *format;
243 struct m88k_insn insn;
245 assert (op);
247 /* skip over instruction to find parameters */
249 for (param = op; *param != 0 && !isspace (*param); param++)
251 c = *param;
252 *param++ = '\0';
254 /* try to find the instruction in the hash table */
256 if ((format = (struct m88k_opcode *) hash_find (op_hash, op)) == NULL)
258 as_bad (_("Invalid mnemonic '%s'"), op);
259 return;
262 /* try parsing this instruction into insn */
264 insn.exp.X_add_symbol = 0;
265 insn.exp.X_op_symbol = 0;
266 insn.exp.X_add_number = 0;
267 insn.exp.X_op = O_illegal;
268 insn.reloc = NO_RELOC;
270 while (!calcop (format, param, &insn))
272 /* if it doesn't parse try the next instruction */
274 if (!strcmp (format[0].name, format[1].name))
275 format++;
276 else
278 as_fatal (_("Parameter syntax error"));
279 return;
283 /* grow the current frag and plop in the opcode */
285 thisfrag = frag_more (4);
286 md_number_to_chars (thisfrag, insn.opcode, 4);
288 /* if this instruction requires labels mark it for later */
290 switch (insn.reloc)
292 case NO_RELOC:
293 break;
295 case RELOC_LO16:
296 case RELOC_HI16:
297 fix_new_exp (frag_now,
298 thisfrag - frag_now->fr_literal + 2,
300 &insn.exp,
302 insn.reloc);
303 break;
305 case RELOC_IW16:
306 fix_new_exp (frag_now,
307 thisfrag - frag_now->fr_literal,
309 &insn.exp,
311 insn.reloc);
312 break;
314 case RELOC_PC16:
315 fix_new_exp (frag_now,
316 thisfrag - frag_now->fr_literal + 2,
318 &insn.exp,
320 insn.reloc);
321 break;
323 case RELOC_PC26:
324 fix_new_exp (frag_now,
325 thisfrag - frag_now->fr_literal,
327 &insn.exp,
329 insn.reloc);
330 break;
332 default:
333 as_fatal (_("Unknown relocation type"));
334 break;
338 static int
339 calcop (format, param, insn)
340 struct m88k_opcode *format;
341 char *param;
342 struct m88k_insn *insn;
344 char *fmt = format->op_spec;
345 int f;
346 unsigned val;
347 unsigned opcode;
348 int reg_prefix = 'r';
350 insn->opcode = format->opcode;
351 opcode = 0;
353 for (;;)
355 if (param == 0)
356 return 0;
357 f = *fmt++;
358 switch (f)
360 case 0:
361 insn->opcode |= opcode;
362 return (*param == 0 || *param == '\n');
364 default:
365 if (f != *param++)
366 return 0;
367 break;
369 case 'd':
370 param = get_reg (param, &val, reg_prefix);
371 reg_prefix = 'r';
372 opcode |= val << 21;
373 break;
375 case 'o':
376 param = get_o6 (param, &val);
377 opcode |= ((val >> 2) << 7);
378 break;
380 case 'x':
381 reg_prefix = 'x';
382 break;
384 case '1':
385 param = get_reg (param, &val, reg_prefix);
386 reg_prefix = 'r';
387 opcode |= val << 16;
388 break;
390 case '2':
391 param = get_reg (param, &val, reg_prefix);
392 reg_prefix = 'r';
393 opcode |= val;
394 break;
396 case '3':
397 param = get_reg (param, &val, 'r');
398 opcode |= (val << 16) | val;
399 break;
401 case 'I':
402 param = get_imm16 (param, insn);
403 break;
405 case 'b':
406 param = get_bf (param, &val);
407 opcode |= val;
408 break;
410 case 'p':
411 param = get_pcr (param, insn, RELOC_PC16);
412 break;
414 case 'P':
415 param = get_pcr (param, insn, RELOC_PC26);
416 break;
418 case 'B':
419 param = get_cmp (param, &val);
420 opcode |= val;
421 break;
423 case 'M':
424 param = get_cnd (param, &val);
425 opcode |= val;
426 break;
428 case 'c':
429 param = get_cr (param, &val);
430 opcode |= val << 5;
431 break;
433 case 'f':
434 param = get_fcr (param, &val);
435 opcode |= val << 5;
436 break;
438 case 'V':
439 param = get_vec9 (param, &val);
440 opcode |= val;
441 break;
443 case '?':
444 /* Having this here repeats the warning somtimes.
445 But can't we stand that? */
446 as_warn (_("Use of obsolete instruction"));
447 break;
452 static char *
453 match_name (param, assoc_tab, valp)
454 char *param;
455 struct field_val_assoc *assoc_tab;
456 unsigned *valp;
458 int i;
459 char *name;
460 int name_len;
462 for (i = 0;; i++)
464 name = assoc_tab[i].name;
465 if (name == NULL)
466 return NULL;
467 name_len = strlen (name);
468 if (!strncmp (param, name, name_len))
470 *valp = assoc_tab[i].val;
471 return param + name_len;
476 static char *
477 get_reg (param, regnop, reg_prefix)
478 char *param;
479 unsigned *regnop;
480 int reg_prefix;
482 unsigned c;
483 unsigned regno;
485 c = *param++;
486 if (c == reg_prefix)
488 regno = *param++ - '0';
489 if (regno < 10)
491 if (regno == 0)
493 *regnop = 0;
494 return param;
496 c = *param - '0';
497 if (c < 10)
499 regno = regno * 10 + c;
500 if (c < 32)
502 *regnop = regno;
503 return param + 1;
506 else
508 *regnop = regno;
509 return param;
512 return NULL;
514 else if (c == 's' && param[0] == 'p')
516 *regnop = 31;
517 return param + 1;
520 return 0;
523 static char *
524 get_imm16 (param, insn)
525 char *param;
526 struct m88k_insn *insn;
528 enum reloc_type reloc = NO_RELOC;
529 unsigned int val;
530 char *save_ptr;
532 if (!strncmp (param, "hi16", 4) && !isalnum (param[4]))
534 reloc = RELOC_HI16;
535 param += 4;
537 else if (!strncmp (param, "lo16", 4) && !isalnum (param[4]))
539 reloc = RELOC_LO16;
540 param += 4;
542 else if (!strncmp (param, "iw16", 4) && !isalnum (param[4]))
544 reloc = RELOC_IW16;
545 param += 4;
548 save_ptr = input_line_pointer;
549 input_line_pointer = param;
550 expression (&insn->exp);
551 param = input_line_pointer;
552 input_line_pointer = save_ptr;
554 val = insn->exp.X_add_number;
556 if (insn->exp.X_op == O_constant)
558 /* Insert the value now, and reset reloc to NO_RELOC. */
559 if (reloc == NO_RELOC)
561 /* Warn about too big expressions if not surrounded by xx16. */
562 if (val > 0xffff)
563 as_warn (_("Expression truncated to 16 bits"));
566 if (reloc == RELOC_HI16)
567 val >>= 16;
569 insn->opcode |= val & 0xffff;
570 reloc = NO_RELOC;
572 else if (reloc == NO_RELOC)
573 /* We accept a symbol even without lo16, hi16, etc, and assume
574 lo16 was intended. */
575 reloc = RELOC_LO16;
577 insn->reloc = reloc;
579 return param;
582 static char *
583 get_pcr (param, insn, reloc)
584 char *param;
585 struct m88k_insn *insn;
586 enum reloc_type reloc;
588 char *saveptr, *saveparam;
590 saveptr = input_line_pointer;
591 input_line_pointer = param;
593 expression (&insn->exp);
595 saveparam = input_line_pointer;
596 input_line_pointer = saveptr;
598 /* Botch: We should relocate now if O_constant. */
599 insn->reloc = reloc;
601 return saveparam;
604 static char *
605 get_cmp (param, valp)
606 char *param;
607 unsigned *valp;
609 unsigned int val;
610 char *save_ptr;
612 save_ptr = param;
614 param = match_name (param, cmpslot, valp);
615 val = *valp;
617 if (param == NULL)
619 param = save_ptr;
621 save_ptr = input_line_pointer;
622 input_line_pointer = param;
623 val = get_absolute_expression ();
624 param = input_line_pointer;
625 input_line_pointer = save_ptr;
627 if (val >= 32)
629 as_warn (_("Expression truncated to 5 bits"));
630 val %= 32;
634 *valp = val << 21;
635 return param;
638 static char *
639 get_cnd (param, valp)
640 char *param;
641 unsigned *valp;
643 unsigned int val;
645 if (isdigit (*param))
647 param = getval (param, &val);
649 if (val >= 32)
651 as_warn (_("Expression truncated to 5 bits"));
652 val %= 32;
655 else
657 if (isupper (*param))
658 *param = tolower (*param);
660 if (isupper (param[1]))
661 param[1] = tolower (param[1]);
663 param = match_name (param, cndmsk, valp);
665 if (param == NULL)
666 return NULL;
668 val = *valp;
671 *valp = val << 21;
672 return param;
675 static char *
676 get_bf2 (param, bc)
677 char *param;
678 int bc;
680 int depth = 0;
681 int c;
683 for (;;)
685 c = *param;
686 if (c == 0)
687 return param;
688 else if (c == '(')
689 depth++;
690 else if (c == ')')
691 depth--;
692 else if (c == bc && depth <= 0)
693 return param;
694 param++;
698 static char *
699 get_bf_offset_expression (param, offsetp)
700 char *param;
701 unsigned *offsetp;
703 unsigned offset;
705 if (isalpha (param[0]))
707 if (isupper (param[0]))
708 param[0] = tolower (param[0]);
709 if (isupper (param[1]))
710 param[1] = tolower (param[1]);
712 param = match_name (param, cmpslot, offsetp);
714 return param;
716 else
718 input_line_pointer = param;
719 offset = get_absolute_expression ();
720 param = input_line_pointer;
723 *offsetp = offset;
724 return param;
727 static char *
728 get_bf (param, valp)
729 char *param;
730 unsigned *valp;
732 unsigned offset = 0;
733 unsigned width = 0;
734 char *xp;
735 char *save_ptr;
737 xp = get_bf2 (param, '<');
739 save_ptr = input_line_pointer;
740 input_line_pointer = param;
741 if (*xp == 0)
743 /* We did not find '<'. We have an offset (width implicitly 32). */
744 param = get_bf_offset_expression (param, &offset);
745 input_line_pointer = save_ptr;
746 if (param == NULL)
747 return NULL;
749 else
751 *xp++ = 0; /* Overwrite the '<' */
752 param = get_bf2 (xp, '>');
753 if (*param == 0)
754 return NULL;
755 *param++ = 0; /* Overwrite the '>' */
757 width = get_absolute_expression ();
758 xp = get_bf_offset_expression (xp, &offset);
759 input_line_pointer = save_ptr;
761 if (xp + 1 != param)
762 return NULL;
765 *valp = ((width % 32) << 5) | (offset % 32);
767 return param;
770 static char *
771 get_cr (param, regnop)
772 char *param;
773 unsigned *regnop;
775 unsigned regno;
776 unsigned c;
778 if (!strncmp (param, "cr", 2))
780 param += 2;
782 regno = *param++ - '0';
783 if (regno < 10)
785 if (regno == 0)
787 *regnop = 0;
788 return param;
790 c = *param - '0';
791 if (c < 10)
793 regno = regno * 10 + c;
794 if (c < 64)
796 *regnop = regno;
797 return param + 1;
800 else
802 *regnop = regno;
803 return param;
806 return NULL;
809 param = match_name (param, cr_regs, regnop);
811 return param;
814 static char *
815 get_fcr (param, regnop)
816 char *param;
817 unsigned *regnop;
819 unsigned regno;
820 unsigned c;
822 if (!strncmp (param, "fcr", 3))
824 param += 3;
826 regno = *param++ - '0';
827 if (regno < 10)
829 if (regno == 0)
831 *regnop = 0;
832 return param;
834 c = *param - '0';
835 if (c < 10)
837 regno = regno * 10 + c;
838 if (c < 64)
840 *regnop = regno;
841 return param + 1;
844 else
846 *regnop = regno;
847 return param;
850 return NULL;
853 param = match_name (param, fcr_regs, regnop);
855 return param;
858 static char *
859 get_vec9 (param, valp)
860 char *param;
861 unsigned *valp;
863 unsigned val;
864 char *save_ptr;
866 save_ptr = input_line_pointer;
867 input_line_pointer = param;
868 val = get_absolute_expression ();
869 param = input_line_pointer;
870 input_line_pointer = save_ptr;
872 if (val >= 1 << 9)
873 as_warn (_("Expression truncated to 9 bits"));
875 *valp = val % (1 << 9);
877 return param;
880 static char *
881 get_o6 (param, valp)
882 char *param;
883 unsigned *valp;
885 unsigned val;
886 char *save_ptr;
888 save_ptr = input_line_pointer;
889 input_line_pointer = param;
890 val = get_absolute_expression ();
891 param = input_line_pointer;
892 input_line_pointer = save_ptr;
894 if (val & 0x3)
895 as_warn (_("Removed lower 2 bits of expression"));
897 *valp = val;
899 return(param);
902 #define hexval(z) \
903 (isdigit (z) ? (z) - '0' : \
904 islower (z) ? (z) - 'a' + 10 : \
905 isupper (z) ? (z) - 'A' + 10 : -1)
907 static char *
908 getval (param, valp)
909 char *param;
910 unsigned int *valp;
912 unsigned int val = 0;
913 unsigned int c;
915 c = *param++;
916 if (c == '0')
918 c = *param++;
919 if (c == 'x' || c == 'X')
921 c = *param++;
922 c = hexval (c);
923 while (c < 16)
925 val = val * 16 + c;
926 c = *param++;
927 c = hexval (c);
930 else
932 c -= '0';
933 while (c < 8)
935 val = val * 8 + c;
936 c = *param++ - '0';
940 else
942 c -= '0';
943 while (c < 10)
945 val = val * 10 + c;
946 c = *param++ - '0';
950 *valp = val;
951 return param - 1;
954 void
955 md_number_to_chars (buf, val, nbytes)
956 char *buf;
957 valueT val;
958 int nbytes;
960 number_to_chars_bigendian (buf, val, nbytes);
963 #if 0
965 /* This routine is never called. What is it for?
966 Ian Taylor, Cygnus Support 13 Jul 1993 */
968 void
969 md_number_to_imm (buf, val, nbytes, fixP, seg_type)
970 unsigned char *buf;
971 unsigned int val;
972 int nbytes;
973 fixS *fixP;
974 int seg_type;
976 if (seg_type != N_TEXT || fixP->fx_r_type == NO_RELOC)
978 switch (nbytes)
980 case 4:
981 *buf++ = val >> 24;
982 *buf++ = val >> 16;
983 case 2:
984 *buf++ = val >> 8;
985 case 1:
986 *buf = val;
987 break;
989 default:
990 abort ();
992 return;
995 switch (fixP->fx_r_type)
997 case RELOC_IW16:
998 buf[2] = val >> 8;
999 buf[3] = val;
1000 break;
1002 case RELOC_LO16:
1003 buf[0] = val >> 8;
1004 buf[1] = val;
1005 break;
1007 case RELOC_HI16:
1008 buf[0] = val >> 24;
1009 buf[1] = val >> 16;
1010 break;
1012 case RELOC_PC16:
1013 val += 4;
1014 buf[0] = val >> 10;
1015 buf[1] = val >> 2;
1016 break;
1018 case RELOC_PC26:
1019 val += 4;
1020 buf[0] |= (val >> 26) & 0x03;
1021 buf[1] = val >> 18;
1022 buf[2] = val >> 10;
1023 buf[3] = val >> 2;
1024 break;
1026 case RELOC_32:
1027 buf[0] = val >> 24;
1028 buf[1] = val >> 16;
1029 buf[2] = val >> 8;
1030 buf[3] = val;
1031 break;
1033 default:
1034 as_fatal (_("Bad relocation type"));
1035 break;
1039 #endif /* 0 */
1041 void
1042 md_number_to_disp (buf, val, nbytes)
1043 char *buf;
1044 int val;
1045 int nbytes;
1047 as_fatal (_("md_number_to_disp not defined"));
1048 md_number_to_chars (buf, val, nbytes);
1051 void
1052 md_number_to_field (buf, val, nbytes)
1053 char *buf;
1054 int val;
1055 int nbytes;
1057 as_fatal (_("md_number_to_field not defined"));
1058 md_number_to_chars (buf, val, nbytes);
1061 #define MAX_LITTLENUMS 6
1063 /* Turn a string in input_line_pointer into a floating point constant of type
1064 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
1065 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
1067 char *
1068 md_atof (type, litP, sizeP)
1069 char type;
1070 char *litP;
1071 int *sizeP;
1073 int prec;
1074 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1075 LITTLENUM_TYPE *wordP;
1076 char *t;
1078 switch (type)
1080 case 'f':
1081 case 'F':
1082 case 's':
1083 case 'S':
1084 prec = 2;
1085 break;
1087 case 'd':
1088 case 'D':
1089 case 'r':
1090 case 'R':
1091 prec = 4;
1092 break;
1094 case 'x':
1095 case 'X':
1096 prec = 6;
1097 break;
1099 case 'p':
1100 case 'P':
1101 prec = 6;
1102 break;
1104 default:
1105 *sizeP = 0;
1106 return _("Bad call to MD_ATOF()");
1108 t = atof_ieee (input_line_pointer, type, words);
1109 if (t)
1110 input_line_pointer = t;
1112 *sizeP = prec * sizeof (LITTLENUM_TYPE);
1113 for (wordP = words; prec--;)
1115 md_number_to_chars (litP, (long) (*wordP++), sizeof (LITTLENUM_TYPE));
1116 litP += sizeof (LITTLENUM_TYPE);
1118 return 0;
1121 int md_short_jump_size = 4;
1123 void
1124 md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
1125 char *ptr;
1126 addressT from_addr, to_addr;
1127 fragS *frag;
1128 symbolS *to_symbol;
1130 ptr[0] = (char) 0xc0;
1131 ptr[1] = 0x00;
1132 ptr[2] = 0x00;
1133 ptr[3] = 0x00;
1134 fix_new (frag,
1135 ptr - frag->fr_literal,
1137 to_symbol,
1138 (offsetT) 0,
1140 RELOC_PC26); /* Botch: Shouldn't this be RELOC_PC16? */
1143 int md_long_jump_size = 4;
1145 void
1146 md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
1147 char *ptr;
1148 addressT from_addr, to_addr;
1149 fragS *frag;
1150 symbolS *to_symbol;
1152 ptr[0] = (char) 0xc0;
1153 ptr[1] = 0x00;
1154 ptr[2] = 0x00;
1155 ptr[3] = 0x00;
1156 fix_new (frag,
1157 ptr - frag->fr_literal,
1159 to_symbol,
1160 (offsetT) 0,
1162 RELOC_PC26);
1166 md_estimate_size_before_relax (fragP, segment_type)
1167 fragS *fragP;
1168 segT segment_type;
1170 as_fatal (_("Relaxation should never occur"));
1171 return (-1);
1174 #if 0
1176 /* As far as I can tell, this routine is never called. What is it
1177 doing here?
1178 Ian Taylor, Cygnus Support 13 Jul 1993 */
1182 * Risc relocations are completely different, so it needs
1183 * this machine dependent routine to emit them.
1185 void
1186 emit_relocations (fixP, segment_address_in_file)
1187 fixS *fixP;
1188 relax_addressT segment_address_in_file;
1190 struct reloc_info_m88k ri;
1191 symbolS *symbolP;
1192 extern char *next_object_file_charP;
1194 bzero ((char *) &ri, sizeof (ri));
1195 for (; fixP; fixP = fixP->fx_next)
1197 if (fixP->fx_r_type >= NO_RELOC)
1199 fprintf (stderr, "fixP->fx_r_type = %d\n", fixP->fx_r_type);
1200 abort ();
1203 if ((symbolP = fixP->fx_addsy) != NULL)
1205 ri.r_address = fixP->fx_frag->fr_address +
1206 fixP->fx_where - segment_address_in_file;
1207 if ((symbolP->sy_type & N_TYPE) == N_UNDF)
1209 ri.r_extern = 1;
1210 ri.r_symbolnum = symbolP->sy_number;
1212 else
1214 ri.r_extern = 0;
1215 ri.r_symbolnum = symbolP->sy_type & N_TYPE;
1217 if (symbolP && symbol_get_frag (symbolP))
1219 ri.r_addend = symbol_get_frag (symbolP)->fr_address;
1221 ri.r_type = fixP->fx_r_type;
1222 if (fixP->fx_pcrel)
1224 ri.r_addend -= ri.r_address;
1226 else
1228 ri.r_addend = fixP->fx_addnumber;
1231 append (&next_object_file_charP, (char *) &ri, sizeof (ri));
1236 #endif /* 0 */
1238 #if 0
1240 /* This routine can be subsumed by s_lcomm in read.c.
1241 Ian Taylor, Cygnus Support 13 Jul 1993 */
1244 static void
1245 s_bss ()
1247 char *name;
1248 char c;
1249 char *p;
1250 int temp, bss_align;
1251 symbolS *symbolP;
1253 name = input_line_pointer;
1254 c = get_symbol_end ();
1255 p = input_line_pointer;
1256 *p = c;
1257 SKIP_WHITESPACE ();
1258 if (*input_line_pointer != ',')
1260 as_warn (_("Expected comma after name"));
1261 ignore_rest_of_line ();
1262 return;
1264 input_line_pointer++;
1265 if ((temp = get_absolute_expression ()) < 0)
1267 as_warn (_("BSS length (%d.) <0! Ignored."), temp);
1268 ignore_rest_of_line ();
1269 return;
1271 *p = 0;
1272 symbolP = symbol_find_or_make (name);
1273 *p = c;
1274 if (*input_line_pointer == ',')
1276 input_line_pointer++;
1277 bss_align = get_absolute_expression ();
1279 else
1280 bss_align = 0;
1282 if (!S_IS_DEFINED(symbolP)
1283 || S_GET_SEGMENT(symbolP) == SEG_BSS)
1285 if (! need_pass_2)
1287 char *p;
1288 segT current_seg = now_seg;
1289 subsegT current_subseg = now_subseg;
1291 subseg_set (SEG_BSS, 1); /* switch to bss */
1293 if (bss_align)
1294 frag_align (bss_align, 0, 0);
1296 /* detach from old frag */
1297 if (symbolP->sy_type == N_BSS && symbol_get_frag (symbolP) != NULL)
1298 symbol_get_frag (symbolP)->fr_symbol = NULL;
1300 symbol_set_frag (symbolP, frag_now);
1301 p = frag_var (rs_org, 1, 1, (relax_substateT)0, symbolP,
1302 (offsetT) temp, (char *)0);
1303 *p = 0;
1304 S_SET_SEGMENT (symbolP, SEG_BSS);
1306 subseg_set (current_seg, current_subseg);
1309 else
1311 as_warn (_("Ignoring attempt to re-define symbol %s."), name);
1314 while (!is_end_of_line[(unsigned char) *input_line_pointer])
1316 input_line_pointer++;
1320 #endif /* 0 */
1322 #ifdef M88KCOFF
1324 /* These functions are needed if we are linking with obj-coffbfd.c.
1325 That file may be replaced by a more BFD oriented version at some
1326 point. If that happens, these functions should be rexamined.
1328 Ian Lance Taylor, Cygnus Support, 13 July 1993. */
1330 /* Given a fixS structure (created by a call to fix_new, above),
1331 return the BFD relocation type to use for it. */
1333 short
1334 tc_coff_fix2rtype (fixp)
1335 fixS *fixp;
1337 switch (fixp->fx_r_type)
1339 case RELOC_LO16:
1340 return R_LVRT16;
1341 case RELOC_HI16:
1342 return R_HVRT16;
1343 case RELOC_PC16:
1344 return R_PCR16L;
1345 case RELOC_PC26:
1346 return R_PCR26L;
1347 case RELOC_32:
1348 return R_VRT32;
1349 case RELOC_IW16:
1350 return R_VRT16;
1351 default:
1352 abort ();
1356 /* Apply a fixS to the object file. Since COFF does not use addends
1357 in relocs, the addend is actually stored directly in the object
1358 file itself. */
1360 void
1361 md_apply_fix (fixp, val)
1362 fixS *fixp;
1363 long val;
1365 char *buf;
1367 buf = fixp->fx_frag->fr_literal + fixp->fx_where;
1368 fixp->fx_offset = 0;
1370 switch (fixp->fx_r_type)
1372 case RELOC_IW16:
1373 fixp->fx_offset = val >> 16;
1374 buf[2] = val >> 8;
1375 buf[3] = val;
1376 break;
1378 case RELOC_LO16:
1379 fixp->fx_offset = val >> 16;
1380 buf[0] = val >> 8;
1381 buf[1] = val;
1382 break;
1384 case RELOC_HI16:
1385 fixp->fx_offset = val >> 16;
1386 buf[0] = val >> 8;
1387 buf[1] = val;
1388 break;
1390 case RELOC_PC16:
1391 buf[0] = val >> 10;
1392 buf[1] = val >> 2;
1393 break;
1395 case RELOC_PC26:
1396 buf[0] |= (val >> 26) & 0x03;
1397 buf[1] = val >> 18;
1398 buf[2] = val >> 10;
1399 buf[3] = val >> 2;
1400 break;
1402 case RELOC_32:
1403 buf[0] = val >> 24;
1404 buf[1] = val >> 16;
1405 buf[2] = val >> 8;
1406 buf[3] = val;
1407 break;
1409 default:
1410 abort ();
1414 /* Where a PC relative offset is calculated from. On the m88k they
1415 are calculated from just after the instruction. */
1417 long
1418 md_pcrel_from (fixp)
1419 fixS *fixp;
1421 switch (fixp->fx_r_type)
1423 case RELOC_PC16:
1424 return fixp->fx_frag->fr_address + fixp->fx_where - 2;
1425 case RELOC_PC26:
1426 return fixp->fx_frag->fr_address + fixp->fx_where;
1427 default:
1428 abort ();
1430 /*NOTREACHED*/
1433 /* When we align the .init section, insert the correct NOP pattern. */
1436 m88k_do_align (n, fill, max, len)
1437 int n;
1438 const char *fill;
1439 int len;
1440 int max;
1442 if (fill == NULL
1443 && strcmp (obj_segment_name (now_seg), ".init") == 0)
1445 static const unsigned char nop_pattern[] = { 0xf4, 0x00, 0x58, 0x00 };
1446 frag_align_pattern (n, nop_pattern, sizeof (nop_pattern), max);
1447 return 1;
1449 return 0;
1452 #endif /* M88KCOFF */