* config/tc-mips.c: Fix a comment typo.
[deliverable/binutils-gdb.git] / gas / config / tc-s390.c
CommitLineData
a85d7ed0 1/* tc-s390.c -- Assemble for the S390
f7e42eb4 2 Copyright 2000, 2001 Free Software Foundation, Inc.
a85d7ed0
NC
3 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
4
5 This file is part of GAS, the GNU Assembler.
6
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)
10 any later version.
11
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.
16
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
20 02111-1307, USA. */
21
22#include <stdio.h>
23#include <ctype.h>
24#include "as.h"
25#include "subsegs.h"
26#include "struc-symbol.h"
27
28#include "opcode/s390.h"
29#include "elf/s390.h"
30
31/* The default architecture */
32#ifndef DEFAULT_ARCH
33#define DEFAULT_ARCH "s390"
34#endif
35static char *default_arch = DEFAULT_ARCH;
36/* Either 32 or 64, selects file format. */
37static int s390_arch_size;
38/* Current architecture. Start with the smallest instruction set */
39static enum s390_opcode_arch_val current_architecture = S390_OPCODE_ESA;
40static int current_arch_mask = 1 << S390_OPCODE_ESA;
41static int current_arch_requested = 0;
42
43/* Whether to use user friendly register names. Default is true. */
44#ifndef TARGET_REG_NAMES_P
45#define TARGET_REG_NAMES_P true
46#endif
47
48static boolean reg_names_p = TARGET_REG_NAMES_P;
49
50/* Generic assembler global variables which must be defined by all
51 targets. */
52
53const char comment_chars[] = "#";
54
55/* Characters which start a comment at the beginning of a line. */
56const char line_comment_chars[] = "#";
57
58/* Characters which may be used to separate multiple commands on a
59 single line. */
60const char line_separator_chars[] = ";";
61
62/* Characters which are used to indicate an exponent in a floating
63 point number. */
64const char EXP_CHARS[] = "eE";
65
66/* Characters which mean that a number is a floating point constant,
67 as in 0d1.0. */
68const char FLT_CHARS[] = "dD";
69
70/* The target specific pseudo-ops which we support. */
71
72/* Define the prototypes for the pseudo-ops */
73static void s390_byte PARAMS ((int));
74static void s390_elf_cons PARAMS ((int));
75static void s390_bss PARAMS ((int));
76static void s390_insn PARAMS ((int));
77static void s390_literals PARAMS ((int));
78
79const pseudo_typeS md_pseudo_table[] =
80{
81 { "align", s_align_bytes, 0 },
82 /* Pseudo-ops which must be defined. */
83 { "bss", s390_bss, 0 },
84 { "insn", s390_insn, 0 },
85 /* Pseudo-ops which must be overridden. */
86 { "byte", s390_byte, 0 },
87 { "short", s390_elf_cons, 2 },
88 { "long", s390_elf_cons, 4 },
89 { "quad", s390_elf_cons, 8 },
90 { "ltorg", s390_literals, 0 },
91 { "string", stringer, 2 },
92 { NULL, NULL, 0 }
93};
94
95
96/* Structure to hold information about predefined registers. */
97struct pd_reg
98 {
99 char *name;
100 int value;
101 };
102
103/* List of registers that are pre-defined:
104
105 Each access register has a predefined name of the form:
106 a<reg_num> which has the value <reg_num>.
107
108 Each control register has a predefined name of the form:
109 c<reg_num> which has the value <reg_num>.
110
111 Each general register has a predefined name of the form:
112 r<reg_num> which has the value <reg_num>.
113
114 Each floating point register a has predefined name of the form:
115 f<reg_num> which has the value <reg_num>.
116
117 There are individual registers as well:
118 sp has the value 15
119 lit has the value 12
120
121 The table is sorted. Suitable for searching by a binary search. */
122
123static const struct pd_reg pre_defined_registers[] =
124{
125 { "a0", 0 }, /* Access registers */
126 { "a1", 1 },
127 { "a10", 10 },
128 { "a11", 11 },
129 { "a12", 12 },
130 { "a13", 13 },
131 { "a14", 14 },
132 { "a15", 15 },
133 { "a2", 2 },
134 { "a3", 3 },
135 { "a4", 4 },
136 { "a5", 5 },
137 { "a6", 6 },
138 { "a7", 7 },
139 { "a8", 8 },
140 { "a9", 9 },
141
142 { "c0", 0 }, /* Control registers */
143 { "c1", 1 },
144 { "c10", 10 },
145 { "c11", 11 },
146 { "c12", 12 },
147 { "c13", 13 },
148 { "c14", 14 },
149 { "c15", 15 },
150 { "c2", 2 },
151 { "c3", 3 },
152 { "c4", 4 },
153 { "c5", 5 },
154 { "c6", 6 },
155 { "c7", 7 },
156 { "c8", 8 },
157 { "c9", 9 },
158
159 { "f0", 0 }, /* Floating point registers */
160 { "f1", 1 },
161 { "f10", 10 },
162 { "f11", 11 },
163 { "f12", 12 },
164 { "f13", 13 },
165 { "f14", 14 },
166 { "f15", 15 },
167 { "f2", 2 },
168 { "f3", 3 },
169 { "f4", 4 },
170 { "f5", 5 },
171 { "f6", 6 },
172 { "f7", 7 },
173 { "f8", 8 },
174 { "f9", 9 },
175
176 { "lit", 13 }, /* Pointer to literal pool */
177
178 { "r0", 0 }, /* General purpose registers */
179 { "r1", 1 },
180 { "r10", 10 },
181 { "r11", 11 },
182 { "r12", 12 },
183 { "r13", 13 },
184 { "r14", 14 },
185 { "r15", 15 },
186 { "r2", 2 },
187 { "r3", 3 },
188 { "r4", 4 },
189 { "r5", 5 },
190 { "r6", 6 },
191 { "r7", 7 },
192 { "r8", 8 },
193 { "r9", 9 },
194
195 { "sp", 15 }, /* Stack pointer */
196
197};
198
07726851 199#define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
a85d7ed0
NC
200
201/* Given NAME, find the register number associated with that name, return
202 the integer value associated with the given name or -1 on failure. */
203
204static int
205reg_name_search (regs, regcount, name)
206 const struct pd_reg *regs;
207 int regcount;
208 const char *name;
209{
210 int middle, low, high;
211 int cmp;
212
213 low = 0;
214 high = regcount - 1;
215
216 do
217 {
218 middle = (low + high) / 2;
219 cmp = strcasecmp (name, regs[middle].name);
220 if (cmp < 0)
221 high = middle - 1;
222 else if (cmp > 0)
223 low = middle + 1;
224 else
225 return regs[middle].value;
226 }
227 while (low <= high);
228
229 return -1;
230}
231
232
233/*
234 * Summary of register_name().
235 *
236 * in: Input_line_pointer points to 1st char of operand.
237 *
238 * out: A expressionS.
239 * The operand may have been a register: in this case, X_op == O_register,
240 * X_add_number is set to the register number, and truth is returned.
241 * Input_line_pointer->(next non-blank) char after operand, or is in its
242 * original state.
243 */
244
245static boolean
246register_name (expressionP)
247 expressionS *expressionP;
248{
249 int reg_number;
250 char *name;
251 char *start;
252 char c;
253
468cced8 254 /* Find the spelling of the operand. */
a85d7ed0
NC
255 start = name = input_line_pointer;
256 if (name[0] == '%' && isalpha (name[1]))
257 name = ++input_line_pointer;
258 else
259 return false;
260
261 c = get_symbol_end ();
262 reg_number = reg_name_search (pre_defined_registers, REG_NAME_CNT, name);
263
468cced8
AM
264 /* Put back the delimiting char. */
265 *input_line_pointer = c;
266
267 /* Look to see if it's in the register table. */
a85d7ed0
NC
268 if (reg_number >= 0)
269 {
270 expressionP->X_op = O_register;
271 expressionP->X_add_number = reg_number;
272
468cced8 273 /* Make the rest nice. */
a85d7ed0
NC
274 expressionP->X_add_symbol = NULL;
275 expressionP->X_op_symbol = NULL;
a85d7ed0
NC
276 return true;
277 }
468cced8
AM
278
279 /* Reset the line as if we had not done anything. */
280 input_line_pointer = start;
281 return false;
a85d7ed0
NC
282}
283
284/* Local variables. */
285
286/* Opformat hash table. */
287static struct hash_control *s390_opformat_hash;
288
289/* Opcode hash table. */
290static struct hash_control *s390_opcode_hash;
291
292/* Flags to set in the elf header */
293static flagword s390_flags = 0;
294
295symbolS *GOT_symbol; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
296
297#ifndef WORKING_DOT_WORD
298const int md_short_jump_size = 4;
299const int md_long_jump_size = 4;
300#endif
301
302CONST char *md_shortopts = "A:m:kVQ:";
303struct option md_longopts[] = {
304 {NULL, no_argument, NULL, 0}
305};
07726851 306size_t md_longopts_size = sizeof (md_longopts);
a85d7ed0
NC
307
308/* Initialize the default opcode arch and word size from the default
309 architecture name. */
310static void
311init_default_arch ()
312{
313 if (current_arch_requested)
314 return;
07855bec 315
07726851 316 if (strcmp (default_arch, "s390") == 0)
07855bec
NC
317 {
318 s390_arch_size = 32;
319 current_architecture = S390_OPCODE_ESA;
320 }
07726851 321 else if (strcmp (default_arch, "s390x") == 0)
07855bec
NC
322 {
323 s390_arch_size = 64;
324 current_architecture = S390_OPCODE_ESAME;
325 }
326 else
a85d7ed0
NC
327 as_fatal ("Invalid default architecture, broken assembler.");
328 current_arch_mask = 1 << current_architecture;
329}
330
331/* Called by TARGET_FORMAT. */
332const char *
333s390_target_format ()
334{
335 /* We don't get a chance to initialize anything before we're called,
336 so handle that now. */
337 if (! s390_arch_size)
338 init_default_arch ();
339
340 return s390_arch_size == 64 ? "elf64-s390" : "elf32-s390";
341}
342
343int
344md_parse_option (c, arg)
345 int c;
346 char *arg;
347{
07855bec
NC
348 switch (c)
349 {
350 /* -k: Ignore for FreeBSD compatibility. */
351 case 'k':
352 break;
353 case 'm':
354 if (arg != NULL && strcmp (arg, "regnames") == 0)
355 reg_names_p = true;
a85d7ed0 356
07855bec
NC
357 else if (arg != NULL && strcmp (arg, "no-regnames") == 0)
358 reg_names_p = false;
a85d7ed0 359
07855bec
NC
360 else
361 {
362 as_bad (_("invalid switch -m%s"), arg);
363 return 0;
364 }
365 break;
a85d7ed0 366
07855bec
NC
367 case 'A':
368 if (arg != NULL && strcmp (arg, "esa") == 0)
369 {
370 current_architecture = S390_OPCODE_ESA;
371 s390_arch_size = 32;
372 }
373 else if (arg != NULL && strcmp (arg, "esame") == 0)
374 {
375 current_architecture = S390_OPCODE_ESAME;
376 s390_arch_size = 64;
377 }
378 else
379 as_bad ("invalid architecture -A%s", arg);
380 current_arch_mask = 1 << current_architecture;
381 current_arch_requested = 1;
382 break;
383
384 /* -V: SVR4 argument to print version ID. */
385 case 'V':
386 print_version_id ();
387 break;
a85d7ed0 388
07855bec
NC
389 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
390 should be emitted or not. FIXME: Not implemented. */
391 case 'Q':
392 break;
393
394 default:
395 return 0;
396 }
a85d7ed0
NC
397
398 return 1;
399}
400
401void
402md_show_usage (stream)
403 FILE *stream;
404{
07855bec 405 fprintf (stream, _("\
a85d7ed0
NC
406 S390 options:\n\
407 -mregnames \tAllow symbolic names for registers\n\
408 -mno-regnames\tDo not allow symbolic names for registers\n"));
07855bec 409 fprintf (stream, _("\
a85d7ed0
NC
410 -V \tprint assembler version number\n\
411 -Qy, -Qn \tignored\n"));
412}
413
414/* This function is called when the assembler starts up. It is called
415 after the options have been parsed and the output file has been
416 opened. */
417
418void
419md_begin ()
420{
421 register const struct s390_opcode *op;
422 const struct s390_opcode *op_end;
423 boolean dup_insn = false;
424 const char *retval;
425
426 /* Set the ELF flags if desired. */
427 if (s390_flags)
428 bfd_set_private_flags (stdoutput, s390_flags);
429
430 /* Insert the opcode formats into a hash table. */
431 s390_opformat_hash = hash_new ();
432
433 op_end = s390_opformats + s390_num_opformats;
07855bec
NC
434 for (op = s390_opformats; op < op_end; op++)
435 {
436 retval = hash_insert (s390_opformat_hash, op->name, (PTR) op);
437 if (retval != (const char *) NULL)
438 {
439 as_bad (_("Internal assembler error for instruction format %s"),
440 op->name);
441 dup_insn = true;
442 }
443 }
a85d7ed0
NC
444
445 /* Insert the opcodes into a hash table. */
446 s390_opcode_hash = hash_new ();
447
448 op_end = s390_opcodes + s390_num_opcodes;
07855bec
NC
449 for (op = s390_opcodes; op < op_end; op++)
450 {
451 retval = hash_insert (s390_opcode_hash, op->name, (PTR) op);
452 if (retval != (const char *) NULL)
453 {
454 as_bad (_("Internal assembler error for instruction %s"), op->name);
455 dup_insn = true;
456 }
457 }
458
a85d7ed0
NC
459 if (dup_insn)
460 abort ();
461
462 record_alignment (text_section, 2);
463 record_alignment (data_section, 2);
464 record_alignment (bss_section, 2);
465
466}
467
468/* Called after all assembly has been done. */
469void
470s390_md_end ()
471{
07855bec 472 if (s390_arch_size == 64)
a85d7ed0 473 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_esame);
07855bec 474 else
a85d7ed0 475 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_esa);
a85d7ed0
NC
476}
477
478void
479s390_align_code (fragP, count)
480 fragS *fragP;
481 int count;
482{
483 /* We use nop pattern 0x0707. */
07855bec
NC
484 if (count > 0)
485 {
07726851 486 memset (fragP->fr_literal + fragP->fr_fix, 0x07, count);
07855bec
NC
487 fragP->fr_var = count;
488 }
a85d7ed0
NC
489}
490
491/* Insert an operand value into an instruction. */
492
493static void
494s390_insert_operand (insn, operand, val, file, line)
495 unsigned char *insn;
496 const struct s390_operand *operand;
497 offsetT val;
498 char *file;
499 unsigned int line;
500{
501 addressT uval;
502 int offset;
503
07855bec
NC
504 if (operand->flags & (S390_OPERAND_SIGNED|S390_OPERAND_PCREL))
505 {
506 offsetT min, max;
507
508 max = ((offsetT) 1 << (operand->bits - 1)) - 1;
509 min = - ((offsetT) 1 << (operand->bits - 1));
510 /* Halve PCREL operands. */
511 if (operand->flags & S390_OPERAND_PCREL)
512 val >>= 1;
513 /* Check for underflow / overflow. */
514 if (val < min || val > max)
515 {
516 const char *err =
517 "operand out of range (%s not between %ld and %ld)";
518 char buf[100];
519
520 if (operand->flags & S390_OPERAND_PCREL)
521 {
522 val <<= 1;
523 min <<= 1;
524 max <<= 1;
525 }
526 sprint_value (buf, val);
527 if (file == (char *) NULL)
528 as_bad (err, buf, (int) min, (int) max);
529 else
530 as_bad_where (file, line, err, buf, (int) min, (int) max);
531 return;
532 }
533 /* val is ok, now restrict it to operand->bits bits. */
534 uval = (addressT) val & ((((addressT) 1 << (operand->bits-1)) << 1) - 1);
a85d7ed0 535 }
07855bec
NC
536 else
537 {
538 addressT min, max;
539
540 max = (((addressT) 1 << (operand->bits - 1))<<1) - 1;
541 min = (offsetT) 0;
542 uval = (addressT) val;
543 /* Length x in an instructions has real length x+1. */
544 if (operand->flags & S390_OPERAND_LENGTH)
545 uval--;
546 /* Check for underflow / overflow. */
547 if (uval < min || uval > max)
548 {
549 const char *err =
550 "operand out of range (%s not between %ld and %ld)";
551 char buf[100];
a85d7ed0 552
07855bec
NC
553 if (operand->flags & S390_OPERAND_LENGTH)
554 {
555 uval++;
556 min++;
557 max++;
558 }
559 sprint_value (buf, uval);
560 if (file == (char *) NULL)
561 as_bad (err, buf, (int) min, (int) max);
562 else
563 as_bad_where (file, line, err, buf, (int) min, (int) max);
564 return;
565 }
a85d7ed0 566 }
a85d7ed0
NC
567
568 /* Insert fragments of the operand byte for byte. */
569 offset = operand->shift + operand->bits;
570 uval <<= (-offset) & 7;
571 insn += (offset - 1)/8;
07855bec
NC
572 while (uval != 0)
573 {
574 *insn-- |= uval;
575 uval >>= 8;
576 }
a85d7ed0
NC
577}
578
579/* Structure used to hold suffixes. */
07855bec
NC
580typedef enum
581 {
582 ELF_SUFFIX_NONE = 0,
583 ELF_SUFFIX_GOT,
584 ELF_SUFFIX_PLT,
585 ELF_SUFFIX_GOTENT
586 }
587elf_suffix_type;
588
589struct map_bfd
590 {
591 char *string;
592 int length;
593 elf_suffix_type suffix;
594 };
a85d7ed0
NC
595
596/* Parse @got/@plt/@gotoff. and return the desired relocation. */
597static elf_suffix_type
598s390_elf_suffix (str_p, exp_p)
599 char **str_p;
600 expressionS *exp_p;
601{
07855bec
NC
602 static struct map_bfd mapping[] =
603 {
a85d7ed0
NC
604 { "got", 3, ELF_SUFFIX_GOT },
605 { "got12", 5, ELF_SUFFIX_GOT },
606 { "plt", 3, ELF_SUFFIX_PLT },
607 { "gotent", 6, ELF_SUFFIX_GOTENT },
608 { NULL, 0, ELF_SUFFIX_NONE }
609 };
610
611 struct map_bfd *ptr;
612 char *str = *str_p;
613 char *ident;
614 int len;
615
616 if (*str++ != '@')
617 return ELF_SUFFIX_NONE;
618
619 ident = str;
07726851 620 while (isalnum (*str))
a85d7ed0
NC
621 str++;
622 len = str - ident;
623
624 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
625 if (len == ptr->length &&
07726851 626 strncasecmp (ident, ptr->string, ptr->length) == 0)
07855bec
NC
627 {
628 if (exp_p->X_add_number != 0)
629 as_warn (_("identifier+constant@%s means identifier@%s+constant"),
630 ptr->string, ptr->string);
631 /* Now check for identifier@suffix+constant. */
632 if (*str == '-' || *str == '+')
633 {
634 char *orig_line = input_line_pointer;
635 expressionS new_exp;
636
637 input_line_pointer = str;
638 expression (&new_exp);
639
640 switch (new_exp.X_op)
641 {
642 case O_constant: /* X_add_number (a constant expression). */
643 exp_p->X_add_number += new_exp.X_add_number;
644 str = input_line_pointer;
645 break;
646 case O_symbol: /* X_add_symbol + X_add_number. */
647 /* this case is used for e.g. xyz@PLT+.Label. */
648 exp_p->X_add_number += new_exp.X_add_number;
649 exp_p->X_op_symbol = new_exp.X_add_symbol;
650 exp_p->X_op = O_add;
651 str = input_line_pointer;
652 break;
653 case O_uminus: /* (- X_add_symbol) + X_add_number. */
654 /* this case is used for e.g. xyz@PLT-.Label. */
655 exp_p->X_add_number += new_exp.X_add_number;
656 exp_p->X_op_symbol = new_exp.X_add_symbol;
657 exp_p->X_op = O_subtract;
658 str = input_line_pointer;
659 break;
660 default:
661 break;
662 }
663
664 /* If s390_elf_suffix has not been called with
665 &input_line_pointer as first parameter, we have
666 clobbered the input_line_pointer. We have to
667 undo that. */
668 if (&input_line_pointer != str_p)
669 input_line_pointer = orig_line;
a85d7ed0 670 }
07855bec
NC
671 *str_p = str;
672 return ptr->suffix;
a85d7ed0 673 }
a85d7ed0
NC
674
675 return BFD_RELOC_UNUSED;
676}
677
678/* Structure used to hold a literal pool entry. */
07855bec
NC
679struct s390_lpe
680 {
681 struct s390_lpe *next;
682 expressionS ex;
683 FLONUM_TYPE floatnum; /* used if X_op == O_big && X_add_number <= 0 */
684 LITTLENUM_TYPE bignum[4]; /* used if X_op == O_big && X_add_number > 0 */
685 int nbytes;
686 bfd_reloc_code_real_type reloc;
687 symbolS *sym;
688 };
a85d7ed0
NC
689
690static struct s390_lpe *lpe_free_list = NULL;
691static struct s390_lpe *lpe_list = NULL;
692static struct s390_lpe *lpe_list_tail = NULL;
693static symbolS *lp_sym = NULL;
694static int lp_count = 0;
695static int lpe_count = 0;
696
697static int
698s390_exp_compare(exp1, exp2)
699 expressionS *exp1;
700 expressionS *exp2;
701{
702 if (exp1->X_op != exp2->X_op)
703 return 0;
704
07855bec
NC
705 switch (exp1->X_op)
706 {
707 case O_constant: /* X_add_number must be equal. */
708 case O_register:
709 return exp1->X_add_number == exp2->X_add_number;
710
711 case O_big:
07726851 712 as_bad (_("Can't handle O_big in s390_exp_compare"));
07855bec
NC
713
714 case O_symbol: /* X_add_symbol & X_add_number must be equal. */
715 case O_symbol_rva:
716 case O_uminus:
717 case O_bit_not:
718 case O_logical_not:
719 return (exp1->X_add_symbol == exp2->X_add_symbol) &&
720 (exp1->X_add_number == exp2->X_add_number);
721
722 case O_multiply: /* X_add_symbol,X_op_symbol&X_add_number must be equal. */
723 case O_divide:
724 case O_modulus:
725 case O_left_shift:
726 case O_right_shift:
727 case O_bit_inclusive_or:
728 case O_bit_or_not:
729 case O_bit_exclusive_or:
730 case O_bit_and:
731 case O_add:
732 case O_subtract:
733 case O_eq:
734 case O_ne:
735 case O_lt:
736 case O_le:
737 case O_ge:
738 case O_gt:
739 case O_logical_and:
740 case O_logical_or:
741 return (exp1->X_add_symbol == exp2->X_add_symbol) &&
742 (exp1->X_op_symbol == exp2->X_op_symbol) &&
743 (exp1->X_add_number == exp2->X_add_number);
744 default:
a85d7ed0
NC
745 return 0;
746 }
747}
748
749/* Test for @lit and if its present make an entry in the literal pool and
750 modify the current expression to be an offset into the literal pool. */
751static elf_suffix_type
752s390_lit_suffix (str_p, exp_p, suffix)
753 char **str_p;
754 expressionS *exp_p;
755 elf_suffix_type suffix;
756{
757 bfd_reloc_code_real_type reloc;
758 char tmp_name[64];
759 char *str = *str_p;
760 char *ident;
761 struct s390_lpe *lpe;
762 int nbytes, len;
763
764 if (*str++ != ':')
765 return suffix; /* No modification. */
766
767 /* We look for a suffix of the form "@lit1", "@lit2", "@lit4" or "@lit8". */
768 ident = str;
07726851 769 while (isalnum (*str))
a85d7ed0
NC
770 str++;
771 len = str - ident;
07726851 772 if (len != 4 || strncasecmp (ident, "lit", 3) != 0 ||
a85d7ed0
NC
773 (ident[3]!='1' && ident[3]!='2' && ident[3]!='4' && ident[3]!='8'))
774 return suffix; /* no modification */
775 nbytes = ident[3] - '0';
776
777 reloc = BFD_RELOC_UNUSED;
07855bec
NC
778 if (suffix == ELF_SUFFIX_GOT)
779 {
780 if (nbytes == 2)
781 reloc = BFD_RELOC_390_GOT16;
782 else if (nbytes == 4)
783 reloc = BFD_RELOC_32_GOT_PCREL;
784 else if (nbytes == 8)
785 reloc = BFD_RELOC_390_GOT64;
786 }
787 else if (suffix == ELF_SUFFIX_PLT)
788 {
789 if (nbytes == 4)
790 reloc = BFD_RELOC_390_PLT32;
791 else if (nbytes == 8)
792 reloc = BFD_RELOC_390_PLT64;
793 }
a85d7ed0 794
07855bec 795 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
a85d7ed0 796 as_bad (_("Invalid suffix for literal pool entry"));
a85d7ed0
NC
797
798 /* Search the pool if the new entry is a duplicate. */
07855bec
NC
799 if (exp_p->X_op == O_big)
800 {
801 /* Special processing for big numbers. */
802 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
803 {
804 if (lpe->ex.X_op == O_big)
805 {
806 if (exp_p->X_add_number <= 0 && lpe->ex.X_add_number <= 0)
807 {
808 if (memcmp (&generic_floating_point_number, &lpe->floatnum,
809 sizeof (FLONUM_TYPE)) == 0)
810 break;
811 }
812 else if (exp_p->X_add_number == lpe->ex.X_add_number)
813 {
814 if (memcmp (generic_bignum, lpe->bignum,
815 sizeof (LITTLENUM_TYPE)*exp_p->X_add_number) == 0)
816 break;
817 }
818 }
819 }
a85d7ed0 820 }
07855bec
NC
821 else
822 {
823 /* Processing for 'normal' data types. */
824 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
825 if (lpe->nbytes == nbytes && lpe->reloc == reloc &&
826 s390_exp_compare(exp_p, &lpe->ex) != 0)
827 break;
a85d7ed0 828 }
07855bec
NC
829
830 if (lpe == NULL)
831 {
832 /* A new literal. */
833 if (lpe_free_list != NULL)
834 {
835 lpe = lpe_free_list;
836 lpe_free_list = lpe_free_list->next;
837 }
a85d7ed0 838 else
07855bec 839 {
07726851 840 lpe = (struct s390_lpe *) xmalloc(sizeof (struct s390_lpe));
07855bec
NC
841 }
842
843 lpe->ex = *exp_p;
844
845 if (exp_p->X_op == O_big)
846 {
847 if (exp_p->X_add_number <= 0)
848 lpe->floatnum = generic_floating_point_number;
849 else if (exp_p->X_add_number <= 4)
850 memcpy (lpe->bignum, generic_bignum,
07726851 851 exp_p->X_add_number*sizeof (LITTLENUM_TYPE));
07855bec
NC
852 else
853 as_bad (_("Big number is too big"));
854 }
855
856 lpe->nbytes = nbytes;
857 lpe->reloc = reloc;
858 /* Literal pool name defined ? */
859 if (lp_sym == NULL)
860 {
07726851 861 sprintf (tmp_name, ".L\001%i", lp_count);
07855bec
NC
862 lp_sym = symbol_make(tmp_name);
863 }
a85d7ed0 864
07855bec 865 /* Make name for literal pool entry. */
07726851 866 sprintf (tmp_name, ".L\001%i\002%i", lp_count, lpe_count);
07855bec
NC
867 lpe_count++;
868 lpe->sym = symbol_make(tmp_name);
869
870 /* Add to literal pool list. */
871 lpe->next = NULL;
872 if (lpe_list_tail != NULL)
873 {
874 lpe_list_tail->next = lpe;
875 lpe_list_tail = lpe;
876 }
877 else
878 lpe_list = lpe_list_tail = lpe;
879 }
880
a85d7ed0
NC
881 /* Now change exp_p to the offset into the literal pool.
882 Thats the expression: .L^Ax^By-.L^Ax */
883 exp_p->X_add_symbol = lpe->sym;
884 exp_p->X_op_symbol = lp_sym;
885 exp_p->X_op = O_subtract;
886 exp_p->X_add_number = 0;
887
888 *str_p = str;
889
890 /* We change the suffix type to ELF_SUFFIX_NONE, because
891 the difference of two local labels is just a number. */
892 return ELF_SUFFIX_NONE;
893}
894
895/* Like normal .long/.short/.word, except support @got, etc.
896 clobbers input_line_pointer, checks end-of-line. */
897static void
898s390_elf_cons (nbytes)
899 register int nbytes; /* 1=.byte, 2=.word, 4=.long */
900{
901 expressionS exp;
902 elf_suffix_type suffix;
903
07855bec
NC
904 if (is_it_end_of_statement ())
905 {
906 demand_empty_rest_of_line ();
907 return;
908 }
a85d7ed0 909
07855bec
NC
910 do
911 {
912 expression (&exp);
913
914 if (exp.X_op == O_symbol
915 && *input_line_pointer == '@'
916 && (suffix = s390_elf_suffix (&input_line_pointer, &exp)) != ELF_SUFFIX_NONE)
917 {
918 bfd_reloc_code_real_type reloc;
919 reloc_howto_type *reloc_howto;
920 int size;
921 char *where;
922
923 if (nbytes == 2 && suffix == ELF_SUFFIX_GOT)
924 reloc = BFD_RELOC_390_GOT16;
925 else if (nbytes == 4 && suffix == ELF_SUFFIX_GOT)
926 reloc = BFD_RELOC_32_GOT_PCREL;
927 else if (nbytes == 8 && suffix == ELF_SUFFIX_GOT)
928 reloc = BFD_RELOC_390_GOT64;
929 else if (nbytes == 4 && suffix == ELF_SUFFIX_PLT)
930 reloc = BFD_RELOC_390_PLT32;
931 else if (nbytes == 8 && suffix == ELF_SUFFIX_PLT)
932 reloc = BFD_RELOC_390_PLT64;
933 else
934 reloc = BFD_RELOC_UNUSED;
935
936 if (reloc != BFD_RELOC_UNUSED)
937 {
938 reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc);
939 size = bfd_get_reloc_size (reloc_howto);
940 if (size > nbytes)
941 as_bad (_("%s relocations do not fit in %d bytes"),
942 reloc_howto->name, nbytes);
07726851 943 where = frag_more (nbytes);
07855bec
NC
944 md_number_to_chars (where, 0, size);
945 fix_new_exp (frag_now, where - frag_now->fr_literal,
946 size, &exp, reloc_howto->pc_relative, reloc);
947 }
948 else
949 as_bad (_("relocation not applicable"));
950 }
a85d7ed0 951 else
07855bec
NC
952 emit_expr (&exp, (unsigned int) nbytes);
953 }
954 while (*input_line_pointer++ == ',');
a85d7ed0
NC
955
956 input_line_pointer--; /* Put terminator back into stream. */
957 demand_empty_rest_of_line ();
958}
959
960/* We need to keep a list of fixups. We can't simply generate them as
961 we go, because that would require us to first create the frag, and
962 that would screw up references to ``.''. */
963
964struct s390_fixup
07855bec
NC
965 {
966 expressionS exp;
967 int opindex;
968 bfd_reloc_code_real_type reloc;
969 };
a85d7ed0
NC
970
971#define MAX_INSN_FIXUPS (4)
972
973/* This routine is called for each instruction to be assembled. */
974
975char *
976md_gather_operands (str, insn, opcode)
977 char *str;
978 unsigned char *insn;
979 const struct s390_opcode *opcode;
980{
981 struct s390_fixup fixups[MAX_INSN_FIXUPS];
982 const struct s390_operand *operand;
983 const unsigned char *opindex_ptr;
984 elf_suffix_type suffix;
985 bfd_reloc_code_real_type reloc;
986 int skip_optional;
987 int parentheses;
988 char *f;
989 int fc, i;
990
991 while (isspace(*str)) str++;
992
993 parentheses = 0;
994 skip_optional = 0;
995
996 /* Gather the operands. */
997 fc = 0;
07855bec
NC
998 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
999 {
1000 expressionS ex;
1001 char *hold;
1002
1003 operand = s390_operands + *opindex_ptr;
a85d7ed0 1004
07855bec
NC
1005 if (skip_optional && (operand->flags & S390_OPERAND_INDEX))
1006 {
1007 /* We do an early skip. For D(X,B) constructions the index
1008 register is skipped (X is optional). For D(L,B) the base
1009 register will be the skipped operand, because L is NOT
1010 optional. */
1011 skip_optional = 0;
1012 continue;
1013 }
a85d7ed0 1014
07855bec
NC
1015 /* Gather the operand. */
1016 hold = input_line_pointer;
1017 input_line_pointer = str;
1018
1019 if (! register_name (&ex)) /* parse the operand */
1020 expression (&ex);
a85d7ed0 1021
07855bec
NC
1022 str = input_line_pointer;
1023 input_line_pointer = hold;
a85d7ed0 1024
07855bec
NC
1025 /* Write the operand to the insn. */
1026 if (ex.X_op == O_illegal)
1027 as_bad (_("illegal operand"));
1028 else if (ex.X_op == O_absent)
1029 as_bad (_("missing operand"));
1030 else if (ex.X_op == O_register || ex.X_op == O_constant)
1031 {
1032 s390_lit_suffix (&str, &ex, ELF_SUFFIX_NONE);
1033
1034 if (ex.X_op != O_register && ex.X_op != O_constant)
1035 {
1036 /* We need to generate a fixup for the
1037 expression returned by s390_lit_suffix. */
1038 if (fc >= MAX_INSN_FIXUPS)
1039 as_fatal (_("too many fixups"));
1040 fixups[fc].exp = ex;
1041 fixups[fc].opindex = *opindex_ptr;
1042 fixups[fc].reloc = BFD_RELOC_UNUSED;
1043 ++fc;
1044 }
1045 else
1046 {
1047 if ((operand->flags & S390_OPERAND_INDEX) && ex.X_add_number == 0)
07726851 1048 as_warn ("index register specified but zero");
07855bec 1049 if ((operand->flags & S390_OPERAND_BASE) && ex.X_add_number == 0)
07726851 1050 as_warn ("base register specified but zero");
07855bec
NC
1051 s390_insert_operand (insn, operand, ex.X_add_number, NULL, 0);
1052 }
1053 }
1054 else
1055 {
1056 suffix = s390_elf_suffix (&str, &ex);
1057 suffix = s390_lit_suffix (&str, &ex, suffix);
1058 reloc = BFD_RELOC_UNUSED;
1059
1060 if (suffix == ELF_SUFFIX_GOT)
1061 {
1062 if (operand->flags & S390_OPERAND_DISP)
1063 reloc = BFD_RELOC_390_GOT12;
1064 else if ((operand->flags & S390_OPERAND_SIGNED) &&
1065 (operand->bits == 16))
1066 reloc = BFD_RELOC_390_GOT16;
1067 else if ((operand->flags & S390_OPERAND_PCREL) &&
1068 (operand->bits == 32))
1069 reloc = BFD_RELOC_390_GOTENT;
1070 }
1071 else if (suffix == ELF_SUFFIX_PLT)
1072 {
1073 if ((operand->flags & S390_OPERAND_PCREL) &&
1074 (operand->bits == 16))
1075 reloc = BFD_RELOC_390_PLT16DBL;
1076 else if ((operand->flags & S390_OPERAND_PCREL) &&
1077 (operand->bits == 32))
1078 reloc = BFD_RELOC_390_PLT32DBL;
1079 }
1080 else if (suffix == ELF_SUFFIX_GOTENT)
1081 {
1082 if ((operand->flags & S390_OPERAND_PCREL) &&
1083 (operand->bits == 32))
1084 reloc = BFD_RELOC_390_GOTENT;
1085 }
1086
1087 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
1088 as_bad (_("invalid operand suffix"));
1089 /* We need to generate a fixup of type 'reloc' for this
1090 expression. */
a85d7ed0
NC
1091 if (fc >= MAX_INSN_FIXUPS)
1092 as_fatal (_("too many fixups"));
1093 fixups[fc].exp = ex;
1094 fixups[fc].opindex = *opindex_ptr;
07855bec 1095 fixups[fc].reloc = reloc;
a85d7ed0 1096 ++fc;
07855bec 1097 }
a85d7ed0 1098
07855bec
NC
1099 /* Check the next character. The call to expression has advanced
1100 str past any whitespace. */
1101 if (operand->flags & S390_OPERAND_DISP)
1102 {
1103 /* After a displacement a block in parentheses can start. */
1104 if (*str != '(')
1105 {
1106 /* Check if parethesed block can be skipped. If the next
1107 operand is neiter an optional operand nor a base register
1108 then we have a syntax error. */
1109 operand = s390_operands + *(++opindex_ptr);
1110 if (!(operand->flags & (S390_OPERAND_INDEX|S390_OPERAND_BASE)))
1111 as_bad (_("syntax error; missing '(' after displacement"));
1112
1113 /* Ok, skip all operands until S390_OPERAND_BASE. */
1114 while (!(operand->flags & S390_OPERAND_BASE))
1115 operand = s390_operands + *(++opindex_ptr);
a85d7ed0 1116
07855bec
NC
1117 /* If there is a next operand it must be seperated by a comma. */
1118 if (opindex_ptr[1] != '\0')
1119 {
1120 if (*str++ != ',')
07726851 1121 as_bad (_("syntax error; expected ,"));
07855bec
NC
1122 }
1123 }
1124 else
1125 {
1126 /* We found an opening parentheses. */
1127 str++;
1128 for (f = str; *f != '\0'; f++)
1129 if (*f == ',' || *f == ')')
1130 break;
1131 /* If there is no comma until the closing parentheses OR
1132 there is a comma right after the opening parentheses,
1133 we have to skip optional operands. */
1134 if (*f == ',' && f == str)
1135 {
1136 /* comma directly after '(' ? */
1137 skip_optional = 1;
1138 str++;
1139 }
1140 else
1141 skip_optional = (*f != ',');
1142 }
1143 }
1144 else if (operand->flags & S390_OPERAND_BASE)
1145 {
1146 /* After the base register the parenthesed block ends. */
1147 if (*str++ != ')')
1148 as_bad (_("syntax error; missing ')' after base register"));
1149 skip_optional = 0;
1150 /* If there is a next operand it must be seperated by a comma. */
1151 if (opindex_ptr[1] != '\0')
1152 {
1153 if (*str++ != ',')
1154 as_bad (_("syntax error; expected ,"));
1155 }
1156 }
1157 else
1158 {
1159 /* We can find an 'early' closing parentheses in e.g. D(L) instead
1160 of D(L,B). In this case the base register has to be skipped. */
1161 if (*str == ')')
1162 {
1163 operand = s390_operands + *(++opindex_ptr);
1164
1165 if (!(operand->flags & S390_OPERAND_BASE))
1166 as_bad (_("syntax error; ')' not allowed here"));
1167 str++;
1168 }
1169 /* If there is a next operand it must be seperated by a comma. */
1170 if (opindex_ptr[1] != '\0')
1171 {
1172 if (*str++ != ',')
07726851 1173 as_bad (_("syntax error; expected ,"));
07855bec 1174 }
a85d7ed0 1175 }
a85d7ed0 1176 }
a85d7ed0
NC
1177
1178 while (isspace (*str))
1179 ++str;
1180
07855bec
NC
1181 if (*str != '\0')
1182 {
1183 char *linefeed;
a85d7ed0 1184
07726851 1185 if ((linefeed = strchr (str, '\n')) != NULL)
07855bec
NC
1186 *linefeed = '\0';
1187 as_bad (_("junk at end of line: `%s'"), str);
1188 if (linefeed != NULL)
1189 *linefeed = '\n';
1190 }
a85d7ed0
NC
1191
1192 /* Write out the instruction. */
1193 f = frag_more (opcode->oplen);
07855bec 1194 memcpy (f, insn, opcode->oplen);
a85d7ed0
NC
1195
1196 /* Create any fixups. At this point we do not use a
1197 bfd_reloc_code_real_type, but instead just use the
1198 BFD_RELOC_UNUSED plus the operand index. This lets us easily
1199 handle fixups for any operand type, although that is admittedly
1200 not a very exciting feature. We pick a BFD reloc type in
1201 md_apply_fix3. */
07855bec
NC
1202 for (i = 0; i < fc; i++)
1203 {
1204 operand = s390_operands + fixups[i].opindex;
a85d7ed0 1205
07855bec
NC
1206 if (fixups[i].reloc != BFD_RELOC_UNUSED)
1207 {
1208 reloc_howto_type *reloc_howto;
1209 fixS *fixP;
1210 int size;
a85d7ed0 1211
07855bec
NC
1212 reloc_howto = bfd_reloc_type_lookup (stdoutput, fixups[i].reloc);
1213 if (!reloc_howto)
1214 abort ();
a85d7ed0 1215
07855bec
NC
1216 size = bfd_get_reloc_size (reloc_howto);
1217
1218 if (size < 1 || size > 4)
1219 abort ();
a85d7ed0 1220
07855bec
NC
1221 fixP = fix_new_exp (frag_now,
1222 f - frag_now->fr_literal + (operand->shift/8),
1223 size, &fixups[i].exp, reloc_howto->pc_relative,
1224 fixups[i].reloc);
1225 /* Turn off overflow checking in fixup_segment. This is necessary
1226 because fixup_segment will signal an overflow for large 4 byte
1227 quantities for GOT12 relocations. */
1228 if (fixups[i].reloc == BFD_RELOC_390_GOT12 ||
1229 fixups[i].reloc == BFD_RELOC_390_GOT16)
1230 fixP->fx_no_overflow = 1;
1231 }
1232 else
1233 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, &fixups[i].exp,
1234 (operand->flags & S390_OPERAND_PCREL) != 0,
1235 ((bfd_reloc_code_real_type)
1236 (fixups[i].opindex + (int) BFD_RELOC_UNUSED)));
1237 }
a85d7ed0
NC
1238 return str;
1239}
1240
1241/* This routine is called for each instruction to be assembled. */
1242
1243void
1244md_assemble (str)
1245 char *str;
1246{
1247 const struct s390_opcode *opcode;
1248 unsigned char insn[6];
1249 char *s;
1250
1251 /* Get the opcode. */
1252 for (s = str; *s != '\0' && ! isspace (*s); s++)
1253 ;
1254 if (*s != '\0')
1255 *s++ = '\0';
1256
1257 /* Look up the opcode in the hash table. */
1258 opcode = (struct s390_opcode *) hash_find (s390_opcode_hash, str);
07855bec
NC
1259 if (opcode == (const struct s390_opcode *) NULL)
1260 {
1261 as_bad (_("Unrecognized opcode: `%s'"), str);
1262 return;
1263 }
1264 else if (!(opcode->architecture & current_arch_mask))
1265 {
07726851 1266 as_bad ("Opcode %s not available in this architecture", str);
07855bec
NC
1267 return;
1268 }
a85d7ed0 1269
07726851 1270 memcpy (insn, opcode->opcode, sizeof (insn));
07855bec 1271 md_gather_operands (s, insn, opcode);
a85d7ed0
NC
1272}
1273
1274#ifndef WORKING_DOT_WORD
1275/* Handle long and short jumps. We don't support these */
1276void
1277md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
1278 char *ptr;
1279 addressT from_addr, to_addr;
1280 fragS *frag;
1281 symbolS *to_symbol;
1282{
1283 abort ();
1284}
1285
1286void
1287md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
1288 char *ptr;
1289 addressT from_addr, to_addr;
1290 fragS *frag;
1291 symbolS *to_symbol;
1292{
1293 abort ();
1294}
1295#endif
1296
1297void
1298s390_bss (ignore)
1299 int ignore ATTRIBUTE_UNUSED;
1300{
1301 /* We don't support putting frags in the BSS segment, we fake it
1302 by marking in_bss, then looking at s_skip for clues. */
1303
1304 subseg_set (bss_section, 0);
1305 demand_empty_rest_of_line ();
1306}
1307
1308/* Pseudo-op handling. */
1309
1310void
07726851 1311s390_insn (ignore)
a85d7ed0
NC
1312 int ignore ATTRIBUTE_UNUSED;
1313{
1314 expressionS exp;
1315 const struct s390_opcode *opformat;
1316 unsigned char insn[6];
1317 char *s;
1318
1319 /* Get the opcode format. */
1320 s = input_line_pointer;
1321 while (*s != '\0' && *s != ',' && ! isspace (*s))
1322 s++;
1323 if (*s != ',')
1324 as_bad (_("Invalid .insn format\n"));
1325 *s++ = '\0';
1326
1327 /* Look up the opcode in the hash table. */
1328 opformat = (struct s390_opcode *)
1329 hash_find (s390_opformat_hash, input_line_pointer);
07855bec
NC
1330 if (opformat == (const struct s390_opcode *) NULL)
1331 {
1332 as_bad (_("Unrecognized opcode format: `%s'"), input_line_pointer);
1333 return;
1334 }
a85d7ed0
NC
1335 input_line_pointer = s;
1336 expression (&exp);
07855bec
NC
1337 if (exp.X_op == O_constant)
1338 {
1339 if (opformat->oplen == 4 ||
1340 (opformat->oplen == 2 && exp.X_op < 0x10000))
1341 md_number_to_chars (insn, exp.X_add_number, opformat->oplen);
1342 else
07726851 1343 as_bad (_("Invalid .insn format\n"));
07855bec
NC
1344 }
1345 else if (exp.X_op == O_big)
1346 {
1347 if (exp.X_add_number > 0 &&
1348 opformat->oplen == 6 &&
1349 generic_bignum[3] == 0)
1350 {
1351 md_number_to_chars (insn, generic_bignum[2], 2);
1352 md_number_to_chars (&insn[2], generic_bignum[1], 2);
1353 md_number_to_chars (&insn[4], generic_bignum[0], 2);
1354 }
1355 else
07726851 1356 as_bad (_("Invalid .insn format\n"));
07855bec
NC
1357 }
1358 else
a85d7ed0
NC
1359 as_bad (_("second operand of .insn not a constant\n"));
1360 if (*input_line_pointer++ != ',')
1361 as_bad (_("missing comma after insn constant\n"));
1362
07726851 1363 if ((s = strchr (input_line_pointer, '\n')) != NULL)
a85d7ed0
NC
1364 *s = '\0';
1365 input_line_pointer = md_gather_operands (input_line_pointer, insn, opformat);
1366 if (s != NULL)
1367 *s = '\n';
1368 demand_empty_rest_of_line ();
1369}
1370
1371/* The .byte pseudo-op. This is similar to the normal .byte
1372 pseudo-op, but it can also take a single ASCII string. */
1373
1374static void
1375s390_byte (ignore)
1376 int ignore ATTRIBUTE_UNUSED;
1377{
1378 if (*input_line_pointer != '\"')
1379 {
1380 cons (1);
1381 return;
1382 }
1383
1384 /* Gather characters. A real double quote is doubled. Unusual
1385 characters are not permitted. */
1386 ++input_line_pointer;
1387 while (1)
1388 {
1389 char c;
1390
1391 c = *input_line_pointer++;
1392
1393 if (c == '\"')
1394 {
1395 if (*input_line_pointer != '\"')
1396 break;
1397 ++input_line_pointer;
1398 }
1399
1400 FRAG_APPEND_1_CHAR (c);
1401 }
1402
1403 demand_empty_rest_of_line ();
1404}
1405
1406/* The .ltorg pseudo-op.This emits all literals defined since the last
1407 .ltorg or the invocation of gas. Literals are defined with the
1408 @lit suffix. */
1409
1410static void
1411s390_literals (ignore)
1412 int ignore ATTRIBUTE_UNUSED;
1413{
1414 struct s390_lpe *lpe;
1415
1416 if (lp_sym == NULL || lpe_count == 0)
1417 return; /* nothing to be done */
1418
1419 /* Emit symbol for start of literal pool. */
1420 S_SET_SEGMENT (lp_sym, now_seg);
1421 S_SET_VALUE (lp_sym, (valueT) frag_now_fix ());
1422 lp_sym->sy_frag = frag_now;
1423
07855bec
NC
1424 while (lpe_list)
1425 {
1426 lpe = lpe_list;
1427 lpe_list = lpe_list->next;
1428 S_SET_SEGMENT (lpe->sym, now_seg);
1429 S_SET_VALUE (lpe->sym, (valueT) frag_now_fix ());
1430 lpe->sym->sy_frag = frag_now;
1431
1432 /* Emit literal pool entry. */
1433 if (lpe->reloc != BFD_RELOC_UNUSED)
1434 {
1435 reloc_howto_type *reloc_howto =
1436 bfd_reloc_type_lookup (stdoutput, lpe->reloc);
1437 int size = bfd_get_reloc_size (reloc_howto);
1438 char *where;
1439
1440 if (size > lpe->nbytes)
1441 as_bad (_("%s relocations do not fit in %d bytes"),
1442 reloc_howto->name, lpe->nbytes);
07726851 1443 where = frag_more (lpe->nbytes);
07855bec
NC
1444 md_number_to_chars (where, 0, size);
1445 fix_new_exp (frag_now, where - frag_now->fr_literal,
1446 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
1447 }
1448 else
1449 {
1450 if (lpe->ex.X_op == O_big)
1451 {
1452 if (lpe->ex.X_add_number <= 0)
1453 generic_floating_point_number = lpe->floatnum;
1454 else
1455 memcpy (generic_bignum, lpe->bignum,
07726851 1456 lpe->ex.X_add_number*sizeof (LITTLENUM_TYPE));
07855bec
NC
1457 }
1458 emit_expr (&lpe->ex, lpe->nbytes);
1459 }
a85d7ed0 1460
07855bec
NC
1461 lpe->next = lpe_free_list;
1462 lpe_free_list = lpe;
1463 }
a85d7ed0
NC
1464 lpe_list_tail = NULL;
1465 lp_sym = NULL;
1466 lp_count++;
1467 lpe_count = 0;
1468}
1469
1470/* Turn a string in input_line_pointer into a floating point constant
1471 of type type, and store the appropriate bytes in *litp. The number
1472 of LITTLENUMS emitted is stored in *sizep . An error message is
1473 returned, or NULL on OK. */
1474
1475char *
1476md_atof (type, litp, sizep)
1477 int type;
1478 char *litp;
1479 int *sizep;
1480{
1481 int prec;
1482 LITTLENUM_TYPE words[4];
1483 char *t;
1484 int i;
1485
1486 switch (type)
1487 {
1488 case 'f':
1489 prec = 2;
1490 break;
1491
1492 case 'd':
1493 prec = 4;
1494 break;
1495
1496 default:
1497 *sizep = 0;
1498 return "bad call to md_atof";
1499 }
1500
1501 t = atof_ieee (input_line_pointer, type, words);
1502 if (t)
1503 input_line_pointer = t;
1504
1505 *sizep = prec * 2;
1506
1507 for (i = 0; i < prec; i++)
1508 {
1509 md_number_to_chars (litp, (valueT) words[i], 2);
1510 litp += 2;
1511 }
1512
1513 return NULL;
1514}
1515
1516/* Align a section (I don't know why this is machine dependent). */
1517
1518valueT
1519md_section_align (seg, addr)
1520 asection *seg;
1521 valueT addr;
1522{
1523 int align = bfd_get_section_alignment (stdoutput, seg);
1524
1525 return ((addr + (1 << align) - 1) & (-1 << align));
1526}
1527
1528/* We don't have any form of relaxing. */
1529
1530int
1531md_estimate_size_before_relax (fragp, seg)
1532 fragS *fragp ATTRIBUTE_UNUSED;
1533 asection *seg ATTRIBUTE_UNUSED;
1534{
1535 abort ();
1536 return 0;
1537}
1538
1539/* Convert a machine dependent frag. We never generate these. */
1540
1541void
1542md_convert_frag (abfd, sec, fragp)
1543 bfd *abfd ATTRIBUTE_UNUSED;
1544 asection *sec ATTRIBUTE_UNUSED;
1545 fragS *fragp ATTRIBUTE_UNUSED;
1546{
1547 abort ();
1548}
1549
1550symbolS *
1551md_undefined_symbol (name)
1552 char *name;
1553{
1554 if (*name == '_' && *(name+1) == 'G'
07726851 1555 && strcmp (name, "_GLOBAL_OFFSET_TABLE_") == 0)
a85d7ed0 1556 {
07726851 1557 if (!GOT_symbol)
a85d7ed0 1558 {
07726851
KH
1559 if (symbol_find (name))
1560 as_bad (_("GOT already in symbol table"));
a85d7ed0
NC
1561 GOT_symbol = symbol_new (name, undefined_section,
1562 (valueT) 0, &zero_address_frag);
1563 }
1564 return GOT_symbol;
1565 }
1566 return 0;
1567}
1568
1569/* Functions concerning relocs. */
1570
1571/* The location from which a PC relative jump should be calculated,
1572 given a PC relative reloc. */
1573
1574long
1575md_pcrel_from_section (fixp, sec)
1576 fixS *fixp;
1577 segT sec ATTRIBUTE_UNUSED;
1578{
1579 return fixp->fx_frag->fr_address + fixp->fx_where;
1580}
1581
1582/* Here we decide which fixups can be adjusted to make them relative to
1583 the beginning of the section instead of the symbol. Basically we need
1584 to make sure that the dynamic relocations are done correctly, so in
1585 some cases we force the original symbol to be used. */
1586int
1587tc_s390_fix_adjustable(fixP)
1588 fixS * fixP;
1589{
1590 /* Prevent all adjustments to global symbols. */
1591 if (S_IS_EXTERN (fixP->fx_addsy))
1592 return 0;
1593 if (S_IS_WEAK (fixP->fx_addsy))
1594 return 0;
1595 /* adjust_reloc_syms doesn't know about the GOT. */
1596 if (fixP->fx_r_type == BFD_RELOC_32_GOTOFF
1597 || fixP->fx_r_type == BFD_RELOC_390_PLT16DBL
1598 || fixP->fx_r_type == BFD_RELOC_390_PLT32
1599 || fixP->fx_r_type == BFD_RELOC_390_PLT32DBL
1600 || fixP->fx_r_type == BFD_RELOC_390_PLT64
1601 || fixP->fx_r_type == BFD_RELOC_390_GOT12
1602 || fixP->fx_r_type == BFD_RELOC_390_GOT16
1603 || fixP->fx_r_type == BFD_RELOC_32_GOT_PCREL
1604 || fixP->fx_r_type == BFD_RELOC_390_GOT64
07855bec 1605 || fixP->fx_r_type == BFD_RELOC_390_GOTENT
a85d7ed0
NC
1606 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1607 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1608 return 0;
1609 return 1;
1610}
1611
1612/* Apply a fixup to the object code. This is called for all the
1613 fixups we generated by the call to fix_new_exp, above. In the call
1614 above we used a reloc code which was the largest legal reloc code
1615 plus the operand index. Here we undo that to recover the operand
1616 index. At this point all symbol values should be fully resolved,
1617 and we attempt to completely resolve the reloc. If we can not do
1618 that, we determine the correct reloc code and put it back in the
1619 fixup. */
1620
1621int
1622md_apply_fix3 (fixp, valuep, seg)
1623 fixS *fixp;
1624 valueT *valuep;
1625 segT seg ATTRIBUTE_UNUSED;
1626{
1627 char *where;
1628 valueT value;
1629
1630 value = *valuep;
1631 where = fixp->fx_frag->fr_literal + fixp->fx_where;
1632
07855bec
NC
1633 if (fixp->fx_subsy != NULL)
1634 {
1635 if (!S_IS_DEFINED (fixp->fx_subsy))
a85d7ed0 1636 as_bad_where (fixp->fx_file, fixp->fx_line,
07855bec
NC
1637 _("unresolved fx_subsy symbol that must be resolved"));
1638 value -= S_GET_VALUE(fixp->fx_subsy);
a85d7ed0 1639 }
a85d7ed0 1640
07855bec
NC
1641 if (fixp->fx_addsy != NULL)
1642 {
1643 /* `*valuep' may contain the value of the symbol on which the reloc
1644 will be based; we have to remove it. */
1645 if (fixp->fx_addsy->sy_used_in_reloc
1646 && S_GET_SEGMENT (fixp->fx_addsy) != absolute_section
1647 && S_GET_SEGMENT (fixp->fx_addsy) != undefined_section
1648 && ! bfd_is_com_section (S_GET_SEGMENT (fixp->fx_addsy)))
1649 value -= S_GET_VALUE (fixp->fx_addsy);
1650
a85d7ed0 1651 if (fixp->fx_pcrel)
07855bec
NC
1652 value += fixp->fx_frag->fr_address + fixp->fx_where;
1653 }
1654 else
1655 fixp->fx_done = 1;
a85d7ed0 1656
07855bec
NC
1657 if ((int) fixp->fx_r_type >= (int) BFD_RELOC_UNUSED)
1658 {
1659 const struct s390_operand *operand;
1660 int opindex;
1661
1662 opindex = (int) fixp->fx_r_type - (int) BFD_RELOC_UNUSED;
1663 operand = &s390_operands[opindex];
1664
a85d7ed0 1665 if (fixp->fx_done)
07855bec
NC
1666 {
1667 /* Insert the fully resolved operand value. */
1668 s390_insert_operand (where, operand, (offsetT) value,
1669 fixp->fx_file, fixp->fx_line);
a85d7ed0 1670
07855bec
NC
1671 return 1;
1672 }
1673
1674 /* Determine a BFD reloc value based on the operand information.
1675 We are only prepared to turn a few of the operands into
1676 relocs. */
1677 fixp->fx_offset = value;
1678 if (operand->bits == 12 && operand->shift == 20)
1679 {
1680 fixp->fx_size = 2;
1681 fixp->fx_where += 2;
1682 fixp->fx_r_type = BFD_RELOC_390_12;
1683 }
1684 else if (operand->bits == 12 && operand->shift == 36)
1685 {
1686 fixp->fx_size = 2;
1687 fixp->fx_where += 4;
1688 fixp->fx_r_type = BFD_RELOC_390_12;
1689 }
1690 else if (operand->bits == 8 && operand->shift == 8)
1691 {
1692 fixp->fx_size = 1;
1693 fixp->fx_where += 1;
1694 fixp->fx_r_type = BFD_RELOC_8;
1695 }
1696 else if (operand->bits == 16 && operand->shift == 16)
1697 {
1698 fixp->fx_size = 2;
1699 fixp->fx_where += 2;
1700 if (operand->flags & S390_OPERAND_PCREL)
1701 {
1702 fixp->fx_r_type = BFD_RELOC_390_PC16DBL;
1703 fixp->fx_offset += 2;
1704 }
1705 else
1706 fixp->fx_r_type = BFD_RELOC_16;
1707 }
1708 else if (operand->bits == 32 && operand->shift == 16 &&
1709 (operand->flags & S390_OPERAND_PCREL))
1710 {
1711 fixp->fx_size = 4;
1712 fixp->fx_where += 2;
1713 fixp->fx_offset += 2;
1714 fixp->fx_r_type = BFD_RELOC_390_PC32DBL;
1715 }
a85d7ed0 1716 else
07855bec
NC
1717 {
1718 char *sfile;
1719 unsigned int sline;
1720
1721 /* Use expr_symbol_where to see if this is an expression
1722 symbol. */
1723 if (expr_symbol_where (fixp->fx_addsy, &sfile, &sline))
1724 as_bad_where (fixp->fx_file, fixp->fx_line,
1725 _("unresolved expression that must be resolved"));
1726 else
1727 as_bad_where (fixp->fx_file, fixp->fx_line,
1728 _("unsupported relocation type"));
1729 fixp->fx_done = 1;
1730 return 1;
1731 }
a85d7ed0 1732 }
07855bec
NC
1733 else
1734 {
1735 switch (fixp->fx_r_type)
1736 {
1737 case BFD_RELOC_8:
1738 if (fixp->fx_pcrel)
1739 abort ();
1740 if (fixp->fx_done)
1741 md_number_to_chars (where, value, 1);
1742 break;
1743 case BFD_RELOC_390_12:
1744 case BFD_RELOC_390_GOT12:
1745 if (fixp->fx_done)
1746 {
1747 unsigned short mop;
1748
1749 mop = bfd_getb16 ((unsigned char *) where);
1750 mop |= (unsigned short) (value & 0xfff);
1751 bfd_putb16 ((bfd_vma) mop, (unsigned char *) where);
1752 }
1753 break;
1754
1755 case BFD_RELOC_16:
1756 case BFD_RELOC_GPREL16:
1757 case BFD_RELOC_16_GOT_PCREL:
1758 case BFD_RELOC_16_GOTOFF:
1759 if (fixp->fx_pcrel)
1760 as_bad_where (fixp->fx_file, fixp->fx_line,
1761 "cannot emit PC relative %s relocation%s%s",
1762 bfd_get_reloc_code_name (fixp->fx_r_type),
1763 fixp->fx_addsy != NULL ? " against " : "",
1764 (fixp->fx_addsy != NULL
1765 ? S_GET_NAME (fixp->fx_addsy)
1766 : ""));
1767 if (fixp->fx_done)
1768 md_number_to_chars (where, value, 2);
1769 break;
1770 case BFD_RELOC_390_GOT16:
1771 if (fixp->fx_done)
1772 md_number_to_chars (where, value, 2);
1773 break;
1774 case BFD_RELOC_390_PC16DBL:
1775 case BFD_RELOC_390_PLT16DBL:
1776 value += 2;
1777 if (fixp->fx_done)
1778 md_number_to_chars (where, (offsetT) value >> 1, 2);
1779 break;
1780
1781 case BFD_RELOC_32:
1782 if (fixp->fx_pcrel)
1783 fixp->fx_r_type = BFD_RELOC_32_PCREL;
1784 else
1785 fixp->fx_r_type = BFD_RELOC_32;
1786 if (fixp->fx_done)
1787 md_number_to_chars (where, value, 4);
1788 break;
1789 case BFD_RELOC_32_PCREL:
1790 case BFD_RELOC_32_BASEREL:
1791 fixp->fx_r_type = BFD_RELOC_32_PCREL;
1792 if (fixp->fx_done)
1793 md_number_to_chars (where, value, 4);
1794 break;
1795 case BFD_RELOC_32_GOT_PCREL:
1796 case BFD_RELOC_390_PLT32:
1797 if (fixp->fx_done)
1798 md_number_to_chars (where, value, 4);
1799 break;
1800 case BFD_RELOC_390_PC32DBL:
1801 case BFD_RELOC_390_PLT32DBL:
1802 case BFD_RELOC_390_GOTPCDBL:
1803 case BFD_RELOC_390_GOTENT:
1804 value += 2;
1805 if (fixp->fx_done)
1806 md_number_to_chars (where, (offsetT) value >> 1, 4);
1807 break;
1808
1809 case BFD_RELOC_32_GOTOFF:
1810 if (fixp->fx_done)
07726851 1811 md_number_to_chars (where, value, sizeof (int));
07855bec
NC
1812 break;
1813
1814 case BFD_RELOC_390_GOT64:
1815 case BFD_RELOC_390_PLT64:
1816 if (fixp->fx_done)
1817 md_number_to_chars (where, value, 8);
1818 break;
1819
1820 case BFD_RELOC_64:
1821 if (fixp->fx_pcrel)
1822 fixp->fx_r_type = BFD_RELOC_64_PCREL;
1823 else
1824 fixp->fx_r_type = BFD_RELOC_64;
1825 if (fixp->fx_done)
1826 md_number_to_chars (where, value, 8);
1827 break;
1828
1829 case BFD_RELOC_64_PCREL:
1830 fixp->fx_r_type = BFD_RELOC_64_PCREL;
1831 if (fixp->fx_done)
1832 md_number_to_chars (where, value, 8);
1833 break;
1834
1835 case BFD_RELOC_VTABLE_INHERIT:
1836 case BFD_RELOC_VTABLE_ENTRY:
1837 fixp->fx_done = 0;
1838 return 1;
1839
1840 default:
1841 {
1842 const char *reloc_name = bfd_get_reloc_code_name (fixp->fx_r_type);
1843
1844 if (reloc_name != NULL)
1845 fprintf (stderr, "Gas failure, reloc type %s\n", reloc_name);
1846 else
1847 fprintf (stderr, "Gas failure, reloc type #%i\n", fixp->fx_r_type);
1848 fflush (stderr);
1849 abort ();
1850 }
1851 }
a85d7ed0 1852
07855bec
NC
1853 fixp->fx_offset = value;
1854 }
a85d7ed0
NC
1855
1856 return 1;
1857}
1858
1859/* Generate a reloc for a fixup. */
1860
1861arelent *
1862tc_gen_reloc (seg, fixp)
1863 asection *seg ATTRIBUTE_UNUSED;
1864 fixS *fixp;
1865{
1866 bfd_reloc_code_real_type code;
1867 arelent *reloc;
1868
1869 code = fixp->fx_r_type;
07855bec
NC
1870 if (GOT_symbol && fixp->fx_addsy == GOT_symbol)
1871 {
1872 if ((s390_arch_size == 32 && code == BFD_RELOC_32_PCREL) ||
1873 (s390_arch_size == 64 && code == BFD_RELOC_64_PCREL))
1874 code = BFD_RELOC_390_GOTPC;
1875 if (code == BFD_RELOC_390_PC32DBL)
1876 code = BFD_RELOC_390_GOTPCDBL;
1877 }
a85d7ed0
NC
1878
1879 reloc = (arelent *) xmalloc (sizeof (arelent));
1880 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
1881 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1882 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1883 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
1884 if (reloc->howto == NULL)
1885 {
1886 as_bad_where (fixp->fx_file, fixp->fx_line,
1887 _("cannot represent relocation type %s"),
1888 bfd_get_reloc_code_name (code));
1889 /* Set howto to a garbage value so that we can keep going. */
1890 reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
1891 assert (reloc->howto != NULL);
1892 }
1893 reloc->addend = fixp->fx_offset;
1894
1895 return reloc;
1896}
This page took 0.114727 seconds and 4 git commands to generate.