1 /* tc-s390.c -- Assemble for the S390
2 Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 2009, 2010 Free Software Foundation, Inc.
4 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 #include "safe-ctype.h"
26 #include "struc-symbol.h"
27 #include "dwarf2dbg.h"
28 #include "dw2gencfi.h"
30 #include "opcode/s390.h"
33 /* The default architecture. */
35 #define DEFAULT_ARCH "s390"
37 static char *default_arch
= DEFAULT_ARCH
;
38 /* Either 32 or 64, selects file format. */
39 static int s390_arch_size
= 0;
41 /* If no -march option was given default to the highest available CPU.
42 Since with S/390 a newer CPU always supports everything from its
43 predecessors this will accept every valid asm input. */
44 static unsigned int current_cpu
= S390_OPCODE_MAXCPU
- 1;
45 static unsigned int current_mode_mask
= 0;
47 /* Whether to use user friendly register names. Default is TRUE. */
48 #ifndef TARGET_REG_NAMES_P
49 #define TARGET_REG_NAMES_P TRUE
52 static bfd_boolean reg_names_p
= TARGET_REG_NAMES_P
;
54 /* Set to TRUE if we want to warn about zero base/index registers. */
55 static bfd_boolean warn_areg_zero
= FALSE
;
57 /* Generic assembler global variables which must be defined by all
60 const char comment_chars
[] = "#";
62 /* Characters which start a comment at the beginning of a line. */
63 const char line_comment_chars
[] = "#";
65 /* Characters which may be used to separate multiple commands on a
67 const char line_separator_chars
[] = ";";
69 /* Characters which are used to indicate an exponent in a floating
71 const char EXP_CHARS
[] = "eE";
73 /* Characters which mean that a number is a floating point constant,
75 const char FLT_CHARS
[] = "dD";
77 /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
78 int s390_cie_data_alignment
;
80 /* The target specific pseudo-ops which we support. */
82 /* Define the prototypes for the pseudo-ops */
83 static void s390_byte (int);
84 static void s390_elf_cons (int);
85 static void s390_bss (int);
86 static void s390_insn (int);
87 static void s390_literals (int);
89 const pseudo_typeS md_pseudo_table
[] =
91 { "align", s_align_bytes
, 0 },
92 /* Pseudo-ops which must be defined. */
93 { "bss", s390_bss
, 0 },
94 { "insn", s390_insn
, 0 },
95 /* Pseudo-ops which must be overridden. */
96 { "byte", s390_byte
, 0 },
97 { "short", s390_elf_cons
, 2 },
98 { "long", s390_elf_cons
, 4 },
99 { "quad", s390_elf_cons
, 8 },
100 { "ltorg", s390_literals
, 0 },
101 { "string", stringer
, 8 + 1 },
106 /* Structure to hold information about predefined registers. */
113 /* List of registers that are pre-defined:
115 Each access register has a predefined name of the form:
116 a<reg_num> which has the value <reg_num>.
118 Each control register has a predefined name of the form:
119 c<reg_num> which has the value <reg_num>.
121 Each general register has a predefined name of the form:
122 r<reg_num> which has the value <reg_num>.
124 Each floating point register a has predefined name of the form:
125 f<reg_num> which has the value <reg_num>.
127 There are individual registers as well:
131 The table is sorted. Suitable for searching by a binary search. */
133 static const struct pd_reg pre_defined_registers
[] =
135 { "a0", 0 }, /* Access registers */
152 { "c0", 0 }, /* Control registers */
169 { "f0", 0 }, /* Floating point registers */
186 { "lit", 13 }, /* Pointer to literal pool */
188 { "r0", 0 }, /* General purpose registers */
205 { "sp", 15 }, /* Stack pointer */
209 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
211 /* Given NAME, find the register number associated with that name, return
212 the integer value associated with the given name or -1 on failure. */
215 reg_name_search (const struct pd_reg
*regs
, int regcount
, const char *name
)
217 int middle
, low
, high
;
225 middle
= (low
+ high
) / 2;
226 cmp
= strcasecmp (name
, regs
[middle
].name
);
232 return regs
[middle
].value
;
241 * Summary of register_name().
243 * in: Input_line_pointer points to 1st char of operand.
245 * out: A expressionS.
246 * The operand may have been a register: in this case, X_op == O_register,
247 * X_add_number is set to the register number, and truth is returned.
248 * Input_line_pointer->(next non-blank) char after operand, or is in its
253 register_name (expressionS
*expressionP
)
260 /* Find the spelling of the operand. */
261 start
= name
= input_line_pointer
;
262 if (name
[0] == '%' && ISALPHA (name
[1]))
263 name
= ++input_line_pointer
;
267 c
= get_symbol_end ();
268 reg_number
= reg_name_search (pre_defined_registers
, REG_NAME_CNT
, name
);
270 /* Put back the delimiting char. */
271 *input_line_pointer
= c
;
273 /* Look to see if it's in the register table. */
276 expressionP
->X_op
= O_register
;
277 expressionP
->X_add_number
= reg_number
;
279 /* Make the rest nice. */
280 expressionP
->X_add_symbol
= NULL
;
281 expressionP
->X_op_symbol
= NULL
;
285 /* Reset the line as if we had not done anything. */
286 input_line_pointer
= start
;
290 /* Local variables. */
292 /* Opformat hash table. */
293 static struct hash_control
*s390_opformat_hash
;
295 /* Opcode hash table. */
296 static struct hash_control
*s390_opcode_hash
;
298 /* Flags to set in the elf header */
299 static flagword s390_flags
= 0;
301 symbolS
*GOT_symbol
; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
303 #ifndef WORKING_DOT_WORD
304 int md_short_jump_size
= 4;
305 int md_long_jump_size
= 4;
308 const char *md_shortopts
= "A:m:kVQ:";
309 struct option md_longopts
[] = {
310 {NULL
, no_argument
, NULL
, 0}
312 size_t md_longopts_size
= sizeof (md_longopts
);
314 /* Initialize the default opcode arch and word size from the default
315 architecture name if not specified by an option. */
317 init_default_arch (void)
319 if (strcmp (default_arch
, "s390") == 0)
321 if (s390_arch_size
== 0)
324 else if (strcmp (default_arch
, "s390x") == 0)
326 if (s390_arch_size
== 0)
330 as_fatal (_("Invalid default architecture, broken assembler."));
332 if (current_mode_mask
== 0)
334 /* Default to z/Architecture mode if the CPU supports it. */
335 if (current_cpu
< S390_OPCODE_Z900
)
336 current_mode_mask
= 1 << S390_OPCODE_ESA
;
338 current_mode_mask
= 1 << S390_OPCODE_ZARCH
;
342 /* Called by TARGET_FORMAT. */
344 s390_target_format (void)
346 /* We don't get a chance to initialize anything before we're called,
347 so handle that now. */
348 init_default_arch ();
350 return s390_arch_size
== 64 ? "elf64-s390" : "elf32-s390";
354 md_parse_option (int c
, char *arg
)
358 /* -k: Ignore for FreeBSD compatibility. */
362 if (arg
!= NULL
&& strcmp (arg
, "regnames") == 0)
365 else if (arg
!= NULL
&& strcmp (arg
, "no-regnames") == 0)
368 else if (arg
!= NULL
&& strcmp (arg
, "warn-areg-zero") == 0)
369 warn_areg_zero
= TRUE
;
371 else if (arg
!= NULL
&& strcmp (arg
, "31") == 0)
374 else if (arg
!= NULL
&& strcmp (arg
, "64") == 0)
377 else if (arg
!= NULL
&& strcmp (arg
, "esa") == 0)
378 current_mode_mask
= 1 << S390_OPCODE_ESA
;
380 else if (arg
!= NULL
&& strcmp (arg
, "zarch") == 0)
381 current_mode_mask
= 1 << S390_OPCODE_ZARCH
;
383 else if (arg
!= NULL
&& strncmp (arg
, "arch=", 5) == 0)
385 if (strcmp (arg
+ 5, "g5") == 0)
386 current_cpu
= S390_OPCODE_G5
;
387 else if (strcmp (arg
+ 5, "g6") == 0)
388 current_cpu
= S390_OPCODE_G6
;
389 else if (strcmp (arg
+ 5, "z900") == 0)
390 current_cpu
= S390_OPCODE_Z900
;
391 else if (strcmp (arg
+ 5, "z990") == 0)
392 current_cpu
= S390_OPCODE_Z990
;
393 else if (strcmp (arg
+ 5, "z9-109") == 0)
394 current_cpu
= S390_OPCODE_Z9_109
;
395 else if (strcmp (arg
+ 5, "z9-ec") == 0)
396 current_cpu
= S390_OPCODE_Z9_EC
;
397 else if (strcmp (arg
+ 5, "z10") == 0)
398 current_cpu
= S390_OPCODE_Z10
;
399 else if (strcmp (arg
+ 5, "z196") == 0)
400 current_cpu
= S390_OPCODE_Z196
;
403 as_bad (_("invalid switch -m%s"), arg
);
410 as_bad (_("invalid switch -m%s"), arg
);
416 /* Option -A is deprecated. Still available for compatibility. */
417 if (arg
!= NULL
&& strcmp (arg
, "esa") == 0)
418 current_cpu
= S390_OPCODE_G5
;
419 else if (arg
!= NULL
&& strcmp (arg
, "esame") == 0)
420 current_cpu
= S390_OPCODE_Z900
;
422 as_bad (_("invalid architecture -A%s"), arg
);
425 /* -V: SVR4 argument to print version ID. */
430 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
431 should be emitted or not. FIXME: Not implemented. */
443 md_show_usage (FILE *stream
)
445 fprintf (stream
, _("\
447 -mregnames Allow symbolic names for registers\n\
448 -mwarn-areg-zero Warn about zero base/index registers\n\
449 -mno-regnames Do not allow symbolic names for registers\n\
450 -m31 Set file format to 31 bit format\n\
451 -m64 Set file format to 64 bit format\n"));
452 fprintf (stream
, _("\
453 -V print assembler version number\n\
454 -Qy, -Qn ignored\n"));
457 /* This function is called when the assembler starts up. It is called
458 after the options have been parsed and the output file has been
464 register const struct s390_opcode
*op
;
465 const struct s390_opcode
*op_end
;
466 bfd_boolean dup_insn
= FALSE
;
469 /* Give a warning if the combination -m64-bit and -Aesa is used. */
470 if (s390_arch_size
== 64 && current_cpu
< S390_OPCODE_Z900
)
471 as_warn (_("The 64 bit file format is used without esame instructions."));
473 s390_cie_data_alignment
= -s390_arch_size
/ 8;
475 /* Set the ELF flags if desired. */
477 bfd_set_private_flags (stdoutput
, s390_flags
);
479 /* Insert the opcode formats into a hash table. */
480 s390_opformat_hash
= hash_new ();
482 op_end
= s390_opformats
+ s390_num_opformats
;
483 for (op
= s390_opformats
; op
< op_end
; op
++)
485 retval
= hash_insert (s390_opformat_hash
, op
->name
, (void *) op
);
486 if (retval
!= (const char *) NULL
)
488 as_bad (_("Internal assembler error for instruction format %s"),
494 /* Insert the opcodes into a hash table. */
495 s390_opcode_hash
= hash_new ();
497 op_end
= s390_opcodes
+ s390_num_opcodes
;
498 for (op
= s390_opcodes
; op
< op_end
; op
++)
500 while (op
< op_end
- 1 && strcmp(op
->name
, op
[1].name
) == 0)
502 if (op
->min_cpu
<= current_cpu
&& (op
->modes
& current_mode_mask
))
507 if (op
->min_cpu
<= current_cpu
&& (op
->modes
& current_mode_mask
))
509 retval
= hash_insert (s390_opcode_hash
, op
->name
, (void *) op
);
510 if (retval
!= (const char *) NULL
)
512 as_bad (_("Internal assembler error for instruction %s"),
518 while (op
< op_end
- 1 && strcmp (op
->name
, op
[1].name
) == 0)
525 record_alignment (text_section
, 2);
526 record_alignment (data_section
, 2);
527 record_alignment (bss_section
, 2);
531 /* Called after all assembly has been done. */
535 if (s390_arch_size
== 64)
536 bfd_set_arch_mach (stdoutput
, bfd_arch_s390
, bfd_mach_s390_64
);
538 bfd_set_arch_mach (stdoutput
, bfd_arch_s390
, bfd_mach_s390_31
);
541 /* Insert an operand value into an instruction. */
544 s390_insert_operand (unsigned char *insn
,
545 const struct s390_operand
*operand
,
553 if (operand
->flags
& (S390_OPERAND_SIGNED
|S390_OPERAND_PCREL
))
557 max
= ((offsetT
) 1 << (operand
->bits
- 1)) - 1;
558 min
= - ((offsetT
) 1 << (operand
->bits
- 1));
559 /* Halve PCREL operands. */
560 if (operand
->flags
& S390_OPERAND_PCREL
)
562 /* Check for underflow / overflow. */
563 if (val
< min
|| val
> max
)
566 _("operand out of range (%s not between %ld and %ld)");
569 if (operand
->flags
& S390_OPERAND_PCREL
)
575 sprint_value (buf
, val
);
576 if (file
== (char *) NULL
)
577 as_bad (err
, buf
, (int) min
, (int) max
);
579 as_bad_where (file
, line
, err
, buf
, (int) min
, (int) max
);
582 /* val is ok, now restrict it to operand->bits bits. */
583 uval
= (addressT
) val
& ((((addressT
) 1 << (operand
->bits
-1)) << 1) - 1);
584 /* val is restrict, now check for special case. */
585 if (operand
->bits
== 20 && operand
->shift
== 20)
586 uval
= (uval
>> 12) | ((uval
& 0xfff) << 8);
592 max
= (((addressT
) 1 << (operand
->bits
- 1)) << 1) - 1;
594 uval
= (addressT
) val
;
595 /* Length x in an instructions has real length x+1. */
596 if (operand
->flags
& S390_OPERAND_LENGTH
)
598 /* Check for underflow / overflow. */
599 if (uval
< min
|| uval
> max
)
601 if (operand
->flags
& S390_OPERAND_LENGTH
)
608 as_bad_value_out_of_range (_("operand"), uval
, (offsetT
) min
, (offsetT
) max
, file
, line
);
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 /* Parse tls marker and return the desired relocation. */
633 static bfd_reloc_code_real_type
634 s390_tls_suffix (char **str_p
, expressionS
*exp_p
)
636 static struct map_tls mapping
[] =
638 { "tls_load", 8, BFD_RELOC_390_TLS_LOAD
},
639 { "tls_gdcall", 10, BFD_RELOC_390_TLS_GDCALL
},
640 { "tls_ldcall", 10, BFD_RELOC_390_TLS_LDCALL
},
641 { NULL
, 0, BFD_RELOC_UNUSED
}
651 return BFD_RELOC_UNUSED
;
654 while (ISIDNUM (*str
))
658 return BFD_RELOC_UNUSED
;
660 orig_line
= input_line_pointer
;
661 input_line_pointer
= str
;
663 str
= input_line_pointer
;
664 if (&input_line_pointer
!= str_p
)
665 input_line_pointer
= orig_line
;
667 if (exp_p
->X_op
!= O_symbol
)
668 return BFD_RELOC_UNUSED
;
670 for (ptr
= &mapping
[0]; ptr
->length
> 0; ptr
++)
671 if (len
== ptr
->length
672 && strncasecmp (ident
, ptr
->string
, ptr
->length
) == 0)
674 /* Found a matching tls suffix. */
678 return BFD_RELOC_UNUSED
;
681 /* Structure used to hold suffixes. */
692 ELF_SUFFIX_TLS_GOTIE
,
704 elf_suffix_type suffix
;
708 /* Parse @got/@plt/@gotoff. and return the desired relocation. */
709 static elf_suffix_type
710 s390_elf_suffix (char **str_p
, expressionS
*exp_p
)
712 static struct map_bfd mapping
[] =
714 { "got", 3, ELF_SUFFIX_GOT
},
715 { "got12", 5, ELF_SUFFIX_GOT
},
716 { "plt", 3, ELF_SUFFIX_PLT
},
717 { "gotent", 6, ELF_SUFFIX_GOTENT
},
718 { "gotoff", 6, ELF_SUFFIX_GOTOFF
},
719 { "gotplt", 6, ELF_SUFFIX_GOTPLT
},
720 { "pltoff", 6, ELF_SUFFIX_PLTOFF
},
721 { "tlsgd", 5, ELF_SUFFIX_TLS_GD
},
722 { "gotntpoff", 9, ELF_SUFFIX_TLS_GOTIE
},
723 { "indntpoff", 9, ELF_SUFFIX_TLS_IE
},
724 { "tlsldm", 6, ELF_SUFFIX_TLS_LDM
},
725 { "dtpoff", 6, ELF_SUFFIX_TLS_LDO
},
726 { "ntpoff", 6, ELF_SUFFIX_TLS_LE
},
727 { NULL
, 0, ELF_SUFFIX_NONE
}
736 return ELF_SUFFIX_NONE
;
739 while (ISALNUM (*str
))
743 for (ptr
= &mapping
[0]; ptr
->length
> 0; ptr
++)
744 if (len
== ptr
->length
745 && strncasecmp (ident
, ptr
->string
, ptr
->length
) == 0)
747 if (exp_p
->X_add_number
!= 0)
748 as_warn (_("identifier+constant@%s means identifier@%s+constant"),
749 ptr
->string
, ptr
->string
);
750 /* Now check for identifier@suffix+constant. */
751 if (*str
== '-' || *str
== '+')
753 char *orig_line
= input_line_pointer
;
756 input_line_pointer
= str
;
757 expression (&new_exp
);
759 switch (new_exp
.X_op
)
761 case O_constant
: /* X_add_number (a constant expression). */
762 exp_p
->X_add_number
+= new_exp
.X_add_number
;
763 str
= input_line_pointer
;
765 case O_symbol
: /* X_add_symbol + X_add_number. */
766 /* this case is used for e.g. xyz@PLT+.Label. */
767 exp_p
->X_add_number
+= new_exp
.X_add_number
;
768 exp_p
->X_op_symbol
= new_exp
.X_add_symbol
;
770 str
= input_line_pointer
;
772 case O_uminus
: /* (- X_add_symbol) + X_add_number. */
773 /* this case is used for e.g. xyz@PLT-.Label. */
774 exp_p
->X_add_number
+= new_exp
.X_add_number
;
775 exp_p
->X_op_symbol
= new_exp
.X_add_symbol
;
776 exp_p
->X_op
= O_subtract
;
777 str
= input_line_pointer
;
783 /* If s390_elf_suffix has not been called with
784 &input_line_pointer as first parameter, we have
785 clobbered the input_line_pointer. We have to
787 if (&input_line_pointer
!= str_p
)
788 input_line_pointer
= orig_line
;
794 return BFD_RELOC_UNUSED
;
797 /* Structure used to hold a literal pool entry. */
800 struct s390_lpe
*next
;
802 FLONUM_TYPE floatnum
; /* used if X_op == O_big && X_add_number <= 0 */
803 LITTLENUM_TYPE bignum
[4]; /* used if X_op == O_big && X_add_number > 0 */
805 bfd_reloc_code_real_type reloc
;
809 static struct s390_lpe
*lpe_free_list
= NULL
;
810 static struct s390_lpe
*lpe_list
= NULL
;
811 static struct s390_lpe
*lpe_list_tail
= NULL
;
812 static symbolS
*lp_sym
= NULL
;
813 static int lp_count
= 0;
814 static int lpe_count
= 0;
817 s390_exp_compare (expressionS
*exp1
, expressionS
*exp2
)
819 if (exp1
->X_op
!= exp2
->X_op
)
824 case O_constant
: /* X_add_number must be equal. */
826 return exp1
->X_add_number
== exp2
->X_add_number
;
829 as_bad (_("Can't handle O_big in s390_exp_compare"));
831 case O_symbol
: /* X_add_symbol & X_add_number must be equal. */
836 return (exp1
->X_add_symbol
== exp2
->X_add_symbol
)
837 && (exp1
->X_add_number
== exp2
->X_add_number
);
839 case O_multiply
: /* X_add_symbol,X_op_symbol&X_add_number must be equal. */
844 case O_bit_inclusive_or
:
846 case O_bit_exclusive_or
:
858 return (exp1
->X_add_symbol
== exp2
->X_add_symbol
)
859 && (exp1
->X_op_symbol
== exp2
->X_op_symbol
)
860 && (exp1
->X_add_number
== exp2
->X_add_number
);
866 /* Test for @lit and if its present make an entry in the literal pool and
867 modify the current expression to be an offset into the literal pool. */
868 static elf_suffix_type
869 s390_lit_suffix (char **str_p
, expressionS
*exp_p
, elf_suffix_type suffix
)
871 bfd_reloc_code_real_type reloc
;
875 struct s390_lpe
*lpe
;
879 return suffix
; /* No modification. */
881 /* We look for a suffix of the form "@lit1", "@lit2", "@lit4" or "@lit8". */
883 while (ISALNUM (*str
))
886 if (len
!= 4 || strncasecmp (ident
, "lit", 3) != 0
887 || (ident
[3]!='1' && ident
[3]!='2' && ident
[3]!='4' && ident
[3]!='8'))
888 return suffix
; /* no modification */
889 nbytes
= ident
[3] - '0';
891 reloc
= BFD_RELOC_UNUSED
;
892 if (suffix
== ELF_SUFFIX_GOT
)
895 reloc
= BFD_RELOC_390_GOT16
;
896 else if (nbytes
== 4)
897 reloc
= BFD_RELOC_32_GOT_PCREL
;
898 else if (nbytes
== 8)
899 reloc
= BFD_RELOC_390_GOT64
;
901 else if (suffix
== ELF_SUFFIX_PLT
)
904 reloc
= BFD_RELOC_390_PLT32
;
905 else if (nbytes
== 8)
906 reloc
= BFD_RELOC_390_PLT64
;
909 if (suffix
!= ELF_SUFFIX_NONE
&& reloc
== BFD_RELOC_UNUSED
)
910 as_bad (_("Invalid suffix for literal pool entry"));
912 /* Search the pool if the new entry is a duplicate. */
913 if (exp_p
->X_op
== O_big
)
915 /* Special processing for big numbers. */
916 for (lpe
= lpe_list
; lpe
!= NULL
; lpe
= lpe
->next
)
918 if (lpe
->ex
.X_op
== O_big
)
920 if (exp_p
->X_add_number
<= 0 && lpe
->ex
.X_add_number
<= 0)
922 if (memcmp (&generic_floating_point_number
, &lpe
->floatnum
,
923 sizeof (FLONUM_TYPE
)) == 0)
926 else if (exp_p
->X_add_number
== lpe
->ex
.X_add_number
)
928 if (memcmp (generic_bignum
, lpe
->bignum
,
929 sizeof (LITTLENUM_TYPE
)*exp_p
->X_add_number
) == 0)
937 /* Processing for 'normal' data types. */
938 for (lpe
= lpe_list
; lpe
!= NULL
; lpe
= lpe
->next
)
939 if (lpe
->nbytes
== nbytes
&& lpe
->reloc
== reloc
940 && s390_exp_compare (exp_p
, &lpe
->ex
) != 0)
947 if (lpe_free_list
!= NULL
)
950 lpe_free_list
= lpe_free_list
->next
;
954 lpe
= (struct s390_lpe
*) xmalloc (sizeof (struct s390_lpe
));
959 if (exp_p
->X_op
== O_big
)
961 if (exp_p
->X_add_number
<= 0)
962 lpe
->floatnum
= generic_floating_point_number
;
963 else if (exp_p
->X_add_number
<= 4)
964 memcpy (lpe
->bignum
, generic_bignum
,
965 exp_p
->X_add_number
* sizeof (LITTLENUM_TYPE
));
967 as_bad (_("Big number is too big"));
970 lpe
->nbytes
= nbytes
;
972 /* Literal pool name defined ? */
975 sprintf (tmp_name
, ".L\001%i", lp_count
);
976 lp_sym
= symbol_make (tmp_name
);
979 /* Make name for literal pool entry. */
980 sprintf (tmp_name
, ".L\001%i\002%i", lp_count
, lpe_count
);
982 lpe
->sym
= symbol_make (tmp_name
);
984 /* Add to literal pool list. */
986 if (lpe_list_tail
!= NULL
)
988 lpe_list_tail
->next
= lpe
;
992 lpe_list
= lpe_list_tail
= lpe
;
995 /* Now change exp_p to the offset into the literal pool.
996 Thats the expression: .L^Ax^By-.L^Ax */
997 exp_p
->X_add_symbol
= lpe
->sym
;
998 exp_p
->X_op_symbol
= lp_sym
;
999 exp_p
->X_op
= O_subtract
;
1000 exp_p
->X_add_number
= 0;
1004 /* We change the suffix type to ELF_SUFFIX_NONE, because
1005 the difference of two local labels is just a number. */
1006 return ELF_SUFFIX_NONE
;
1009 /* Like normal .long/.short/.word, except support @got, etc.
1010 clobbers input_line_pointer, checks end-of-line. */
1012 s390_elf_cons (int nbytes
/* 1=.byte, 2=.word, 4=.long */)
1015 elf_suffix_type suffix
;
1017 if (is_it_end_of_statement ())
1019 demand_empty_rest_of_line ();
1027 if (exp
.X_op
== O_symbol
1028 && *input_line_pointer
== '@'
1029 && (suffix
= s390_elf_suffix (&input_line_pointer
, &exp
)) != ELF_SUFFIX_NONE
)
1031 bfd_reloc_code_real_type reloc
;
1032 reloc_howto_type
*reloc_howto
;
1038 static bfd_reloc_code_real_type tab2
[] =
1040 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_NONE */
1041 BFD_RELOC_390_GOT16
, /* ELF_SUFFIX_GOT */
1042 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_PLT */
1043 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_GOTENT */
1044 BFD_RELOC_16_GOTOFF
, /* ELF_SUFFIX_GOTOFF */
1045 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_GOTPLT */
1046 BFD_RELOC_390_PLTOFF16
, /* ELF_SUFFIX_PLTOFF */
1047 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_TLS_GD */
1048 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_TLS_GOTIE */
1049 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_TLS_IE */
1050 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_TLS_LDM */
1051 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_TLS_LDO */
1052 BFD_RELOC_UNUSED
/* ELF_SUFFIX_TLS_LE */
1054 reloc
= tab2
[suffix
];
1056 else if (nbytes
== 4)
1058 static bfd_reloc_code_real_type tab4
[] =
1060 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_NONE */
1061 BFD_RELOC_32_GOT_PCREL
, /* ELF_SUFFIX_GOT */
1062 BFD_RELOC_390_PLT32
, /* ELF_SUFFIX_PLT */
1063 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_GOTENT */
1064 BFD_RELOC_32_GOTOFF
, /* ELF_SUFFIX_GOTOFF */
1065 BFD_RELOC_390_GOTPLT32
, /* ELF_SUFFIX_GOTPLT */
1066 BFD_RELOC_390_PLTOFF32
, /* ELF_SUFFIX_PLTOFF */
1067 BFD_RELOC_390_TLS_GD32
, /* ELF_SUFFIX_TLS_GD */
1068 BFD_RELOC_390_TLS_GOTIE32
, /* ELF_SUFFIX_TLS_GOTIE */
1069 BFD_RELOC_390_TLS_IE32
, /* ELF_SUFFIX_TLS_IE */
1070 BFD_RELOC_390_TLS_LDM32
, /* ELF_SUFFIX_TLS_LDM */
1071 BFD_RELOC_390_TLS_LDO32
, /* ELF_SUFFIX_TLS_LDO */
1072 BFD_RELOC_390_TLS_LE32
/* ELF_SUFFIX_TLS_LE */
1074 reloc
= tab4
[suffix
];
1076 else if (nbytes
== 8)
1078 static bfd_reloc_code_real_type tab8
[] =
1080 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_NONE */
1081 BFD_RELOC_390_GOT64
, /* ELF_SUFFIX_GOT */
1082 BFD_RELOC_390_PLT64
, /* ELF_SUFFIX_PLT */
1083 BFD_RELOC_UNUSED
, /* ELF_SUFFIX_GOTENT */
1084 BFD_RELOC_390_GOTOFF64
, /* ELF_SUFFIX_GOTOFF */
1085 BFD_RELOC_390_GOTPLT64
, /* ELF_SUFFIX_GOTPLT */
1086 BFD_RELOC_390_PLTOFF64
, /* ELF_SUFFIX_PLTOFF */
1087 BFD_RELOC_390_TLS_GD64
, /* ELF_SUFFIX_TLS_GD */
1088 BFD_RELOC_390_TLS_GOTIE64
, /* ELF_SUFFIX_TLS_GOTIE */
1089 BFD_RELOC_390_TLS_IE64
, /* ELF_SUFFIX_TLS_IE */
1090 BFD_RELOC_390_TLS_LDM64
, /* ELF_SUFFIX_TLS_LDM */
1091 BFD_RELOC_390_TLS_LDO64
, /* ELF_SUFFIX_TLS_LDO */
1092 BFD_RELOC_390_TLS_LE64
/* ELF_SUFFIX_TLS_LE */
1094 reloc
= tab8
[suffix
];
1097 reloc
= BFD_RELOC_UNUSED
;
1099 if (reloc
!= BFD_RELOC_UNUSED
1100 && (reloc_howto
= bfd_reloc_type_lookup (stdoutput
, reloc
)))
1102 size
= bfd_get_reloc_size (reloc_howto
);
1104 as_bad (_("%s relocations do not fit in %d bytes"),
1105 reloc_howto
->name
, nbytes
);
1106 where
= frag_more (nbytes
);
1107 md_number_to_chars (where
, 0, size
);
1108 /* To make fixup_segment do the pc relative conversion the
1109 pcrel parameter on the fix_new_exp call needs to be FALSE. */
1110 fix_new_exp (frag_now
, where
- frag_now
->fr_literal
,
1111 size
, &exp
, FALSE
, reloc
);
1114 as_bad (_("relocation not applicable"));
1117 emit_expr (&exp
, (unsigned int) nbytes
);
1119 while (*input_line_pointer
++ == ',');
1121 input_line_pointer
--; /* Put terminator back into stream. */
1122 demand_empty_rest_of_line ();
1125 /* We need to keep a list of fixups. We can't simply generate them as
1126 we go, because that would require us to first create the frag, and
1127 that would screw up references to ``.''. */
1133 bfd_reloc_code_real_type reloc
;
1136 #define MAX_INSN_FIXUPS (4)
1138 /* This routine is called for each instruction to be assembled. */
1141 md_gather_operands (char *str
,
1142 unsigned char *insn
,
1143 const struct s390_opcode
*opcode
)
1145 struct s390_fixup fixups
[MAX_INSN_FIXUPS
];
1146 const struct s390_operand
*operand
;
1147 const unsigned char *opindex_ptr
;
1149 elf_suffix_type suffix
;
1150 bfd_reloc_code_real_type reloc
;
1155 while (ISSPACE (*str
))
1160 /* Gather the operands. */
1162 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
1166 operand
= s390_operands
+ *opindex_ptr
;
1168 if (skip_optional
&& (operand
->flags
& S390_OPERAND_INDEX
))
1170 /* We do an early skip. For D(X,B) constructions the index
1171 register is skipped (X is optional). For D(L,B) the base
1172 register will be the skipped operand, because L is NOT
1178 /* Gather the operand. */
1179 hold
= input_line_pointer
;
1180 input_line_pointer
= str
;
1182 /* Parse the operand. */
1183 if (! register_name (&ex
))
1186 str
= input_line_pointer
;
1187 input_line_pointer
= hold
;
1189 /* Write the operand to the insn. */
1190 if (ex
.X_op
== O_illegal
)
1191 as_bad (_("illegal operand"));
1192 else if (ex
.X_op
== O_absent
)
1194 /* No operands, check if all operands can be skipped. */
1195 while (*opindex_ptr
!= 0 && operand
->flags
& S390_OPERAND_OPTIONAL
)
1197 if (operand
->flags
& S390_OPERAND_DISP
)
1199 /* An optional displacement makes the whole D(X,B)
1200 D(L,B) or D(B) block optional. */
1202 operand
= s390_operands
+ *(++opindex_ptr
);
1203 } while (!(operand
->flags
& S390_OPERAND_BASE
));
1205 operand
= s390_operands
+ *(++opindex_ptr
);
1207 if (opindex_ptr
[0] == '\0')
1209 as_bad (_("missing operand"));
1211 else if (ex
.X_op
== O_register
|| ex
.X_op
== O_constant
)
1213 s390_lit_suffix (&str
, &ex
, ELF_SUFFIX_NONE
);
1215 if (ex
.X_op
!= O_register
&& ex
.X_op
!= O_constant
)
1217 /* We need to generate a fixup for the
1218 expression returned by s390_lit_suffix. */
1219 if (fc
>= MAX_INSN_FIXUPS
)
1220 as_fatal (_("too many fixups"));
1221 fixups
[fc
].exp
= ex
;
1222 fixups
[fc
].opindex
= *opindex_ptr
;
1223 fixups
[fc
].reloc
= BFD_RELOC_UNUSED
;
1228 if ((operand
->flags
& S390_OPERAND_INDEX
)
1229 && ex
.X_add_number
== 0
1231 as_warn (_("index register specified but zero"));
1232 if ((operand
->flags
& S390_OPERAND_BASE
)
1233 && ex
.X_add_number
== 0
1235 as_warn (_("base register specified but zero"));
1236 s390_insert_operand (insn
, operand
, ex
.X_add_number
, NULL
, 0);
1241 suffix
= s390_elf_suffix (&str
, &ex
);
1242 suffix
= s390_lit_suffix (&str
, &ex
, suffix
);
1243 reloc
= BFD_RELOC_UNUSED
;
1245 if (suffix
== ELF_SUFFIX_GOT
)
1247 if ((operand
->flags
& S390_OPERAND_DISP
) &&
1248 (operand
->bits
== 12))
1249 reloc
= BFD_RELOC_390_GOT12
;
1250 else if ((operand
->flags
& S390_OPERAND_DISP
) &&
1251 (operand
->bits
== 20))
1252 reloc
= BFD_RELOC_390_GOT20
;
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
;
1304 else if ((operand
->flags
& S390_OPERAND_DISP
)
1305 && (operand
->bits
== 20))
1306 reloc
= BFD_RELOC_390_TLS_GOTIE20
;
1308 else if (suffix
== ELF_SUFFIX_TLS_IE
)
1310 if ((operand
->flags
& S390_OPERAND_PCREL
)
1311 && (operand
->bits
== 32))
1312 reloc
= BFD_RELOC_390_TLS_IEENT
;
1315 if (suffix
!= ELF_SUFFIX_NONE
&& reloc
== BFD_RELOC_UNUSED
)
1316 as_bad (_("invalid operand suffix"));
1317 /* We need to generate a fixup of type 'reloc' for this
1319 if (fc
>= MAX_INSN_FIXUPS
)
1320 as_fatal (_("too many fixups"));
1321 fixups
[fc
].exp
= ex
;
1322 fixups
[fc
].opindex
= *opindex_ptr
;
1323 fixups
[fc
].reloc
= reloc
;
1327 /* Check the next character. The call to expression has advanced
1328 str past any whitespace. */
1329 if (operand
->flags
& S390_OPERAND_DISP
)
1331 /* After a displacement a block in parentheses can start. */
1334 /* Check if parenthesized block can be skipped. If the next
1335 operand is neiter an optional operand nor a base register
1336 then we have a syntax error. */
1337 operand
= s390_operands
+ *(++opindex_ptr
);
1338 if (!(operand
->flags
& (S390_OPERAND_INDEX
|S390_OPERAND_BASE
)))
1339 as_bad (_("syntax error; missing '(' after displacement"));
1341 /* Ok, skip all operands until S390_OPERAND_BASE. */
1342 while (!(operand
->flags
& S390_OPERAND_BASE
))
1343 operand
= s390_operands
+ *(++opindex_ptr
);
1345 /* If there is a next operand it must be separated by a comma. */
1346 if (opindex_ptr
[1] != '\0')
1350 while (opindex_ptr
[1] != '\0')
1352 operand
= s390_operands
+ *(++opindex_ptr
);
1353 if (operand
->flags
& S390_OPERAND_OPTIONAL
)
1355 as_bad (_("syntax error; expected ,"));
1365 /* We found an opening parentheses. */
1367 for (f
= str
; *f
!= '\0'; f
++)
1368 if (*f
== ',' || *f
== ')')
1370 /* If there is no comma until the closing parentheses OR
1371 there is a comma right after the opening parentheses,
1372 we have to skip optional operands. */
1373 if (*f
== ',' && f
== str
)
1375 /* comma directly after '(' ? */
1380 skip_optional
= (*f
!= ',');
1383 else if (operand
->flags
& S390_OPERAND_BASE
)
1385 /* After the base register the parenthesed block ends. */
1387 as_bad (_("syntax error; missing ')' after base register"));
1389 /* If there is a next operand it must be separated by a comma. */
1390 if (opindex_ptr
[1] != '\0')
1394 while (opindex_ptr
[1] != '\0')
1396 operand
= s390_operands
+ *(++opindex_ptr
);
1397 if (operand
->flags
& S390_OPERAND_OPTIONAL
)
1399 as_bad (_("syntax error; expected ,"));
1409 /* We can find an 'early' closing parentheses in e.g. D(L) instead
1410 of D(L,B). In this case the base register has to be skipped. */
1413 operand
= s390_operands
+ *(++opindex_ptr
);
1415 if (!(operand
->flags
& S390_OPERAND_BASE
))
1416 as_bad (_("syntax error; ')' not allowed here"));
1419 /* If there is a next operand it must be separated by a comma. */
1420 if (opindex_ptr
[1] != '\0')
1424 while (opindex_ptr
[1] != '\0')
1426 operand
= s390_operands
+ *(++opindex_ptr
);
1427 if (operand
->flags
& S390_OPERAND_OPTIONAL
)
1429 as_bad (_("syntax error; expected ,"));
1439 while (ISSPACE (*str
))
1442 /* Check for tls instruction marker. */
1443 reloc
= s390_tls_suffix (&str
, &ex
);
1444 if (reloc
!= BFD_RELOC_UNUSED
)
1446 /* We need to generate a fixup of type 'reloc' for this
1448 if (fc
>= MAX_INSN_FIXUPS
)
1449 as_fatal (_("too many fixups"));
1450 fixups
[fc
].exp
= ex
;
1451 fixups
[fc
].opindex
= -1;
1452 fixups
[fc
].reloc
= reloc
;
1460 if ((linefeed
= strchr (str
, '\n')) != NULL
)
1462 as_bad (_("junk at end of line: `%s'"), str
);
1463 if (linefeed
!= NULL
)
1467 /* Write out the instruction. */
1468 f
= frag_more (opcode
->oplen
);
1469 memcpy (f
, insn
, opcode
->oplen
);
1470 dwarf2_emit_insn (opcode
->oplen
);
1472 /* Create any fixups. At this point we do not use a
1473 bfd_reloc_code_real_type, but instead just use the
1474 BFD_RELOC_UNUSED plus the operand index. This lets us easily
1475 handle fixups for any operand type, although that is admittedly
1476 not a very exciting feature. We pick a BFD reloc type in
1478 for (i
= 0; i
< fc
; i
++)
1481 if (fixups
[i
].opindex
< 0)
1483 /* Create tls instruction marker relocation. */
1484 fix_new_exp (frag_now
, f
- frag_now
->fr_literal
, opcode
->oplen
,
1485 &fixups
[i
].exp
, 0, fixups
[i
].reloc
);
1489 operand
= s390_operands
+ fixups
[i
].opindex
;
1491 if (fixups
[i
].reloc
!= BFD_RELOC_UNUSED
)
1493 reloc_howto_type
*reloc_howto
;
1497 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, fixups
[i
].reloc
);
1501 size
= bfd_get_reloc_size (reloc_howto
);
1503 if (size
< 1 || size
> 4)
1506 fixP
= fix_new_exp (frag_now
,
1507 f
- frag_now
->fr_literal
+ (operand
->shift
/8),
1508 size
, &fixups
[i
].exp
, reloc_howto
->pc_relative
,
1510 /* Turn off overflow checking in fixup_segment. This is necessary
1511 because fixup_segment will signal an overflow for large 4 byte
1512 quantities for GOT12 relocations. */
1513 if ( fixups
[i
].reloc
== BFD_RELOC_390_GOT12
1514 || fixups
[i
].reloc
== BFD_RELOC_390_GOT20
1515 || fixups
[i
].reloc
== BFD_RELOC_390_GOT16
)
1516 fixP
->fx_no_overflow
= 1;
1519 fix_new_exp (frag_now
, f
- frag_now
->fr_literal
, 4, &fixups
[i
].exp
,
1520 (operand
->flags
& S390_OPERAND_PCREL
) != 0,
1521 ((bfd_reloc_code_real_type
)
1522 (fixups
[i
].opindex
+ (int) BFD_RELOC_UNUSED
)));
1527 /* This routine is called for each instruction to be assembled. */
1530 md_assemble (char *str
)
1532 const struct s390_opcode
*opcode
;
1533 unsigned char insn
[6];
1536 /* Get the opcode. */
1537 for (s
= str
; *s
!= '\0' && ! ISSPACE (*s
); s
++)
1542 /* Look up the opcode in the hash table. */
1543 opcode
= (struct s390_opcode
*) hash_find (s390_opcode_hash
, str
);
1544 if (opcode
== (const struct s390_opcode
*) NULL
)
1546 as_bad (_("Unrecognized opcode: `%s'"), str
);
1549 else if (!(opcode
->modes
& current_mode_mask
))
1551 as_bad (_("Opcode %s not available in this mode"), str
);
1554 memcpy (insn
, opcode
->opcode
, sizeof (insn
));
1555 md_gather_operands (s
, insn
, opcode
);
1558 #ifndef WORKING_DOT_WORD
1559 /* Handle long and short jumps. We don't support these */
1561 md_create_short_jump (ptr
, from_addr
, to_addr
, frag
, to_symbol
)
1563 addressT from_addr
, to_addr
;
1571 md_create_long_jump (ptr
, from_addr
, to_addr
, frag
, to_symbol
)
1573 addressT from_addr
, to_addr
;
1582 s390_bss (int ignore ATTRIBUTE_UNUSED
)
1584 /* We don't support putting frags in the BSS segment, we fake it
1585 by marking in_bss, then looking at s_skip for clues. */
1587 subseg_set (bss_section
, 0);
1588 demand_empty_rest_of_line ();
1591 /* Pseudo-op handling. */
1594 s390_insn (int ignore ATTRIBUTE_UNUSED
)
1597 const struct s390_opcode
*opformat
;
1598 unsigned char insn
[6];
1601 /* Get the opcode format. */
1602 s
= input_line_pointer
;
1603 while (*s
!= '\0' && *s
!= ',' && ! ISSPACE (*s
))
1606 as_bad (_("Invalid .insn format\n"));
1609 /* Look up the opcode in the hash table. */
1610 opformat
= (struct s390_opcode
*)
1611 hash_find (s390_opformat_hash
, input_line_pointer
);
1612 if (opformat
== (const struct s390_opcode
*) NULL
)
1614 as_bad (_("Unrecognized opcode format: `%s'"), input_line_pointer
);
1617 input_line_pointer
= s
;
1619 if (exp
.X_op
== O_constant
)
1621 if ( ( opformat
->oplen
== 6
1622 && (addressT
) exp
.X_add_number
< (1ULL << 48))
1623 || ( opformat
->oplen
== 4
1624 && (addressT
) exp
.X_add_number
< (1ULL << 32))
1625 || ( opformat
->oplen
== 2
1626 && (addressT
) exp
.X_add_number
< (1ULL << 16)))
1627 md_number_to_chars ((char *) insn
, exp
.X_add_number
, opformat
->oplen
);
1629 as_bad (_("Invalid .insn format\n"));
1631 else if (exp
.X_op
== O_big
)
1633 if (exp
.X_add_number
> 0
1634 && opformat
->oplen
== 6
1635 && generic_bignum
[3] == 0)
1637 md_number_to_chars ((char *) insn
, generic_bignum
[2], 2);
1638 md_number_to_chars ((char *) &insn
[2], generic_bignum
[1], 2);
1639 md_number_to_chars ((char *) &insn
[4], generic_bignum
[0], 2);
1642 as_bad (_("Invalid .insn format\n"));
1645 as_bad (_("second operand of .insn not a constant\n"));
1647 if (strcmp (opformat
->name
, "e") != 0 && *input_line_pointer
++ != ',')
1648 as_bad (_("missing comma after insn constant\n"));
1650 if ((s
= strchr (input_line_pointer
, '\n')) != NULL
)
1652 input_line_pointer
= md_gather_operands (input_line_pointer
, insn
,
1656 demand_empty_rest_of_line ();
1659 /* The .byte pseudo-op. This is similar to the normal .byte
1660 pseudo-op, but it can also take a single ASCII string. */
1663 s390_byte (int ignore ATTRIBUTE_UNUSED
)
1665 if (*input_line_pointer
!= '\"')
1671 /* Gather characters. A real double quote is doubled. Unusual
1672 characters are not permitted. */
1673 ++input_line_pointer
;
1678 c
= *input_line_pointer
++;
1682 if (*input_line_pointer
!= '\"')
1684 ++input_line_pointer
;
1687 FRAG_APPEND_1_CHAR (c
);
1690 demand_empty_rest_of_line ();
1693 /* The .ltorg pseudo-op.This emits all literals defined since the last
1694 .ltorg or the invocation of gas. Literals are defined with the
1698 s390_literals (int ignore ATTRIBUTE_UNUSED
)
1700 struct s390_lpe
*lpe
;
1702 if (lp_sym
== NULL
|| lpe_count
== 0)
1703 return; /* Nothing to be done. */
1705 /* Emit symbol for start of literal pool. */
1706 S_SET_SEGMENT (lp_sym
, now_seg
);
1707 S_SET_VALUE (lp_sym
, (valueT
) frag_now_fix ());
1708 lp_sym
->sy_frag
= frag_now
;
1713 lpe_list
= lpe_list
->next
;
1714 S_SET_SEGMENT (lpe
->sym
, now_seg
);
1715 S_SET_VALUE (lpe
->sym
, (valueT
) frag_now_fix ());
1716 lpe
->sym
->sy_frag
= frag_now
;
1718 /* Emit literal pool entry. */
1719 if (lpe
->reloc
!= BFD_RELOC_UNUSED
)
1721 reloc_howto_type
*reloc_howto
=
1722 bfd_reloc_type_lookup (stdoutput
, lpe
->reloc
);
1723 int size
= bfd_get_reloc_size (reloc_howto
);
1726 if (size
> lpe
->nbytes
)
1727 as_bad (_("%s relocations do not fit in %d bytes"),
1728 reloc_howto
->name
, lpe
->nbytes
);
1729 where
= frag_more (lpe
->nbytes
);
1730 md_number_to_chars (where
, 0, size
);
1731 fix_new_exp (frag_now
, where
- frag_now
->fr_literal
,
1732 size
, &lpe
->ex
, reloc_howto
->pc_relative
, lpe
->reloc
);
1736 if (lpe
->ex
.X_op
== O_big
)
1738 if (lpe
->ex
.X_add_number
<= 0)
1739 generic_floating_point_number
= lpe
->floatnum
;
1741 memcpy (generic_bignum
, lpe
->bignum
,
1742 lpe
->ex
.X_add_number
* sizeof (LITTLENUM_TYPE
));
1744 emit_expr (&lpe
->ex
, lpe
->nbytes
);
1747 lpe
->next
= lpe_free_list
;
1748 lpe_free_list
= lpe
;
1750 lpe_list_tail
= NULL
;
1757 md_atof (int type
, char *litp
, int *sizep
)
1759 return ieee_md_atof (type
, litp
, sizep
, TRUE
);
1762 /* Align a section (I don't know why this is machine dependent). */
1765 md_section_align (asection
*seg
, valueT addr
)
1767 int align
= bfd_get_section_alignment (stdoutput
, seg
);
1769 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
1772 /* We don't have any form of relaxing. */
1775 md_estimate_size_before_relax (fragS
*fragp ATTRIBUTE_UNUSED
,
1776 asection
*seg ATTRIBUTE_UNUSED
)
1782 /* Convert a machine dependent frag. We never generate these. */
1785 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
,
1786 asection
*sec ATTRIBUTE_UNUSED
,
1787 fragS
*fragp ATTRIBUTE_UNUSED
)
1793 md_undefined_symbol (char *name
)
1795 if (*name
== '_' && *(name
+ 1) == 'G'
1796 && strcmp (name
, "_GLOBAL_OFFSET_TABLE_") == 0)
1800 if (symbol_find (name
))
1801 as_bad (_("GOT already in symbol table"));
1802 GOT_symbol
= symbol_new (name
, undefined_section
,
1803 (valueT
) 0, &zero_address_frag
);
1810 /* Functions concerning relocs. */
1812 /* The location from which a PC relative jump should be calculated,
1813 given a PC relative reloc. */
1816 md_pcrel_from_section (fixS
*fixp
, segT sec ATTRIBUTE_UNUSED
)
1818 return fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1821 /* Here we decide which fixups can be adjusted to make them relative to
1822 the beginning of the section instead of the symbol. Basically we need
1823 to make sure that the dynamic relocations are done correctly, so in
1824 some cases we force the original symbol to be used. */
1826 tc_s390_fix_adjustable (fixS
*fixP
)
1828 /* Don't adjust references to merge sections. */
1829 if ((S_GET_SEGMENT (fixP
->fx_addsy
)->flags
& SEC_MERGE
) != 0)
1831 /* adjust_reloc_syms doesn't know about the GOT. */
1832 if ( fixP
->fx_r_type
== BFD_RELOC_16_GOTOFF
1833 || fixP
->fx_r_type
== BFD_RELOC_32_GOTOFF
1834 || fixP
->fx_r_type
== BFD_RELOC_390_GOTOFF64
1835 || fixP
->fx_r_type
== BFD_RELOC_390_PLTOFF16
1836 || fixP
->fx_r_type
== BFD_RELOC_390_PLTOFF32
1837 || fixP
->fx_r_type
== BFD_RELOC_390_PLTOFF64
1838 || fixP
->fx_r_type
== BFD_RELOC_390_PLT16DBL
1839 || fixP
->fx_r_type
== BFD_RELOC_390_PLT32
1840 || fixP
->fx_r_type
== BFD_RELOC_390_PLT32DBL
1841 || fixP
->fx_r_type
== BFD_RELOC_390_PLT64
1842 || fixP
->fx_r_type
== BFD_RELOC_390_GOT12
1843 || fixP
->fx_r_type
== BFD_RELOC_390_GOT20
1844 || fixP
->fx_r_type
== BFD_RELOC_390_GOT16
1845 || fixP
->fx_r_type
== BFD_RELOC_32_GOT_PCREL
1846 || fixP
->fx_r_type
== BFD_RELOC_390_GOT64
1847 || fixP
->fx_r_type
== BFD_RELOC_390_GOTENT
1848 || fixP
->fx_r_type
== BFD_RELOC_390_GOTPLT12
1849 || fixP
->fx_r_type
== BFD_RELOC_390_GOTPLT16
1850 || fixP
->fx_r_type
== BFD_RELOC_390_GOTPLT20
1851 || fixP
->fx_r_type
== BFD_RELOC_390_GOTPLT32
1852 || fixP
->fx_r_type
== BFD_RELOC_390_GOTPLT64
1853 || fixP
->fx_r_type
== BFD_RELOC_390_GOTPLTENT
1854 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LOAD
1855 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_GDCALL
1856 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LDCALL
1857 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_GD32
1858 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_GD64
1859 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_GOTIE12
1860 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_GOTIE20
1861 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_GOTIE32
1862 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_GOTIE64
1863 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LDM32
1864 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LDM64
1865 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_IE32
1866 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_IE64
1867 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_IEENT
1868 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LE32
1869 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LE64
1870 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LDO32
1871 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_LDO64
1872 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_DTPMOD
1873 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_DTPOFF
1874 || fixP
->fx_r_type
== BFD_RELOC_390_TLS_TPOFF
1875 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
1876 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
1881 /* Return true if we must always emit a reloc for a type and false if
1882 there is some hope of resolving it at assembly time. */
1884 tc_s390_force_relocation (struct fix
*fixp
)
1886 /* Ensure we emit a relocation for every reference to the global
1887 offset table or to the procedure link table. */
1888 switch (fixp
->fx_r_type
)
1890 case BFD_RELOC_390_GOT12
:
1891 case BFD_RELOC_390_GOT20
:
1892 case BFD_RELOC_32_GOT_PCREL
:
1893 case BFD_RELOC_32_GOTOFF
:
1894 case BFD_RELOC_390_GOTOFF64
:
1895 case BFD_RELOC_390_PLTOFF16
:
1896 case BFD_RELOC_390_PLTOFF32
:
1897 case BFD_RELOC_390_PLTOFF64
:
1898 case BFD_RELOC_390_GOTPC
:
1899 case BFD_RELOC_390_GOT16
:
1900 case BFD_RELOC_390_GOTPCDBL
:
1901 case BFD_RELOC_390_GOT64
:
1902 case BFD_RELOC_390_GOTENT
:
1903 case BFD_RELOC_390_PLT32
:
1904 case BFD_RELOC_390_PLT16DBL
:
1905 case BFD_RELOC_390_PLT32DBL
:
1906 case BFD_RELOC_390_PLT64
:
1907 case BFD_RELOC_390_GOTPLT12
:
1908 case BFD_RELOC_390_GOTPLT16
:
1909 case BFD_RELOC_390_GOTPLT20
:
1910 case BFD_RELOC_390_GOTPLT32
:
1911 case BFD_RELOC_390_GOTPLT64
:
1912 case BFD_RELOC_390_GOTPLTENT
:
1918 return generic_force_reloc (fixp
);
1921 /* Apply a fixup to the object code. This is called for all the
1922 fixups we generated by the call to fix_new_exp, above. In the call
1923 above we used a reloc code which was the largest legal reloc code
1924 plus the operand index. Here we undo that to recover the operand
1925 index. At this point all symbol values should be fully resolved,
1926 and we attempt to completely resolve the reloc. If we can not do
1927 that, we determine the correct reloc code and put it back in the
1931 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT seg ATTRIBUTE_UNUSED
)
1934 valueT value
= *valP
;
1936 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
1938 if (fixP
->fx_subsy
!= NULL
)
1939 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1940 _("cannot emit relocation %s against subsy symbol %s"),
1941 bfd_get_reloc_code_name (fixP
->fx_r_type
),
1942 S_GET_NAME (fixP
->fx_subsy
));
1944 if (fixP
->fx_addsy
!= NULL
)
1947 value
+= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
1952 if ((int) fixP
->fx_r_type
>= (int) BFD_RELOC_UNUSED
)
1954 const struct s390_operand
*operand
;
1957 opindex
= (int) fixP
->fx_r_type
- (int) BFD_RELOC_UNUSED
;
1958 operand
= &s390_operands
[opindex
];
1962 /* Insert the fully resolved operand value. */
1963 s390_insert_operand ((unsigned char *) where
, operand
,
1964 (offsetT
) value
, fixP
->fx_file
, fixP
->fx_line
);
1968 /* Determine a BFD reloc value based on the operand information.
1969 We are only prepared to turn a few of the operands into
1971 fixP
->fx_offset
= value
;
1972 if (operand
->bits
== 12 && operand
->shift
== 20)
1975 fixP
->fx_where
+= 2;
1976 fixP
->fx_r_type
= BFD_RELOC_390_12
;
1978 else if (operand
->bits
== 12 && operand
->shift
== 36)
1981 fixP
->fx_where
+= 4;
1982 fixP
->fx_r_type
= BFD_RELOC_390_12
;
1984 else if (operand
->bits
== 20 && operand
->shift
== 20)
1987 fixP
->fx_where
+= 2;
1988 fixP
->fx_r_type
= BFD_RELOC_390_20
;
1990 else if (operand
->bits
== 8 && operand
->shift
== 8)
1993 fixP
->fx_where
+= 1;
1994 fixP
->fx_r_type
= BFD_RELOC_8
;
1996 else if (operand
->bits
== 16 && operand
->shift
== 16)
1999 fixP
->fx_where
+= 2;
2000 if (operand
->flags
& S390_OPERAND_PCREL
)
2002 fixP
->fx_r_type
= BFD_RELOC_390_PC16DBL
;
2003 fixP
->fx_offset
+= 2;
2006 fixP
->fx_r_type
= BFD_RELOC_16
;
2008 else if (operand
->bits
== 32 && operand
->shift
== 16
2009 && (operand
->flags
& S390_OPERAND_PCREL
))
2012 fixP
->fx_where
+= 2;
2013 fixP
->fx_offset
+= 2;
2014 fixP
->fx_r_type
= BFD_RELOC_390_PC32DBL
;
2021 /* Use expr_symbol_where to see if this is an expression
2023 if (expr_symbol_where (fixP
->fx_addsy
, &sfile
, &sline
))
2024 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2025 _("unresolved expression that must be resolved"));
2027 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2028 _("unsupported relocation type"));
2035 switch (fixP
->fx_r_type
)
2041 md_number_to_chars (where
, value
, 1);
2043 case BFD_RELOC_390_12
:
2044 case BFD_RELOC_390_GOT12
:
2045 case BFD_RELOC_390_GOTPLT12
:
2050 mop
= bfd_getb16 ((unsigned char *) where
);
2051 mop
|= (unsigned short) (value
& 0xfff);
2052 bfd_putb16 ((bfd_vma
) mop
, (unsigned char *) where
);
2056 case BFD_RELOC_390_20
:
2057 case BFD_RELOC_390_GOT20
:
2058 case BFD_RELOC_390_GOTPLT20
:
2062 mop
= bfd_getb32 ((unsigned char *) where
);
2063 mop
|= (unsigned int) ((value
& 0xfff) << 8 |
2064 (value
& 0xff000) >> 12);
2065 bfd_putb32 ((bfd_vma
) mop
, (unsigned char *) where
);
2070 case BFD_RELOC_GPREL16
:
2071 case BFD_RELOC_16_GOT_PCREL
:
2072 case BFD_RELOC_16_GOTOFF
:
2074 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2075 _("cannot emit PC relative %s relocation%s%s"),
2076 bfd_get_reloc_code_name (fixP
->fx_r_type
),
2077 fixP
->fx_addsy
!= NULL
? " against " : "",
2078 (fixP
->fx_addsy
!= NULL
2079 ? S_GET_NAME (fixP
->fx_addsy
)
2082 md_number_to_chars (where
, value
, 2);
2084 case BFD_RELOC_390_GOT16
:
2085 case BFD_RELOC_390_PLTOFF16
:
2086 case BFD_RELOC_390_GOTPLT16
:
2088 md_number_to_chars (where
, value
, 2);
2090 case BFD_RELOC_390_PC16DBL
:
2091 case BFD_RELOC_390_PLT16DBL
:
2094 md_number_to_chars (where
, (offsetT
) value
>> 1, 2);
2099 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
2101 fixP
->fx_r_type
= BFD_RELOC_32
;
2103 md_number_to_chars (where
, value
, 4);
2105 case BFD_RELOC_32_PCREL
:
2106 case BFD_RELOC_32_BASEREL
:
2107 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
2109 md_number_to_chars (where
, value
, 4);
2111 case BFD_RELOC_32_GOT_PCREL
:
2112 case BFD_RELOC_390_PLTOFF32
:
2113 case BFD_RELOC_390_PLT32
:
2114 case BFD_RELOC_390_GOTPLT32
:
2116 md_number_to_chars (where
, value
, 4);
2118 case BFD_RELOC_390_PC32DBL
:
2119 case BFD_RELOC_390_PLT32DBL
:
2120 case BFD_RELOC_390_GOTPCDBL
:
2121 case BFD_RELOC_390_GOTENT
:
2122 case BFD_RELOC_390_GOTPLTENT
:
2125 md_number_to_chars (where
, (offsetT
) value
>> 1, 4);
2128 case BFD_RELOC_32_GOTOFF
:
2130 md_number_to_chars (where
, value
, sizeof (int));
2133 case BFD_RELOC_390_GOTOFF64
:
2135 md_number_to_chars (where
, value
, 8);
2138 case BFD_RELOC_390_GOT64
:
2139 case BFD_RELOC_390_PLTOFF64
:
2140 case BFD_RELOC_390_PLT64
:
2141 case BFD_RELOC_390_GOTPLT64
:
2143 md_number_to_chars (where
, value
, 8);
2148 fixP
->fx_r_type
= BFD_RELOC_64_PCREL
;
2150 fixP
->fx_r_type
= BFD_RELOC_64
;
2152 md_number_to_chars (where
, value
, 8);
2155 case BFD_RELOC_64_PCREL
:
2156 fixP
->fx_r_type
= BFD_RELOC_64_PCREL
;
2158 md_number_to_chars (where
, value
, 8);
2161 case BFD_RELOC_VTABLE_INHERIT
:
2162 case BFD_RELOC_VTABLE_ENTRY
:
2166 case BFD_RELOC_390_TLS_LOAD
:
2167 case BFD_RELOC_390_TLS_GDCALL
:
2168 case BFD_RELOC_390_TLS_LDCALL
:
2169 case BFD_RELOC_390_TLS_GD32
:
2170 case BFD_RELOC_390_TLS_GD64
:
2171 case BFD_RELOC_390_TLS_GOTIE12
:
2172 case BFD_RELOC_390_TLS_GOTIE20
:
2173 case BFD_RELOC_390_TLS_GOTIE32
:
2174 case BFD_RELOC_390_TLS_GOTIE64
:
2175 case BFD_RELOC_390_TLS_LDM32
:
2176 case BFD_RELOC_390_TLS_LDM64
:
2177 case BFD_RELOC_390_TLS_IE32
:
2178 case BFD_RELOC_390_TLS_IE64
:
2179 case BFD_RELOC_390_TLS_LE32
:
2180 case BFD_RELOC_390_TLS_LE64
:
2181 case BFD_RELOC_390_TLS_LDO32
:
2182 case BFD_RELOC_390_TLS_LDO64
:
2183 case BFD_RELOC_390_TLS_DTPMOD
:
2184 case BFD_RELOC_390_TLS_DTPOFF
:
2185 case BFD_RELOC_390_TLS_TPOFF
:
2186 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
2187 /* Fully resolved at link time. */
2189 case BFD_RELOC_390_TLS_IEENT
:
2190 /* Fully resolved at link time. */
2191 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
2197 const char *reloc_name
= bfd_get_reloc_code_name (fixP
->fx_r_type
);
2199 if (reloc_name
!= NULL
)
2200 as_fatal (_("Gas failure, reloc type %s\n"), reloc_name
);
2202 as_fatal (_("Gas failure, reloc type #%i\n"), fixP
->fx_r_type
);
2206 fixP
->fx_offset
= value
;
2210 /* Generate a reloc for a fixup. */
2213 tc_gen_reloc (asection
*seg ATTRIBUTE_UNUSED
, fixS
*fixp
)
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 gas_assert (reloc
->howto
!= NULL
);
2242 reloc
->addend
= fixp
->fx_offset
;
2248 s390_cfi_frame_initial_instructions (void)
2250 cfi_add_CFA_def_cfa (15, s390_arch_size
== 64 ? 160 : 96);
2254 tc_s390_regname_to_dw2regnum (char *regname
)
2258 if (regname
[0] != 'c' && regname
[0] != 'a')
2260 regnum
= reg_name_search (pre_defined_registers
, REG_NAME_CNT
, regname
);
2261 if (regname
[0] == 'f' && regnum
!= -1)
2264 else if (strcmp (regname
, "ap") == 0)
2266 else if (strcmp (regname
, "cc") == 0)
2272 s390_elf_final_processing (void)
2274 if (s390_arch_size
== 32 && (current_mode_mask
& (1 << S390_OPCODE_ZARCH
)))
2275 elf_elfheader (stdoutput
)->e_flags
|= EF_S390_HIGH_GPRS
;