1 /* tc-i960.c - All the i80960-specific stuff
2 Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007
4 Free Software Foundation, Inc.
6 This file is part of GAS.
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 3, 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 /* See comment on md_parse_option for 80960-specific invocation options. */
25 /* There are 4 different lengths of (potentially) symbol-based displacements
26 in the 80960 instruction set, each of which could require address fix-ups
27 and (in the case of external symbols) emission of relocation directives:
30 This is a standard length for the base assembler and requires no
34 This is a non-standard length, but the base assembler has a
35 hook for bit field address fixups: the fixS structure can
36 point to a descriptor of the field, in which case our
37 md_number_to_field() routine gets called to process it.
39 I made the hook a little cleaner by having fix_new() (in the base
40 assembler) return a pointer to the fixS in question. And I made it a
41 little simpler by storing the field size (in this case 13) instead of
42 of a pointer to another structure: 80960 displacements are ALWAYS
43 stored in the low-order bits of a 4-byte word.
45 Since the target of a COBR cannot be external, no relocation
46 directives for this size displacement have to be generated.
47 But the base assembler had to be modified to issue error
48 messages if the symbol did turn out to be external.
51 Fixups are handled as for the 13-bit case (except that 24 is stored
54 The relocation directive generated is the same as that for the 32-bit
55 displacement, except that it's PC-relative (the 32-bit displacement
56 never is). The i80960 version of the linker needs a mod to
57 distinguish and handle the 24-bit case.
60 MEMA formats are always promoted to MEMB (32-bit) if the displacement
61 is based on a symbol, because it could be relocated at link time.
62 The only time we use the 12-bit format is if an absolute value of
63 less than 4096 is specified, in which case we need neither a fixup nor
64 a relocation directive. */
68 #include "safe-ctype.h"
71 #include "opcode/i960.h"
73 #if defined (OBJ_AOUT) || defined (OBJ_BOUT)
75 #define TC_S_IS_SYSPROC(s) ((1 <= S_GET_OTHER (s)) && (S_GET_OTHER (s) <= 32))
76 #define TC_S_IS_BALNAME(s) (S_GET_OTHER (s) == N_BALNAME)
77 #define TC_S_IS_CALLNAME(s) (S_GET_OTHER (s) == N_CALLNAME)
78 #define TC_S_IS_BADPROC(s) ((S_GET_OTHER (s) != 0) && !TC_S_IS_CALLNAME (s) && !TC_S_IS_BALNAME (s) && !TC_S_IS_SYSPROC (s))
80 #define TC_S_SET_SYSPROC(s, p) (S_SET_OTHER ((s), (p) + 1))
81 #define TC_S_GET_SYSPROC(s) (S_GET_OTHER (s) - 1)
83 #define TC_S_FORCE_TO_BALNAME(s) (S_SET_OTHER ((s), N_BALNAME))
84 #define TC_S_FORCE_TO_CALLNAME(s) (S_SET_OTHER ((s), N_CALLNAME))
85 #define TC_S_FORCE_TO_SYSPROC(s) {;}
87 #else /* ! OBJ_A/BOUT */
90 #define TC_S_IS_SYSPROC(s) (S_GET_STORAGE_CLASS (s) == C_SCALL)
91 #define TC_S_IS_BALNAME(s) (SF_GET_BALNAME (s))
92 #define TC_S_IS_CALLNAME(s) (SF_GET_CALLNAME (s))
93 #define TC_S_IS_BADPROC(s) (TC_S_IS_SYSPROC (s) && TC_S_GET_SYSPROC (s) < 0 && 31 < TC_S_GET_SYSPROC (s))
95 #define TC_S_SET_SYSPROC(s, p) ((s)->sy_symbol.ost_auxent[1].x_sc.x_stindx = (p))
96 #define TC_S_GET_SYSPROC(s) ((s)->sy_symbol.ost_auxent[1].x_sc.x_stindx)
98 #define TC_S_FORCE_TO_BALNAME(s) (SF_SET_BALNAME (s))
99 #define TC_S_FORCE_TO_CALLNAME(s) (SF_SET_CALLNAME (s))
100 #define TC_S_FORCE_TO_SYSPROC(s) (S_SET_STORAGE_CLASS ((s), C_SCALL))
102 #else /* ! OBJ_COFF */
104 #define TC_S_IS_SYSPROC(s) 0
106 #define TC_S_IS_BALNAME(s) 0
107 #define TC_S_IS_CALLNAME(s) 0
108 #define TC_S_IS_BADPROC(s) 0
110 #define TC_S_SET_SYSPROC(s, p)
111 #define TC_S_GET_SYSPROC(s) 0
113 #define TC_S_FORCE_TO_BALNAME(s)
114 #define TC_S_FORCE_TO_CALLNAME(s)
115 #define TC_S_FORCE_TO_SYSPROC(s)
117 #error COFF, a.out, b.out, and ELF are the only supported formats.
118 #endif /* ! OBJ_ELF */
119 #endif /* ! OBJ_COFF */
120 #endif /* ! OBJ_A/BOUT */
122 extern char *input_line_pointer
;
124 /* Local i80960 routines. */
128 /* See md_parse_option() for meanings of these options. */
129 static char norelax
; /* True if -norelax switch seen. */
130 static char instrument_branches
; /* True if -b switch seen. */
132 /* Characters that always start a comment.
133 If the pre-processor is disabled, these aren't very useful. */
134 const char comment_chars
[] = "#";
136 /* Characters that only start a comment at the beginning of
137 a line. If the line seems to have the form '# 123 filename'
138 .line and .file directives will appear in the pre-processed output.
140 Note that input_file.c hand checks for '#' at the beginning of the
141 first line of the input file. This is because the compiler outputs
142 #NO_APP at the beginning of its output. */
144 /* Also note that comments started like this one will always work. */
146 const char line_comment_chars
[] = "#";
147 const char line_separator_chars
[] = ";";
149 /* Chars that can be used to separate mant from exp in floating point nums. */
150 const char EXP_CHARS
[] = "eE";
152 /* Chars that mean this number is a floating point constant,
153 as in 0f12.456 or 0d1.2345e12. */
154 const char FLT_CHARS
[] = "fFdDtT";
156 /* Table used by base assembler to relax addresses based on varying length
157 instructions. The fields are:
158 1) most positive reach of this state,
159 2) most negative reach of this state,
160 3) how many bytes this mode will add to the size of the current frag
161 4) which index into the table to try if we can't fit into this one.
163 For i80960, the only application is the (de-)optimization of cobr
164 instructions into separate compare and branch instructions when a 13-bit
165 displacement won't hack it. */
166 const relax_typeS md_relax_table
[] =
168 {0, 0, 0, 0}, /* State 0 => no more relaxation possible. */
169 {4088, -4096, 0, 2}, /* State 1: conditional branch (cobr). */
170 {0x800000 - 8, -0x800000, 4, 0}, /* State 2: compare (reg) & branch (ctrl). */
173 /* These are the machine dependent pseudo-ops.
175 This table describes all the machine specific pseudo-ops the assembler
176 has to support. The fields are:
177 pseudo-op name without dot
178 function to call to execute this pseudo-op
179 integer arg to pass to the function. */
183 /* Macros to extract info from an 'expressionS' structure 'e'. */
184 #define adds(e) e.X_add_symbol
185 #define offs(e) e.X_add_number
187 /* Branch-prediction bits for CTRL/COBR format opcodes. */
188 #define BP_MASK 0x00000002 /* Mask for branch-prediction bit. */
189 #define BP_TAKEN 0x00000000 /* Value to OR in to predict branch. */
190 #define BP_NOT_TAKEN 0x00000002 /* Value to OR in to predict no branch. */
192 /* Some instruction opcodes that we need explicitly. */
193 #define BE 0x12000000
194 #define BG 0x11000000
195 #define BGE 0x13000000
196 #define BL 0x14000000
197 #define BLE 0x16000000
198 #define BNE 0x15000000
199 #define BNO 0x10000000
200 #define BO 0x17000000
201 #define CHKBIT 0x5a002700
202 #define CMPI 0x5a002080
203 #define CMPO 0x5a002000
206 #define BAL 0x0b000000
207 #define CALL 0x09000000
208 #define CALLS 0x66003800
209 #define RET 0x0a000000
211 /* These masks are used to build up a set of MEMB mode bits. */
214 #define MEMB_BIT 0x1000
217 /* Mask for the only mode bit in a MEMA instruction (if set, abase reg is
219 #define MEMA_ABASE 0x2000
221 /* Info from which a MEMA or MEMB format instruction can be generated. */
224 /* (First) 32 bits of instruction. */
226 /* 0-(none), 12- or, 32-bit displacement needed. */
228 /* The expression in the source instruction from which the
229 displacement should be determined. */
234 /* The two pieces of info we need to generate a register operand. */
237 int mode
; /* 0 =>local/global/spec reg; 1=> literal or fp reg. */
238 int special
; /* 0 =>not a sfr; 1=> is a sfr (not valid w/mode=0). */
239 int n
; /* Register number or literal value. */
242 /* Number and assembler mnemonic for all registers that can appear in
284 /* Numbers for special-function registers are for assembler internal
285 use only: they are scaled back to range [0-31] for binary output. */
321 /* Numbers for floating point registers are for assembler internal
322 use only: they are scaled back to [0-3] for binary output. */
330 { NULL
, 0 }, /* END OF LIST */
333 #define IS_RG_REG(n) ((0 <= (n)) && ((n) < SF0))
334 #define IS_SF_REG(n) ((SF0 <= (n)) && ((n) < FP0))
335 #define IS_FP_REG(n) ((n) >= FP0)
337 /* Number and assembler mnemonic for all registers that can appear as
338 'abase' (indirect addressing) registers. */
380 /* For assembler internal use only: this number never appears in binary
384 { NULL
, 0 }, /* END OF LIST */
388 static struct hash_control
*op_hash
; /* Opcode mnemonics. */
389 static struct hash_control
*reg_hash
; /* Register name hash table. */
390 static struct hash_control
*areg_hash
; /* Abase register hash table. */
392 /* Architecture for which we are assembling. */
393 #define ARCH_ANY 0 /* Default: no architecture checking done. */
400 int architecture
= ARCH_ANY
; /* Architecture requested on invocation line. */
401 int iclasses_seen
; /* OR of instruction classes (I_* constants)
402 for which we've actually assembled
405 /* BRANCH-PREDICTION INSTRUMENTATION
407 The following supports generation of branch-prediction instrumentation
408 (turned on by -b switch). The instrumentation collects counts
409 of branches taken/not-taken for later input to a utility that will
410 set the branch prediction bits of the instructions in accordance with
411 the behavior observed. (Note that the KX series does not have
414 The instrumentation consists of:
416 (1) before and after each conditional branch, a call to an external
417 routine that increments and steps over an inline counter. The
418 counter itself, initialized to 0, immediately follows the call
419 instruction. For each branch, the counter following the branch
420 is the number of times the branch was not taken, and the difference
421 between the counters is the number of times it was taken. An
422 example of an instrumented conditional branch:
430 (2) a table of pointers to the instrumented branches, so that an
431 external postprocessing routine can locate all of the counters.
432 the table begins with a 2-word header: a pointer to the next in
433 a linked list of such tables (initialized to 0); and a count
434 of the number of entries in the table (exclusive of the header.
436 Note that input source code is expected to already contain calls
437 an external routine that will link the branch local table into a
438 list of such tables. */
440 /* Number of branches instrumented so far. Also used to generate
441 unique local labels for each instrumented branch. */
444 #define BR_LABEL_BASE "LBRANCH"
445 /* Basename of local labels on instrumented branches, to avoid
446 conflict with compiler- generated local labels. */
448 #define BR_CNT_FUNC "__inc_branch"
449 /* Name of the external routine that will increment (and step over) an
452 #define BR_TAB_NAME "__BRANCH_TABLE__"
453 /* Name of the table of pointers to branches. A local (i.e.,
454 non-external) symbol. */
456 static void ctrl_fmt (char *, long, int);
462 int i
; /* Loop counter. */
463 const struct i960_opcode
*oP
; /* Pointer into opcode table. */
464 const char *retval
; /* Value returned by hash functions. */
466 op_hash
= hash_new ();
467 reg_hash
= hash_new ();
468 areg_hash
= hash_new ();
470 /* For some reason, the base assembler uses an empty string for "no
471 error message", instead of a NULL pointer. */
474 for (oP
= i960_opcodes
; oP
->name
&& !retval
; oP
++)
475 retval
= hash_insert (op_hash
, oP
->name
, (void *) oP
);
477 for (i
= 0; regnames
[i
].reg_name
&& !retval
; i
++)
478 retval
= hash_insert (reg_hash
, regnames
[i
].reg_name
,
479 (char *) ®names
[i
].reg_num
);
481 for (i
= 0; aregs
[i
].areg_name
&& !retval
; i
++)
482 retval
= hash_insert (areg_hash
, aregs
[i
].areg_name
,
483 (char *) &aregs
[i
].areg_num
);
486 as_fatal (_("Hashing returned \"%s\"."), retval
);
489 /* parse_expr: parse an expression
491 Use base assembler's expression parser to parse an expression.
492 It, unfortunately, runs off a global which we have to save/restore
493 in order to make it work for us.
495 An empty expression string is treated as an absolute 0.
497 Sets O_illegal regardless of expression evaluation if entire input
498 string is not consumed in the evaluation -- tolerate no dangling junk! */
501 parse_expr (char *textP
, /* Text of expression to be parsed. */
502 expressionS
*expP
) /* Where to put the results of parsing. */
504 char *save_in
; /* Save global here. */
511 /* Treat empty string as absolute 0. */
512 expP
->X_add_symbol
= expP
->X_op_symbol
= NULL
;
513 expP
->X_add_number
= 0;
514 expP
->X_op
= O_constant
;
518 save_in
= input_line_pointer
; /* Save global. */
519 input_line_pointer
= textP
; /* Make parser work for us. */
521 (void) expression (expP
);
522 if ((size_t) (input_line_pointer
- textP
) != strlen (textP
))
523 /* Did not consume all of the input. */
524 expP
->X_op
= O_illegal
;
526 symP
= expP
->X_add_symbol
;
527 if (symP
&& (hash_find (reg_hash
, S_GET_NAME (symP
))))
528 /* Register name in an expression. */
529 /* FIXME: this isn't much of a check any more. */
530 expP
->X_op
= O_illegal
;
532 input_line_pointer
= save_in
; /* Restore global. */
536 /* emit: output instruction binary
538 Output instruction binary, in target byte order, 4 bytes at a time.
539 Return pointer to where it was placed. */
542 emit (long instr
) /* Word to be output, host byte order. */
544 char *toP
; /* Where to output it. */
546 toP
= frag_more (4); /* Allocate storage. */
547 md_number_to_chars (toP
, instr
, 4); /* Convert to target byte order. */
551 /* get_cdisp: handle displacement for a COBR or CTRL instruction.
553 Parse displacement for a COBR or CTRL instruction.
555 If successful, output the instruction opcode and set up for it,
556 depending on the arg 'var_frag', either:
557 o an address fixup to be done when all symbol values are known, or
558 o a varying length code fragment, with address fixup info. This
559 will be done for cobr instructions that may have to be relaxed
560 in to compare/branch instructions (8 bytes) if the final
561 address displacement is greater than 13 bits. */
564 get_cdisp (char *dispP
, /* Displacement as specified in source instruction. */
565 char *ifmtP
, /* "COBR" or "CTRL" (for use in error message). */
566 long instr
, /* Instruction needing the displacement. */
567 int numbits
, /* # bits of displacement (13 for COBR, 24 for CTRL). */
568 int var_frag
,/* 1 if varying length code fragment should be emitted;
569 0 if an address fix should be emitted. */
570 int callj
) /* 1 if callj relocation should be done; else 0. */
572 expressionS e
; /* Parsed expression. */
573 fixS
*fixP
; /* Structure describing needed address fix. */
574 char *outP
; /* Where instruction binary is output to. */
578 parse_expr (dispP
, &e
);
582 as_bad (_("expression syntax error"));
585 if (S_GET_SEGMENT (e
.X_add_symbol
) == now_seg
586 || S_GET_SEGMENT (e
.X_add_symbol
) == undefined_section
)
590 outP
= frag_more (8); /* Allocate worst-case storage. */
591 md_number_to_chars (outP
, instr
, 4);
592 frag_variant (rs_machine_dependent
, 4, 4, 1,
593 adds (e
), offs (e
), outP
);
597 /* Set up a new fix structure, so address can be updated
598 when all symbol values are known. */
600 fixP
= fix_new (frag_now
,
601 outP
- frag_now
->fr_literal
,
608 fixP
->fx_tcbit
= callj
;
610 /* We want to modify a bit field when the address is
611 known. But we don't need all the garbage in the
612 bit_fix structure. So we're going to lie and store
613 the number of bits affected instead of a pointer. */
614 fixP
->fx_bit_fixP
= (bit_fixS
*) (size_t) numbits
;
618 as_bad (_("attempt to branch into different segment"));
622 as_bad (_("target of %s instruction must be a label"), ifmtP
);
628 md_chars_to_number (char * val
, /* Value in target byte order. */
629 int n
) /* Number of bytes in the input. */
633 for (retval
= 0; n
--;)
636 retval
|= (unsigned char) val
[n
];
641 /* mema_to_memb: convert a MEMA-format opcode to a MEMB-format opcode.
643 There are 2 possible MEMA formats:
645 - displacement + abase
647 They are distinguished by the setting of the MEMA_ABASE bit. */
650 mema_to_memb (char * opcodeP
) /* Where to find the opcode, in target byte order. */
652 long opcode
; /* Opcode in host byte order. */
653 long mode
; /* Mode bits for MEMB instruction. */
655 opcode
= md_chars_to_number (opcodeP
, 4);
656 know (!(opcode
& MEMB_BIT
));
658 mode
= MEMB_BIT
| D_BIT
;
659 if (opcode
& MEMA_ABASE
)
662 opcode
&= 0xffffc000; /* Clear MEMA offset and mode bits. */
663 opcode
|= mode
; /* Set MEMB mode bits. */
665 md_number_to_chars (opcodeP
, opcode
, 4);
670 Return TRUE iff the target architecture supports the specified
671 special-function register (sfr). */
674 targ_has_sfr (int n
) /* Number (0-31) of sfr. */
676 switch (architecture
)
684 return ((0 <= n
) && (n
<= 4));
687 return ((0 <= n
) && (n
<= 2));
691 /* Look up a (suspected) register name in the register table and return the
692 associated register number (or -1 if not found). */
695 get_regnum (char *regname
) /* Suspected register name. */
699 rP
= (int *) hash_find (reg_hash
, regname
);
700 return (rP
== NULL
) ? -1 : *rP
;
703 /* syntax: Issue a syntax error. */
708 as_bad (_("syntax error"));
711 /* parse_regop: parse a register operand.
713 In case of illegal operand, issue a message and return some valid
714 information so instruction processing can continue. */
717 parse_regop (struct regop
*regopP
, /* Where to put description of register operand. */
718 char *optext
, /* Text of operand. */
719 char opdesc
) /* Descriptor byte: what's legal for this operand. */
721 int n
; /* Register number. */
722 expressionS e
; /* Parsed expression. */
724 /* See if operand is a register. */
725 n
= get_regnum (optext
);
730 /* Global or local register. */
731 if (!REG_ALIGN (opdesc
, n
))
732 as_bad (_("unaligned register"));
739 else if (IS_FP_REG (n
) && FP_OK (opdesc
))
741 /* Floating point register, and it's allowed. */
747 else if (IS_SF_REG (n
) && SFR_OK (opdesc
))
749 /* Special-function register, and it's allowed. */
753 if (!targ_has_sfr (regopP
->n
))
754 as_bad (_("no such sfr in this architecture"));
759 else if (LIT_OK (opdesc
))
761 /* How about a literal? */
766 /* Floating point literal acceptable. */
767 /* Skip over 0f, 0d, or 0e prefix. */
768 if ((optext
[0] == '0')
769 && (optext
[1] >= 'd')
770 && (optext
[1] <= 'f'))
773 if (!strcmp (optext
, "0.0") || !strcmp (optext
, "0"))
779 if (!strcmp (optext
, "1.0") || !strcmp (optext
, "1"))
787 /* Fixed point literal acceptable. */
788 parse_expr (optext
, &e
);
789 if (e
.X_op
!= O_constant
790 || (offs (e
) < 0) || (offs (e
) > 31))
792 as_bad (_("illegal literal"));
795 regopP
->n
= offs (e
);
800 /* Nothing worked. */
802 regopP
->mode
= 0; /* Register r0 is always a good one. */
807 /* get_ispec: parse a memory operand for an index specification
809 Here, an "index specification" is taken to be anything surrounded
810 by square brackets and NOT followed by anything else.
812 If it's found, detach it from the input string, remove the surrounding
813 square brackets, and return a pointer to it. Otherwise, return NULL. */
816 get_ispec (char *textP
) /* Pointer to memory operand from source instruction, no white space. */
819 /* Points to start of index specification. */
821 /* Points to end of index specification. */
824 /* Find opening square bracket, if any. */
825 start
= strchr (textP
, '[');
829 /* Eliminate '[', detach from rest of operand. */
832 end
= strchr (start
, ']');
835 as_bad (_("unmatched '['"));
838 /* Eliminate ']' and make sure it was the last thing
841 if (*(end
+ 1) != '\0')
842 as_bad (_("garbage after index spec ignored"));
848 /* parse_memop: parse a memory operand
850 This routine is based on the observation that the 4 mode bits of the
851 MEMB format, taken individually, have fairly consistent meaning:
853 M3 (bit 13): 1 if displacement is present (D_BIT)
854 M2 (bit 12): 1 for MEMB instructions (MEMB_BIT)
855 M1 (bit 11): 1 if index is present (I_BIT)
856 M0 (bit 10): 1 if abase is present (A_BIT)
858 So we parse the memory operand and set bits in the mode as we find
859 things. Then at the end, if we go to MEMB format, we need only set
860 the MEMB bit (M2) and our mode is built for us.
862 Unfortunately, I said "fairly consistent". The exceptions:
865 0100 Would seem illegal, but means "abase-only".
867 0101 Would seem to mean "abase-only" -- it means IP-relative.
868 Must be converted to 0100.
870 0110 Would seem to mean "index-only", but is reserved.
871 We turn on the D bit and provide a 0 displacement.
873 The other thing to observe is that we parse from the right, peeling
874 things * off as we go: first any index spec, then any abase, then
878 parse_memop (memS
*memP
, /* Where to put the results. */
879 char *argP
, /* Text of the operand to be parsed. */
880 int optype
) /* MEM1, MEM2, MEM4, MEM8, MEM12, or MEM16. */
882 char *indexP
; /* Pointer to index specification with "[]" removed. */
883 char *p
; /* Temp char pointer. */
884 char iprel_flag
; /* True if this is an IP-relative operand. */
885 int regnum
; /* Register number. */
886 /* Scale factor: 1,2,4,8, or 16. Later converted to internal format
887 (0,1,2,3,4 respectively). */
889 int mode
; /* MEMB mode bits. */
890 int *intP
; /* Pointer to register number. */
892 /* The following table contains the default scale factors for each
893 type of memory instruction. It is accessed using (optype-MEM1)
894 as an index -- thus it assumes the 'optype' constants are
895 assigned consecutive values, in the order they appear in this
897 static const int def_scale
[] =
903 -1, /* MEM12 -- no valid default */
907 iprel_flag
= mode
= 0;
909 /* Any index present? */
910 indexP
= get_ispec (argP
);
913 p
= strchr (indexP
, '*');
916 /* No explicit scale -- use default for this instruction
917 type and assembler mode. */
921 /* GNU960 compatibility */
922 scale
= def_scale
[optype
- MEM1
];
926 *p
++ = '\0'; /* Eliminate '*' */
928 /* Now indexP->a '\0'-terminated register name,
929 and p->a scale factor. */
931 if (!strcmp (p
, "16"))
933 else if (strchr ("1248", *p
) && (p
[1] == '\0'))
939 regnum
= get_regnum (indexP
); /* Get index reg. # */
940 if (!IS_RG_REG (regnum
))
942 as_bad (_("invalid index register"));
946 /* Convert scale to its binary encoding. */
965 as_bad (_("invalid scale factor"));
969 memP
->opcode
|= scale
| regnum
; /* Set index bits in opcode. */
970 mode
|= I_BIT
; /* Found a valid index spec. */
973 /* Any abase (Register Indirect) specification present? */
974 if ((p
= strrchr (argP
, '(')) != NULL
)
976 /* "(" is there -- does it start a legal abase spec? If not, it
977 could be part of a displacement expression. */
978 intP
= (int *) hash_find (areg_hash
, p
);
981 /* Got an abase here. */
983 *p
= '\0'; /* Discard register spec. */
985 /* We have to specialcase ip-rel mode. */
989 memP
->opcode
|= regnum
<< 14;
995 /* Any expression present? */
1000 /* Special-case ip-relative addressing. */
1007 memP
->opcode
|= 5 << 10; /* IP-relative mode. */
1013 /* Handle all other modes. */
1017 /* Go with MEMA instruction format for now (grow to MEMB later
1018 if 12 bits is not enough for the displacement). MEMA format
1019 has a single mode bit: set it to indicate that abase is
1021 memP
->opcode
|= MEMA_ABASE
;
1026 /* Go with MEMA instruction format for now (grow to MEMB later
1027 if 12 bits is not enough for the displacement). */
1032 /* For some reason, the bit string for this mode is not
1033 consistent: it should be 0 (exclusive of the MEMB bit), so we
1034 set it "by hand" here. */
1035 memP
->opcode
|= MEMB_BIT
;
1039 /* set MEMB bit in mode, and OR in mode bits. */
1040 memP
->opcode
|= mode
| MEMB_BIT
;
1044 /* Treat missing displacement as displacement of 0. */
1046 /* Fall into next case. */
1047 case D_BIT
| A_BIT
| I_BIT
:
1049 /* Set MEMB bit in mode, and OR in mode bits. */
1050 memP
->opcode
|= mode
| MEMB_BIT
;
1060 /* Generate a MEMA- or MEMB-format instruction. */
1063 mem_fmt (char *args
[], /* args[0]->opcode mnemonic, args[1-3]->operands. */
1064 struct i960_opcode
*oP
,/* Pointer to description of instruction. */
1065 int callx
) /* Is this a callx opcode. */
1067 int i
; /* Loop counter. */
1068 struct regop regop
; /* Description of register operand. */
1069 char opdesc
; /* Operand descriptor byte. */
1070 memS instr
; /* Description of binary to be output. */
1071 char *outP
; /* Where the binary was output to. */
1072 expressionS expr
; /* Parsed expression. */
1073 /* ->description of deferred address fixup. */
1077 /* COFF support isn't in place yet for callx relaxing. */
1081 memset (&instr
, '\0', sizeof (memS
));
1082 instr
.opcode
= oP
->opcode
;
1084 /* Process operands. */
1085 for (i
= 1; i
<= oP
->num_ops
; i
++)
1087 opdesc
= oP
->operand
[i
- 1];
1090 parse_memop (&instr
, args
[i
], oP
->format
);
1093 parse_regop (®op
, args
[i
], opdesc
);
1094 instr
.opcode
|= regop
.n
<< 19;
1098 /* Parse the displacement; this must be done before emitting the
1099 opcode, in case it is an expression using `.'. */
1100 parse_expr (instr
.e
, &expr
);
1102 /* Output opcode. */
1103 outP
= emit (instr
.opcode
);
1105 if (instr
.disp
== 0)
1108 /* Process the displacement. */
1112 as_bad (_("expression syntax error"));
1116 if (instr
.disp
== 32)
1117 (void) emit (offs (expr
)); /* Output displacement. */
1120 /* 12-bit displacement. */
1121 if (offs (expr
) & ~0xfff)
1123 /* Won't fit in 12 bits: convert already-output
1124 instruction to MEMB format, output
1126 mema_to_memb (outP
);
1127 (void) emit (offs (expr
));
1131 /* WILL fit in 12 bits: OR into opcode and
1132 overwrite the binary we already put out. */
1133 instr
.opcode
|= offs (expr
);
1134 md_number_to_chars (outP
, instr
.opcode
, 4);
1140 if (instr
.disp
== 12)
1141 /* Displacement is dependent on a symbol, whose value
1142 may change at link time. We HAVE to reserve 32 bits.
1143 Convert already-output opcode to MEMB format. */
1144 mema_to_memb (outP
);
1146 /* Output 0 displacement and set up address fixup for when
1147 this symbol's value becomes known. */
1148 outP
= emit ((long) 0);
1149 fixP
= fix_new_exp (frag_now
,
1150 outP
- frag_now
->fr_literal
,
1151 4, & expr
, 0, NO_RELOC
);
1152 /* Steve's linker relaxing hack. Mark this 32-bit relocation as
1153 being in the instruction stream, specifically as part of a callx
1155 fixP
->fx_bsr
= callx
;
1162 Return TRUE iff the target architecture supports the indicated
1163 class of instructions. */
1166 targ_has_iclass (int ic
) /* Instruction class; one of:
1167 I_BASE, I_CX, I_DEC, I_KX, I_FP, I_MIL, I_CASIM, I_CX2, I_HX, I_HX2. */
1169 iclasses_seen
|= ic
;
1171 switch (architecture
)
1174 return ic
& (I_BASE
| I_KX
);
1176 return ic
& (I_BASE
| I_KX
| I_FP
| I_DEC
);
1178 return ic
& (I_BASE
| I_KX
| I_FP
| I_DEC
| I_MIL
);
1180 return ic
& (I_BASE
| I_CX
| I_CX2
| I_CASIM
);
1182 return ic
& (I_BASE
| I_CX2
| I_JX
);
1184 return ic
& (I_BASE
| I_CX2
| I_JX
| I_HX
);
1186 if ((iclasses_seen
& (I_KX
| I_FP
| I_DEC
| I_MIL
))
1187 && (iclasses_seen
& (I_CX
| I_CX2
)))
1189 as_warn (_("architecture of opcode conflicts with that of earlier instruction(s)"));
1190 iclasses_seen
&= ~ic
;
1197 Determine if a "shlo" instruction can be used to implement a "ldconst".
1198 This means that some number X < 32 can be shifted left to produce the
1199 constant of interest.
1201 Return the shift count, or 0 if we can't do it.
1202 Caller calculates X by shifting original constant right 'shift' places. */
1205 shift_ok (int n
) /* The constant of interest. */
1207 int shift
; /* The shift count. */
1210 /* Can't do it for negative numbers. */
1213 /* Shift 'n' right until a 1 is about to be lost. */
1214 for (shift
= 0; (n
& 1) == 0; shift
++)
1224 Parse and replace a 'ldconst' pseudo-instruction with an appropriate
1227 Assumes the input consists of:
1228 arg[0] opcode mnemonic ('ldconst')
1229 arg[1] first operand (constant)
1230 arg[2] name of register to be loaded
1232 Replaces opcode and/or operands as appropriate.
1234 Returns the new number of arguments, or -1 on failure. */
1237 parse_ldconst (char *arg
[]) /* See above. */
1239 int n
; /* Constant to be loaded. */
1240 int shift
; /* Shift count for "shlo" instruction. */
1241 static char buf
[5]; /* Literal for first operand. */
1242 static char buf2
[5]; /* Literal for second operand. */
1243 expressionS e
; /* Parsed expression. */
1245 arg
[3] = NULL
; /* So we can tell at the end if it got used or not. */
1247 parse_expr (arg
[1], &e
);
1251 /* We're dependent on one or more symbols -- use "lda". */
1256 /* Try the following mappings:
1257 ldconst 0,<reg> -> mov 0,<reg>
1258 ldconst 31,<reg> -> mov 31,<reg>
1259 ldconst 32,<reg> -> addo 1,31,<reg>
1260 ldconst 62,<reg> -> addo 31,31,<reg>
1261 ldconst 64,<reg> -> shlo 8,3,<reg>
1262 ldconst -1,<reg> -> subo 1,0,<reg>
1263 ldconst -31,<reg> -> subo 31,0,<reg>
1265 Anything else becomes:
1268 if ((0 <= n
) && (n
<= 31))
1270 else if ((-31 <= n
) && (n
<= -1))
1274 sprintf (buf
, "%d", -n
);
1278 else if ((32 <= n
) && (n
<= 62))
1283 sprintf (buf
, "%d", n
- 31);
1286 else if ((shift
= shift_ok (n
)) != 0)
1290 sprintf (buf
, "%d", shift
);
1292 sprintf (buf2
, "%d", n
>> shift
);
1300 as_bad (_("invalid constant"));
1304 return (arg
[3] == 0) ? 2 : 3;
1307 /* reg_fmt: generate a REG-format instruction. */
1310 reg_fmt (char *args
[], /* args[0]->opcode mnemonic, args[1-3]->operands. */
1311 struct i960_opcode
*oP
)/* Pointer to description of instruction. */
1313 long instr
; /* Binary to be output. */
1314 struct regop regop
; /* Description of register operand. */
1315 int n_ops
; /* Number of operands. */
1318 n_ops
= oP
->num_ops
;
1322 parse_regop (®op
, args
[1], oP
->operand
[0]);
1324 if ((n_ops
== 1) && !(instr
& M3
))
1326 /* 1-operand instruction in which the dst field should
1327 be used (instead of src1). */
1330 regop
.mode
= regop
.special
;
1336 /* regop.n goes in bit 0, needs no shifting. */
1338 regop
.special
<<= 5;
1340 instr
|= regop
.n
| regop
.mode
| regop
.special
;
1345 parse_regop (®op
, args
[2], oP
->operand
[1]);
1347 if ((n_ops
== 2) && !(instr
& M3
))
1349 /* 2-operand instruction in which the dst field should
1350 be used instead of src2). */
1353 regop
.mode
= regop
.special
;
1361 regop
.special
<<= 6;
1363 instr
|= regop
.n
| regop
.mode
| regop
.special
;
1367 parse_regop (®op
, args
[3], oP
->operand
[2]);
1369 regop
.mode
= regop
.special
;
1370 instr
|= (regop
.n
<<= 19) | (regop
.mode
<<= 13);
1375 /* get_args: break individual arguments out of comma-separated list
1378 - all comments and labels have been removed
1379 - all strings of whitespace have been collapsed to a single blank.
1380 - all character constants ('x') have been replaced with decimal
1383 args[0] is untouched. args[1] points to first operand, etc. All args:
1384 - are NULL-terminated
1385 - contain no whitespace
1388 Number of operands (0,1,2, or 3) or -1 on error. */
1391 get_args (char *p
, /* Pointer to comma-separated operands; Mucked by us. */
1392 char *args
[]) /* Output arg: pointers to operands placed in args[1-3].
1393 Must accommodate 4 entries (args[0-3]). */
1396 int n
; /* Number of operands. */
1399 /* Skip lead white space. */
1409 /* Squeze blanks out by moving non-blanks toward start of string.
1410 Isolate operands, whenever comma is found. */
1415 && (! ISALNUM (p
[1])
1416 || ! ISALNUM (p
[-1])))
1420 /* Start of operand. */
1423 as_bad (_("too many operands"));
1426 *to
++ = '\0'; /* Terminate argument. */
1427 args
[++n
] = to
; /* Start next argument. */
1437 /* i_scan: perform lexical scan of ascii assembler instruction.
1440 - input string is an i80960 instruction (not a pseudo-op)
1441 - all comments and labels have been removed
1442 - all strings of whitespace have been collapsed to a single blank.
1445 args[0] points to opcode, other entries point to operands. All strings:
1446 - are NULL-terminated
1447 - contain no whitespace
1448 - have character constants ('x') replaced with a decimal number
1451 Number of operands (0,1,2, or 3) or -1 on error. */
1454 i_scan (char *iP
, /* Pointer to ascii instruction; Mucked by us. */
1455 char *args
[]) /* Output arg: pointers to opcode and operands placed here.
1456 Must accommodate 4 entries. */
1458 /* Isolate opcode. */
1463 for (; *iP
!= ' '; iP
++)
1467 /* There are no operands. */
1470 /* We never moved: there was no opcode either! */
1471 as_bad (_("missing opcode"));
1478 return (get_args (iP
, args
));
1484 /* Emit call to "increment" routine. */
1485 ctrl_fmt (BR_CNT_FUNC
, CALL
, 1);
1486 /* Emit inline counter to be incremented. */
1493 static char buf
[20];
1495 sprintf (buf
, "%s%d", BR_LABEL_BASE
, br_cnt
++);
1500 ctrl_fmt (char *targP
, /* Pointer to text of lone operand (if any). */
1501 long opcode
, /* Template of instruction. */
1502 int num_ops
) /* Number of operands. */
1504 int instrument
; /* TRUE iff we should add instrumentation to track
1505 how often the branch is taken. */
1508 emit (opcode
); /* Output opcode. */
1511 instrument
= instrument_branches
&& (opcode
!= CALL
)
1512 && (opcode
!= B
) && (opcode
!= RET
) && (opcode
!= BAL
);
1517 colon (brlab_next ());
1520 /* The operand MUST be an ip-relative displacement. Parse it
1521 and set up address fix for the instruction we just output. */
1522 get_cdisp (targP
, "CTRL", opcode
, 24, 0, 0);
1530 cobr_fmt (/* arg[0]->opcode mnemonic, arg[1-3]->operands (ascii) */
1532 /* Opcode, with branch-prediction bits already set if necessary. */
1534 /* Pointer to description of instruction. */
1535 struct i960_opcode
*oP
)
1537 long instr
; /* 32-bit instruction. */
1538 struct regop regop
; /* Description of register operand. */
1539 int n
; /* Number of operands. */
1540 int var_frag
; /* 1 if varying length code fragment should
1541 be emitted; 0 if an address fix
1542 should be emitted. */
1549 /* First operand (if any) of a COBR is always a register
1550 operand. Parse it. */
1551 parse_regop (®op
, arg
[1], oP
->operand
[0]);
1552 instr
|= (regop
.n
<< 19) | (regop
.mode
<< 13);
1557 /* Second operand (if any) of a COBR is always a register
1558 operand. Parse it. */
1559 parse_regop (®op
, arg
[2], oP
->operand
[1]);
1560 instr
|= (regop
.n
<< 14) | regop
.special
;
1567 if (instrument_branches
)
1570 colon (brlab_next ());
1573 /* A third operand to a COBR is always a displacement. Parse
1574 it; if it's relaxable (a cobr "j" directive, or any cobr
1575 other than bbs/bbc when the "-norelax" option is not in use)
1576 set up a variable code fragment; otherwise set up an address
1578 var_frag
= !norelax
|| (oP
->format
== COJ
); /* TRUE or FALSE */
1579 get_cdisp (arg
[3], "COBR", instr
, 13, var_frag
, 0);
1581 if (instrument_branches
)
1586 /* Assumptions about the passed-in text:
1587 - all comments, labels removed
1588 - text is an instruction
1589 - all white space compressed to single blanks
1590 - all character constants have been replaced with decimal. */
1593 md_assemble (char *textP
)
1595 /* Parsed instruction text, containing NO whitespace: arg[0]->opcode
1596 mnemonic arg[1-3]->operands, with char constants replaced by
1599 /* Number of instruction operands. */
1601 /* Pointer to instruction description. */
1602 struct i960_opcode
*oP
;
1603 /* TRUE iff opcode mnemonic included branch-prediction suffix (".f"
1606 /* Setting of branch-prediction bit(s) to be OR'd into instruction
1607 opcode of CTRL/COBR format instructions. */
1609 /* Offset of last character in opcode mnemonic. */
1611 const char *bp_error_msg
= _("branch prediction invalid on this opcode");
1613 /* Parse instruction into opcode and operands. */
1614 memset (args
, '\0', sizeof (args
));
1616 n_ops
= i_scan (textP
, args
);
1619 return; /* Error message already issued. */
1621 /* Do "macro substitution" (sort of) on 'ldconst' pseudo-instruction. */
1622 if (!strcmp (args
[0], "ldconst"))
1624 n_ops
= parse_ldconst (args
);
1629 /* Check for branch-prediction suffix on opcode mnemonic, strip it off. */
1630 n
= strlen (args
[0]) - 1;
1634 if (args
[0][n
- 1] == '.' && (args
[0][n
] == 't' || args
[0][n
] == 'f'))
1636 /* We could check here to see if the target architecture
1637 supports branch prediction, but why bother? The bit will
1638 just be ignored by processors that don't use it. */
1640 bp_bits
= (args
[0][n
] == 't') ? BP_TAKEN
: BP_NOT_TAKEN
;
1641 args
[0][n
- 1] = '\0'; /* Strip suffix from opcode mnemonic */
1644 /* Look up opcode mnemonic in table and check number of operands.
1645 Check that opcode is legal for the target architecture. If all
1646 looks good, assemble instruction. */
1647 oP
= (struct i960_opcode
*) hash_find (op_hash
, args
[0]);
1648 if (!oP
|| !targ_has_iclass (oP
->iclass
))
1649 as_bad (_("invalid opcode, \"%s\"."), args
[0]);
1650 else if (n_ops
!= oP
->num_ops
)
1651 as_bad (_("improper number of operands. expecting %d, got %d"),
1652 oP
->num_ops
, n_ops
);
1659 ctrl_fmt (args
[1], oP
->opcode
| bp_bits
, oP
->num_ops
);
1660 if (oP
->format
== FBRA
)
1661 /* Now generate a 'bno' to same arg */
1662 ctrl_fmt (args
[1], BNO
| bp_bits
, 1);
1666 cobr_fmt (args
, oP
->opcode
| bp_bits
, oP
);
1670 as_warn (bp_error_msg
);
1674 if (args
[0][0] == 'c' && args
[0][1] == 'a')
1677 as_warn (bp_error_msg
);
1678 mem_fmt (args
, oP
, 1);
1687 as_warn (bp_error_msg
);
1688 mem_fmt (args
, oP
, 0);
1692 as_warn (bp_error_msg
);
1693 /* Output opcode & set up "fixup" (relocation); flag
1694 relocation as 'callj' type. */
1695 know (oP
->num_ops
== 1);
1696 get_cdisp (args
[1], "CTRL", oP
->opcode
, 24, 0, 1);
1699 BAD_CASE (oP
->format
);
1706 md_number_to_chars (char *buf
,
1710 number_to_chars_littleendian (buf
, value
, n
);
1713 #define MAX_LITTLENUMS 6
1714 #define LNUM_SIZE sizeof (LITTLENUM_TYPE)
1716 /* md_atof: convert ascii to floating point
1718 Turn a string at input_line_pointer into a floating point constant of type
1719 'type', and store the appropriate bytes at *litP. The number of LITTLENUMS
1720 emitted is returned at 'sizeP'. An error message is returned, or a pointer
1721 to an empty message if OK.
1723 Note we call the i386 floating point routine, rather than complicating
1724 things with more files or symbolic links. */
1727 md_atof (int type
, char *litP
, int *sizeP
)
1729 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
1730 LITTLENUM_TYPE
*wordP
;
1749 type
= 'x'; /* That's what atof_ieee() understands. */
1754 return _("Bad call to md_atof()");
1757 t
= atof_ieee (input_line_pointer
, type
, words
);
1759 input_line_pointer
= t
;
1761 *sizeP
= prec
* LNUM_SIZE
;
1763 /* Output the LITTLENUMs in REVERSE order in accord with i80960
1764 word-order. (Dunno why atof_ieee doesn't do it in the right
1765 order in the first place -- probably because it's a hack of
1767 for (wordP
= words
+ prec
- 1; prec
--;)
1769 md_number_to_chars (litP
, (long) (*wordP
--), LNUM_SIZE
);
1770 litP
+= sizeof (LITTLENUM_TYPE
);
1777 md_number_to_imm (char *buf
, long val
, int n
)
1779 md_number_to_chars (buf
, val
, n
);
1783 md_number_to_field (char *instrP
, /* Pointer to instruction to be fixed. */
1784 long val
, /* Address fixup value. */
1785 bit_fixS
*bfixP
) /* Description of bit field to be fixed up. */
1787 int numbits
; /* Length of bit field to be fixed. */
1788 long instr
; /* 32-bit instruction to be fixed-up. */
1789 long sign
; /* 0 or -1, according to sign bit of 'val'. */
1791 /* Convert instruction back to host byte order. */
1792 instr
= md_chars_to_number (instrP
, 4);
1794 /* Surprise! -- we stored the number of bits to be modified rather
1795 than a pointer to a structure. */
1796 numbits
= (int) (size_t) bfixP
;
1798 /* This is a no-op, stuck here by reloc_callj(). */
1801 know ((numbits
== 13) || (numbits
== 24));
1803 /* Propagate sign bit of 'val' for the given number of bits. Result
1804 should be all 0 or all 1. */
1805 sign
= val
>> ((int) numbits
- 1);
1806 if (((val
< 0) && (sign
!= -1))
1807 || ((val
> 0) && (sign
!= 0)))
1808 as_bad (_("Fixup of %ld too large for field width of %d"),
1812 /* Put bit field into instruction and write back in target
1814 val
&= ~(-1 << (int) numbits
); /* Clear unused sign bits. */
1816 md_number_to_chars (instrP
, instr
, 4);
1822 Invocation line includes a switch not recognized by the base assembler.
1823 See if it's a processor-specific option. For the 960, these are:
1826 Conditional branch instructions that require displacements
1827 greater than 13 bits (or that have external targets) should
1828 generate errors. The default is to replace each such
1829 instruction with the corresponding compare (or chkbit) and
1830 branch instructions. Note that the Intel "j" cobr directives
1831 are ALWAYS "de-optimized" in this way when necessary,
1832 regardless of the setting of this option.
1835 Add code to collect information about branches taken, for
1836 later optimization of branch prediction bits by a separate
1837 tool. COBR and CNTL format instructions have branch
1838 prediction bits (in the CX architecture); if "BR" represents
1839 an instruction in one of these classes, the following rep-
1840 resents the code generated by the assembler:
1842 call <increment routine>
1843 .word 0 # pre-counter
1845 call <increment routine>
1846 .word 0 # post-counter
1848 A table of all such "Labels" is also generated.
1850 -AKA, -AKB, -AKC, -ASA, -ASB, -AMC, -ACA:
1851 Select the 80960 architecture. Instructions or features not
1852 supported by the selected architecture cause fatal errors.
1853 The default is to generate code for any instruction or feature
1854 that is supported by SOME version of the 960 (even if this
1855 means mixing architectures!). */
1857 const char *md_shortopts
= "A:b";
1858 struct option md_longopts
[] =
1860 #define OPTION_LINKRELAX (OPTION_MD_BASE)
1861 {"linkrelax", no_argument
, NULL
, OPTION_LINKRELAX
},
1862 {"link-relax", no_argument
, NULL
, OPTION_LINKRELAX
},
1863 #define OPTION_NORELAX (OPTION_MD_BASE + 1)
1864 {"norelax", no_argument
, NULL
, OPTION_NORELAX
},
1865 {"no-relax", no_argument
, NULL
, OPTION_NORELAX
},
1866 {NULL
, no_argument
, NULL
, 0}
1868 size_t md_longopts_size
= sizeof (md_longopts
);
1875 static const struct tabentry arch_tab
[] =
1879 {"SA", ARCH_KA
}, /* Synonym for KA. */
1880 {"SB", ARCH_KB
}, /* Synonym for KB. */
1881 {"KC", ARCH_MC
}, /* Synonym for MC. */
1890 md_parse_option (int c
, char *arg
)
1894 case OPTION_LINKRELAX
:
1896 flag_keep_locals
= 1;
1899 case OPTION_NORELAX
:
1904 instrument_branches
= 1;
1909 const struct tabentry
*tp
;
1912 for (tp
= arch_tab
; tp
->flag
!= NULL
; tp
++)
1913 if (!strcmp (p
, tp
->flag
))
1916 if (tp
->flag
== NULL
)
1918 as_bad (_("invalid architecture %s"), p
);
1922 architecture
= tp
->arch
;
1934 md_show_usage (FILE *stream
)
1938 fprintf (stream
, _("I960 options:\n"));
1939 for (i
= 0; arch_tab
[i
].flag
; i
++)
1940 fprintf (stream
, "%s-A%s", i
? " | " : "", arch_tab
[i
].flag
);
1941 fprintf (stream
, _("\n\
1942 specify variant of 960 architecture\n\
1943 -b add code to collect statistics about branches taken\n\
1944 -link-relax preserve individual alignment directives so linker\n\
1945 can do relaxing (b.out format only)\n\
1946 -no-relax don't alter compare-and-branch instructions for\n\
1947 long displacements\n"));
1951 Replace cobr instruction in a code fragment with equivalent branch and
1952 compare instructions, so it can reach beyond a 13-bit displacement.
1953 Set up an address fix/relocation for the new branch instruction. */
1955 /* This "conditional jump" table maps cobr instructions into
1956 equivalent compare and branch opcodes. */
1966 { /* COBR OPCODE: */
1967 { CHKBIT
, BNO
}, /* 0x30 - bbc */
1968 { CMPO
, BG
}, /* 0x31 - cmpobg */
1969 { CMPO
, BE
}, /* 0x32 - cmpobe */
1970 { CMPO
, BGE
}, /* 0x33 - cmpobge */
1971 { CMPO
, BL
}, /* 0x34 - cmpobl */
1972 { CMPO
, BNE
}, /* 0x35 - cmpobne */
1973 { CMPO
, BLE
}, /* 0x36 - cmpoble */
1974 { CHKBIT
, BO
}, /* 0x37 - bbs */
1975 { CMPI
, BNO
}, /* 0x38 - cmpibno */
1976 { CMPI
, BG
}, /* 0x39 - cmpibg */
1977 { CMPI
, BE
}, /* 0x3a - cmpibe */
1978 { CMPI
, BGE
}, /* 0x3b - cmpibge */
1979 { CMPI
, BL
}, /* 0x3c - cmpibl */
1980 { CMPI
, BNE
}, /* 0x3d - cmpibne */
1981 { CMPI
, BLE
}, /* 0x3e - cmpible */
1982 { CMPI
, BO
}, /* 0x3f - cmpibo */
1986 relax_cobr (fragS
*fragP
) /* fragP->fr_opcode is assumed to point to
1987 the cobr instruction, which comes at the
1988 end of the code fragment. */
1990 int opcode
, src1
, src2
, m1
, s2
;
1991 /* Bit fields from cobr instruction. */
1992 long bp_bits
; /* Branch prediction bits from cobr instruction. */
1993 long instr
; /* A single i960 instruction. */
1994 /* ->instruction to be replaced. */
1996 fixS
*fixP
; /* Relocation that can be done at assembly time. */
1998 /* Pick up & parse cobr instruction. */
1999 iP
= fragP
->fr_opcode
;
2000 instr
= md_chars_to_number (iP
, 4);
2001 opcode
= ((instr
>> 24) & 0xff) - 0x30; /* "-0x30" for table index. */
2002 src1
= (instr
>> 19) & 0x1f;
2003 m1
= (instr
>> 13) & 1;
2005 src2
= (instr
>> 14) & 0x1f;
2006 bp_bits
= instr
& BP_MASK
;
2008 /* Generate and output compare instruction. */
2009 instr
= coj
[opcode
].compare
2010 | src1
| (m1
<< 11) | (s2
<< 6) | (src2
<< 14);
2011 md_number_to_chars (iP
, instr
, 4);
2013 /* Output branch instruction. */
2014 md_number_to_chars (iP
+ 4, coj
[opcode
].branch
| bp_bits
, 4);
2016 /* Set up address fixup/relocation. */
2017 fixP
= fix_new (fragP
,
2018 iP
+ 4 - fragP
->fr_literal
,
2025 fixP
->fx_bit_fixP
= (bit_fixS
*) 24; /* Store size of bit field. */
2033 Called by base assembler after address relaxation is finished: modify
2034 variable fragments according to how much relaxation was done.
2036 If the fragment substate is still 1, a 13-bit displacement was enough
2037 to reach the symbol in question. Set up an address fixup, but otherwise
2038 leave the cobr instruction alone.
2040 If the fragment substate is 2, a 13-bit displacement was not enough.
2041 Replace the cobr with a two instructions (a compare and a branch). */
2044 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
,
2045 segT sec ATTRIBUTE_UNUSED
,
2048 /* Structure describing needed address fix. */
2051 switch (fragP
->fr_subtype
)
2054 /* Leave single cobr instruction. */
2055 fixP
= fix_new (fragP
,
2056 fragP
->fr_opcode
- fragP
->fr_literal
,
2063 fixP
->fx_bit_fixP
= (bit_fixS
*) 13; /* Size of bit field. */
2066 /* Replace cobr with compare/branch instructions. */
2070 BAD_CASE (fragP
->fr_subtype
);
2075 /* md_estimate_size_before_relax: How much does it look like *fragP will grow?
2077 Called by base assembler just before address relaxation.
2078 Return the amount by which the fragment will grow.
2080 Any symbol that is now undefined will not become defined; cobr's
2081 based on undefined symbols will have to be replaced with a compare
2082 instruction and a branch instruction, and the code fragment will grow
2086 md_estimate_size_before_relax (fragS
*fragP
, segT segment_type
)
2088 /* If symbol is undefined in this segment, go to "relaxed" state
2089 (compare and branch instructions instead of cobr) right now. */
2090 if (S_GET_SEGMENT (fragP
->fr_symbol
) != segment_type
)
2096 return md_relax_table
[fragP
->fr_subtype
].rlx_length
;
2099 #if defined(OBJ_AOUT) | defined(OBJ_BOUT)
2102 This routine exists in order to overcome machine byte-order problems
2103 when dealing with bit-field entries in the relocation_info struct.
2105 But relocation info will be used on the host machine only (only
2106 executable code is actually downloaded to the i80960). Therefore,
2107 we leave it in host byte order. */
2110 md_ri_to_chars (char *where
, struct relocation_info
*ri
)
2112 host_number_to_chars (where
, ri
->r_address
, 4);
2113 host_number_to_chars (where
+ 4, ri
->r_index
, 3);
2115 where
[7] = (ri
->r_pcrel
<< 7
2123 where
[7] = (ri
->r_pcrel
<< 0
2133 #endif /* defined(OBJ_AOUT) | defined(OBJ_BOUT) */
2136 /* brtab_emit: generate the fetch-prediction branch table.
2138 See the comments above the declaration of 'br_cnt' for details on
2139 branch-prediction instrumentation.
2141 The code emitted here would be functionally equivalent to the following
2142 example assembler source.
2147 .word 0 # link to next table
2148 .word 3 # length of table
2149 .word LBRANCH0 # 1st entry in table proper
2158 /* Where the binary was output to. */
2160 /* Pointer to description of deferred address fixup. */
2163 if (!instrument_branches
)
2166 subseg_set (data_section
, 0); /* .data */
2167 frag_align (2, 0, 0); /* .align 2 */
2168 record_alignment (now_seg
, 2);
2169 colon (BR_TAB_NAME
); /* BR_TAB_NAME: */
2170 emit (0); /* .word 0 #link to next table */
2171 emit (br_cnt
); /* .word n #length of table */
2173 for (i
= 0; i
< br_cnt
; i
++)
2175 sprintf (buf
, "%s%d", BR_LABEL_BASE
, i
);
2177 fixP
= fix_new (frag_now
,
2178 p
- frag_now
->fr_literal
,
2179 4, symbol_find (buf
), 0, 0, NO_RELOC
);
2183 /* s_leafproc: process .leafproc pseudo-op
2185 .leafproc takes two arguments, the second one is optional:
2186 arg[1]: name of 'call' entry point to leaf procedure
2187 arg[2]: name of 'bal' entry point to leaf procedure
2189 If the two arguments are identical, or if the second one is missing,
2190 the first argument is taken to be the 'bal' entry point.
2192 If there are 2 distinct arguments, we must make sure that the 'bal'
2193 entry point immediately follows the 'call' entry point in the linked
2197 s_leafproc (int n_ops
, /* Number of operands. */
2198 char *args
[]) /* args[1]->1st operand, args[2]->2nd operand. */
2200 symbolS
*callP
; /* Pointer to leafproc 'call' entry point symbol. */
2201 symbolS
*balP
; /* Pointer to leafproc 'bal' entry point symbol. */
2203 if ((n_ops
!= 1) && (n_ops
!= 2))
2205 as_bad (_("should have 1 or 2 operands"));
2209 /* Find or create symbol for 'call' entry point. */
2210 callP
= symbol_find_or_make (args
[1]);
2212 if (TC_S_IS_CALLNAME (callP
))
2213 as_warn (_("Redefining leafproc %s"), S_GET_NAME (callP
));
2215 /* If that was the only argument, use it as the 'bal' entry point.
2216 Otherwise, mark it as the 'call' entry point and find or create
2217 another symbol for the 'bal' entry point. */
2218 if ((n_ops
== 1) || !strcmp (args
[1], args
[2]))
2220 TC_S_FORCE_TO_BALNAME (callP
);
2224 TC_S_FORCE_TO_CALLNAME (callP
);
2226 balP
= symbol_find_or_make (args
[2]);
2227 if (TC_S_IS_CALLNAME (balP
))
2228 as_warn (_("Redefining leafproc %s"), S_GET_NAME (balP
));
2230 TC_S_FORCE_TO_BALNAME (balP
);
2233 tc_set_bal_of_call (callP
, balP
);
2238 /* s_sysproc: process .sysproc pseudo-op
2240 .sysproc takes two arguments:
2241 arg[1]: name of entry point to system procedure
2242 arg[2]: 'entry_num' (index) of system procedure in the range
2245 For [ab].out, we store the 'entrynum' in the 'n_other' field of
2246 the symbol. Since that entry is normally 0, we bias 'entrynum'
2247 by adding 1 to it. It must be unbiased before it is used. */
2250 s_sysproc (int n_ops
, /* Number of operands. */
2251 char *args
[]) /* args[1]->1st operand, args[2]->2nd operand. */
2258 as_bad (_("should have two operands"));
2262 /* Parse "entry_num" argument and check it for validity. */
2263 parse_expr (args
[2], &exp
);
2264 if (exp
.X_op
!= O_constant
2266 || (offs (exp
) > 31))
2268 as_bad (_("'entry_num' must be absolute number in [0,31]"));
2272 /* Find/make symbol and stick entry number (biased by +1) into it. */
2273 symP
= symbol_find_or_make (args
[1]);
2275 if (TC_S_IS_SYSPROC (symP
))
2276 as_warn (_("Redefining entrynum for sysproc %s"), S_GET_NAME (symP
));
2278 TC_S_SET_SYSPROC (symP
, offs (exp
)); /* Encode entry number. */
2279 TC_S_FORCE_TO_SYSPROC (symP
);
2282 /* parse_po: parse machine-dependent pseudo-op
2284 This is a top-level routine for machine-dependent pseudo-ops. It slurps
2285 up the rest of the input line, breaks out the individual arguments,
2286 and dispatches them to the correct handler. */
2289 parse_po (int po_num
) /* Pseudo-op number: currently S_LEAFPROC or S_SYSPROC. */
2291 /* Pointers operands, with no embedded whitespace.
2292 arg[0] unused, arg[1-3]->operands. */
2294 int n_ops
; /* Number of operands. */
2295 char *p
; /* Pointer to beginning of unparsed argument string. */
2296 char eol
; /* Character that indicated end of line. */
2298 extern char is_end_of_line
[];
2300 /* Advance input pointer to end of line. */
2301 p
= input_line_pointer
;
2302 while (!is_end_of_line
[(unsigned char) *input_line_pointer
])
2303 input_line_pointer
++;
2305 eol
= *input_line_pointer
; /* Save end-of-line char. */
2306 *input_line_pointer
= '\0'; /* Terminate argument list. */
2308 /* Parse out operands. */
2309 n_ops
= get_args (p
, args
);
2313 /* Dispatch to correct handler. */
2317 s_sysproc (n_ops
, args
);
2320 s_leafproc (n_ops
, args
);
2327 /* Restore eol, so line numbers get updated correctly. Base
2328 assembler assumes we leave input pointer pointing at char
2329 following the eol. */
2330 *input_line_pointer
++ = eol
;
2333 /* reloc_callj: Relocate a 'callj' instruction
2335 This is a "non-(GNU)-standard" machine-dependent hook. The base
2336 assembler calls it when it decides it can relocate an address at
2337 assembly time instead of emitting a relocation directive.
2339 Check to see if the relocation involves a 'callj' instruction to a:
2340 sysproc: Replace the default 'call' instruction with a 'calls'
2341 leafproc: Replace the default 'call' instruction with a 'bal'.
2342 other proc: Do nothing.
2344 See b.out.h for details on the 'n_other' field in a symbol structure.
2347 Assumes the caller has already figured out, in the case of a leafproc,
2348 to use the 'bal' entry point, and has substituted that symbol into the
2349 passed fixup structure. */
2352 reloc_callj (fixS
*fixP
) /* Relocation that can be done at assembly time. */
2354 /* Points to the binary for the instruction being relocated. */
2357 if (!fixP
->fx_tcbit
)
2358 /* This wasn't a callj instruction in the first place. */
2361 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
2363 if (TC_S_IS_SYSPROC (fixP
->fx_addsy
))
2365 /* Symbol is a .sysproc: replace 'call' with 'calls'. System
2366 procedure number is (other-1). */
2367 md_number_to_chars (where
, CALLS
| TC_S_GET_SYSPROC (fixP
->fx_addsy
), 4);
2369 /* Nothing else needs to be done for this instruction. Make
2370 sure 'md_number_to_field()' will perform a no-op. */
2371 fixP
->fx_bit_fixP
= (bit_fixS
*) 1;
2373 else if (TC_S_IS_CALLNAME (fixP
->fx_addsy
))
2375 /* Should not happen: see block comment above. */
2376 as_fatal (_("Trying to 'bal' to %s"), S_GET_NAME (fixP
->fx_addsy
));
2378 else if (TC_S_IS_BALNAME (fixP
->fx_addsy
))
2380 /* Replace 'call' with 'bal'; both instructions have the same
2381 format, so calling code should complete relocation as if
2382 nothing happened here. */
2383 md_number_to_chars (where
, BAL
, 4);
2385 else if (TC_S_IS_BADPROC (fixP
->fx_addsy
))
2386 as_bad (_("Looks like a proc, but can't tell what kind.\n"));
2388 /* Otherwise Symbol is neither a sysproc nor a leafproc. */
2392 /* Handle the MRI .endian pseudo-op. */
2395 s_endian (int ignore ATTRIBUTE_UNUSED
)
2400 name
= input_line_pointer
;
2401 c
= get_symbol_end ();
2402 if (strcasecmp (name
, "little") == 0)
2404 else if (strcasecmp (name
, "big") == 0)
2405 as_bad (_("big endian mode is not supported"));
2407 as_warn (_("ignoring unrecognized .endian type `%s'"), name
);
2409 *input_line_pointer
= c
;
2411 demand_empty_rest_of_line ();
2414 /* We have no need to default values of symbols. */
2417 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
2422 /* Exactly what point is a PC-relative offset relative TO?
2423 On the i960, they're relative to the address of the instruction,
2424 which we have set up as the address of the fixup too. */
2426 md_pcrel_from (fixS
*fixP
)
2428 return fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
2432 md_apply_fix (fixS
*fixP
,
2434 segT seg ATTRIBUTE_UNUSED
)
2437 char *place
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
2439 if (!fixP
->fx_bit_fixP
)
2441 md_number_to_imm (place
, val
, fixP
->fx_size
);
2443 else if ((int) (size_t) fixP
->fx_bit_fixP
== 13
2444 && fixP
->fx_addsy
!= NULL
2445 && S_GET_SEGMENT (fixP
->fx_addsy
) == undefined_section
)
2447 /* This is a COBR instruction. They have only a
2448 13-bit displacement and are only to be used
2449 for local branches: flag as error, don't generate
2451 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2452 _("can't use COBR format with external label"));
2453 fixP
->fx_addsy
= NULL
;
2456 md_number_to_field (place
, val
, fixP
->fx_bit_fixP
);
2458 if (fixP
->fx_addsy
== NULL
)
2462 #if defined(OBJ_AOUT) | defined(OBJ_BOUT)
2464 tc_bout_fix_to_chars (char *where
,
2466 relax_addressT segment_address_in_file
)
2468 static const unsigned char nbytes_r_length
[] = {42, 0, 1, 42, 2};
2469 struct relocation_info ri
;
2472 memset ((char *) &ri
, '\0', sizeof (ri
));
2473 symbolP
= fixP
->fx_addsy
;
2474 know (symbolP
!= 0 || fixP
->fx_r_type
!= NO_RELOC
);
2475 ri
.r_bsr
= fixP
->fx_bsr
; /*SAC LD RELAX HACK */
2476 /* These two 'cuz of NS32K */
2477 ri
.r_callj
= fixP
->fx_tcbit
;
2478 if (fixP
->fx_bit_fixP
)
2481 ri
.r_length
= nbytes_r_length
[fixP
->fx_size
];
2482 ri
.r_pcrel
= fixP
->fx_pcrel
;
2483 ri
.r_address
= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
- segment_address_in_file
;
2485 if (fixP
->fx_r_type
!= NO_RELOC
)
2487 switch (fixP
->fx_r_type
)
2492 ri
.r_length
= fixP
->fx_size
- 1;
2506 else if (linkrelax
|| !S_IS_DEFINED (symbolP
) || fixP
->fx_bsr
)
2509 ri
.r_index
= symbolP
->sy_number
;
2514 ri
.r_index
= S_GET_TYPE (symbolP
);
2517 /* Output the relocation information in machine-dependent form. */
2518 md_ri_to_chars (where
, &ri
);
2521 #endif /* OBJ_AOUT or OBJ_BOUT */
2523 /* Align an address by rounding it up to the specified boundary. */
2526 md_section_align (segT seg
,
2527 valueT addr
) /* Address to be rounded up. */
2531 align
= bfd_get_section_alignment (stdoutput
, seg
);
2532 return (addr
+ (1 << align
) - 1) & (-1 << align
);
2535 extern int coff_flags
;
2537 /* For aout or bout, the bal immediately follows the call.
2539 For coff, we cheat and store a pointer to the bal symbol in the
2540 second aux entry of the call. */
2551 tc_set_bal_of_call (symbolS
*callP ATTRIBUTE_UNUSED
,
2552 symbolS
*balP ATTRIBUTE_UNUSED
)
2554 know (TC_S_IS_CALLNAME (callP
));
2555 know (TC_S_IS_BALNAME (balP
));
2559 callP
->sy_tc
= balP
;
2560 S_SET_NUMBER_AUXILIARY (callP
, 2);
2562 #else /* ! OBJ_COFF */
2565 /* If the 'bal' entry doesn't immediately follow the 'call'
2566 symbol, unlink it from the symbol list and re-insert it. */
2567 if (symbol_next (callP
) != balP
)
2569 symbol_remove (balP
, &symbol_rootP
, &symbol_lastP
);
2570 symbol_append (balP
, callP
, &symbol_rootP
, &symbol_lastP
);
2571 } /* if not in order */
2573 #else /* ! OBJ_ABOUT */
2574 as_fatal ("Only supported for a.out, b.out, or COFF");
2575 #endif /* ! OBJ_ABOUT */
2576 #endif /* ! OBJ_COFF */
2580 tc_get_bal_of_call (symbolS
*callP ATTRIBUTE_UNUSED
)
2584 know (TC_S_IS_CALLNAME (callP
));
2587 retval
= callP
->sy_tc
;
2590 retval
= symbol_next (callP
);
2592 as_fatal ("Only supported for a.out, b.out, or COFF");
2593 #endif /* ! OBJ_ABOUT */
2594 #endif /* ! OBJ_COFF */
2596 know (TC_S_IS_BALNAME (retval
));
2602 tc_coff_symbol_emit_hook (symbolS
*symbolP ATTRIBUTE_UNUSED
)
2604 if (TC_S_IS_CALLNAME (symbolP
))
2606 symbolS
*balP
= tc_get_bal_of_call (symbolP
);
2608 symbolP
->sy_symbol
.ost_auxent
[1].x_bal
.x_balntry
= S_GET_VALUE (balP
);
2609 if (S_GET_STORAGE_CLASS (symbolP
) == C_EXT
)
2610 S_SET_STORAGE_CLASS (symbolP
, C_LEAFEXT
);
2612 S_SET_STORAGE_CLASS (symbolP
, C_LEAFSTAT
);
2613 S_SET_DATA_TYPE (symbolP
, S_GET_DATA_TYPE (symbolP
) | (DT_FCN
<< N_BTSHFT
));
2614 /* Fix up the bal symbol. */
2615 S_SET_STORAGE_CLASS (balP
, C_LABEL
);
2618 #endif /* OBJ_COFF */
2621 i960_handle_align (fragS
*fragp ATTRIBUTE_UNUSED
)
2627 as_bad (_("option --link-relax is only supported in b.out format"));
2632 /* The text section "ends" with another alignment reloc, to which we
2633 aren't adding padding. */
2634 if (fragp
->fr_next
== text_last_frag
2635 || fragp
->fr_next
== data_last_frag
)
2638 /* alignment directive */
2639 fix_new (fragp
, fragp
->fr_fix
, fragp
->fr_offset
, 0, 0, 0,
2640 (int) fragp
->fr_type
);
2641 #endif /* OBJ_BOUT */
2645 i960_validate_fix (fixS
*fixP
, segT this_segment_type ATTRIBUTE_UNUSED
)
2647 if (fixP
->fx_tcbit
&& TC_S_IS_CALLNAME (fixP
->fx_addsy
))
2649 /* Relocation should be done via the associated 'bal'
2650 entry point symbol. */
2651 if (!TC_S_IS_BALNAME (tc_get_bal_of_call (fixP
->fx_addsy
)))
2653 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2654 _("No 'bal' entry point for leafproc %s"),
2655 S_GET_NAME (fixP
->fx_addsy
));
2658 fixP
->fx_addsy
= tc_get_bal_of_call (fixP
->fx_addsy
);
2667 tc_bfd_fix2rtype (fixS
*fixP
)
2669 if (fixP
->fx_pcrel
== 0 && fixP
->fx_size
== 4)
2670 return BFD_RELOC_32
;
2672 if (fixP
->fx_pcrel
!= 0 && fixP
->fx_size
== 4)
2673 return BFD_RELOC_24_PCREL
;
2679 /* Translate internal representation of relocation info to BFD target
2682 FIXME: To what extent can we get all relevant targets to use this? */
2685 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixP
)
2689 reloc
= xmalloc (sizeof (arelent
));
2691 /* HACK: Is this right? */
2692 fixP
->fx_r_type
= tc_bfd_fix2rtype (fixP
);
2694 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixP
->fx_r_type
);
2695 if (reloc
->howto
== NULL
)
2697 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2698 "internal error: can't export reloc type %d (`%s')",
2700 bfd_get_reloc_code_name (fixP
->fx_r_type
));
2704 assert (!fixP
->fx_pcrel
== !reloc
->howto
->pc_relative
);
2706 reloc
->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
2707 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixP
->fx_addsy
);
2708 reloc
->address
= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
2709 reloc
->addend
= fixP
->fx_addnumber
;
2714 /* end from cgen.c */
2716 const pseudo_typeS md_pseudo_table
[] =
2718 {"bss", s_lcomm
, 1},
2719 {"endian", s_endian
, 0},
2720 {"extended", float_cons
, 't'},
2721 {"leafproc", parse_po
, S_LEAFPROC
},
2722 {"sysproc", parse_po
, S_SYSPROC
},