1 /* ns32k.c -- Assemble on the National Semiconductor 32k series
2 Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 Free Software Foundation, Inc.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
23 /*#define SHOW_NUM 1*//* Uncomment for debugging. */
28 #include "opcode/ns32k.h"
33 #define IIF_ENTRIES 13 /* Number of entries in iif. */
34 #define PRIVATE_SIZE 256 /* Size of my garbage memory. */
36 #define DEFAULT -1 /* addr_mode returns this value when
37 plain constant or label is
40 #define IIF(ptr,a1,c1,e1,g1,i1,k1,m1,o1,q1,s1,u1) \
41 iif.iifP[ptr].type = a1; \
42 iif.iifP[ptr].size = c1; \
43 iif.iifP[ptr].object = e1; \
44 iif.iifP[ptr].object_adjust = g1; \
45 iif.iifP[ptr].pcrel = i1; \
46 iif.iifP[ptr].pcrel_adjust = k1; \
47 iif.iifP[ptr].im_disp = m1; \
48 iif.iifP[ptr].relax_substate = o1; \
49 iif.iifP[ptr].bit_fixP = q1; \
50 iif.iifP[ptr].addr_mode = s1; \
51 iif.iifP[ptr].bsr = u1;
53 #ifdef SEQUENT_COMPATABILITY
54 #define LINE_COMMENT_CHARS "|"
55 #define ABSOLUTE_PREFIX '@'
56 #define IMMEDIATE_PREFIX '#'
59 #ifndef LINE_COMMENT_CHARS
60 #define LINE_COMMENT_CHARS "#"
63 const char comment_chars
[] = "#";
64 const char line_comment_chars
[] = LINE_COMMENT_CHARS
;
65 const char line_separator_chars
[] = ";";
66 static int default_disp_size
= 4; /* Displacement size for external refs. */
68 #if !defined(ABSOLUTE_PREFIX) && !defined(IMMEDIATE_PREFIX)
69 #define ABSOLUTE_PREFIX '@' /* One or the other MUST be defined. */
74 signed char mode
; /* Addressing mode of operand (0-31). */
75 signed char scaled_mode
; /* Mode combined with scaled mode. */
76 char scaled_reg
; /* Register used in scaled+1 (1-8). */
77 char float_flag
; /* Set if R0..R7 was F0..F7 ie a
78 floating-point-register. */
79 char am_size
; /* Estimated max size of general addr-mode
81 char im_disp
; /* If im_disp==1 we have a displacement. */
82 char pcrel
; /* 1 if pcrel, this is really redundant info. */
83 char disp_suffix
[2]; /* Length of displacement(s), 0=undefined. */
84 char *disp
[2]; /* Pointer(s) at displacement(s)
85 or immediates(s) (ascii). */
86 char index_byte
; /* Index byte. */
88 typedef struct addr_mode addr_modeS
;
90 char *freeptr
, *freeptr_static
; /* Points at some number of free bytes. */
91 struct hash_control
*inst_hash_handle
;
93 struct ns32k_opcode
*desc
; /* Pointer at description of instruction. */
94 addr_modeS addr_modeP
;
95 const char EXP_CHARS
[] = "eE";
96 const char FLT_CHARS
[] = "fd"; /* We don't want to support lowercase,
99 /* UPPERCASE denotes live names when an instruction is built, IIF is
100 used as an intermediate form to store the actual parts of the
101 instruction. A ns32k machine instruction can be divided into a
102 couple of sub PARTs. When an instruction is assembled the
103 appropriate PART get an assignment. When an IIF has been completed
104 it is converted to a FRAGment as specified in AS.H. */
106 /* Internal structs. */
116 int type
; /* How to interpret object. */
117 int size
; /* Estimated max size of object. */
118 unsigned long object
; /* Binary data. */
119 int object_adjust
; /* Number added to object. */
120 int pcrel
; /* True if object is pcrel. */
121 int pcrel_adjust
; /* Length in bytes from the instruction
122 start to the displacement. */
123 int im_disp
; /* True if the object is a displacement. */
124 relax_substateT relax_substate
;/*Initial relaxsubstate. */
125 bit_fixS
*bit_fixP
; /* Pointer at bit_fix struct. */
126 int addr_mode
; /* What addrmode do we associate with this
128 char bsr
; /* Sequent hack. */
129 } iif_entryT
; /* Internal Instruction Format. */
133 int instr_size
; /* Max size of instruction in bytes. */
134 iif_entryT iifP
[IIF_ENTRIES
+ 1];
137 struct int_ins_form iif
;
139 char *input_line_pointer
;
141 /* Description of the PARTs in IIF
143 0 total length in bytes of entries in iif
156 For every entry there is a datalength in bytes. This is stored in size[n].
157 0, the objectlength is not explicitly given by the instruction
158 and the operand is undefined. This is a case for relaxation.
159 Reserve 4 bytes for the final object.
161 1, the entry contains one byte
162 2, the entry contains two bytes
163 3, the entry contains three bytes
164 4, the entry contains four bytes
167 Furthermore, every entry has a data type identifier in type[n].
169 0, the entry is void, ignore it.
170 1, the entry is a binary number.
171 2, the entry is a pointer at an expression.
172 Where expression may be as simple as a single '1',
173 and as complicated as foo-bar+12,
174 foo and bar may be undefined but suffixed by :{b|w|d} to
175 control the length of the object.
177 3, the entry is a pointer at a bignum struct
179 The low-order-byte corresponds to low physical memory.
180 Obviously a FRAGment must be created for each valid disp in PART whose
181 datalength is undefined (to bad) .
182 The case where just the expression is undefined is less severe and is
183 handled by fix. Here the number of bytes in the objectfile is known.
184 With this representation we simplify the assembly and separates the
185 machine dependent/independent parts in a more clean way (said OE). */
187 struct ns32k_option opt1
[] = /* restore, exit. */
199 struct ns32k_option opt2
[] = /* save, enter. */
211 struct ns32k_option opt3
[] = /* setcfg. */
219 struct ns32k_option opt4
[] = /* cinv. */
226 struct ns32k_option opt5
[] = /* String inst. */
233 struct ns32k_option opt6
[] = /* Plain reg ext,cvtp etc. */
246 #if !defined(NS32032) && !defined(NS32532)
250 struct ns32k_option cpureg_532
[] = /* lpr spr. */
263 {"intbase", 0xe, 0xff},
267 struct ns32k_option mmureg_532
[] = /* lmr smr. */
274 {"ivar0", 0xe, 0xff},
275 {"ivar1", 0xf, 0xff},
279 struct ns32k_option cpureg_032
[] = /* lpr spr. */
286 {"intbase", 0xe, 0xff},
290 struct ns32k_option mmureg_032
[] = /* lmr smr. */
306 struct ns32k_option
*cpureg
= cpureg_532
;
307 struct ns32k_option
*mmureg
= mmureg_532
;
309 struct ns32k_option
*cpureg
= cpureg_032
;
310 struct ns32k_option
*mmureg
= mmureg_032
;
314 const pseudo_typeS md_pseudo_table
[] =
315 { /* So far empty. */
319 #define IND(x,y) (((x)<<2)+(y))
321 /* Those are index's to relax groups in md_relax_table ie it must be
322 multiplied by 4 to point at a group start. Viz IND(x,y) Se function
323 relax_segment in write.c for more info. */
328 /* Those are index's to entries in a relax group. */
334 /* Those limits are calculated from the displacement start in memory.
335 The ns32k uses the beginning of the instruction as displacement
336 base. This type of displacements could be handled here by moving
337 the limit window up or down. I choose to use an internal
338 displacement base-adjust as there are other routines that must
339 consider this. Also, as we have two various offset-adjusts in the
340 ns32k (acb versus br/brs/jsr/bcond), two set of limits would have
341 had to be used. Now we dont have to think about that. */
343 const relax_typeS md_relax_table
[] =
350 {(63), (-64), 1, IND (BRANCH
, WORD
)},
351 {(8192), (-8192), 2, IND (BRANCH
, DOUBLE
)},
356 /* Array used to test if mode contains displacements.
357 Value is true if mode contains displacement. */
360 {0, 0, 0, 0, 0, 0, 0, 0,
361 1, 1, 1, 1, 1, 1, 1, 1,
362 1, 1, 1, 0, 0, 1, 1, 0,
363 1, 1, 1, 1, 1, 1, 1, 1};
365 /* Array used to calculate max size of displacements. */
370 /* Parse a general operand into an addressingmode struct
372 In: pointer at operand in ascii form
373 pointer at addr_mode struct for result
374 the level of recursion. (always 0 or 1)
376 Out: data in addr_mode struct. */
379 addr_mode (char *operand
,
380 addr_modeS
*addr_modeP
,
389 mode
= DEFAULT
; /* Default. */
390 addr_modeP
->scaled_mode
= 0; /* Why not. */
391 addr_modeP
->scaled_reg
= 0; /* If 0, not scaled index. */
392 addr_modeP
->float_flag
= 0;
393 addr_modeP
->am_size
= 0;
394 addr_modeP
->im_disp
= 0;
395 addr_modeP
->pcrel
= 0; /* Not set in this function. */
396 addr_modeP
->disp_suffix
[0] = 0;
397 addr_modeP
->disp_suffix
[1] = 0;
398 addr_modeP
->disp
[0] = NULL
;
399 addr_modeP
->disp
[1] = NULL
;
409 /* The following three case statements controls the mode-chars
410 this is the place to ed if you want to change them. */
411 #ifdef ABSOLUTE_PREFIX
412 case ABSOLUTE_PREFIX
:
413 if (str
[strl
- 1] == ']')
415 addr_modeP
->mode
= 21; /* absolute */
416 addr_modeP
->disp
[0] = str
+ 1;
419 #ifdef IMMEDIATE_PREFIX
420 case IMMEDIATE_PREFIX
:
421 if (str
[strl
- 1] == ']')
423 addr_modeP
->mode
= 20; /* immediate */
424 addr_modeP
->disp
[0] = str
+ 1;
428 if (str
[strl
- 1] != ']')
434 if (str
[2] != '\000')
436 addr_modeP
->mode
= 27; /* pc-relative */
437 addr_modeP
->disp
[0] = str
+ 2;
441 as_bad (_("Invalid syntax in PC-relative addressing mode"));
447 if (str
[strl
- 1] != ']')
449 if ((!strncmp (str
, "ext(", 4)) && strl
> 7)
451 addr_modeP
->disp
[0] = str
+ 4;
455 { /* disp[0]'s termination point. */
462 while (j
< strl
&& i
!= 0);
463 if (i
!= 0 || !(str
[j
+ 1] == '-' || str
[j
+ 1] == '+'))
465 as_bad (_("Invalid syntax in External addressing mode"));
468 str
[j
] = '\000'; /* null terminate disp[0] */
469 addr_modeP
->disp
[1] = str
+ j
+ 2;
470 addr_modeP
->mode
= 22;
488 addr_modeP
->float_flag
= 1;
491 if (str
[1] >= '0' && str
[1] < '8')
493 addr_modeP
->mode
= str
[1] - '0';
503 if (!strncmp (str
, "tos", 3))
505 addr_modeP
->mode
= 23; /* TopOfStack */
516 if (str
[strl
- 1] == ')')
518 if (str
[strl
- 2] == ')')
520 if (!strncmp (&str
[strl
- 5], "(fp", 3))
521 mode
= 16; /* Memory Relative. */
522 else if (!strncmp (&str
[strl
- 5], "(sp", 3))
524 else if (!strncmp (&str
[strl
- 5], "(sb", 3))
529 /* Memory relative. */
530 addr_modeP
->mode
= mode
;
531 j
= strl
- 5; /* Temp for end of disp[0]. */
537 if (str
[strl
] == ')')
539 if (str
[strl
] == '(')
542 while (strl
> -1 && i
!= 0);
546 as_bad (_("Invalid syntax in Memory Relative addressing mode"));
550 addr_modeP
->disp
[1] = str
;
551 addr_modeP
->disp
[0] = str
+ strl
+ 1;
552 str
[j
] = '\000'; /* Null terminate disp[0] . */
553 str
[strl
] = '\000'; /* Null terminate disp[1]. */
559 switch (str
[strl
- 3])
563 if (str
[strl
- 2] >= '0'
564 && str
[strl
- 2] < '8'
565 && str
[strl
- 4] == '(')
567 addr_modeP
->mode
= str
[strl
- 2] - '0' + 8;
568 addr_modeP
->disp
[0] = str
;
570 return -1; /* reg rel */
575 if (!strncmp (&str
[strl
- 4], "(fp", 3))
577 else if (!strncmp (&str
[strl
- 4], "(sp", 3))
579 else if (!strncmp (&str
[strl
- 4], "(sb", 3))
581 else if (!strncmp (&str
[strl
- 4], "(pc", 3))
586 addr_modeP
->mode
= mode
;
587 addr_modeP
->disp
[0] = str
;
588 str
[strl
- 4] = '\0';
590 return -1; /* Memory space. */
595 /* No trailing ')' do we have a ']' ? */
596 if (str
[strl
- 1] == ']')
598 switch (str
[strl
- 2])
613 as_bad (_("Invalid scaled-indexed mode, use (b,w,d,q)"));
615 if (str
[strl
- 3] != ':' || str
[strl
- 6] != '['
616 || str
[strl
- 5] == 'r' || str
[strl
- 4] < '0'
617 || str
[strl
- 4] > '7')
618 as_bad (_("Syntax in scaled-indexed mode, use [Rn:m] where n=[0..7] m={b,w,d,q}"));
619 } /* Scaled index. */
621 if (recursive_level
> 0)
623 as_bad (_("Scaled-indexed addressing mode combined with scaled-index"));
627 addr_modeP
->am_size
+= 1; /* scaled index byte. */
628 j
= str
[strl
- 4] - '0'; /* store temporary. */
629 str
[strl
- 6] = '\000'; /* nullterminate for recursive call. */
630 i
= addr_mode (str
, addr_modeP
, 1);
632 if (!i
|| addr_modeP
->mode
== 20)
634 as_bad (_("Invalid or illegal addressing mode combined with scaled-index"));
638 addr_modeP
->scaled_mode
= addr_modeP
->mode
; /* Store the inferior mode. */
639 addr_modeP
->mode
= mode
;
640 addr_modeP
->scaled_reg
= j
+ 1;
646 addr_modeP
->mode
= DEFAULT
; /* Default to whatever. */
647 addr_modeP
->disp
[0] = str
;
653 evaluate_expr (expressionS
*resultP
, char *ptr
)
657 tmp_line
= input_line_pointer
;
658 input_line_pointer
= ptr
;
659 expression (resultP
);
660 input_line_pointer
= tmp_line
;
663 /* ptr points at string addr_modeP points at struct with result This
664 routine calls addr_mode to determine the general addr.mode of the
665 operand. When this is ready it parses the displacements for size
666 specifying suffixes and determines size of immediate mode via
667 ns32k-opcode. Also builds index bytes if needed. */
670 get_addr_mode (char *ptr
, addr_modeS
*addr_modeP
)
674 addr_mode (ptr
, addr_modeP
, 0);
676 if (addr_modeP
->mode
== DEFAULT
|| addr_modeP
->scaled_mode
== -1)
678 /* Resolve ambiguous operands, this shouldn't be necessary if
679 one uses standard NSC operand syntax. But the sequent
680 compiler doesn't!!! This finds a proper addressing mode
681 if it is implicitly stated. See ns32k-opcode.h. */
682 (void) evaluate_expr (&exprP
, ptr
); /* This call takes time Sigh! */
684 if (addr_modeP
->mode
== DEFAULT
)
686 if (exprP
.X_add_symbol
|| exprP
.X_op_symbol
)
687 addr_modeP
->mode
= desc
->default_model
; /* We have a label. */
689 addr_modeP
->mode
= desc
->default_modec
; /* We have a constant. */
693 if (exprP
.X_add_symbol
|| exprP
.X_op_symbol
)
694 addr_modeP
->scaled_mode
= desc
->default_model
;
696 addr_modeP
->scaled_mode
= desc
->default_modec
;
699 /* Must put this mess down in addr_mode to handle the scaled
703 /* It appears as the sequent compiler wants an absolute when we have
704 a label without @. Constants becomes immediates besides the addr
705 case. Think it does so with local labels too, not optimum, pcrel
706 is better. When I have time I will make gas check this and
707 select pcrel when possible Actually that is trivial. */
708 if ((tmp
= addr_modeP
->scaled_reg
))
709 { /* Build indexbyte. */
710 tmp
--; /* Remember regnumber comes incremented for
712 tmp
|= addr_modeP
->scaled_mode
<< 3;
713 addr_modeP
->index_byte
= (char) tmp
;
714 addr_modeP
->am_size
+= 1;
717 assert (addr_modeP
->mode
>= 0);
718 if (disp_test
[(unsigned int) addr_modeP
->mode
])
727 /* There was a displacement, probe for length specifying suffix. */
728 addr_modeP
->pcrel
= 0;
730 assert(addr_modeP
->mode
>= 0);
731 if (disp_test
[(unsigned int) addr_modeP
->mode
])
733 /* There is a displacement. */
734 if (addr_modeP
->mode
== 27 || addr_modeP
->scaled_mode
== 27)
735 /* Do we have pcrel. mode. */
736 addr_modeP
->pcrel
= 1;
738 addr_modeP
->im_disp
= 1;
740 for (i
= 0; i
< 2; i
++)
742 suffix_sub
= suffix
= 0;
744 if ((toP
= addr_modeP
->disp
[i
]))
746 /* Suffix of expression, the largest size rules. */
749 while ((c
= *fromP
++))
757 as_warn (_("Premature end of suffix -- Defaulting to d"));
770 as_warn (_("Bad suffix after ':' use {b|w|d} Defaulting to d"));
775 toP
--; /* So we write over the ':' */
777 if (suffix
< suffix_sub
)
782 *toP
= '\0'; /* Terminate properly. */
783 addr_modeP
->disp_suffix
[i
] = suffix
;
784 addr_modeP
->am_size
+= suffix
? suffix
: 4;
791 if (addr_modeP
->mode
== 20)
793 /* Look in ns32k_opcode for size. */
794 addr_modeP
->disp_suffix
[0] = addr_modeP
->am_size
= desc
->im_size
;
795 addr_modeP
->im_disp
= 0;
799 return addr_modeP
->mode
;
802 /* Read an optionlist. */
805 optlist (char *str
, /* The string to extract options from. */
806 struct ns32k_option
*optionP
, /* How to search the string. */
807 unsigned long *default_map
) /* Default pattern and output. */
809 int i
, j
, k
, strlen1
, strlen2
;
810 char *patternP
, *strP
;
812 strlen1
= strlen (str
);
815 as_fatal (_("Very short instr to option, ie you can't do it on a NULLstr"));
817 for (i
= 0; optionP
[i
].pattern
!= 0; i
++)
819 strlen2
= strlen (optionP
[i
].pattern
);
821 for (j
= 0; j
< strlen1
; j
++)
823 patternP
= optionP
[i
].pattern
;
826 for (k
= 0; k
< strlen2
; k
++)
828 if (*(strP
++) != *(patternP
++))
834 *default_map
|= optionP
[i
].or;
835 *default_map
&= optionP
[i
].and;
841 /* Search struct for symbols.
842 This function is used to get the short integer form of reg names in
843 the instructions lmr, smr, lpr, spr return true if str is found in
847 list_search (char *str
, /* The string to match. */
848 struct ns32k_option
*optionP
, /* List to search. */
849 unsigned long *default_map
) /* Default pattern and output. */
853 for (i
= 0; optionP
[i
].pattern
!= 0; i
++)
855 if (!strncmp (optionP
[i
].pattern
, str
, 20))
857 /* Use strncmp to be safe. */
858 *default_map
|= optionP
[i
].or;
859 *default_map
&= optionP
[i
].and;
865 as_bad (_("No such entry in list. (cpu/mmu register)"));
869 /* Create a bit_fixS in obstack 'notes'.
870 This struct is used to profile the normal fix. If the bit_fixP is a
871 valid pointer (not NULL) the bit_fix data will be used to format
875 bit_fix_new (int size
, /* Length of bitfield. */
876 int offset
, /* Bit offset to bitfield. */
877 long min
, /* Signextended min for bitfield. */
878 long max
, /* Signextended max for bitfield. */
879 long add
, /* Add mask, used for huffman prefix. */
880 long base_type
, /* 0 or 1, if 1 it's exploded to opcode ptr. */
885 bit_fixP
= (bit_fixS
*) obstack_alloc (¬es
, sizeof (bit_fixS
));
887 bit_fixP
->fx_bit_size
= size
;
888 bit_fixP
->fx_bit_offset
= offset
;
889 bit_fixP
->fx_bit_base
= base_type
;
890 bit_fixP
->fx_bit_base_adj
= base_adj
;
891 bit_fixP
->fx_bit_max
= max
;
892 bit_fixP
->fx_bit_min
= min
;
893 bit_fixP
->fx_bit_add
= add
;
898 /* Convert operands to iif-format and adds bitfields to the opcode.
899 Operands are parsed in such an order that the opcode is updated from
900 its most significant bit, that is when the operand need to alter the
902 Be careful not to put to objects in the same iif-slot. */
905 encode_operand (int argc
,
907 const char *operandsP
,
909 char im_size ATTRIBUTE_UNUSED
,
914 int pcrel
, b
, loop
, pcrel_adjust
;
917 for (loop
= 0; loop
< argc
; loop
++)
919 /* What operand are we supposed to work on. */
920 i
= operandsP
[loop
<< 1] - '1';
922 as_fatal (_("Internal consistency error. check ns32k-opcode.h"));
928 switch ((d
= operandsP
[(loop
<< 1) + 1]))
930 case 'f': /* Operand of sfsr turns out to be a nasty
933 case 'Z': /* Float not immediate. */
934 case 'F': /* 32 bit float general form. */
935 case 'L': /* 64 bit float. */
936 case 'I': /* Integer not immediate. */
939 case 'D': /* Double-word. */
940 case 'A': /* Double-word gen-address-form ie no regs
942 get_addr_mode (argv
[i
], &addr_modeP
);
944 if ((addr_modeP
.mode
== 20) &&
945 (d
== 'I' || d
== 'Z' || d
== 'A'))
946 as_fatal (d
== 'A'? _("Address of immediate operand"):
947 _("Invalid immediate write operand."));
949 if (opcode_bit_ptr
== desc
->opcode_size
)
954 for (j
= b
; j
< (b
+ 2); j
++)
956 if (addr_modeP
.disp
[j
- b
])
960 addr_modeP
.disp_suffix
[j
- b
],
961 (unsigned long) addr_modeP
.disp
[j
- b
],
968 (addr_modeP
.scaled_reg
? addr_modeP
.scaled_mode
975 iif
.iifP
[1].object
|= ((long) addr_modeP
.mode
) << opcode_bit_ptr
;
977 if (addr_modeP
.scaled_reg
)
980 IIF (j
, 1, 1, (unsigned long) addr_modeP
.index_byte
,
981 0, 0, 0, 0, 0, NULL
, -1, 0);
985 case 'b': /* Multiple instruction disp. */
986 freeptr
++; /* OVE:this is an useful hack. */
987 sprintf (freeptr
, "((%s-1)*%d)", argv
[i
], desc
->im_size
);
989 pcrel
-= 1; /* Make pcrel 0 in spite of what case 'p':
992 case 'p': /* Displacement - pc relative addressing. */
995 case 'd': /* Displacement. */
996 iif
.instr_size
+= suffixP
[i
] ? suffixP
[i
] : 4;
997 IIF (12, 2, suffixP
[i
], (unsigned long) argv
[i
], 0,
998 pcrel
, pcrel_adjust
, 1, IND (BRANCH
, BYTE
), NULL
, -1, 0);
1000 case 'H': /* Sequent-hack: the linker wants a bit set
1003 iif
.instr_size
+= suffixP
[i
] ? suffixP
[i
] : 4;
1004 IIF (12, 2, suffixP
[i
], (unsigned long) argv
[i
], 0,
1005 pcrel
, pcrel_adjust
, 1, IND (BRANCH
, BYTE
), NULL
, -1, 1);
1007 case 'q': /* quick */
1008 opcode_bit_ptr
-= 4;
1009 IIF (11, 2, 42, (unsigned long) argv
[i
], 0, 0, 0, 0, 0,
1010 bit_fix_new (4, opcode_bit_ptr
, -8, 7, 0, 1, 0), -1, 0);
1012 case 'r': /* Register number (3 bits). */
1013 list_search (argv
[i
], opt6
, &tmp
);
1014 opcode_bit_ptr
-= 3;
1015 iif
.iifP
[1].object
|= tmp
<< opcode_bit_ptr
;
1017 case 'O': /* Setcfg instruction optionslist. */
1018 optlist (argv
[i
], opt3
, &tmp
);
1019 opcode_bit_ptr
-= 4;
1020 iif
.iifP
[1].object
|= tmp
<< 15;
1022 case 'C': /* Cinv instruction optionslist. */
1023 optlist (argv
[i
], opt4
, &tmp
);
1024 opcode_bit_ptr
-= 4;
1025 iif
.iifP
[1].object
|= tmp
<< 15; /* Insert the regtype in opcode. */
1027 case 'S': /* String instruction options list. */
1028 optlist (argv
[i
], opt5
, &tmp
);
1029 opcode_bit_ptr
-= 4;
1030 iif
.iifP
[1].object
|= tmp
<< 15;
1033 case 'U': /* Register list. */
1034 IIF (10, 1, 1, 0, 0, 0, 0, 0, 0, NULL
, -1, 0);
1035 switch (operandsP
[(i
<< 1) + 1])
1037 case 'u': /* Restore, exit. */
1038 optlist (argv
[i
], opt1
, &iif
.iifP
[10].object
);
1040 case 'U': /* Save, enter. */
1041 optlist (argv
[i
], opt2
, &iif
.iifP
[10].object
);
1044 iif
.instr_size
+= 1;
1046 case 'M': /* MMU register. */
1047 list_search (argv
[i
], mmureg
, &tmp
);
1048 opcode_bit_ptr
-= 4;
1049 iif
.iifP
[1].object
|= tmp
<< opcode_bit_ptr
;
1051 case 'P': /* CPU register. */
1052 list_search (argv
[i
], cpureg
, &tmp
);
1053 opcode_bit_ptr
-= 4;
1054 iif
.iifP
[1].object
|= tmp
<< opcode_bit_ptr
;
1056 case 'g': /* Inss exts. */
1057 iif
.instr_size
+= 1; /* 1 byte is allocated after the opcode. */
1059 (unsigned long) argv
[i
], /* i always 2 here. */
1061 bit_fix_new (3, 5, 0, 7, 0, 0, 0), /* A bit_fix is targeted to
1067 (unsigned long) argv
[i
], /* i always 3 here. */
1069 bit_fix_new (5, 0, 1, 32, -1, 0, -1), -1, 0);
1072 iif
.instr_size
+= 1;
1073 b
= 2 + i
; /* Put the extension byte after opcode. */
1074 IIF (b
, 2, 1, 0, 0, 0, 0, 0, 0, 0, -1, 0);
1077 as_fatal (_("Bad opcode-table-option, check in file ns32k-opcode.h"));
1082 /* in: instruction line
1083 out: internal structure of instruction
1084 that has been prepared for direct conversion to fragment(s) and
1085 fixes in a systematical fashion
1086 Return-value = recursive_level. */
1087 /* Build iif of one assembly text line. */
1090 parse (const char *line
, int recursive_level
)
1092 const char *lineptr
;
1093 char c
, suffix_separator
;
1098 char suffix
[MAX_ARGS
], *argv
[MAX_ARGS
]; /* No more than 4 operands. */
1100 if (recursive_level
<= 0)
1102 /* Called from md_assemble. */
1103 for (lineptr
= line
; (*lineptr
) != '\0' && (*lineptr
) != ' '; lineptr
++)
1107 *(char *) lineptr
= '\0';
1109 if (!(desc
= (struct ns32k_opcode
*) hash_find (inst_hash_handle
, line
)))
1110 as_fatal (_("No such opcode"));
1112 *(char *) lineptr
= c
;
1119 if (*desc
->operands
)
1121 if (*lineptr
++ != '\0')
1126 while (*lineptr
!= '\0')
1128 if (desc
->operands
[argc
<< 1])
1131 arg_type
= desc
->operands
[(argc
<< 1) + 1];
1139 /* The operand is supposed to be a displacement. */
1140 /* Hackwarning: do not forget to update the 4
1141 cases above when editing ns32k-opcode.h. */
1142 suffix_separator
= ':';
1145 /* If this char occurs we loose. */
1146 suffix_separator
= '\255';
1150 suffix
[argc
] = 0; /* 0 when no ':' is encountered. */
1151 argv
[argc
] = freeptr
;
1154 while ((c
= *lineptr
) != '\0' && c
!= sep
)
1170 if (c
== suffix_separator
)
1172 /* ':' - label/suffix separator. */
1185 as_warn (_("Bad suffix, defaulting to d"));
1187 if (lineptr
[1] == '\0' || lineptr
[1] == sep
)
1206 if (*lineptr
== '\0')
1212 as_fatal (_("Too many operands passed to instruction"));
1217 if (argc
!= strlen (desc
->operands
) / 2)
1219 if (strlen (desc
->default_args
))
1221 /* We can apply default, don't goof. */
1222 if (parse (desc
->default_args
, 1) != 1)
1223 /* Check error in default. */
1224 as_fatal (_("Wrong numbers of operands in default, check ns32k-opcodes.h"));
1227 as_fatal (_("Wrong number of operands"));
1230 for (i
= 0; i
< IIF_ENTRIES
; i
++)
1231 /* Mark all entries as void. */
1232 iif
.iifP
[i
].type
= 0;
1234 /* Build opcode iif-entry. */
1235 iif
.instr_size
= desc
->opcode_size
/ 8;
1236 IIF (1, 1, iif
.instr_size
, desc
->opcode_seed
, 0, 0, 0, 0, 0, 0, -1, 0);
1238 /* This call encodes operands to iif format. */
1240 encode_operand (argc
, argv
, &desc
->operands
[0],
1241 &suffix
[0], desc
->im_size
, desc
->opcode_size
);
1243 return recursive_level
;
1246 /* This functionality should really be in the bfd library. */
1248 static bfd_reloc_code_real_type
1249 reloc (int size
, int pcrel
, int type
)
1252 bfd_reloc_code_real_type relocs
[] =
1254 BFD_RELOC_NS32K_IMM_8
,
1255 BFD_RELOC_NS32K_IMM_16
,
1256 BFD_RELOC_NS32K_IMM_32
,
1257 BFD_RELOC_NS32K_IMM_8_PCREL
,
1258 BFD_RELOC_NS32K_IMM_16_PCREL
,
1259 BFD_RELOC_NS32K_IMM_32_PCREL
,
1261 /* ns32k displacements. */
1262 BFD_RELOC_NS32K_DISP_8
,
1263 BFD_RELOC_NS32K_DISP_16
,
1264 BFD_RELOC_NS32K_DISP_32
,
1265 BFD_RELOC_NS32K_DISP_8_PCREL
,
1266 BFD_RELOC_NS32K_DISP_16_PCREL
,
1267 BFD_RELOC_NS32K_DISP_32_PCREL
,
1269 /* Normal 2's complement. */
1294 index
= length
+ 3 * pcrel
+ 6 * type
;
1296 if (index
>= 0 && (unsigned int) index
< sizeof (relocs
) / sizeof (relocs
[0]))
1297 return relocs
[index
];
1300 as_bad (_("Can not do %d byte pc-relative relocation for storage type %d"),
1303 as_bad (_("Can not do %d byte relocation for storage type %d"),
1306 return BFD_RELOC_NONE
;
1311 fix_new_ns32k (fragS
*frag
, /* Which frag? */
1312 int where
, /* Where in that frag? */
1313 int size
, /* 1, 2 or 4 usually. */
1314 symbolS
*add_symbol
, /* X_add_symbol. */
1315 long offset
, /* X_add_number. */
1316 int pcrel
, /* True if PC-relative relocation. */
1317 char im_disp
, /* True if the value to write is a
1319 bit_fixS
*bit_fixP
, /* Pointer at struct of bit_fix's, ignored if
1321 char bsr
, /* Sequent-linker-hack: 1 when relocobject is
1324 unsigned int opcode_offset
)
1326 fixS
*fixP
= fix_new (frag
, where
, size
, add_symbol
,
1328 bit_fixP
? NO_RELOC
: reloc (size
, pcrel
, im_disp
)
1331 fix_opcode_frag (fixP
) = opcode_frag
;
1332 fix_opcode_offset (fixP
) = opcode_offset
;
1333 fix_im_disp (fixP
) = im_disp
;
1334 fix_bsr (fixP
) = bsr
;
1335 fix_bit_fixP (fixP
) = bit_fixP
;
1336 /* We have a MD overflow check for displacements. */
1337 fixP
->fx_no_overflow
= (im_disp
!= 0);
1341 fix_new_ns32k_exp (fragS
*frag
, /* Which frag? */
1342 int where
, /* Where in that frag? */
1343 int size
, /* 1, 2 or 4 usually. */
1344 expressionS
*exp
, /* Expression. */
1345 int pcrel
, /* True if PC-relative relocation. */
1346 char im_disp
, /* True if the value to write is a
1348 bit_fixS
*bit_fixP
, /* Pointer at struct of bit_fix's, ignored if
1350 char bsr
, /* Sequent-linker-hack: 1 when relocobject is
1353 unsigned int opcode_offset
)
1355 fixS
*fixP
= fix_new_exp (frag
, where
, size
, exp
, pcrel
,
1356 bit_fixP
? NO_RELOC
: reloc (size
, pcrel
, im_disp
)
1359 fix_opcode_frag (fixP
) = opcode_frag
;
1360 fix_opcode_offset (fixP
) = opcode_offset
;
1361 fix_im_disp (fixP
) = im_disp
;
1362 fix_bsr (fixP
) = bsr
;
1363 fix_bit_fixP (fixP
) = bit_fixP
;
1364 /* We have a MD overflow check for displacements. */
1365 fixP
->fx_no_overflow
= (im_disp
!= 0);
1368 /* Convert number to chars in correct order. */
1371 md_number_to_chars (char *buf
, valueT value
, int nbytes
)
1373 number_to_chars_littleendian (buf
, value
, nbytes
);
1376 /* This is a variant of md_numbers_to_chars. The reason for its'
1377 existence is the fact that ns32k uses Huffman coded
1378 displacements. This implies that the bit order is reversed in
1379 displacements and that they are prefixed with a size-tag.
1383 10xxxxxx xxxxxxxx word
1384 11xxxxxx xxxxxxxx xxxxxxxx xxxxxxxx double word
1386 This must be taken care of and we do it here! */
1389 md_number_to_disp (char *buf
, long val
, int n
)
1394 if (val
< -64 || val
> 63)
1395 as_bad (_("value of %ld out of byte displacement range."), val
);
1398 printf ("%x ", val
& 0xff);
1404 if (val
< -8192 || val
> 8191)
1405 as_bad (_("value of %ld out of word displacement range."), val
);
1409 printf ("%x ", val
>> 8 & 0xff);
1411 *buf
++ = (val
>> 8);
1413 printf ("%x ", val
& 0xff);
1419 if (val
< -0x20000000 || val
>= 0x20000000)
1420 as_bad (_("value of %ld out of double word displacement range."), val
);
1423 printf ("%x ", val
>> 24 & 0xff);
1425 *buf
++ = (val
>> 24);
1427 printf ("%x ", val
>> 16 & 0xff);
1429 *buf
++ = (val
>> 16);
1431 printf ("%x ", val
>> 8 & 0xff);
1433 *buf
++ = (val
>> 8);
1435 printf ("%x ", val
& 0xff);
1441 as_fatal (_("Internal logic error. line %d, file \"%s\""),
1442 __LINE__
, __FILE__
);
1447 md_number_to_imm (char *buf
, long val
, int n
)
1453 printf ("%x ", val
& 0xff);
1460 printf ("%x ", val
>> 8 & 0xff);
1462 *buf
++ = (val
>> 8);
1464 printf ("%x ", val
& 0xff);
1471 printf ("%x ", val
>> 24 & 0xff);
1473 *buf
++ = (val
>> 24);
1475 printf ("%x ", val
>> 16 & 0xff);
1477 *buf
++ = (val
>> 16);
1479 printf ("%x ", val
>> 8 & 0xff);
1481 *buf
++ = (val
>> 8);
1483 printf ("%x ", val
& 0xff);
1489 as_fatal (_("Internal logic error. line %d, file \"%s\""),
1490 __LINE__
, __FILE__
);
1494 /* Fast bitfiddling support. */
1495 /* Mask used to zero bitfield before oring in the true field. */
1497 static unsigned long l_mask
[] =
1499 0xffffffff, 0xfffffffe, 0xfffffffc, 0xfffffff8,
1500 0xfffffff0, 0xffffffe0, 0xffffffc0, 0xffffff80,
1501 0xffffff00, 0xfffffe00, 0xfffffc00, 0xfffff800,
1502 0xfffff000, 0xffffe000, 0xffffc000, 0xffff8000,
1503 0xffff0000, 0xfffe0000, 0xfffc0000, 0xfff80000,
1504 0xfff00000, 0xffe00000, 0xffc00000, 0xff800000,
1505 0xff000000, 0xfe000000, 0xfc000000, 0xf8000000,
1506 0xf0000000, 0xe0000000, 0xc0000000, 0x80000000,
1508 static unsigned long r_mask
[] =
1510 0x00000000, 0x00000001, 0x00000003, 0x00000007,
1511 0x0000000f, 0x0000001f, 0x0000003f, 0x0000007f,
1512 0x000000ff, 0x000001ff, 0x000003ff, 0x000007ff,
1513 0x00000fff, 0x00001fff, 0x00003fff, 0x00007fff,
1514 0x0000ffff, 0x0001ffff, 0x0003ffff, 0x0007ffff,
1515 0x000fffff, 0x001fffff, 0x003fffff, 0x007fffff,
1516 0x00ffffff, 0x01ffffff, 0x03ffffff, 0x07ffffff,
1517 0x0fffffff, 0x1fffffff, 0x3fffffff, 0x7fffffff,
1519 #define MASK_BITS 31
1520 /* Insert bitfield described by field_ptr and val at buf
1521 This routine is written for modification of the first 4 bytes pointed
1522 to by buf, to yield speed.
1523 The ifdef stuff is for selection between a ns32k-dependent routine
1524 and a general version. (My advice: use the general version!). */
1527 md_number_to_field (char *buf
, long val
, bit_fixS
*field_ptr
)
1529 unsigned long object
;
1531 /* Define ENDIAN on a ns32k machine. */
1533 unsigned long *mem_ptr
;
1538 if (field_ptr
->fx_bit_min
<= val
&& val
<= field_ptr
->fx_bit_max
)
1541 if (field_ptr
->fx_bit_base
)
1543 mem_ptr
= (unsigned long *) field_ptr
->fx_bit_base
;
1545 mem_ptr
= (unsigned long *) buf
;
1547 mem_ptr
= ((unsigned long *)
1548 ((char *) mem_ptr
+ field_ptr
->fx_bit_base_adj
));
1550 if (field_ptr
->fx_bit_base
)
1551 mem_ptr
= (char *) field_ptr
->fx_bit_base
;
1555 mem_ptr
+= field_ptr
->fx_bit_base_adj
;
1558 /* We have a nice ns32k machine with lowbyte at low-physical mem. */
1559 object
= *mem_ptr
; /* get some bytes */
1560 #else /* OVE Goof! the machine is a m68k or dito. */
1561 /* That takes more byte fiddling. */
1563 object
|= mem_ptr
[3] & 0xff;
1565 object
|= mem_ptr
[2] & 0xff;
1567 object
|= mem_ptr
[1] & 0xff;
1569 object
|= mem_ptr
[0] & 0xff;
1572 mask
|= (r_mask
[field_ptr
->fx_bit_offset
]);
1573 mask
|= (l_mask
[field_ptr
->fx_bit_offset
+ field_ptr
->fx_bit_size
]);
1575 val
+= field_ptr
->fx_bit_add
;
1576 object
|= ((val
<< field_ptr
->fx_bit_offset
) & (mask
^ 0xffffffff));
1580 mem_ptr
[0] = (char) object
;
1582 mem_ptr
[1] = (char) object
;
1584 mem_ptr
[2] = (char) object
;
1586 mem_ptr
[3] = (char) object
;
1590 as_bad (_("Bit field out of range"));
1593 /* Convert iif to fragments. From this point we start to dribble with
1594 functions in other files than this one.(Except hash.c) So, if it's
1595 possible to make an iif for an other CPU, you don't need to know
1596 what frags, relax, obstacks, etc is in order to port this
1597 assembler. You only need to know if it's possible to reduce your
1598 cpu-instruction to iif-format (takes some work) and adopt the other
1599 md_? parts according to given instructions Note that iif was
1600 invented for the clean ns32k`s architecture. */
1602 /* GAS for the ns32k has a problem. PC relative displacements are
1603 relative to the address of the opcode, not the address of the
1604 operand. We used to keep track of the offset between the operand
1605 and the opcode in pcrel_adjust for each frag and each fix. However,
1606 we get into trouble where there are two or more pc-relative
1607 operands and the size of the first one can't be determined. Then in
1608 the relax phase, the size of the first operand will change and
1609 pcrel_adjust will no longer be correct. The current solution is
1610 keep a pointer to the frag with the opcode in it and the offset in
1611 that frag for each frag and each fix. Then, when needed, we can
1612 always figure out how far it is between the opcode and the pcrel
1613 object. See also md_pcrel_adjust and md_fix_pcrel_adjust. For
1614 objects not part of an instruction, the pointer to the opcode frag
1623 unsigned int inst_offset
;
1631 frag_grow (iif
.instr_size
); /* This is important. */
1632 memP
= frag_more (0);
1634 inst_offset
= (memP
- frag_now
->fr_literal
);
1635 inst_frag
= frag_now
;
1637 for (i
= 0; i
< IIF_ENTRIES
; i
++)
1639 if ((type
= iif
.iifP
[i
].type
))
1641 /* The object exist, so handle it. */
1642 switch (size
= iif
.iifP
[i
].size
)
1646 /* It's a bitfix that operates on an existing object. */
1647 if (iif
.iifP
[i
].bit_fixP
->fx_bit_base
)
1648 /* Expand fx_bit_base to point at opcode. */
1649 iif
.iifP
[i
].bit_fixP
->fx_bit_base
= (long) inst_opcode
;
1652 case 8: /* bignum or doublefloat. */
1657 /* The final size in objectmemory is known. */
1658 memP
= frag_more (size
);
1659 j
= iif
.iifP
[i
].bit_fixP
;
1663 case 1: /* The object is pure binary. */
1665 md_number_to_field (memP
, exprP
.X_add_number
, j
);
1667 else if (iif
.iifP
[i
].pcrel
)
1668 fix_new_ns32k (frag_now
,
1669 (long) (memP
- frag_now
->fr_literal
),
1674 iif
.iifP
[i
].im_disp
,
1676 iif
.iifP
[i
].bsr
, /* Sequent hack. */
1677 inst_frag
, inst_offset
);
1680 /* Good, just put them bytes out. */
1681 switch (iif
.iifP
[i
].im_disp
)
1684 md_number_to_chars (memP
, iif
.iifP
[i
].object
, size
);
1687 md_number_to_disp (memP
, iif
.iifP
[i
].object
, size
);
1690 as_fatal (_("iif convert internal pcrel/binary"));
1696 /* The object is a pointer at an expression, so
1697 unpack it, note that bignums may result from the
1699 evaluate_expr (&exprP
, (char *) iif
.iifP
[i
].object
);
1700 if (exprP
.X_op
== O_big
|| size
== 8)
1702 if ((k
= exprP
.X_add_number
) > 0)
1704 /* We have a bignum ie a quad. This can only
1705 happens in a long suffixed instruction. */
1707 as_bad (_("Bignum too big for long"));
1712 for (l
= 0; k
> 0; k
--, l
+= 2)
1713 md_number_to_chars (memP
+ l
,
1714 generic_bignum
[l
>> 1],
1715 sizeof (LITTLENUM_TYPE
));
1720 LITTLENUM_TYPE words
[4];
1725 gen_to_words (words
, 2, 8);
1726 md_number_to_imm (memP
, (long) words
[0],
1727 sizeof (LITTLENUM_TYPE
));
1728 md_number_to_imm (memP
+ sizeof (LITTLENUM_TYPE
),
1730 sizeof (LITTLENUM_TYPE
));
1733 gen_to_words (words
, 4, 11);
1734 md_number_to_imm (memP
, (long) words
[0],
1735 sizeof (LITTLENUM_TYPE
));
1736 md_number_to_imm (memP
+ sizeof (LITTLENUM_TYPE
),
1738 sizeof (LITTLENUM_TYPE
));
1739 md_number_to_imm ((memP
+ 2
1740 * sizeof (LITTLENUM_TYPE
)),
1742 sizeof (LITTLENUM_TYPE
));
1743 md_number_to_imm ((memP
+ 3
1744 * sizeof (LITTLENUM_TYPE
)),
1746 sizeof (LITTLENUM_TYPE
));
1752 if (exprP
.X_add_symbol
||
1753 exprP
.X_op_symbol
||
1756 /* The expression was undefined due to an
1757 undefined label. Create a fix so we can fix
1758 the object later. */
1759 exprP
.X_add_number
+= iif
.iifP
[i
].object_adjust
;
1760 fix_new_ns32k_exp (frag_now
,
1761 (long) (memP
- frag_now
->fr_literal
),
1765 iif
.iifP
[i
].im_disp
,
1768 inst_frag
, inst_offset
);
1771 md_number_to_field (memP
, exprP
.X_add_number
, j
);
1774 /* Good, just put them bytes out. */
1775 switch (iif
.iifP
[i
].im_disp
)
1778 md_number_to_imm (memP
, exprP
.X_add_number
, size
);
1781 md_number_to_disp (memP
, exprP
.X_add_number
, size
);
1784 as_fatal (_("iif convert internal pcrel/pointer"));
1789 as_fatal (_("Internal logic error in iif.iifP[n].type"));
1794 /* Too bad, the object may be undefined as far as its
1795 final nsize in object memory is concerned. The size
1796 of the object in objectmemory is not explicitly
1797 given. If the object is defined its length can be
1798 determined and a fix can replace the frag. */
1800 evaluate_expr (&exprP
, (char *) iif
.iifP
[i
].object
);
1802 if ((exprP
.X_add_symbol
|| exprP
.X_op_symbol
) &&
1805 /* Size is unknown until link time so have to default. */
1806 size
= default_disp_size
; /* Normally 4 bytes. */
1807 memP
= frag_more (size
);
1808 fix_new_ns32k_exp (frag_now
,
1809 (long) (memP
- frag_now
->fr_literal
),
1812 0, /* never iif.iifP[i].pcrel, */
1813 1, /* always iif.iifP[i].im_disp */
1817 break; /* Exit this absolute hack. */
1820 if (exprP
.X_add_symbol
|| exprP
.X_op_symbol
)
1823 if (exprP
.X_op_symbol
)
1824 /* We cant relax this case. */
1825 as_fatal (_("Can't relax difference"));
1828 /* Size is not important. This gets fixed by
1829 relax, but we assume 0 in what follows. */
1830 memP
= frag_more (4); /* Max size. */
1834 fragS
*old_frag
= frag_now
;
1835 frag_variant (rs_machine_dependent
,
1838 IND (BRANCH
, UNDEF
), /* Expecting
1843 frag_opcode_frag (old_frag
) = inst_frag
;
1844 frag_opcode_offset (old_frag
) = inst_offset
;
1845 frag_bsr (old_frag
) = iif
.iifP
[i
].bsr
;
1851 /* This duplicates code in md_number_to_disp. */
1852 if (-64 <= exprP
.X_add_number
&& exprP
.X_add_number
<= 63)
1856 if (-8192 <= exprP
.X_add_number
1857 && exprP
.X_add_number
<= 8191)
1861 if (-0x20000000 <= exprP
.X_add_number
1862 && exprP
.X_add_number
<=0x1fffffff)
1866 as_bad (_("Displacement to large for :d"));
1872 memP
= frag_more (size
);
1873 md_number_to_disp (memP
, exprP
.X_add_number
, size
);
1879 as_fatal (_("Internal logic error in iif.iifP[].type"));
1886 md_assemble (char *line
)
1888 freeptr
= freeptr_static
;
1889 parse (line
, 0); /* Explode line to more fix form in iif. */
1890 convert_iif (); /* Convert iif to frags, fix's etc. */
1892 printf (" \t\t\t%s\n", line
);
1899 /* Build a hashtable of the instructions. */
1900 const struct ns32k_opcode
*ptr
;
1902 const struct ns32k_opcode
*endop
;
1904 inst_hash_handle
= hash_new ();
1906 endop
= ns32k_opcodes
+ sizeof (ns32k_opcodes
) / sizeof (ns32k_opcodes
[0]);
1907 for (ptr
= ns32k_opcodes
; ptr
< endop
; ptr
++)
1909 if ((stat
= hash_insert (inst_hash_handle
, ptr
->name
, (char *) ptr
)))
1911 as_fatal (_("Can't hash %s: %s"), ptr
->name
, stat
);
1914 /* Some private space please! */
1915 freeptr_static
= (char *) malloc (PRIVATE_SIZE
);
1918 /* Must be equal to MAX_PRECISON in atof-ieee.c. */
1919 #define MAX_LITTLENUMS 6
1921 /* Turn the string pointed to by litP into a floating point constant
1922 of type TYPE, and emit the appropriate bytes. The number of
1923 LITTLENUMS emitted is stored in *SIZEP. An error message is
1924 returned, or NULL on OK. */
1927 md_atof (int type
, char *litP
, int *sizeP
)
1930 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
1931 LITTLENUM_TYPE
*wordP
;
1945 return _("Bad call to MD_ATOF()");
1948 t
= atof_ieee (input_line_pointer
, type
, words
);
1950 input_line_pointer
= t
;
1952 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
1954 for (wordP
= words
+ prec
; prec
--;)
1956 md_number_to_chars (litP
, (long) (*--wordP
), sizeof (LITTLENUM_TYPE
));
1957 litP
+= sizeof (LITTLENUM_TYPE
);
1964 md_pcrel_adjust (fragS
*fragP
)
1967 addressT opcode_address
;
1968 unsigned int offset
;
1970 opcode_frag
= frag_opcode_frag (fragP
);
1971 if (opcode_frag
== 0)
1974 offset
= frag_opcode_offset (fragP
);
1975 opcode_address
= offset
+ opcode_frag
->fr_address
;
1977 return fragP
->fr_address
+ fragP
->fr_fix
- opcode_address
;
1981 md_fix_pcrel_adjust (fixS
*fixP
)
1984 addressT opcode_address
;
1985 unsigned int offset
;
1987 opcode_frag
= fix_opcode_frag (fixP
);
1988 if (opcode_frag
== 0)
1991 offset
= fix_opcode_offset (fixP
);
1992 opcode_address
= offset
+ opcode_frag
->fr_address
;
1994 return fixP
->fx_where
+ fixP
->fx_frag
->fr_address
- opcode_address
;
1997 /* Apply a fixS (fixup of an instruction or data that we didn't have
1998 enough info to complete immediately) to the data in a frag.
2000 On the ns32k, everything is in a different format, so we have broken
2001 out separate functions for each kind of thing we could be fixing.
2002 They all get called from here. */
2005 md_apply_fix (fixS
*fixP
, valueT
* valP
, segT seg ATTRIBUTE_UNUSED
)
2007 long val
= * (long *) valP
;
2008 char *buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
2010 if (fix_bit_fixP (fixP
))
2011 /* Bitfields to fix, sigh. */
2012 md_number_to_field (buf
, val
, fix_bit_fixP (fixP
));
2013 else switch (fix_im_disp (fixP
))
2016 /* Immediate field. */
2017 md_number_to_imm (buf
, val
, fixP
->fx_size
);
2021 /* Displacement field. */
2022 /* Calculate offset. */
2023 md_number_to_disp (buf
,
2024 (fixP
->fx_pcrel
? val
+ md_fix_pcrel_adjust (fixP
)
2025 : val
), fixP
->fx_size
);
2029 /* Pointer in a data object. */
2030 md_number_to_chars (buf
, val
, fixP
->fx_size
);
2034 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
2038 /* Convert a relaxed displacement to ditto in final output. */
2041 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
,
2042 segT sec ATTRIBUTE_UNUSED
,
2047 /* Address in gas core of the place to store the displacement. */
2048 char *buffer_address
= fragP
->fr_fix
+ fragP
->fr_literal
;
2049 /* Address in object code of the displacement. */
2052 switch (fragP
->fr_subtype
)
2054 case IND (BRANCH
, BYTE
):
2057 case IND (BRANCH
, WORD
):
2060 case IND (BRANCH
, DOUBLE
):
2068 know (fragP
->fr_symbol
);
2070 object_address
= fragP
->fr_fix
+ fragP
->fr_address
;
2072 /* The displacement of the address, from current location. */
2073 disp
= (S_GET_VALUE (fragP
->fr_symbol
) + fragP
->fr_offset
) - object_address
;
2074 disp
+= md_pcrel_adjust (fragP
);
2076 md_number_to_disp (buffer_address
, (long) disp
, (int) ext
);
2077 fragP
->fr_fix
+= ext
;
2080 /* This function returns the estimated size a variable object will occupy,
2081 one can say that we tries to guess the size of the objects before we
2082 actually know it. */
2085 md_estimate_size_before_relax (fragS
*fragP
, segT segment
)
2087 if (fragP
->fr_subtype
== IND (BRANCH
, UNDEF
))
2089 if (S_GET_SEGMENT (fragP
->fr_symbol
) != segment
)
2091 /* We don't relax symbols defined in another segment. The
2092 thing to do is to assume the object will occupy 4 bytes. */
2093 fix_new_ns32k (fragP
,
2094 (int) (fragP
->fr_fix
),
2101 frag_bsr(fragP
), /* Sequent hack. */
2102 frag_opcode_frag (fragP
),
2103 frag_opcode_offset (fragP
));
2109 /* Relaxable case. Set up the initial guess for the variable
2110 part of the frag. */
2111 fragP
->fr_subtype
= IND (BRANCH
, BYTE
);
2114 if (fragP
->fr_subtype
>= sizeof (md_relax_table
) / sizeof (md_relax_table
[0]))
2117 /* Return the size of the variable part of the frag. */
2118 return md_relax_table
[fragP
->fr_subtype
].rlx_length
;
2121 int md_short_jump_size
= 3;
2122 int md_long_jump_size
= 5;
2125 md_create_short_jump (char *ptr
,
2128 fragS
*frag ATTRIBUTE_UNUSED
,
2129 symbolS
*to_symbol ATTRIBUTE_UNUSED
)
2133 offset
= to_addr
- from_addr
;
2134 md_number_to_chars (ptr
, (valueT
) 0xEA, 1);
2135 md_number_to_disp (ptr
+ 1, (valueT
) offset
, 2);
2139 md_create_long_jump (char *ptr
,
2142 fragS
*frag ATTRIBUTE_UNUSED
,
2143 symbolS
*to_symbol ATTRIBUTE_UNUSED
)
2147 offset
= to_addr
- from_addr
;
2148 md_number_to_chars (ptr
, (valueT
) 0xEA, 1);
2149 md_number_to_disp (ptr
+ 1, (valueT
) offset
, 4);
2152 const char *md_shortopts
= "m:";
2154 struct option md_longopts
[] =
2156 #define OPTION_DISP_SIZE (OPTION_MD_BASE)
2157 {"disp-size-default", required_argument
, NULL
, OPTION_DISP_SIZE
},
2158 {NULL
, no_argument
, NULL
, 0}
2161 size_t md_longopts_size
= sizeof (md_longopts
);
2164 md_parse_option (int c
, char *arg
)
2169 if (!strcmp (arg
, "32032"))
2171 cpureg
= cpureg_032
;
2172 mmureg
= mmureg_032
;
2174 else if (!strcmp (arg
, "32532"))
2176 cpureg
= cpureg_532
;
2177 mmureg
= mmureg_532
;
2181 as_warn (_("invalid architecture option -m%s, ignored"), arg
);
2185 case OPTION_DISP_SIZE
:
2187 int size
= atoi(arg
);
2190 case 1: case 2: case 4:
2191 default_disp_size
= size
;
2194 as_warn (_("invalid default displacement size \"%s\". Defaulting to %d."),
2195 arg
, default_disp_size
);
2208 md_show_usage (FILE *stream
)
2210 fprintf (stream
, _("\
2212 -m32032 | -m32532 select variant of NS32K architecture\n\
2213 --disp-size-default=<1|2|4>\n"));
2216 /* This is TC_CONS_FIX_NEW, called by emit_expr in read.c. */
2219 cons_fix_new_ns32k (fragS
*frag
, /* Which frag? */
2220 int where
, /* Where in that frag? */
2221 int size
, /* 1, 2 or 4 usually. */
2222 expressionS
*exp
) /* Expression. */
2224 fix_new_ns32k_exp (frag
, where
, size
, exp
,
2228 /* We have no need to default values of symbols. */
2231 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
2236 /* Round up a section size to the appropriate boundary. */
2239 md_section_align (segT segment ATTRIBUTE_UNUSED
, valueT size
)
2241 return size
; /* Byte alignment is fine. */
2244 /* Exactly what point is a PC-relative offset relative TO? On the
2245 ns32k, they're relative to the start of the instruction. */
2248 md_pcrel_from (fixS
*fixP
)
2252 res
= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
2253 #ifdef SEQUENT_COMPATABILITY
2254 if (frag_bsr (fixP
->fx_frag
))
2255 res
+= 0x12 /* FOO Kludge alert! */
2261 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
2264 bfd_reloc_code_real_type code
;
2266 code
= reloc (fixp
->fx_size
, fixp
->fx_pcrel
, fix_im_disp (fixp
));
2268 rel
= xmalloc (sizeof (arelent
));
2269 rel
->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
2270 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
2271 rel
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
2273 rel
->addend
= fixp
->fx_addnumber
;
2277 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, code
);
2282 name
= S_GET_NAME (fixp
->fx_addsy
);
2284 name
= _("<unknown>");
2285 as_fatal (_("Cannot find relocation type for symbol %s, code %d"),