1 /* tc-s390.c -- Assemble for the S390
2 Copyright 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
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"
27 #include "dwarf2dbg.h"
29 #include "opcode/s390.h"
32 /* The default architecture. */
34 #define DEFAULT_ARCH "s390"
36 static char *default_arch = DEFAULT_ARCH;
37 /* Either 32 or 64, selects file format. */
38 static int s390_arch_size = 0;
40 static unsigned int current_mode_mask = 0;
41 static unsigned int current_cpu = -1U;
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 bfd_boolean reg_names_p = TARGET_REG_NAMES_P;
50 /* Set to TRUE if we want to warn about zero base/index registers. */
51 static bfd_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 bfd_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 if not specified by an option. */
326 if (strcmp (default_arch, "s390") == 0)
328 if (s390_arch_size == 0)
330 if (current_mode_mask == 0)
331 current_mode_mask = 1 << S390_OPCODE_ESA;
332 if (current_cpu == -1U)
333 current_cpu = S390_OPCODE_G5;
335 else if (strcmp (default_arch, "s390x") == 0)
337 if (s390_arch_size == 0)
339 if (current_mode_mask == 0)
340 current_mode_mask = 1 << S390_OPCODE_ZARCH;
341 if (current_cpu == -1U)
342 current_cpu = S390_OPCODE_Z900;
345 as_fatal ("Invalid default architecture, broken assembler.");
348 /* Called by TARGET_FORMAT. */
350 s390_target_format ()
352 /* We don't get a chance to initialize anything before we're called,
353 so handle that now. */
354 init_default_arch ();
356 return s390_arch_size == 64 ? "elf64-s390" : "elf32-s390";
360 md_parse_option (c, arg)
366 /* -k: Ignore for FreeBSD compatibility. */
370 if (arg != NULL && strcmp (arg, "regnames") == 0)
373 else if (arg != NULL && strcmp (arg, "no-regnames") == 0)
376 else if (arg != NULL && strcmp (arg, "warn-areg-zero") == 0)
377 warn_areg_zero = TRUE;
379 else if (arg != NULL && strcmp (arg, "31") == 0)
382 else if (arg != NULL && strcmp (arg, "64") == 0)
385 else if (arg != NULL && strcmp (arg, "esa") == 0)
386 current_mode_mask = 1 << S390_OPCODE_ESA;
388 else if (arg != NULL && strcmp (arg, "zarch") == 0)
389 current_mode_mask = 1 << S390_OPCODE_ZARCH;
391 else if (arg != NULL && strncmp (arg, "arch=", 5) == 0)
393 if (strcmp (arg + 5, "g5") == 0)
394 current_cpu = S390_OPCODE_G5;
395 else if (strcmp (arg + 5, "g6") == 0)
396 current_cpu = S390_OPCODE_G6;
397 else if (strcmp (arg + 5, "z900") == 0)
398 current_cpu = S390_OPCODE_Z900;
401 as_bad (_("invalid switch -m%s"), arg);
408 as_bad (_("invalid switch -m%s"), arg);
414 /* Option -A is deprecated. Still available for compatability. */
415 if (arg != NULL && strcmp (arg, "esa") == 0)
416 current_cpu = S390_OPCODE_G5;
417 else if (arg != NULL && strcmp (arg, "esame") == 0)
418 current_cpu = S390_OPCODE_Z900;
420 as_bad ("invalid architecture -A%s", arg);
423 /* -V: SVR4 argument to print version ID. */
428 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
429 should be emitted or not. FIXME: Not implemented. */
441 md_show_usage (stream)
444 fprintf (stream, _("\
446 -mregnames Allow symbolic names for registers\n\
447 -mwarn-areg-zero Warn about zero base/index registers\n\
448 -mno-regnames Do not allow symbolic names for registers\n\
449 -m31 Set file format to 31 bit format\n\
450 -m64 Set file format to 64 bit format\n"));
451 fprintf (stream, _("\
452 -V print assembler version number\n\
453 -Qy, -Qn ignored\n"));
456 /* This function is called when the assembler starts up. It is called
457 after the options have been parsed and the output file has been
463 register const struct s390_opcode *op;
464 const struct s390_opcode *op_end;
465 bfd_boolean dup_insn = FALSE;
468 /* Give a warning if the combination -m64-bit and -Aesa is used. */
469 if (s390_arch_size == 64 && current_cpu < S390_OPCODE_Z900)
470 as_warn ("The 64 bit file format is used without esame instructions.");
472 /* Set the ELF flags if desired. */
474 bfd_set_private_flags (stdoutput, s390_flags);
476 /* Insert the opcode formats into a hash table. */
477 s390_opformat_hash = hash_new ();
479 op_end = s390_opformats + s390_num_opformats;
480 for (op = s390_opformats; op < op_end; op++)
482 retval = hash_insert (s390_opformat_hash, op->name, (PTR) op);
483 if (retval != (const char *) NULL)
485 as_bad (_("Internal assembler error for instruction format %s"),
491 /* Insert the opcodes into a hash table. */
492 s390_opcode_hash = hash_new ();
494 op_end = s390_opcodes + s390_num_opcodes;
495 for (op = s390_opcodes; op < op_end; op++)
497 retval = hash_insert (s390_opcode_hash, op->name, (PTR) op);
498 if (retval != (const char *) NULL)
500 as_bad (_("Internal assembler error for instruction %s"), op->name);
508 record_alignment (text_section, 2);
509 record_alignment (data_section, 2);
510 record_alignment (bss_section, 2);
514 /* Called after all assembly has been done. */
518 if (s390_arch_size == 64)
519 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_64);
521 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_31);
525 s390_align_code (fragP, count)
529 /* We use nop pattern 0x0707. */
532 memset (fragP->fr_literal + fragP->fr_fix, 0x07, count);
533 fragP->fr_var = count;
537 /* Insert an operand value into an instruction. */
540 s390_insert_operand (insn, operand, val, file, line)
542 const struct s390_operand *operand;
550 if (operand->flags & (S390_OPERAND_SIGNED|S390_OPERAND_PCREL))
554 max = ((offsetT) 1 << (operand->bits - 1)) - 1;
555 min = - ((offsetT) 1 << (operand->bits - 1));
556 /* Halve PCREL operands. */
557 if (operand->flags & S390_OPERAND_PCREL)
559 /* Check for underflow / overflow. */
560 if (val < min || val > max)
563 "operand out of range (%s not between %ld and %ld)";
566 if (operand->flags & S390_OPERAND_PCREL)
572 sprint_value (buf, val);
573 if (file == (char *) NULL)
574 as_bad (err, buf, (int) min, (int) max);
576 as_bad_where (file, line, err, buf, (int) min, (int) max);
579 /* val is ok, now restrict it to operand->bits bits. */
580 uval = (addressT) val & ((((addressT) 1 << (operand->bits-1)) << 1) - 1);
586 max = (((addressT) 1 << (operand->bits - 1)) << 1) - 1;
588 uval = (addressT) val;
589 /* Length x in an instructions has real length x+1. */
590 if (operand->flags & S390_OPERAND_LENGTH)
592 /* Check for underflow / overflow. */
593 if (uval < min || uval > max)
596 "operand out of range (%s not between %ld and %ld)";
599 if (operand->flags & S390_OPERAND_LENGTH)
605 sprint_value (buf, uval);
606 if (file == (char *) NULL)
607 as_bad (err, buf, (int) min, (int) max);
609 as_bad_where (file, line, err, buf, (int) min, (int) max);
614 /* Insert fragments of the operand byte for byte. */
615 offset = operand->shift + operand->bits;
616 uval <<= (-offset) & 7;
617 insn += (offset - 1) / 8;
629 bfd_reloc_code_real_type reloc;
632 static bfd_reloc_code_real_type s390_tls_suffix
633 PARAMS ((char **, expressionS *));
635 /* Parse tls marker and return the desired relocation. */
636 static bfd_reloc_code_real_type
637 s390_tls_suffix (str_p, exp_p)
641 static struct map_tls mapping[] =
643 { "tls_load", 8, BFD_RELOC_390_TLS_LOAD },
644 { "tls_gdcall", 10, BFD_RELOC_390_TLS_GDCALL },
645 { "tls_ldcall", 10, BFD_RELOC_390_TLS_LDCALL },
646 { NULL, 0, BFD_RELOC_UNUSED }
656 return BFD_RELOC_UNUSED;
659 while (ISIDNUM (*str))
663 return BFD_RELOC_UNUSED;
665 orig_line = input_line_pointer;
666 input_line_pointer = str;
668 str = input_line_pointer;
669 if (&input_line_pointer != str_p)
670 input_line_pointer = orig_line;
672 if (exp_p->X_op != O_symbol)
673 return BFD_RELOC_UNUSED;
675 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
676 if (len == ptr->length
677 && strncasecmp (ident, ptr->string, ptr->length) == 0)
679 /* Found a matching tls suffix. */
683 return BFD_RELOC_UNUSED;
686 /* Structure used to hold suffixes. */
697 ELF_SUFFIX_TLS_GOTIE,
709 elf_suffix_type suffix;
712 static elf_suffix_type s390_elf_suffix PARAMS ((char **, expressionS *));
713 static int s390_exp_compare PARAMS ((expressionS *exp1, expressionS *exp2));
714 static elf_suffix_type s390_lit_suffix
715 PARAMS ((char **, expressionS *, elf_suffix_type));
718 /* Parse @got/@plt/@gotoff. and return the desired relocation. */
719 static elf_suffix_type
720 s390_elf_suffix (str_p, exp_p)
724 static struct map_bfd mapping[] =
726 { "got", 3, ELF_SUFFIX_GOT },
727 { "got12", 5, ELF_SUFFIX_GOT },
728 { "plt", 3, ELF_SUFFIX_PLT },
729 { "gotent", 6, ELF_SUFFIX_GOTENT },
730 { "gotoff", 6, ELF_SUFFIX_GOTOFF },
731 { "gotplt", 6, ELF_SUFFIX_GOTPLT },
732 { "pltoff", 6, ELF_SUFFIX_PLTOFF },
733 { "tlsgd", 5, ELF_SUFFIX_TLS_GD },
734 { "gotntpoff", 9, ELF_SUFFIX_TLS_GOTIE },
735 { "indntpoff", 9, ELF_SUFFIX_TLS_IE },
736 { "tlsldm", 6, ELF_SUFFIX_TLS_LDM },
737 { "dtpoff", 6, ELF_SUFFIX_TLS_LDO },
738 { "ntpoff", 6, ELF_SUFFIX_TLS_LE },
739 { NULL, 0, ELF_SUFFIX_NONE }
748 return ELF_SUFFIX_NONE;
751 while (ISALNUM (*str))
755 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
756 if (len == ptr->length
757 && strncasecmp (ident, ptr->string, ptr->length) == 0)
759 if (exp_p->X_add_number != 0)
760 as_warn (_("identifier+constant@%s means identifier@%s+constant"),
761 ptr->string, ptr->string);
762 /* Now check for identifier@suffix+constant. */
763 if (*str == '-' || *str == '+')
765 char *orig_line = input_line_pointer;
768 input_line_pointer = str;
769 expression (&new_exp);
771 switch (new_exp.X_op)
773 case O_constant: /* X_add_number (a constant expression). */
774 exp_p->X_add_number += new_exp.X_add_number;
775 str = input_line_pointer;
777 case O_symbol: /* X_add_symbol + X_add_number. */
778 /* this case is used for e.g. xyz@PLT+.Label. */
779 exp_p->X_add_number += new_exp.X_add_number;
780 exp_p->X_op_symbol = new_exp.X_add_symbol;
782 str = input_line_pointer;
784 case O_uminus: /* (- X_add_symbol) + X_add_number. */
786 exp_p->X_add_number += new_exp.X_add_number;
787 exp_p->X_op_symbol = new_exp.X_add_symbol;
788 exp_p->X_op = O_subtract;
789 str = input_line_pointer;
795 /* If s390_elf_suffix has not been called with
796 &input_line_pointer as first parameter, we have
797 clobbered the input_line_pointer. We have to
799 if (&input_line_pointer != str_p)
800 input_line_pointer = orig_line;
806 return BFD_RELOC_UNUSED;
809 /* Structure used to hold a literal pool entry. */
812 struct s390_lpe *next;
814 FLONUM_TYPE floatnum; /* used if X_op == O_big && X_add_number <= 0 */
815 LITTLENUM_TYPE bignum[4]; /* used if X_op == O_big && X_add_number > 0 */
817 bfd_reloc_code_real_type reloc;
821 static struct s390_lpe *lpe_free_list = NULL;
822 static struct s390_lpe *lpe_list = NULL;
823 static struct s390_lpe *lpe_list_tail = NULL;
824 static symbolS *lp_sym = NULL;
825 static int lp_count = 0;
826 static int lpe_count = 0;
829 s390_exp_compare (exp1, exp2)
833 if (exp1->X_op != exp2->X_op)
838 case O_constant: /* X_add_number must be equal. */
840 return exp1->X_add_number == exp2->X_add_number;
843 as_bad (_("Can't handle O_big in s390_exp_compare"));
845 case O_symbol: /* X_add_symbol & X_add_number must be equal. */
850 return (exp1->X_add_symbol == exp2->X_add_symbol)
851 && (exp1->X_add_number == exp2->X_add_number);
853 case O_multiply: /* X_add_symbol,X_op_symbol&X_add_number must be equal. */
858 case O_bit_inclusive_or:
860 case O_bit_exclusive_or:
872 return (exp1->X_add_symbol == exp2->X_add_symbol)
873 && (exp1->X_op_symbol == exp2->X_op_symbol)
874 && (exp1->X_add_number == exp2->X_add_number);
880 /* Test for @lit and if its present make an entry in the literal pool and
881 modify the current expression to be an offset into the literal pool. */
882 static elf_suffix_type
883 s390_lit_suffix (str_p, exp_p, suffix)
886 elf_suffix_type suffix;
888 bfd_reloc_code_real_type reloc;
892 struct s390_lpe *lpe;
896 return suffix; /* No modification. */
898 /* We look for a suffix of the form "@lit1", "@lit2", "@lit4" or "@lit8". */
900 while (ISALNUM (*str))
903 if (len != 4 || strncasecmp (ident, "lit", 3) != 0
904 || (ident[3]!='1' && ident[3]!='2' && ident[3]!='4' && ident[3]!='8'))
905 return suffix; /* no modification */
906 nbytes = ident[3] - '0';
908 reloc = BFD_RELOC_UNUSED;
909 if (suffix == ELF_SUFFIX_GOT)
912 reloc = BFD_RELOC_390_GOT16;
913 else if (nbytes == 4)
914 reloc = BFD_RELOC_32_GOT_PCREL;
915 else if (nbytes == 8)
916 reloc = BFD_RELOC_390_GOT64;
918 else if (suffix == ELF_SUFFIX_PLT)
921 reloc = BFD_RELOC_390_PLT32;
922 else if (nbytes == 8)
923 reloc = BFD_RELOC_390_PLT64;
926 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
927 as_bad (_("Invalid suffix for literal pool entry"));
929 /* Search the pool if the new entry is a duplicate. */
930 if (exp_p->X_op == O_big)
932 /* Special processing for big numbers. */
933 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
935 if (lpe->ex.X_op == O_big)
937 if (exp_p->X_add_number <= 0 && lpe->ex.X_add_number <= 0)
939 if (memcmp (&generic_floating_point_number, &lpe->floatnum,
940 sizeof (FLONUM_TYPE)) == 0)
943 else if (exp_p->X_add_number == lpe->ex.X_add_number)
945 if (memcmp (generic_bignum, lpe->bignum,
946 sizeof (LITTLENUM_TYPE)*exp_p->X_add_number) == 0)
954 /* Processing for 'normal' data types. */
955 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
956 if (lpe->nbytes == nbytes && lpe->reloc == reloc
957 && s390_exp_compare (exp_p, &lpe->ex) != 0)
964 if (lpe_free_list != NULL)
967 lpe_free_list = lpe_free_list->next;
971 lpe = (struct s390_lpe *) xmalloc (sizeof (struct s390_lpe));
976 if (exp_p->X_op == O_big)
978 if (exp_p->X_add_number <= 0)
979 lpe->floatnum = generic_floating_point_number;
980 else if (exp_p->X_add_number <= 4)
981 memcpy (lpe->bignum, generic_bignum,
982 exp_p->X_add_number * sizeof (LITTLENUM_TYPE));
984 as_bad (_("Big number is too big"));
987 lpe->nbytes = nbytes;
989 /* Literal pool name defined ? */
992 sprintf (tmp_name, ".L\001%i", lp_count);
993 lp_sym = symbol_make (tmp_name);
996 /* Make name for literal pool entry. */
997 sprintf (tmp_name, ".L\001%i\002%i", lp_count, lpe_count);
999 lpe->sym = symbol_make (tmp_name);
1001 /* Add to literal pool list. */
1003 if (lpe_list_tail != NULL)
1005 lpe_list_tail->next = lpe;
1006 lpe_list_tail = lpe;
1009 lpe_list = lpe_list_tail = lpe;
1012 /* Now change exp_p to the offset into the literal pool.
1013 Thats the expression: .L^Ax^By-.L^Ax */
1014 exp_p->X_add_symbol = lpe->sym;
1015 exp_p->X_op_symbol = lp_sym;
1016 exp_p->X_op = O_subtract;
1017 exp_p->X_add_number = 0;
1021 /* We change the suffix type to ELF_SUFFIX_NONE, because
1022 the difference of two local labels is just a number. */
1023 return ELF_SUFFIX_NONE;
1026 /* Like normal .long/.short/.word, except support @got, etc.
1027 clobbers input_line_pointer, checks end-of-line. */
1029 s390_elf_cons (nbytes)
1030 register int nbytes; /* 1=.byte, 2=.word, 4=.long */
1033 elf_suffix_type suffix;
1035 if (is_it_end_of_statement ())
1037 demand_empty_rest_of_line ();
1045 if (exp.X_op == O_symbol
1046 && *input_line_pointer == '@'
1047 && (suffix = s390_elf_suffix (&input_line_pointer, &exp)) != ELF_SUFFIX_NONE)
1049 bfd_reloc_code_real_type reloc;
1050 reloc_howto_type *reloc_howto;
1056 static bfd_reloc_code_real_type tab2[] =
1058 BFD_RELOC_UNUSED, /* ELF_SUFFIX_NONE */
1059 BFD_RELOC_390_GOT16, /* ELF_SUFFIX_GOT */
1060 BFD_RELOC_UNUSED, /* ELF_SUFFIX_PLT */
1061 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTENT */
1062 BFD_RELOC_16_GOTOFF, /* ELF_SUFFIX_GOTOFF */
1063 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTPLT */
1064 BFD_RELOC_390_PLTOFF16, /* ELF_SUFFIX_PLTOFF */
1065 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_GD */
1066 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_GOTIE */
1067 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_IE */
1068 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_LDM */
1069 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_LDO */
1070 BFD_RELOC_UNUSED /* ELF_SUFFIX_TLS_LE */
1072 reloc = tab2[suffix];
1074 else if (nbytes == 4)
1076 static bfd_reloc_code_real_type tab4[] =
1078 BFD_RELOC_UNUSED, /* ELF_SUFFIX_NONE */
1079 BFD_RELOC_32_GOT_PCREL, /* ELF_SUFFIX_GOT */
1080 BFD_RELOC_390_PLT32, /* ELF_SUFFIX_PLT */
1081 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTENT */
1082 BFD_RELOC_32_GOTOFF, /* ELF_SUFFIX_GOTOFF */
1083 BFD_RELOC_390_GOTPLT32, /* ELF_SUFFIX_GOTPLT */
1084 BFD_RELOC_390_PLTOFF32, /* ELF_SUFFIX_PLTOFF */
1085 BFD_RELOC_390_TLS_GD32, /* ELF_SUFFIX_TLS_GD */
1086 BFD_RELOC_390_TLS_GOTIE32, /* ELF_SUFFIX_TLS_GOTIE */
1087 BFD_RELOC_390_TLS_IE32, /* ELF_SUFFIX_TLS_IE */
1088 BFD_RELOC_390_TLS_LDM32, /* ELF_SUFFIX_TLS_LDM */
1089 BFD_RELOC_390_TLS_LDO32, /* ELF_SUFFIX_TLS_LDO */
1090 BFD_RELOC_390_TLS_LE32 /* ELF_SUFFIX_TLS_LE */
1092 reloc = tab4[suffix];
1094 else if (nbytes == 8)
1096 static bfd_reloc_code_real_type tab8[] =
1098 BFD_RELOC_UNUSED, /* ELF_SUFFIX_NONE */
1099 BFD_RELOC_390_GOT64, /* ELF_SUFFIX_GOT */
1100 BFD_RELOC_390_PLT64, /* ELF_SUFFIX_PLT */
1101 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTENT */
1102 BFD_RELOC_390_GOTOFF64, /* ELF_SUFFIX_GOTOFF */
1103 BFD_RELOC_390_GOTPLT64, /* ELF_SUFFIX_GOTPLT */
1104 BFD_RELOC_390_PLTOFF64, /* ELF_SUFFIX_PLTOFF */
1105 BFD_RELOC_390_TLS_GD64, /* ELF_SUFFIX_TLS_GD */
1106 BFD_RELOC_390_TLS_GOTIE64, /* ELF_SUFFIX_TLS_GOTIE */
1107 BFD_RELOC_390_TLS_IE64, /* ELF_SUFFIX_TLS_IE */
1108 BFD_RELOC_390_TLS_LDM64, /* ELF_SUFFIX_TLS_LDM */
1109 BFD_RELOC_390_TLS_LDO64, /* ELF_SUFFIX_TLS_LDO */
1110 BFD_RELOC_390_TLS_LE64 /* ELF_SUFFIX_TLS_LE */
1112 reloc = tab8[suffix];
1115 reloc = BFD_RELOC_UNUSED;
1117 if (reloc != BFD_RELOC_UNUSED
1118 && (reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc)))
1120 size = bfd_get_reloc_size (reloc_howto);
1122 as_bad (_("%s relocations do not fit in %d bytes"),
1123 reloc_howto->name, nbytes);
1124 where = frag_more (nbytes);
1125 md_number_to_chars (where, 0, size);
1126 /* To make fixup_segment do the pc relative conversion the
1127 pcrel parameter on the fix_new_exp call needs to be FALSE. */
1128 fix_new_exp (frag_now, where - frag_now->fr_literal,
1129 size, &exp, FALSE, reloc);
1132 as_bad (_("relocation not applicable"));
1135 emit_expr (&exp, (unsigned int) nbytes);
1137 while (*input_line_pointer++ == ',');
1139 input_line_pointer--; /* Put terminator back into stream. */
1140 demand_empty_rest_of_line ();
1143 /* We need to keep a list of fixups. We can't simply generate them as
1144 we go, because that would require us to first create the frag, and
1145 that would screw up references to ``.''. */
1151 bfd_reloc_code_real_type reloc;
1154 #define MAX_INSN_FIXUPS (4)
1156 /* This routine is called for each instruction to be assembled. */
1159 md_gather_operands (str, insn, opcode)
1161 unsigned char *insn;
1162 const struct s390_opcode *opcode;
1164 struct s390_fixup fixups[MAX_INSN_FIXUPS];
1165 const struct s390_operand *operand;
1166 const unsigned char *opindex_ptr;
1168 elf_suffix_type suffix;
1169 bfd_reloc_code_real_type reloc;
1175 while (ISSPACE (*str))
1181 /* Gather the operands. */
1183 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
1187 operand = s390_operands + *opindex_ptr;
1189 if (skip_optional && (operand->flags & S390_OPERAND_INDEX))
1191 /* We do an early skip. For D(X,B) constructions the index
1192 register is skipped (X is optional). For D(L,B) the base
1193 register will be the skipped operand, because L is NOT
1199 /* Gather the operand. */
1200 hold = input_line_pointer;
1201 input_line_pointer = str;
1203 /* Parse the operand. */
1204 if (! register_name (&ex))
1207 str = input_line_pointer;
1208 input_line_pointer = hold;
1210 /* Write the operand to the insn. */
1211 if (ex.X_op == O_illegal)
1212 as_bad (_("illegal operand"));
1213 else if (ex.X_op == O_absent)
1214 as_bad (_("missing operand"));
1215 else if (ex.X_op == O_register || ex.X_op == O_constant)
1217 s390_lit_suffix (&str, &ex, ELF_SUFFIX_NONE);
1219 if (ex.X_op != O_register && ex.X_op != O_constant)
1221 /* We need to generate a fixup for the
1222 expression returned by s390_lit_suffix. */
1223 if (fc >= MAX_INSN_FIXUPS)
1224 as_fatal (_("too many fixups"));
1225 fixups[fc].exp = ex;
1226 fixups[fc].opindex = *opindex_ptr;
1227 fixups[fc].reloc = BFD_RELOC_UNUSED;
1232 if ((operand->flags & S390_OPERAND_INDEX)
1233 && ex.X_add_number == 0
1235 as_warn ("index register specified but zero");
1236 if ((operand->flags & S390_OPERAND_BASE)
1237 && ex.X_add_number == 0
1239 as_warn ("base register specified but zero");
1240 s390_insert_operand (insn, operand, ex.X_add_number, NULL, 0);
1245 suffix = s390_elf_suffix (&str, &ex);
1246 suffix = s390_lit_suffix (&str, &ex, suffix);
1247 reloc = BFD_RELOC_UNUSED;
1249 if (suffix == ELF_SUFFIX_GOT)
1251 if (operand->flags & S390_OPERAND_DISP)
1252 reloc = BFD_RELOC_390_GOT12;
1253 else if ((operand->flags & S390_OPERAND_SIGNED)
1254 && (operand->bits == 16))
1255 reloc = BFD_RELOC_390_GOT16;
1256 else if ((operand->flags & S390_OPERAND_PCREL)
1257 && (operand->bits == 32))
1258 reloc = BFD_RELOC_390_GOTENT;
1260 else if (suffix == ELF_SUFFIX_PLT)
1262 if ((operand->flags & S390_OPERAND_PCREL)
1263 && (operand->bits == 16))
1264 reloc = BFD_RELOC_390_PLT16DBL;
1265 else if ((operand->flags & S390_OPERAND_PCREL)
1266 && (operand->bits == 32))
1267 reloc = BFD_RELOC_390_PLT32DBL;
1269 else if (suffix == ELF_SUFFIX_GOTENT)
1271 if ((operand->flags & S390_OPERAND_PCREL)
1272 && (operand->bits == 32))
1273 reloc = BFD_RELOC_390_GOTENT;
1275 else if (suffix == ELF_SUFFIX_GOTOFF)
1277 if ((operand->flags & S390_OPERAND_SIGNED)
1278 && (operand->bits == 16))
1279 reloc = BFD_RELOC_16_GOTOFF;
1281 else if (suffix == ELF_SUFFIX_PLTOFF)
1283 if ((operand->flags & S390_OPERAND_SIGNED)
1284 && (operand->bits == 16))
1285 reloc = BFD_RELOC_390_PLTOFF16;
1287 else if (suffix == ELF_SUFFIX_GOTPLT)
1289 if ((operand->flags & S390_OPERAND_DISP)
1290 && (operand->bits == 12))
1291 reloc = BFD_RELOC_390_GOTPLT12;
1292 else if ((operand->flags & S390_OPERAND_SIGNED)
1293 && (operand->bits == 16))
1294 reloc = BFD_RELOC_390_GOTPLT16;
1295 else if ((operand->flags & S390_OPERAND_PCREL)
1296 && (operand->bits == 32))
1297 reloc = BFD_RELOC_390_GOTPLTENT;
1299 else if (suffix == ELF_SUFFIX_TLS_GOTIE)
1301 if ((operand->flags & S390_OPERAND_DISP)
1302 && (operand->bits == 12))
1303 reloc = BFD_RELOC_390_TLS_GOTIE12;
1305 else if (suffix == ELF_SUFFIX_TLS_IE)
1307 if ((operand->flags & S390_OPERAND_PCREL)
1308 && (operand->bits == 32))
1309 reloc = BFD_RELOC_390_TLS_IEENT;
1312 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
1313 as_bad (_("invalid operand suffix"));
1314 /* We need to generate a fixup of type 'reloc' for this
1316 if (fc >= MAX_INSN_FIXUPS)
1317 as_fatal (_("too many fixups"));
1318 fixups[fc].exp = ex;
1319 fixups[fc].opindex = *opindex_ptr;
1320 fixups[fc].reloc = reloc;
1324 /* Check the next character. The call to expression has advanced
1325 str past any whitespace. */
1326 if (operand->flags & S390_OPERAND_DISP)
1328 /* After a displacement a block in parentheses can start. */
1331 /* Check if parethesed block can be skipped. If the next
1332 operand is neiter an optional operand nor a base register
1333 then we have a syntax error. */
1334 operand = s390_operands + *(++opindex_ptr);
1335 if (!(operand->flags & (S390_OPERAND_INDEX|S390_OPERAND_BASE)))
1336 as_bad (_("syntax error; missing '(' after displacement"));
1338 /* Ok, skip all operands until S390_OPERAND_BASE. */
1339 while (!(operand->flags & S390_OPERAND_BASE))
1340 operand = s390_operands + *(++opindex_ptr);
1342 /* If there is a next operand it must be seperated by a comma. */
1343 if (opindex_ptr[1] != '\0')
1346 as_bad (_("syntax error; expected ,"));
1351 /* We found an opening parentheses. */
1353 for (f = str; *f != '\0'; f++)
1354 if (*f == ',' || *f == ')')
1356 /* If there is no comma until the closing parentheses OR
1357 there is a comma right after the opening parentheses,
1358 we have to skip optional operands. */
1359 if (*f == ',' && f == str)
1361 /* comma directly after '(' ? */
1366 skip_optional = (*f != ',');
1369 else if (operand->flags & S390_OPERAND_BASE)
1371 /* After the base register the parenthesed block ends. */
1373 as_bad (_("syntax error; missing ')' after base register"));
1375 /* If there is a next operand it must be seperated by a comma. */
1376 if (opindex_ptr[1] != '\0')
1379 as_bad (_("syntax error; expected ,"));
1384 /* We can find an 'early' closing parentheses in e.g. D(L) instead
1385 of D(L,B). In this case the base register has to be skipped. */
1388 operand = s390_operands + *(++opindex_ptr);
1390 if (!(operand->flags & S390_OPERAND_BASE))
1391 as_bad (_("syntax error; ')' not allowed here"));
1394 /* If there is a next operand it must be seperated by a comma. */
1395 if (opindex_ptr[1] != '\0')
1398 as_bad (_("syntax error; expected ,"));
1403 while (ISSPACE (*str))
1406 /* Check for tls instruction marker. */
1407 reloc = s390_tls_suffix (&str, &ex);
1408 if (reloc != BFD_RELOC_UNUSED)
1410 /* We need to generate a fixup of type 'reloc' for this
1412 if (fc >= MAX_INSN_FIXUPS)
1413 as_fatal (_("too many fixups"));
1414 fixups[fc].exp = ex;
1415 fixups[fc].opindex = -1;
1416 fixups[fc].reloc = reloc;
1424 if ((linefeed = strchr (str, '\n')) != NULL)
1426 as_bad (_("junk at end of line: `%s'"), str);
1427 if (linefeed != NULL)
1431 /* Write out the instruction. */
1432 f = frag_more (opcode->oplen);
1433 memcpy (f, insn, opcode->oplen);
1434 dwarf2_emit_insn (opcode->oplen);
1436 /* Create any fixups. At this point we do not use a
1437 bfd_reloc_code_real_type, but instead just use the
1438 BFD_RELOC_UNUSED plus the operand index. This lets us easily
1439 handle fixups for any operand type, although that is admittedly
1440 not a very exciting feature. We pick a BFD reloc type in
1442 for (i = 0; i < fc; i++)
1445 if (fixups[i].opindex < 0)
1447 /* Create tls instruction marker relocation. */
1448 fix_new_exp (frag_now, f - frag_now->fr_literal, opcode->oplen,
1449 &fixups[i].exp, 0, fixups[i].reloc);
1453 operand = s390_operands + fixups[i].opindex;
1455 if (fixups[i].reloc != BFD_RELOC_UNUSED)
1457 reloc_howto_type *reloc_howto;
1461 reloc_howto = bfd_reloc_type_lookup (stdoutput, fixups[i].reloc);
1465 size = bfd_get_reloc_size (reloc_howto);
1467 if (size < 1 || size > 4)
1470 fixP = fix_new_exp (frag_now,
1471 f - frag_now->fr_literal + (operand->shift/8),
1472 size, &fixups[i].exp, reloc_howto->pc_relative,
1474 /* Turn off overflow checking in fixup_segment. This is necessary
1475 because fixup_segment will signal an overflow for large 4 byte
1476 quantities for GOT12 relocations. */
1477 if ( fixups[i].reloc == BFD_RELOC_390_GOT12
1478 || fixups[i].reloc == BFD_RELOC_390_GOT16)
1479 fixP->fx_no_overflow = 1;
1482 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, &fixups[i].exp,
1483 (operand->flags & S390_OPERAND_PCREL) != 0,
1484 ((bfd_reloc_code_real_type)
1485 (fixups[i].opindex + (int) BFD_RELOC_UNUSED)));
1490 /* This routine is called for each instruction to be assembled. */
1496 const struct s390_opcode *opcode;
1497 unsigned char insn[6];
1500 /* Get the opcode. */
1501 for (s = str; *s != '\0' && ! ISSPACE (*s); s++)
1506 /* Look up the opcode in the hash table. */
1507 opcode = (struct s390_opcode *) hash_find (s390_opcode_hash, str);
1508 if (opcode == (const struct s390_opcode *) NULL)
1510 as_bad (_("Unrecognized opcode: `%s'"), str);
1513 else if (!(opcode->modes & current_mode_mask))
1515 as_bad ("Opcode %s not available in this mode", str);
1518 else if (opcode->min_cpu > current_cpu)
1520 as_bad ("Opcode %s not available for this cpu", str);
1524 memcpy (insn, opcode->opcode, sizeof (insn));
1525 md_gather_operands (s, insn, opcode);
1528 #ifndef WORKING_DOT_WORD
1529 /* Handle long and short jumps. We don't support these */
1531 md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
1533 addressT from_addr, to_addr;
1541 md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
1543 addressT from_addr, to_addr;
1553 int ignore ATTRIBUTE_UNUSED;
1555 /* We don't support putting frags in the BSS segment, we fake it
1556 by marking in_bss, then looking at s_skip for clues. */
1558 subseg_set (bss_section, 0);
1559 demand_empty_rest_of_line ();
1562 /* Pseudo-op handling. */
1566 int ignore ATTRIBUTE_UNUSED;
1569 const struct s390_opcode *opformat;
1570 unsigned char insn[6];
1573 /* Get the opcode format. */
1574 s = input_line_pointer;
1575 while (*s != '\0' && *s != ',' && ! ISSPACE (*s))
1578 as_bad (_("Invalid .insn format\n"));
1581 /* Look up the opcode in the hash table. */
1582 opformat = (struct s390_opcode *)
1583 hash_find (s390_opformat_hash, input_line_pointer);
1584 if (opformat == (const struct s390_opcode *) NULL)
1586 as_bad (_("Unrecognized opcode format: `%s'"), input_line_pointer);
1589 input_line_pointer = s;
1591 if (exp.X_op == O_constant)
1593 if ( (opformat->oplen == 6 && exp.X_op > 0 && exp.X_op < (1ULL << 48))
1594 || (opformat->oplen == 4 && exp.X_op > 0 && exp.X_op < (1ULL << 32))
1595 || (opformat->oplen == 2 && exp.X_op > 0 && exp.X_op < (1ULL << 16)))
1596 md_number_to_chars (insn, exp.X_add_number, opformat->oplen);
1598 as_bad (_("Invalid .insn format\n"));
1600 else if (exp.X_op == O_big)
1602 if (exp.X_add_number > 0
1603 && opformat->oplen == 6
1604 && generic_bignum[3] == 0)
1606 md_number_to_chars (insn, generic_bignum[2], 2);
1607 md_number_to_chars (&insn[2], generic_bignum[1], 2);
1608 md_number_to_chars (&insn[4], generic_bignum[0], 2);
1611 as_bad (_("Invalid .insn format\n"));
1614 as_bad (_("second operand of .insn not a constant\n"));
1616 if (strcmp (opformat->name, "e") != 0 && *input_line_pointer++ != ',')
1617 as_bad (_("missing comma after insn constant\n"));
1619 if ((s = strchr (input_line_pointer, '\n')) != NULL)
1621 input_line_pointer = md_gather_operands (input_line_pointer, insn,
1625 demand_empty_rest_of_line ();
1628 /* The .byte pseudo-op. This is similar to the normal .byte
1629 pseudo-op, but it can also take a single ASCII string. */
1633 int ignore ATTRIBUTE_UNUSED;
1635 if (*input_line_pointer != '\"')
1641 /* Gather characters. A real double quote is doubled. Unusual
1642 characters are not permitted. */
1643 ++input_line_pointer;
1648 c = *input_line_pointer++;
1652 if (*input_line_pointer != '\"')
1654 ++input_line_pointer;
1657 FRAG_APPEND_1_CHAR (c);
1660 demand_empty_rest_of_line ();
1663 /* The .ltorg pseudo-op.This emits all literals defined since the last
1664 .ltorg or the invocation of gas. Literals are defined with the
1668 s390_literals (ignore)
1669 int ignore ATTRIBUTE_UNUSED;
1671 struct s390_lpe *lpe;
1673 if (lp_sym == NULL || lpe_count == 0)
1674 return; /* Nothing to be done. */
1676 /* Emit symbol for start of literal pool. */
1677 S_SET_SEGMENT (lp_sym, now_seg);
1678 S_SET_VALUE (lp_sym, (valueT) frag_now_fix ());
1679 lp_sym->sy_frag = frag_now;
1684 lpe_list = lpe_list->next;
1685 S_SET_SEGMENT (lpe->sym, now_seg);
1686 S_SET_VALUE (lpe->sym, (valueT) frag_now_fix ());
1687 lpe->sym->sy_frag = frag_now;
1689 /* Emit literal pool entry. */
1690 if (lpe->reloc != BFD_RELOC_UNUSED)
1692 reloc_howto_type *reloc_howto =
1693 bfd_reloc_type_lookup (stdoutput, lpe->reloc);
1694 int size = bfd_get_reloc_size (reloc_howto);
1697 if (size > lpe->nbytes)
1698 as_bad (_("%s relocations do not fit in %d bytes"),
1699 reloc_howto->name, lpe->nbytes);
1700 where = frag_more (lpe->nbytes);
1701 md_number_to_chars (where, 0, size);
1702 fix_new_exp (frag_now, where - frag_now->fr_literal,
1703 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
1707 if (lpe->ex.X_op == O_big)
1709 if (lpe->ex.X_add_number <= 0)
1710 generic_floating_point_number = lpe->floatnum;
1712 memcpy (generic_bignum, lpe->bignum,
1713 lpe->ex.X_add_number * sizeof (LITTLENUM_TYPE));
1715 emit_expr (&lpe->ex, lpe->nbytes);
1718 lpe->next = lpe_free_list;
1719 lpe_free_list = lpe;
1721 lpe_list_tail = NULL;
1727 /* Turn a string in input_line_pointer into a floating point constant
1728 of type type, and store the appropriate bytes in *litp. The number
1729 of LITTLENUMS emitted is stored in *sizep . An error message is
1730 returned, or NULL on OK. */
1733 md_atof (type, litp, sizep)
1739 LITTLENUM_TYPE words[4];
1755 return "bad call to md_atof";
1758 t = atof_ieee (input_line_pointer, type, words);
1760 input_line_pointer = t;
1764 for (i = 0; i < prec; i++)
1766 md_number_to_chars (litp, (valueT) words[i], 2);
1773 /* Align a section (I don't know why this is machine dependent). */
1776 md_section_align (seg, addr)
1780 int align = bfd_get_section_alignment (stdoutput, seg);
1782 return ((addr + (1 << align) - 1) & (-1 << align));
1785 /* We don't have any form of relaxing. */
1788 md_estimate_size_before_relax (fragp, seg)
1789 fragS *fragp ATTRIBUTE_UNUSED;
1790 asection *seg ATTRIBUTE_UNUSED;
1796 /* Convert a machine dependent frag. We never generate these. */
1799 md_convert_frag (abfd, sec, fragp)
1800 bfd *abfd ATTRIBUTE_UNUSED;
1801 asection *sec ATTRIBUTE_UNUSED;
1802 fragS *fragp ATTRIBUTE_UNUSED;
1808 md_undefined_symbol (name)
1811 if (*name == '_' && *(name + 1) == 'G'
1812 && strcmp (name, "_GLOBAL_OFFSET_TABLE_") == 0)
1816 if (symbol_find (name))
1817 as_bad (_("GOT already in symbol table"));
1818 GOT_symbol = symbol_new (name, undefined_section,
1819 (valueT) 0, &zero_address_frag);
1826 /* Functions concerning relocs. */
1828 /* The location from which a PC relative jump should be calculated,
1829 given a PC relative reloc. */
1832 md_pcrel_from_section (fixp, sec)
1834 segT sec ATTRIBUTE_UNUSED;
1836 return fixp->fx_frag->fr_address + fixp->fx_where;
1839 /* Here we decide which fixups can be adjusted to make them relative to
1840 the beginning of the section instead of the symbol. Basically we need
1841 to make sure that the dynamic relocations are done correctly, so in
1842 some cases we force the original symbol to be used. */
1844 tc_s390_fix_adjustable (fixP)
1847 /* Don't adjust references to merge sections. */
1848 if ((S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0)
1850 /* adjust_reloc_syms doesn't know about the GOT. */
1851 if ( fixP->fx_r_type == BFD_RELOC_16_GOTOFF
1852 || fixP->fx_r_type == BFD_RELOC_32_GOTOFF
1853 || fixP->fx_r_type == BFD_RELOC_390_GOTOFF64
1854 || fixP->fx_r_type == BFD_RELOC_390_PLTOFF16
1855 || fixP->fx_r_type == BFD_RELOC_390_PLTOFF32
1856 || fixP->fx_r_type == BFD_RELOC_390_PLTOFF64
1857 || fixP->fx_r_type == BFD_RELOC_390_PLT16DBL
1858 || fixP->fx_r_type == BFD_RELOC_390_PLT32
1859 || fixP->fx_r_type == BFD_RELOC_390_PLT32DBL
1860 || fixP->fx_r_type == BFD_RELOC_390_PLT64
1861 || fixP->fx_r_type == BFD_RELOC_390_GOT12
1862 || fixP->fx_r_type == BFD_RELOC_390_GOT16
1863 || fixP->fx_r_type == BFD_RELOC_32_GOT_PCREL
1864 || fixP->fx_r_type == BFD_RELOC_390_GOT64
1865 || fixP->fx_r_type == BFD_RELOC_390_GOTENT
1866 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT12
1867 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT16
1868 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT32
1869 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT64
1870 || fixP->fx_r_type == BFD_RELOC_390_GOTPLTENT
1871 || fixP->fx_r_type == BFD_RELOC_390_TLS_LOAD
1872 || fixP->fx_r_type == BFD_RELOC_390_TLS_GDCALL
1873 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDCALL
1874 || fixP->fx_r_type == BFD_RELOC_390_TLS_GD32
1875 || fixP->fx_r_type == BFD_RELOC_390_TLS_GD64
1876 || fixP->fx_r_type == BFD_RELOC_390_TLS_GOTIE12
1877 || fixP->fx_r_type == BFD_RELOC_390_TLS_GOTIE32
1878 || fixP->fx_r_type == BFD_RELOC_390_TLS_GOTIE64
1879 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDM32
1880 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDM64
1881 || fixP->fx_r_type == BFD_RELOC_390_TLS_IE32
1882 || fixP->fx_r_type == BFD_RELOC_390_TLS_IE64
1883 || fixP->fx_r_type == BFD_RELOC_390_TLS_IEENT
1884 || fixP->fx_r_type == BFD_RELOC_390_TLS_LE32
1885 || fixP->fx_r_type == BFD_RELOC_390_TLS_LE64
1886 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDO32
1887 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDO64
1888 || fixP->fx_r_type == BFD_RELOC_390_TLS_DTPMOD
1889 || fixP->fx_r_type == BFD_RELOC_390_TLS_DTPOFF
1890 || fixP->fx_r_type == BFD_RELOC_390_TLS_TPOFF
1891 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1892 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1897 /* Return true if we must always emit a reloc for a type and false if
1898 there is some hope of resolving it at assembly time. */
1900 tc_s390_force_relocation (fixp)
1903 /* Ensure we emit a relocation for every reference to the global
1904 offset table or to the procedure link table. */
1905 switch (fixp->fx_r_type)
1907 case BFD_RELOC_390_GOT12:
1908 case BFD_RELOC_32_GOT_PCREL:
1909 case BFD_RELOC_32_GOTOFF:
1910 case BFD_RELOC_390_GOTOFF64:
1911 case BFD_RELOC_390_PLTOFF16:
1912 case BFD_RELOC_390_PLTOFF32:
1913 case BFD_RELOC_390_PLTOFF64:
1914 case BFD_RELOC_390_GOTPC:
1915 case BFD_RELOC_390_GOT16:
1916 case BFD_RELOC_390_GOTPCDBL:
1917 case BFD_RELOC_390_GOT64:
1918 case BFD_RELOC_390_GOTENT:
1919 case BFD_RELOC_390_PLT32:
1920 case BFD_RELOC_390_PLT16DBL:
1921 case BFD_RELOC_390_PLT32DBL:
1922 case BFD_RELOC_390_PLT64:
1923 case BFD_RELOC_390_GOTPLT12:
1924 case BFD_RELOC_390_GOTPLT16:
1925 case BFD_RELOC_390_GOTPLT32:
1926 case BFD_RELOC_390_GOTPLT64:
1927 case BFD_RELOC_390_GOTPLTENT:
1933 return generic_force_reloc (fixp);
1936 /* Apply a fixup to the object code. This is called for all the
1937 fixups we generated by the call to fix_new_exp, above. In the call
1938 above we used a reloc code which was the largest legal reloc code
1939 plus the operand index. Here we undo that to recover the operand
1940 index. At this point all symbol values should be fully resolved,
1941 and we attempt to completely resolve the reloc. If we can not do
1942 that, we determine the correct reloc code and put it back in the
1946 md_apply_fix3 (fixP, valP, seg)
1949 segT seg ATTRIBUTE_UNUSED;
1952 valueT value = *valP;
1954 where = fixP->fx_frag->fr_literal + fixP->fx_where;
1956 if (fixP->fx_subsy != NULL)
1957 as_bad_where (fixP->fx_file, fixP->fx_line,
1958 "cannot emit relocation %s against subsy symbol %s",
1959 bfd_get_reloc_code_name (fixP->fx_r_type),
1960 S_GET_NAME (fixP->fx_subsy));
1962 if (fixP->fx_addsy != NULL)
1965 value += fixP->fx_frag->fr_address + fixP->fx_where;
1970 if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
1972 const struct s390_operand *operand;
1975 opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
1976 operand = &s390_operands[opindex];
1980 /* Insert the fully resolved operand value. */
1981 s390_insert_operand (where, operand, (offsetT) value,
1982 fixP->fx_file, fixP->fx_line);
1986 /* Determine a BFD reloc value based on the operand information.
1987 We are only prepared to turn a few of the operands into
1989 fixP->fx_offset = value;
1990 if (operand->bits == 12 && operand->shift == 20)
1993 fixP->fx_where += 2;
1994 fixP->fx_r_type = BFD_RELOC_390_12;
1996 else if (operand->bits == 12 && operand->shift == 36)
1999 fixP->fx_where += 4;
2000 fixP->fx_r_type = BFD_RELOC_390_12;
2002 else if (operand->bits == 8 && operand->shift == 8)
2005 fixP->fx_where += 1;
2006 fixP->fx_r_type = BFD_RELOC_8;
2008 else if (operand->bits == 16 && operand->shift == 16)
2011 fixP->fx_where += 2;
2012 if (operand->flags & S390_OPERAND_PCREL)
2014 fixP->fx_r_type = BFD_RELOC_390_PC16DBL;
2015 fixP->fx_offset += 2;
2018 fixP->fx_r_type = BFD_RELOC_16;
2020 else if (operand->bits == 32 && operand->shift == 16
2021 && (operand->flags & S390_OPERAND_PCREL))
2024 fixP->fx_where += 2;
2025 fixP->fx_offset += 2;
2026 fixP->fx_r_type = BFD_RELOC_390_PC32DBL;
2033 /* Use expr_symbol_where to see if this is an expression
2035 if (expr_symbol_where (fixP->fx_addsy, &sfile, &sline))
2036 as_bad_where (fixP->fx_file, fixP->fx_line,
2037 _("unresolved expression that must be resolved"));
2039 as_bad_where (fixP->fx_file, fixP->fx_line,
2040 _("unsupported relocation type"));
2047 switch (fixP->fx_r_type)
2053 md_number_to_chars (where, value, 1);
2055 case BFD_RELOC_390_12:
2056 case BFD_RELOC_390_GOT12:
2057 case BFD_RELOC_390_GOTPLT12:
2062 mop = bfd_getb16 ((unsigned char *) where);
2063 mop |= (unsigned short) (value & 0xfff);
2064 bfd_putb16 ((bfd_vma) mop, (unsigned char *) where);
2069 case BFD_RELOC_GPREL16:
2070 case BFD_RELOC_16_GOT_PCREL:
2071 case BFD_RELOC_16_GOTOFF:
2073 as_bad_where (fixP->fx_file, fixP->fx_line,
2074 "cannot emit PC relative %s relocation%s%s",
2075 bfd_get_reloc_code_name (fixP->fx_r_type),
2076 fixP->fx_addsy != NULL ? " against " : "",
2077 (fixP->fx_addsy != NULL
2078 ? S_GET_NAME (fixP->fx_addsy)
2081 md_number_to_chars (where, value, 2);
2083 case BFD_RELOC_390_GOT16:
2084 case BFD_RELOC_390_PLTOFF16:
2085 case BFD_RELOC_390_GOTPLT16:
2087 md_number_to_chars (where, value, 2);
2089 case BFD_RELOC_390_PC16DBL:
2090 case BFD_RELOC_390_PLT16DBL:
2093 md_number_to_chars (where, (offsetT) value >> 1, 2);
2098 fixP->fx_r_type = BFD_RELOC_32_PCREL;
2100 fixP->fx_r_type = BFD_RELOC_32;
2102 md_number_to_chars (where, value, 4);
2104 case BFD_RELOC_32_PCREL:
2105 case BFD_RELOC_32_BASEREL:
2106 fixP->fx_r_type = BFD_RELOC_32_PCREL;
2108 md_number_to_chars (where, value, 4);
2110 case BFD_RELOC_32_GOT_PCREL:
2111 case BFD_RELOC_390_PLTOFF32:
2112 case BFD_RELOC_390_PLT32:
2113 case BFD_RELOC_390_GOTPLT32:
2115 md_number_to_chars (where, value, 4);
2117 case BFD_RELOC_390_PC32DBL:
2118 case BFD_RELOC_390_PLT32DBL:
2119 case BFD_RELOC_390_GOTPCDBL:
2120 case BFD_RELOC_390_GOTENT:
2121 case BFD_RELOC_390_GOTPLTENT:
2124 md_number_to_chars (where, (offsetT) value >> 1, 4);
2127 case BFD_RELOC_32_GOTOFF:
2129 md_number_to_chars (where, value, sizeof (int));
2132 case BFD_RELOC_390_GOTOFF64:
2134 md_number_to_chars (where, value, 8);
2137 case BFD_RELOC_390_GOT64:
2138 case BFD_RELOC_390_PLTOFF64:
2139 case BFD_RELOC_390_PLT64:
2140 case BFD_RELOC_390_GOTPLT64:
2142 md_number_to_chars (where, value, 8);
2147 fixP->fx_r_type = BFD_RELOC_64_PCREL;
2149 fixP->fx_r_type = BFD_RELOC_64;
2151 md_number_to_chars (where, value, 8);
2154 case BFD_RELOC_64_PCREL:
2155 fixP->fx_r_type = BFD_RELOC_64_PCREL;
2157 md_number_to_chars (where, value, 8);
2160 case BFD_RELOC_VTABLE_INHERIT:
2161 case BFD_RELOC_VTABLE_ENTRY:
2165 case BFD_RELOC_390_TLS_LOAD:
2166 case BFD_RELOC_390_TLS_GDCALL:
2167 case BFD_RELOC_390_TLS_LDCALL:
2168 case BFD_RELOC_390_TLS_GD32:
2169 case BFD_RELOC_390_TLS_GD64:
2170 case BFD_RELOC_390_TLS_GOTIE12:
2171 case BFD_RELOC_390_TLS_GOTIE32:
2172 case BFD_RELOC_390_TLS_GOTIE64:
2173 case BFD_RELOC_390_TLS_LDM32:
2174 case BFD_RELOC_390_TLS_LDM64:
2175 case BFD_RELOC_390_TLS_IE32:
2176 case BFD_RELOC_390_TLS_IE64:
2177 case BFD_RELOC_390_TLS_LE32:
2178 case BFD_RELOC_390_TLS_LE64:
2179 case BFD_RELOC_390_TLS_LDO32:
2180 case BFD_RELOC_390_TLS_LDO64:
2181 case BFD_RELOC_390_TLS_DTPMOD:
2182 case BFD_RELOC_390_TLS_DTPOFF:
2183 case BFD_RELOC_390_TLS_TPOFF:
2184 /* Fully resolved at link time. */
2186 case BFD_RELOC_390_TLS_IEENT:
2187 /* Fully resolved at link time. */
2193 const char *reloc_name = bfd_get_reloc_code_name (fixP->fx_r_type);
2195 if (reloc_name != NULL)
2196 fprintf (stderr, "Gas failure, reloc type %s\n", reloc_name);
2198 fprintf (stderr, "Gas failure, reloc type #%i\n", fixP->fx_r_type);
2204 fixP->fx_offset = value;
2208 /* Generate a reloc for a fixup. */
2211 tc_gen_reloc (seg, fixp)
2212 asection *seg ATTRIBUTE_UNUSED;
2215 bfd_reloc_code_real_type code;
2218 code = fixp->fx_r_type;
2219 if (GOT_symbol && fixp->fx_addsy == GOT_symbol)
2221 if ( (s390_arch_size == 32 && code == BFD_RELOC_32_PCREL)
2222 || (s390_arch_size == 64 && code == BFD_RELOC_64_PCREL))
2223 code = BFD_RELOC_390_GOTPC;
2224 if (code == BFD_RELOC_390_PC32DBL)
2225 code = BFD_RELOC_390_GOTPCDBL;
2228 reloc = (arelent *) xmalloc (sizeof (arelent));
2229 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
2230 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
2231 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
2232 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
2233 if (reloc->howto == NULL)
2235 as_bad_where (fixp->fx_file, fixp->fx_line,
2236 _("cannot represent relocation type %s"),
2237 bfd_get_reloc_code_name (code));
2238 /* Set howto to a garbage value so that we can keep going. */
2239 reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
2240 assert (reloc->howto != NULL);
2242 reloc->addend = fixp->fx_offset;