1 /* tc-s390.c -- Assemble for the S390
2 Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
3 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #include "safe-ctype.h"
26 #include "struc-symbol.h"
28 #include "opcode/s390.h"
31 /* The default architecture. */
33 #define DEFAULT_ARCH "s390"
35 static char *default_arch = DEFAULT_ARCH;
36 /* Either 32 or 64, selects file format. */
37 static int s390_arch_size;
38 /* Current architecture. Start with the smallest instruction set. */
39 static enum s390_opcode_arch_val current_architecture = S390_OPCODE_ESA;
40 static int current_arch_mask = 1 << S390_OPCODE_ESA;
41 static int current_arch_requested = 0;
43 /* Whether to use user friendly register names. Default is true. */
44 #ifndef TARGET_REG_NAMES_P
45 #define TARGET_REG_NAMES_P true
48 static boolean reg_names_p = TARGET_REG_NAMES_P;
50 /* Set to TRUE if we want to warn about zero base/index registers. */
51 static boolean warn_areg_zero = FALSE;
53 /* Generic assembler global variables which must be defined by all
56 const char comment_chars[] = "#";
58 /* Characters which start a comment at the beginning of a line. */
59 const char line_comment_chars[] = "#";
61 /* Characters which may be used to separate multiple commands on a
63 const char line_separator_chars[] = ";";
65 /* Characters which are used to indicate an exponent in a floating
67 const char EXP_CHARS[] = "eE";
69 /* Characters which mean that a number is a floating point constant,
71 const char FLT_CHARS[] = "dD";
73 /* The target specific pseudo-ops which we support. */
75 /* Define the prototypes for the pseudo-ops */
76 static void s390_byte PARAMS ((int));
77 static void s390_elf_cons PARAMS ((int));
78 static void s390_bss PARAMS ((int));
79 static void s390_insn PARAMS ((int));
80 static void s390_literals PARAMS ((int));
82 const pseudo_typeS md_pseudo_table[] =
84 { "align", s_align_bytes, 0 },
85 /* Pseudo-ops which must be defined. */
86 { "bss", s390_bss, 0 },
87 { "insn", s390_insn, 0 },
88 /* Pseudo-ops which must be overridden. */
89 { "byte", s390_byte, 0 },
90 { "short", s390_elf_cons, 2 },
91 { "long", s390_elf_cons, 4 },
92 { "quad", s390_elf_cons, 8 },
93 { "ltorg", s390_literals, 0 },
94 { "string", stringer, 2 },
99 /* Structure to hold information about predefined registers. */
106 /* List of registers that are pre-defined:
108 Each access register has a predefined name of the form:
109 a<reg_num> which has the value <reg_num>.
111 Each control register has a predefined name of the form:
112 c<reg_num> which has the value <reg_num>.
114 Each general register has a predefined name of the form:
115 r<reg_num> which has the value <reg_num>.
117 Each floating point register a has predefined name of the form:
118 f<reg_num> which has the value <reg_num>.
120 There are individual registers as well:
124 The table is sorted. Suitable for searching by a binary search. */
126 static const struct pd_reg pre_defined_registers[] =
128 { "a0", 0 }, /* Access registers */
145 { "c0", 0 }, /* Control registers */
162 { "f0", 0 }, /* Floating point registers */
179 { "lit", 13 }, /* Pointer to literal pool */
181 { "r0", 0 }, /* General purpose registers */
198 { "sp", 15 }, /* Stack pointer */
202 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
204 static int reg_name_search
205 PARAMS ((const struct pd_reg *, int, const char *));
206 static boolean register_name PARAMS ((expressionS *));
207 static void init_default_arch PARAMS ((void));
208 static void s390_insert_operand
209 PARAMS ((unsigned char *, const struct s390_operand *, offsetT, char *,
211 static char *md_gather_operands
212 PARAMS ((char *, unsigned char *, const struct s390_opcode *));
214 /* Given NAME, find the register number associated with that name, return
215 the integer value associated with the given name or -1 on failure. */
218 reg_name_search (regs, regcount, name)
219 const struct pd_reg *regs;
223 int middle, low, high;
231 middle = (low + high) / 2;
232 cmp = strcasecmp (name, regs[middle].name);
238 return regs[middle].value;
247 * Summary of register_name().
249 * in: Input_line_pointer points to 1st char of operand.
251 * out: A expressionS.
252 * The operand may have been a register: in this case, X_op == O_register,
253 * X_add_number is set to the register number, and truth is returned.
254 * Input_line_pointer->(next non-blank) char after operand, or is in its
259 register_name (expressionP)
260 expressionS *expressionP;
267 /* Find the spelling of the operand. */
268 start = name = input_line_pointer;
269 if (name[0] == '%' && ISALPHA (name[1]))
270 name = ++input_line_pointer;
274 c = get_symbol_end ();
275 reg_number = reg_name_search (pre_defined_registers, REG_NAME_CNT, name);
277 /* Put back the delimiting char. */
278 *input_line_pointer = c;
280 /* Look to see if it's in the register table. */
283 expressionP->X_op = O_register;
284 expressionP->X_add_number = reg_number;
286 /* Make the rest nice. */
287 expressionP->X_add_symbol = NULL;
288 expressionP->X_op_symbol = NULL;
292 /* Reset the line as if we had not done anything. */
293 input_line_pointer = start;
297 /* Local variables. */
299 /* Opformat hash table. */
300 static struct hash_control *s390_opformat_hash;
302 /* Opcode hash table. */
303 static struct hash_control *s390_opcode_hash;
305 /* Flags to set in the elf header */
306 static flagword s390_flags = 0;
308 symbolS *GOT_symbol; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
310 #ifndef WORKING_DOT_WORD
311 const int md_short_jump_size = 4;
312 const int md_long_jump_size = 4;
315 CONST char *md_shortopts = "A:m:kVQ:";
316 struct option md_longopts[] = {
317 {NULL, no_argument, NULL, 0}
319 size_t md_longopts_size = sizeof (md_longopts);
321 /* Initialize the default opcode arch and word size from the default
322 architecture name. */
326 if (current_arch_requested)
329 if (strcmp (default_arch, "s390") == 0)
332 current_architecture = S390_OPCODE_ESA;
334 else if (strcmp (default_arch, "s390x") == 0)
337 current_architecture = S390_OPCODE_ESAME;
340 as_fatal ("Invalid default architecture, broken assembler.");
341 current_arch_mask = 1 << current_architecture;
344 /* Called by TARGET_FORMAT. */
346 s390_target_format ()
348 /* We don't get a chance to initialize anything before we're called,
349 so handle that now. */
350 if (! s390_arch_size)
351 init_default_arch ();
353 return s390_arch_size == 64 ? "elf64-s390" : "elf32-s390";
357 md_parse_option (c, arg)
363 /* -k: Ignore for FreeBSD compatibility. */
367 if (arg != NULL && strcmp (arg, "regnames") == 0)
370 else if (arg != NULL && strcmp (arg, "no-regnames") == 0)
373 else if (arg != NULL && strcmp (arg, "warn-areg-zero") == 0)
374 warn_areg_zero = TRUE;
376 else if (arg != NULL && strcmp (arg, "31") == 0)
379 else if (arg != NULL && strcmp (arg, "64") == 0)
384 as_bad (_("invalid switch -m%s"), arg);
390 if (arg != NULL && strcmp (arg, "esa") == 0)
391 current_architecture = S390_OPCODE_ESA;
392 else if (arg != NULL && strcmp (arg, "esame") == 0)
393 current_architecture = S390_OPCODE_ESAME;
395 as_bad ("invalid architecture -A%s", arg);
396 current_arch_mask = 1 << current_architecture;
397 current_arch_requested = 1;
400 /* -V: SVR4 argument to print version ID. */
405 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
406 should be emitted or not. FIXME: Not implemented. */
418 md_show_usage (stream)
421 fprintf (stream, _("\
423 -mregnames Allow symbolic names for registers\n\
424 -mwarn-areg-zero Warn about zero base/index registers\n\
425 -mno-regnames Do not allow symbolic names for registers\n\
426 -m31 Set file format to 31 bit format\n\
427 -m64 Set file format to 64 bit format\n"));
428 fprintf (stream, _("\
429 -V print assembler version number\n\
430 -Qy, -Qn ignored\n"));
433 /* This function is called when the assembler starts up. It is called
434 after the options have been parsed and the output file has been
440 register const struct s390_opcode *op;
441 const struct s390_opcode *op_end;
442 boolean dup_insn = false;
445 /* Give a warning if the combination -m64-bit and -Aesa is used. */
446 if (s390_arch_size == 64 && current_arch_mask == (1 << S390_OPCODE_ESA))
447 as_warn ("The 64 bit file format is used without esame instructions.");
449 /* Set the ELF flags if desired. */
451 bfd_set_private_flags (stdoutput, s390_flags);
453 /* Insert the opcode formats into a hash table. */
454 s390_opformat_hash = hash_new ();
456 op_end = s390_opformats + s390_num_opformats;
457 for (op = s390_opformats; op < op_end; op++)
459 retval = hash_insert (s390_opformat_hash, op->name, (PTR) op);
460 if (retval != (const char *) NULL)
462 as_bad (_("Internal assembler error for instruction format %s"),
468 /* Insert the opcodes into a hash table. */
469 s390_opcode_hash = hash_new ();
471 op_end = s390_opcodes + s390_num_opcodes;
472 for (op = s390_opcodes; op < op_end; op++)
474 retval = hash_insert (s390_opcode_hash, op->name, (PTR) op);
475 if (retval != (const char *) NULL)
477 as_bad (_("Internal assembler error for instruction %s"), op->name);
485 record_alignment (text_section, 2);
486 record_alignment (data_section, 2);
487 record_alignment (bss_section, 2);
491 /* Called after all assembly has been done. */
495 if (s390_arch_size == 64)
496 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_64);
498 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_31);
502 s390_align_code (fragP, count)
506 /* We use nop pattern 0x0707. */
509 memset (fragP->fr_literal + fragP->fr_fix, 0x07, count);
510 fragP->fr_var = count;
514 /* Insert an operand value into an instruction. */
517 s390_insert_operand (insn, operand, val, file, line)
519 const struct s390_operand *operand;
527 if (operand->flags & (S390_OPERAND_SIGNED|S390_OPERAND_PCREL))
531 max = ((offsetT) 1 << (operand->bits - 1)) - 1;
532 min = - ((offsetT) 1 << (operand->bits - 1));
533 /* Halve PCREL operands. */
534 if (operand->flags & S390_OPERAND_PCREL)
536 /* Check for underflow / overflow. */
537 if (val < min || val > max)
540 "operand out of range (%s not between %ld and %ld)";
543 if (operand->flags & S390_OPERAND_PCREL)
549 sprint_value (buf, val);
550 if (file == (char *) NULL)
551 as_bad (err, buf, (int) min, (int) max);
553 as_bad_where (file, line, err, buf, (int) min, (int) max);
556 /* val is ok, now restrict it to operand->bits bits. */
557 uval = (addressT) val & ((((addressT) 1 << (operand->bits-1)) << 1) - 1);
563 max = (((addressT) 1 << (operand->bits - 1)) << 1) - 1;
565 uval = (addressT) val;
566 /* Length x in an instructions has real length x+1. */
567 if (operand->flags & S390_OPERAND_LENGTH)
569 /* Check for underflow / overflow. */
570 if (uval < min || uval > max)
573 "operand out of range (%s not between %ld and %ld)";
576 if (operand->flags & S390_OPERAND_LENGTH)
582 sprint_value (buf, uval);
583 if (file == (char *) NULL)
584 as_bad (err, buf, (int) min, (int) max);
586 as_bad_where (file, line, err, buf, (int) min, (int) max);
591 /* Insert fragments of the operand byte for byte. */
592 offset = operand->shift + operand->bits;
593 uval <<= (-offset) & 7;
594 insn += (offset - 1) / 8;
602 /* Structure used to hold suffixes. */
616 elf_suffix_type suffix;
619 static elf_suffix_type s390_elf_suffix PARAMS ((char **, expressionS *));
620 static int s390_exp_compare PARAMS ((expressionS *exp1, expressionS *exp2));
621 static elf_suffix_type s390_lit_suffix
622 PARAMS ((char **, expressionS *, elf_suffix_type));
625 /* Parse @got/@plt/@gotoff. and return the desired relocation. */
626 static elf_suffix_type
627 s390_elf_suffix (str_p, exp_p)
631 static struct map_bfd mapping[] =
633 { "got", 3, ELF_SUFFIX_GOT },
634 { "got12", 5, ELF_SUFFIX_GOT },
635 { "plt", 3, ELF_SUFFIX_PLT },
636 { "gotent", 6, ELF_SUFFIX_GOTENT },
637 { NULL, 0, ELF_SUFFIX_NONE }
646 return ELF_SUFFIX_NONE;
649 while (ISALNUM (*str))
653 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
654 if (len == ptr->length
655 && strncasecmp (ident, ptr->string, ptr->length) == 0)
657 if (exp_p->X_add_number != 0)
658 as_warn (_("identifier+constant@%s means identifier@%s+constant"),
659 ptr->string, ptr->string);
660 /* Now check for identifier@suffix+constant. */
661 if (*str == '-' || *str == '+')
663 char *orig_line = input_line_pointer;
666 input_line_pointer = str;
667 expression (&new_exp);
669 switch (new_exp.X_op)
671 case O_constant: /* X_add_number (a constant expression). */
672 exp_p->X_add_number += new_exp.X_add_number;
673 str = input_line_pointer;
675 case O_symbol: /* X_add_symbol + X_add_number. */
676 /* this case is used for e.g. xyz@PLT+.Label. */
677 exp_p->X_add_number += new_exp.X_add_number;
678 exp_p->X_op_symbol = new_exp.X_add_symbol;
680 str = input_line_pointer;
682 case O_uminus: /* (- X_add_symbol) + X_add_number. */
683 /* this case is used for e.g. xyz@PLT-.Label. */
684 exp_p->X_add_number += new_exp.X_add_number;
685 exp_p->X_op_symbol = new_exp.X_add_symbol;
686 exp_p->X_op = O_subtract;
687 str = input_line_pointer;
693 /* If s390_elf_suffix has not been called with
694 &input_line_pointer as first parameter, we have
695 clobbered the input_line_pointer. We have to
697 if (&input_line_pointer != str_p)
698 input_line_pointer = orig_line;
704 return BFD_RELOC_UNUSED;
707 /* Structure used to hold a literal pool entry. */
710 struct s390_lpe *next;
712 FLONUM_TYPE floatnum; /* used if X_op == O_big && X_add_number <= 0 */
713 LITTLENUM_TYPE bignum[4]; /* used if X_op == O_big && X_add_number > 0 */
715 bfd_reloc_code_real_type reloc;
719 static struct s390_lpe *lpe_free_list = NULL;
720 static struct s390_lpe *lpe_list = NULL;
721 static struct s390_lpe *lpe_list_tail = NULL;
722 static symbolS *lp_sym = NULL;
723 static int lp_count = 0;
724 static int lpe_count = 0;
727 s390_exp_compare (exp1, exp2)
731 if (exp1->X_op != exp2->X_op)
736 case O_constant: /* X_add_number must be equal. */
738 return exp1->X_add_number == exp2->X_add_number;
741 as_bad (_("Can't handle O_big in s390_exp_compare"));
743 case O_symbol: /* X_add_symbol & X_add_number must be equal. */
748 return (exp1->X_add_symbol == exp2->X_add_symbol)
749 && (exp1->X_add_number == exp2->X_add_number);
751 case O_multiply: /* X_add_symbol,X_op_symbol&X_add_number must be equal. */
756 case O_bit_inclusive_or:
758 case O_bit_exclusive_or:
770 return (exp1->X_add_symbol == exp2->X_add_symbol)
771 && (exp1->X_op_symbol == exp2->X_op_symbol)
772 && (exp1->X_add_number == exp2->X_add_number);
778 /* Test for @lit and if its present make an entry in the literal pool and
779 modify the current expression to be an offset into the literal pool. */
780 static elf_suffix_type
781 s390_lit_suffix (str_p, exp_p, suffix)
784 elf_suffix_type suffix;
786 bfd_reloc_code_real_type reloc;
790 struct s390_lpe *lpe;
794 return suffix; /* No modification. */
796 /* We look for a suffix of the form "@lit1", "@lit2", "@lit4" or "@lit8". */
798 while (ISALNUM (*str))
801 if (len != 4 || strncasecmp (ident, "lit", 3) != 0
802 || (ident[3]!='1' && ident[3]!='2' && ident[3]!='4' && ident[3]!='8'))
803 return suffix; /* no modification */
804 nbytes = ident[3] - '0';
806 reloc = BFD_RELOC_UNUSED;
807 if (suffix == ELF_SUFFIX_GOT)
810 reloc = BFD_RELOC_390_GOT16;
811 else if (nbytes == 4)
812 reloc = BFD_RELOC_32_GOT_PCREL;
813 else if (nbytes == 8)
814 reloc = BFD_RELOC_390_GOT64;
816 else if (suffix == ELF_SUFFIX_PLT)
819 reloc = BFD_RELOC_390_PLT32;
820 else if (nbytes == 8)
821 reloc = BFD_RELOC_390_PLT64;
824 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
825 as_bad (_("Invalid suffix for literal pool entry"));
827 /* Search the pool if the new entry is a duplicate. */
828 if (exp_p->X_op == O_big)
830 /* Special processing for big numbers. */
831 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
833 if (lpe->ex.X_op == O_big)
835 if (exp_p->X_add_number <= 0 && lpe->ex.X_add_number <= 0)
837 if (memcmp (&generic_floating_point_number, &lpe->floatnum,
838 sizeof (FLONUM_TYPE)) == 0)
841 else if (exp_p->X_add_number == lpe->ex.X_add_number)
843 if (memcmp (generic_bignum, lpe->bignum,
844 sizeof (LITTLENUM_TYPE)*exp_p->X_add_number) == 0)
852 /* Processing for 'normal' data types. */
853 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
854 if (lpe->nbytes == nbytes && lpe->reloc == reloc
855 && s390_exp_compare (exp_p, &lpe->ex) != 0)
862 if (lpe_free_list != NULL)
865 lpe_free_list = lpe_free_list->next;
869 lpe = (struct s390_lpe *) xmalloc (sizeof (struct s390_lpe));
874 if (exp_p->X_op == O_big)
876 if (exp_p->X_add_number <= 0)
877 lpe->floatnum = generic_floating_point_number;
878 else if (exp_p->X_add_number <= 4)
879 memcpy (lpe->bignum, generic_bignum,
880 exp_p->X_add_number * sizeof (LITTLENUM_TYPE));
882 as_bad (_("Big number is too big"));
885 lpe->nbytes = nbytes;
887 /* Literal pool name defined ? */
890 sprintf (tmp_name, ".L\001%i", lp_count);
891 lp_sym = symbol_make (tmp_name);
894 /* Make name for literal pool entry. */
895 sprintf (tmp_name, ".L\001%i\002%i", lp_count, lpe_count);
897 lpe->sym = symbol_make (tmp_name);
899 /* Add to literal pool list. */
901 if (lpe_list_tail != NULL)
903 lpe_list_tail->next = lpe;
907 lpe_list = lpe_list_tail = lpe;
910 /* Now change exp_p to the offset into the literal pool.
911 Thats the expression: .L^Ax^By-.L^Ax */
912 exp_p->X_add_symbol = lpe->sym;
913 exp_p->X_op_symbol = lp_sym;
914 exp_p->X_op = O_subtract;
915 exp_p->X_add_number = 0;
919 /* We change the suffix type to ELF_SUFFIX_NONE, because
920 the difference of two local labels is just a number. */
921 return ELF_SUFFIX_NONE;
924 /* Like normal .long/.short/.word, except support @got, etc.
925 clobbers input_line_pointer, checks end-of-line. */
927 s390_elf_cons (nbytes)
928 register int nbytes; /* 1=.byte, 2=.word, 4=.long */
931 elf_suffix_type suffix;
933 if (is_it_end_of_statement ())
935 demand_empty_rest_of_line ();
943 if (exp.X_op == O_symbol
944 && *input_line_pointer == '@'
945 && (suffix = s390_elf_suffix (&input_line_pointer, &exp)) != ELF_SUFFIX_NONE)
947 bfd_reloc_code_real_type reloc;
948 reloc_howto_type *reloc_howto;
952 if (nbytes == 2 && suffix == ELF_SUFFIX_GOT)
953 reloc = BFD_RELOC_390_GOT16;
954 else if (nbytes == 4 && suffix == ELF_SUFFIX_GOT)
955 reloc = BFD_RELOC_32_GOT_PCREL;
956 else if (nbytes == 8 && suffix == ELF_SUFFIX_GOT)
957 reloc = BFD_RELOC_390_GOT64;
958 else if (nbytes == 4 && suffix == ELF_SUFFIX_PLT)
959 reloc = BFD_RELOC_390_PLT32;
960 else if (nbytes == 8 && suffix == ELF_SUFFIX_PLT)
961 reloc = BFD_RELOC_390_PLT64;
963 reloc = BFD_RELOC_UNUSED;
965 if (reloc != BFD_RELOC_UNUSED)
967 reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc);
968 size = bfd_get_reloc_size (reloc_howto);
970 as_bad (_("%s relocations do not fit in %d bytes"),
971 reloc_howto->name, nbytes);
972 where = frag_more (nbytes);
973 md_number_to_chars (where, 0, size);
974 /* To make fixup_segment do the pc relative conversion the
975 pcrel parameter on the fix_new_exp call needs to be false. */
976 fix_new_exp (frag_now, where - frag_now->fr_literal,
977 size, &exp, false, reloc);
980 as_bad (_("relocation not applicable"));
983 emit_expr (&exp, (unsigned int) nbytes);
985 while (*input_line_pointer++ == ',');
987 input_line_pointer--; /* Put terminator back into stream. */
988 demand_empty_rest_of_line ();
991 /* We need to keep a list of fixups. We can't simply generate them as
992 we go, because that would require us to first create the frag, and
993 that would screw up references to ``.''. */
999 bfd_reloc_code_real_type reloc;
1002 #define MAX_INSN_FIXUPS (4)
1004 /* This routine is called for each instruction to be assembled. */
1007 md_gather_operands (str, insn, opcode)
1009 unsigned char *insn;
1010 const struct s390_opcode *opcode;
1012 struct s390_fixup fixups[MAX_INSN_FIXUPS];
1013 const struct s390_operand *operand;
1014 const unsigned char *opindex_ptr;
1015 elf_suffix_type suffix;
1016 bfd_reloc_code_real_type reloc;
1022 while (ISSPACE (*str))
1028 /* Gather the operands. */
1030 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
1035 operand = s390_operands + *opindex_ptr;
1037 if (skip_optional && (operand->flags & S390_OPERAND_INDEX))
1039 /* We do an early skip. For D(X,B) constructions the index
1040 register is skipped (X is optional). For D(L,B) the base
1041 register will be the skipped operand, because L is NOT
1047 /* Gather the operand. */
1048 hold = input_line_pointer;
1049 input_line_pointer = str;
1051 /* Parse the operand. */
1052 if (! register_name (&ex))
1055 str = input_line_pointer;
1056 input_line_pointer = hold;
1058 /* Write the operand to the insn. */
1059 if (ex.X_op == O_illegal)
1060 as_bad (_("illegal operand"));
1061 else if (ex.X_op == O_absent)
1062 as_bad (_("missing operand"));
1063 else if (ex.X_op == O_register || ex.X_op == O_constant)
1065 s390_lit_suffix (&str, &ex, ELF_SUFFIX_NONE);
1067 if (ex.X_op != O_register && ex.X_op != O_constant)
1069 /* We need to generate a fixup for the
1070 expression returned by s390_lit_suffix. */
1071 if (fc >= MAX_INSN_FIXUPS)
1072 as_fatal (_("too many fixups"));
1073 fixups[fc].exp = ex;
1074 fixups[fc].opindex = *opindex_ptr;
1075 fixups[fc].reloc = BFD_RELOC_UNUSED;
1080 if ((operand->flags & S390_OPERAND_INDEX)
1081 && ex.X_add_number == 0
1082 && warn_areg_zero == TRUE)
1083 as_warn ("index register specified but zero");
1084 if ((operand->flags & S390_OPERAND_BASE)
1085 && ex.X_add_number == 0
1086 && warn_areg_zero == TRUE)
1087 as_warn ("base register specified but zero");
1088 s390_insert_operand (insn, operand, ex.X_add_number, NULL, 0);
1093 suffix = s390_elf_suffix (&str, &ex);
1094 suffix = s390_lit_suffix (&str, &ex, suffix);
1095 reloc = BFD_RELOC_UNUSED;
1097 if (suffix == ELF_SUFFIX_GOT)
1099 if (operand->flags & S390_OPERAND_DISP)
1100 reloc = BFD_RELOC_390_GOT12;
1101 else if ((operand->flags & S390_OPERAND_SIGNED)
1102 && (operand->bits == 16))
1103 reloc = BFD_RELOC_390_GOT16;
1104 else if ((operand->flags & S390_OPERAND_PCREL)
1105 && (operand->bits == 32))
1106 reloc = BFD_RELOC_390_GOTENT;
1108 else if (suffix == ELF_SUFFIX_PLT)
1110 if ((operand->flags & S390_OPERAND_PCREL)
1111 && (operand->bits == 16))
1112 reloc = BFD_RELOC_390_PLT16DBL;
1113 else if ((operand->flags & S390_OPERAND_PCREL)
1114 && (operand->bits == 32))
1115 reloc = BFD_RELOC_390_PLT32DBL;
1117 else if (suffix == ELF_SUFFIX_GOTENT)
1119 if ((operand->flags & S390_OPERAND_PCREL)
1120 && (operand->bits == 32))
1121 reloc = BFD_RELOC_390_GOTENT;
1124 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
1125 as_bad (_("invalid operand suffix"));
1126 /* We need to generate a fixup of type 'reloc' for this
1128 if (fc >= MAX_INSN_FIXUPS)
1129 as_fatal (_("too many fixups"));
1130 fixups[fc].exp = ex;
1131 fixups[fc].opindex = *opindex_ptr;
1132 fixups[fc].reloc = reloc;
1136 /* Check the next character. The call to expression has advanced
1137 str past any whitespace. */
1138 if (operand->flags & S390_OPERAND_DISP)
1140 /* After a displacement a block in parentheses can start. */
1143 /* Check if parethesed block can be skipped. If the next
1144 operand is neiter an optional operand nor a base register
1145 then we have a syntax error. */
1146 operand = s390_operands + *(++opindex_ptr);
1147 if (!(operand->flags & (S390_OPERAND_INDEX|S390_OPERAND_BASE)))
1148 as_bad (_("syntax error; missing '(' after displacement"));
1150 /* Ok, skip all operands until S390_OPERAND_BASE. */
1151 while (!(operand->flags & S390_OPERAND_BASE))
1152 operand = s390_operands + *(++opindex_ptr);
1154 /* If there is a next operand it must be seperated by a comma. */
1155 if (opindex_ptr[1] != '\0')
1158 as_bad (_("syntax error; expected ,"));
1163 /* We found an opening parentheses. */
1165 for (f = str; *f != '\0'; f++)
1166 if (*f == ',' || *f == ')')
1168 /* If there is no comma until the closing parentheses OR
1169 there is a comma right after the opening parentheses,
1170 we have to skip optional operands. */
1171 if (*f == ',' && f == str)
1173 /* comma directly after '(' ? */
1178 skip_optional = (*f != ',');
1181 else if (operand->flags & S390_OPERAND_BASE)
1183 /* After the base register the parenthesed block ends. */
1185 as_bad (_("syntax error; missing ')' after base register"));
1187 /* If there is a next operand it must be seperated by a comma. */
1188 if (opindex_ptr[1] != '\0')
1191 as_bad (_("syntax error; expected ,"));
1196 /* We can find an 'early' closing parentheses in e.g. D(L) instead
1197 of D(L,B). In this case the base register has to be skipped. */
1200 operand = s390_operands + *(++opindex_ptr);
1202 if (!(operand->flags & S390_OPERAND_BASE))
1203 as_bad (_("syntax error; ')' not allowed here"));
1206 /* If there is a next operand it must be seperated by a comma. */
1207 if (opindex_ptr[1] != '\0')
1210 as_bad (_("syntax error; expected ,"));
1215 while (ISSPACE (*str))
1222 if ((linefeed = strchr (str, '\n')) != NULL)
1224 as_bad (_("junk at end of line: `%s'"), str);
1225 if (linefeed != NULL)
1229 /* Write out the instruction. */
1230 f = frag_more (opcode->oplen);
1231 memcpy (f, insn, opcode->oplen);
1232 dwarf2_emit_insn (opcode->oplen);
1234 /* Create any fixups. At this point we do not use a
1235 bfd_reloc_code_real_type, but instead just use the
1236 BFD_RELOC_UNUSED plus the operand index. This lets us easily
1237 handle fixups for any operand type, although that is admittedly
1238 not a very exciting feature. We pick a BFD reloc type in
1240 for (i = 0; i < fc; i++)
1242 operand = s390_operands + fixups[i].opindex;
1244 if (fixups[i].reloc != BFD_RELOC_UNUSED)
1246 reloc_howto_type *reloc_howto;
1250 reloc_howto = bfd_reloc_type_lookup (stdoutput, fixups[i].reloc);
1254 size = bfd_get_reloc_size (reloc_howto);
1256 if (size < 1 || size > 4)
1259 fixP = fix_new_exp (frag_now,
1260 f - frag_now->fr_literal + (operand->shift/8),
1261 size, &fixups[i].exp, reloc_howto->pc_relative,
1263 /* Turn off overflow checking in fixup_segment. This is necessary
1264 because fixup_segment will signal an overflow for large 4 byte
1265 quantities for GOT12 relocations. */
1266 if ( fixups[i].reloc == BFD_RELOC_390_GOT12
1267 || fixups[i].reloc == BFD_RELOC_390_GOT16)
1268 fixP->fx_no_overflow = 1;
1271 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, &fixups[i].exp,
1272 (operand->flags & S390_OPERAND_PCREL) != 0,
1273 ((bfd_reloc_code_real_type)
1274 (fixups[i].opindex + (int) BFD_RELOC_UNUSED)));
1279 /* This routine is called for each instruction to be assembled. */
1285 const struct s390_opcode *opcode;
1286 unsigned char insn[6];
1289 /* Get the opcode. */
1290 for (s = str; *s != '\0' && ! ISSPACE (*s); s++)
1295 /* Look up the opcode in the hash table. */
1296 opcode = (struct s390_opcode *) hash_find (s390_opcode_hash, str);
1297 if (opcode == (const struct s390_opcode *) NULL)
1299 as_bad (_("Unrecognized opcode: `%s'"), str);
1302 else if (!(opcode->architecture & current_arch_mask))
1304 as_bad ("Opcode %s not available in this architecture", str);
1308 memcpy (insn, opcode->opcode, sizeof (insn));
1309 md_gather_operands (s, insn, opcode);
1312 #ifndef WORKING_DOT_WORD
1313 /* Handle long and short jumps. We don't support these */
1315 md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
1317 addressT from_addr, to_addr;
1325 md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
1327 addressT from_addr, to_addr;
1337 int ignore ATTRIBUTE_UNUSED;
1339 /* We don't support putting frags in the BSS segment, we fake it
1340 by marking in_bss, then looking at s_skip for clues. */
1342 subseg_set (bss_section, 0);
1343 demand_empty_rest_of_line ();
1346 /* Pseudo-op handling. */
1350 int ignore ATTRIBUTE_UNUSED;
1353 const struct s390_opcode *opformat;
1354 unsigned char insn[6];
1357 /* Get the opcode format. */
1358 s = input_line_pointer;
1359 while (*s != '\0' && *s != ',' && ! ISSPACE (*s))
1362 as_bad (_("Invalid .insn format\n"));
1365 /* Look up the opcode in the hash table. */
1366 opformat = (struct s390_opcode *)
1367 hash_find (s390_opformat_hash, input_line_pointer);
1368 if (opformat == (const struct s390_opcode *) NULL)
1370 as_bad (_("Unrecognized opcode format: `%s'"), input_line_pointer);
1373 input_line_pointer = s;
1375 if (exp.X_op == O_constant)
1377 if ( ((opformat->oplen == 6) && (exp.X_op > 0) && (exp.X_op < (1ULL << 48)))
1378 || ((opformat->oplen == 4) && (exp.X_op > 0) && (exp.X_op < (1ULL << 32)))
1379 || ((opformat->oplen == 2) && (exp.X_op > 0) && (exp.X_op < (1ULL << 16))))
1380 md_number_to_chars (insn, exp.X_add_number, opformat->oplen);
1382 as_bad (_("Invalid .insn format\n"));
1384 else if (exp.X_op == O_big)
1386 if (exp.X_add_number > 0
1387 && opformat->oplen == 6
1388 && generic_bignum[3] == 0)
1390 md_number_to_chars (insn, generic_bignum[2], 2);
1391 md_number_to_chars (&insn[2], generic_bignum[1], 2);
1392 md_number_to_chars (&insn[4], generic_bignum[0], 2);
1395 as_bad (_("Invalid .insn format\n"));
1398 as_bad (_("second operand of .insn not a constant\n"));
1400 if (strcmp (opformat->name, "e") != 0 && *input_line_pointer++ != ',')
1401 as_bad (_("missing comma after insn constant\n"));
1403 if ((s = strchr (input_line_pointer, '\n')) != NULL)
1405 input_line_pointer = md_gather_operands (input_line_pointer, insn,
1409 demand_empty_rest_of_line ();
1412 /* The .byte pseudo-op. This is similar to the normal .byte
1413 pseudo-op, but it can also take a single ASCII string. */
1417 int ignore ATTRIBUTE_UNUSED;
1419 if (*input_line_pointer != '\"')
1425 /* Gather characters. A real double quote is doubled. Unusual
1426 characters are not permitted. */
1427 ++input_line_pointer;
1432 c = *input_line_pointer++;
1436 if (*input_line_pointer != '\"')
1438 ++input_line_pointer;
1441 FRAG_APPEND_1_CHAR (c);
1444 demand_empty_rest_of_line ();
1447 /* The .ltorg pseudo-op.This emits all literals defined since the last
1448 .ltorg or the invocation of gas. Literals are defined with the
1452 s390_literals (ignore)
1453 int ignore ATTRIBUTE_UNUSED;
1455 struct s390_lpe *lpe;
1457 if (lp_sym == NULL || lpe_count == 0)
1458 return; /* Nothing to be done. */
1460 /* Emit symbol for start of literal pool. */
1461 S_SET_SEGMENT (lp_sym, now_seg);
1462 S_SET_VALUE (lp_sym, (valueT) frag_now_fix ());
1463 lp_sym->sy_frag = frag_now;
1468 lpe_list = lpe_list->next;
1469 S_SET_SEGMENT (lpe->sym, now_seg);
1470 S_SET_VALUE (lpe->sym, (valueT) frag_now_fix ());
1471 lpe->sym->sy_frag = frag_now;
1473 /* Emit literal pool entry. */
1474 if (lpe->reloc != BFD_RELOC_UNUSED)
1476 reloc_howto_type *reloc_howto =
1477 bfd_reloc_type_lookup (stdoutput, lpe->reloc);
1478 int size = bfd_get_reloc_size (reloc_howto);
1481 if (size > lpe->nbytes)
1482 as_bad (_("%s relocations do not fit in %d bytes"),
1483 reloc_howto->name, lpe->nbytes);
1484 where = frag_more (lpe->nbytes);
1485 md_number_to_chars (where, 0, size);
1486 fix_new_exp (frag_now, where - frag_now->fr_literal,
1487 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
1491 if (lpe->ex.X_op == O_big)
1493 if (lpe->ex.X_add_number <= 0)
1494 generic_floating_point_number = lpe->floatnum;
1496 memcpy (generic_bignum, lpe->bignum,
1497 lpe->ex.X_add_number * sizeof (LITTLENUM_TYPE));
1499 emit_expr (&lpe->ex, lpe->nbytes);
1502 lpe->next = lpe_free_list;
1503 lpe_free_list = lpe;
1505 lpe_list_tail = NULL;
1511 /* Turn a string in input_line_pointer into a floating point constant
1512 of type type, and store the appropriate bytes in *litp. The number
1513 of LITTLENUMS emitted is stored in *sizep . An error message is
1514 returned, or NULL on OK. */
1517 md_atof (type, litp, sizep)
1523 LITTLENUM_TYPE words[4];
1539 return "bad call to md_atof";
1542 t = atof_ieee (input_line_pointer, type, words);
1544 input_line_pointer = t;
1548 for (i = 0; i < prec; i++)
1550 md_number_to_chars (litp, (valueT) words[i], 2);
1557 /* Align a section (I don't know why this is machine dependent). */
1560 md_section_align (seg, addr)
1564 int align = bfd_get_section_alignment (stdoutput, seg);
1566 return ((addr + (1 << align) - 1) & (-1 << align));
1569 /* We don't have any form of relaxing. */
1572 md_estimate_size_before_relax (fragp, seg)
1573 fragS *fragp ATTRIBUTE_UNUSED;
1574 asection *seg ATTRIBUTE_UNUSED;
1580 /* Convert a machine dependent frag. We never generate these. */
1583 md_convert_frag (abfd, sec, fragp)
1584 bfd *abfd ATTRIBUTE_UNUSED;
1585 asection *sec ATTRIBUTE_UNUSED;
1586 fragS *fragp ATTRIBUTE_UNUSED;
1592 md_undefined_symbol (name)
1595 if (*name == '_' && *(name + 1) == 'G'
1596 && strcmp (name, "_GLOBAL_OFFSET_TABLE_") == 0)
1600 if (symbol_find (name))
1601 as_bad (_("GOT already in symbol table"));
1602 GOT_symbol = symbol_new (name, undefined_section,
1603 (valueT) 0, &zero_address_frag);
1610 /* Functions concerning relocs. */
1612 /* The location from which a PC relative jump should be calculated,
1613 given a PC relative reloc. */
1616 md_pcrel_from_section (fixp, sec)
1618 segT sec ATTRIBUTE_UNUSED;
1620 return fixp->fx_frag->fr_address + fixp->fx_where;
1623 /* Here we decide which fixups can be adjusted to make them relative to
1624 the beginning of the section instead of the symbol. Basically we need
1625 to make sure that the dynamic relocations are done correctly, so in
1626 some cases we force the original symbol to be used. */
1628 tc_s390_fix_adjustable (fixP)
1631 /* Prevent all adjustments to global symbols. */
1632 if (S_IS_EXTERN (fixP->fx_addsy))
1634 if (S_IS_WEAK (fixP->fx_addsy))
1636 /* Don't adjust pc-relative references to merge sections. */
1637 if ((S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
1640 /* adjust_reloc_syms doesn't know about the GOT. */
1641 if ( fixP->fx_r_type == BFD_RELOC_32_GOTOFF
1642 || fixP->fx_r_type == BFD_RELOC_390_PLT16DBL
1643 || fixP->fx_r_type == BFD_RELOC_390_PLT32
1644 || fixP->fx_r_type == BFD_RELOC_390_PLT32DBL
1645 || fixP->fx_r_type == BFD_RELOC_390_PLT64
1646 || fixP->fx_r_type == BFD_RELOC_390_GOT12
1647 || fixP->fx_r_type == BFD_RELOC_390_GOT16
1648 || fixP->fx_r_type == BFD_RELOC_32_GOT_PCREL
1649 || fixP->fx_r_type == BFD_RELOC_390_GOT64
1650 || fixP->fx_r_type == BFD_RELOC_390_GOTENT
1651 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1652 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1657 /* Return true if we must always emit a reloc for a type and false if
1658 there is some hope of resolving it a assembly time. */
1660 tc_s390_force_relocation (fixp)
1663 /* Ensure we emit a relocation for every reference to the global
1664 offset table or to the procedure link table. */
1665 switch (fixp->fx_r_type)
1667 case BFD_RELOC_390_GOT12:
1668 case BFD_RELOC_32_GOT_PCREL:
1669 case BFD_RELOC_32_GOTOFF:
1670 case BFD_RELOC_390_GOTPC:
1671 case BFD_RELOC_390_GOT16:
1672 case BFD_RELOC_390_GOTPCDBL:
1673 case BFD_RELOC_390_GOT64:
1674 case BFD_RELOC_390_GOTENT:
1675 case BFD_RELOC_390_PLT32:
1676 case BFD_RELOC_390_PLT16DBL:
1677 case BFD_RELOC_390_PLT32DBL:
1678 case BFD_RELOC_390_PLT64:
1679 case BFD_RELOC_VTABLE_INHERIT:
1680 case BFD_RELOC_VTABLE_ENTRY:
1687 /* Apply a fixup to the object code. This is called for all the
1688 fixups we generated by the call to fix_new_exp, above. In the call
1689 above we used a reloc code which was the largest legal reloc code
1690 plus the operand index. Here we undo that to recover the operand
1691 index. At this point all symbol values should be fully resolved,
1692 and we attempt to completely resolve the reloc. If we can not do
1693 that, we determine the correct reloc code and put it back in the
1697 md_apply_fix3 (fixP, valP, seg)
1703 valueT value = *valP;
1705 where = fixP->fx_frag->fr_literal + fixP->fx_where;
1707 if (fixP->fx_subsy != NULL)
1709 if ((fixP->fx_addsy != NULL
1710 && S_GET_SEGMENT (fixP->fx_addsy) == S_GET_SEGMENT (fixP->fx_subsy)
1711 && SEG_NORMAL (S_GET_SEGMENT (fixP->fx_addsy)))
1712 || (S_GET_SEGMENT (fixP->fx_subsy) == absolute_section))
1713 value += S_GET_VALUE (fixP->fx_subsy);
1714 if (!S_IS_DEFINED (fixP->fx_subsy))
1715 as_bad_where (fixP->fx_file, fixP->fx_line,
1716 _("unresolved fx_subsy symbol that must be resolved"));
1717 value -= S_GET_VALUE (fixP->fx_subsy);
1719 if (S_GET_SEGMENT (fixP->fx_subsy) == seg && ! fixP->fx_pcrel)
1720 value += MD_PCREL_FROM_SECTION (fixP, seg);
1723 if (fixP->fx_addsy != NULL)
1725 if ((fixP->fx_subsy != NULL
1726 && S_GET_SEGMENT (fixP->fx_addsy) == S_GET_SEGMENT (fixP->fx_subsy)
1727 && SEG_NORMAL (S_GET_SEGMENT (fixP->fx_addsy)))
1728 || (S_GET_SEGMENT (fixP->fx_addsy) == seg
1729 && fixP->fx_pcrel && TC_RELOC_RTSYM_LOC_FIXUP (fixP))
1731 && S_GET_SEGMENT (fixP->fx_addsy) == absolute_section)
1732 || (S_GET_SEGMENT (fixP->fx_addsy) != undefined_section
1733 && !bfd_is_com_section (S_GET_SEGMENT (fixP->fx_addsy))
1734 && TC_FIX_ADJUSTABLE (fixP)))
1735 value -= S_GET_VALUE (fixP->fx_addsy);
1738 value += fixP->fx_frag->fr_address + fixP->fx_where;
1743 if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
1745 const struct s390_operand *operand;
1748 opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
1749 operand = &s390_operands[opindex];
1753 /* Insert the fully resolved operand value. */
1754 s390_insert_operand (where, operand, (offsetT) value,
1755 fixP->fx_file, fixP->fx_line);
1759 /* Determine a BFD reloc value based on the operand information.
1760 We are only prepared to turn a few of the operands into
1762 fixP->fx_offset = value;
1763 if (operand->bits == 12 && operand->shift == 20)
1766 fixP->fx_where += 2;
1767 fixP->fx_r_type = BFD_RELOC_390_12;
1769 else if (operand->bits == 12 && operand->shift == 36)
1772 fixP->fx_where += 4;
1773 fixP->fx_r_type = BFD_RELOC_390_12;
1775 else if (operand->bits == 8 && operand->shift == 8)
1778 fixP->fx_where += 1;
1779 fixP->fx_r_type = BFD_RELOC_8;
1781 else if (operand->bits == 16 && operand->shift == 16)
1784 fixP->fx_where += 2;
1785 if (operand->flags & S390_OPERAND_PCREL)
1787 fixP->fx_r_type = BFD_RELOC_390_PC16DBL;
1788 fixP->fx_offset += 2;
1791 fixP->fx_r_type = BFD_RELOC_16;
1793 else if (operand->bits == 32 && operand->shift == 16
1794 && (operand->flags & S390_OPERAND_PCREL))
1797 fixP->fx_where += 2;
1798 fixP->fx_offset += 2;
1799 fixP->fx_r_type = BFD_RELOC_390_PC32DBL;
1806 /* Use expr_symbol_where to see if this is an expression
1808 if (expr_symbol_where (fixP->fx_addsy, &sfile, &sline))
1809 as_bad_where (fixP->fx_file, fixP->fx_line,
1810 _("unresolved expression that must be resolved"));
1812 as_bad_where (fixP->fx_file, fixP->fx_line,
1813 _("unsupported relocation type"));
1820 switch (fixP->fx_r_type)
1826 md_number_to_chars (where, value, 1);
1828 case BFD_RELOC_390_12:
1829 case BFD_RELOC_390_GOT12:
1834 mop = bfd_getb16 ((unsigned char *) where);
1835 mop |= (unsigned short) (value & 0xfff);
1836 bfd_putb16 ((bfd_vma) mop, (unsigned char *) where);
1841 case BFD_RELOC_GPREL16:
1842 case BFD_RELOC_16_GOT_PCREL:
1843 case BFD_RELOC_16_GOTOFF:
1845 as_bad_where (fixP->fx_file, fixP->fx_line,
1846 "cannot emit PC relative %s relocation%s%s",
1847 bfd_get_reloc_code_name (fixP->fx_r_type),
1848 fixP->fx_addsy != NULL ? " against " : "",
1849 (fixP->fx_addsy != NULL
1850 ? S_GET_NAME (fixP->fx_addsy)
1853 md_number_to_chars (where, value, 2);
1855 case BFD_RELOC_390_GOT16:
1857 md_number_to_chars (where, value, 2);
1859 case BFD_RELOC_390_PC16DBL:
1860 case BFD_RELOC_390_PLT16DBL:
1863 md_number_to_chars (where, (offsetT) value >> 1, 2);
1868 fixP->fx_r_type = BFD_RELOC_32_PCREL;
1870 fixP->fx_r_type = BFD_RELOC_32;
1872 md_number_to_chars (where, value, 4);
1874 case BFD_RELOC_32_PCREL:
1875 case BFD_RELOC_32_BASEREL:
1876 fixP->fx_r_type = BFD_RELOC_32_PCREL;
1878 md_number_to_chars (where, value, 4);
1880 case BFD_RELOC_32_GOT_PCREL:
1881 case BFD_RELOC_390_PLT32:
1883 md_number_to_chars (where, value, 4);
1885 case BFD_RELOC_390_PC32DBL:
1886 case BFD_RELOC_390_PLT32DBL:
1887 case BFD_RELOC_390_GOTPCDBL:
1888 case BFD_RELOC_390_GOTENT:
1891 md_number_to_chars (where, (offsetT) value >> 1, 4);
1894 case BFD_RELOC_32_GOTOFF:
1896 md_number_to_chars (where, value, sizeof (int));
1899 case BFD_RELOC_390_GOT64:
1900 case BFD_RELOC_390_PLT64:
1902 md_number_to_chars (where, value, 8);
1907 fixP->fx_r_type = BFD_RELOC_64_PCREL;
1909 fixP->fx_r_type = BFD_RELOC_64;
1911 md_number_to_chars (where, value, 8);
1914 case BFD_RELOC_64_PCREL:
1915 fixP->fx_r_type = BFD_RELOC_64_PCREL;
1917 md_number_to_chars (where, value, 8);
1920 case BFD_RELOC_VTABLE_INHERIT:
1921 case BFD_RELOC_VTABLE_ENTRY:
1927 const char *reloc_name = bfd_get_reloc_code_name (fixP->fx_r_type);
1929 if (reloc_name != NULL)
1930 fprintf (stderr, "Gas failure, reloc type %s\n", reloc_name);
1932 fprintf (stderr, "Gas failure, reloc type #%i\n", fixP->fx_r_type);
1938 fixP->fx_offset = value;
1942 /* Generate a reloc for a fixup. */
1945 tc_gen_reloc (seg, fixp)
1946 asection *seg ATTRIBUTE_UNUSED;
1949 bfd_reloc_code_real_type code;
1952 code = fixp->fx_r_type;
1953 if (GOT_symbol && fixp->fx_addsy == GOT_symbol)
1955 if ( (s390_arch_size == 32 && code == BFD_RELOC_32_PCREL)
1956 || (s390_arch_size == 64 && code == BFD_RELOC_64_PCREL))
1957 code = BFD_RELOC_390_GOTPC;
1958 if (code == BFD_RELOC_390_PC32DBL)
1959 code = BFD_RELOC_390_GOTPCDBL;
1962 reloc = (arelent *) xmalloc (sizeof (arelent));
1963 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
1964 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1965 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1966 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
1967 if (reloc->howto == NULL)
1969 as_bad_where (fixp->fx_file, fixp->fx_line,
1970 _("cannot represent relocation type %s"),
1971 bfd_get_reloc_code_name (code));
1972 /* Set howto to a garbage value so that we can keep going. */
1973 reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
1974 assert (reloc->howto != NULL);
1976 reloc->addend = fixp->fx_offset;