]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-s390.c
Revert "2.41 Release sources"
[thirdparty/binutils-gdb.git] / gas / config / tc-s390.c
CommitLineData
a85d7ed0 1/* tc-s390.c -- Assemble for the S390
d87bef3a 2 Copyright (C) 2000-2023 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
ec2655a6 9 the Free Software Foundation; either version 3, or (at your option)
a85d7ed0
NC
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
4b4da160
NC
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
a85d7ed0 21
a85d7ed0 22#include "as.h"
3882b010 23#include "safe-ctype.h"
a85d7ed0 24#include "subsegs.h"
a161fe53 25#include "dwarf2dbg.h"
75e21f08 26#include "dw2gencfi.h"
a85d7ed0
NC
27
28#include "opcode/s390.h"
29#include "elf/s390.h"
30
16a419ba 31/* The default architecture. */
a85d7ed0
NC
32#ifndef DEFAULT_ARCH
33#define DEFAULT_ARCH "s390"
34#endif
f86f5863 35static const char *default_arch = DEFAULT_ARCH;
a85d7ed0 36/* Either 32 or 64, selects file format. */
37a58793
MS
37static int s390_arch_size = 0;
38
1e8766d7
AK
39/* If no -march option was given default to the highest available CPU.
40 Since with S/390 a newer CPU always supports everything from its
41 predecessors this will accept every valid asm input. */
42static unsigned int current_cpu = S390_OPCODE_MAXCPU - 1;
58af6397
AK
43/* All facilities are enabled by default. */
44static unsigned int current_flags = S390_INSTR_FLAG_FACILITY_MASK;
45/* The mode mask default is picked in init_default_arch depending on
46 the current cpu. */
37a58793 47static unsigned int current_mode_mask = 0;
a85d7ed0 48
1dd53816
AK
49/* Set to TRUE if the highgprs flag in the ELF header needs to be set
50 for the output file. */
5b7c81bd 51static bool set_highgprs_p = false;
1dd53816 52
b34976b6 53/* Whether to use user friendly register names. Default is TRUE. */
a85d7ed0 54#ifndef TARGET_REG_NAMES_P
5b7c81bd 55#define TARGET_REG_NAMES_P true
a85d7ed0
NC
56#endif
57
5b7c81bd 58static bool reg_names_p = TARGET_REG_NAMES_P;
a85d7ed0 59
16a419ba 60/* Set to TRUE if we want to warn about zero base/index registers. */
5b7c81bd 61static bool warn_areg_zero = false;
16a419ba 62
a85d7ed0
NC
63/* Generic assembler global variables which must be defined by all
64 targets. */
65
66const char comment_chars[] = "#";
67
68/* Characters which start a comment at the beginning of a line. */
69const char line_comment_chars[] = "#";
70
71/* Characters which may be used to separate multiple commands on a
72 single line. */
73const char line_separator_chars[] = ";";
74
75/* Characters which are used to indicate an exponent in a floating
76 point number. */
77const char EXP_CHARS[] = "eE";
78
79/* Characters which mean that a number is a floating point constant,
80 as in 0d1.0. */
81const char FLT_CHARS[] = "dD";
82
75e21f08
JJ
83/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
84int s390_cie_data_alignment;
85
a85d7ed0
NC
86/* The target specific pseudo-ops which we support. */
87
88/* Define the prototypes for the pseudo-ops */
5a49b8ac
AM
89static void s390_byte (int);
90static void s390_elf_cons (int);
91static void s390_bss (int);
92static void s390_insn (int);
93static void s390_literals (int);
902cc293 94static void s390_machine (int);
1dd53816 95static void s390_machinemode (int);
a85d7ed0
NC
96
97const pseudo_typeS md_pseudo_table[] =
98{
1dd53816 99 { "align", s_align_bytes, 0 },
98d3f06f 100 /* Pseudo-ops which must be defined. */
1dd53816
AK
101 { "bss", s390_bss, 0 },
102 { "insn", s390_insn, 0 },
a85d7ed0 103 /* Pseudo-ops which must be overridden. */
1dd53816
AK
104 { "byte", s390_byte, 0 },
105 { "short", s390_elf_cons, 2 },
106 { "long", s390_elf_cons, 4 },
107 { "quad", s390_elf_cons, 8 },
108 { "ltorg", s390_literals, 0 },
109 { "string", stringer, 8 + 1 },
110 { "machine", s390_machine, 0 },
111 { "machinemode", s390_machinemode, 0 },
112 { NULL, NULL, 0 }
a85d7ed0
NC
113};
114
a85d7ed0
NC
115/* Given NAME, find the register number associated with that name, return
116 the integer value associated with the given name or -1 on failure. */
117
118static int
1e2e8c52 119reg_name_search (const char *name)
a85d7ed0 120{
1e2e8c52 121 int val = -1;
a85d7ed0 122
1e2e8c52
AK
123 if (strcasecmp (name, "lit") == 0)
124 return 13;
a85d7ed0 125
1e2e8c52
AK
126 if (strcasecmp (name, "sp") == 0)
127 return 15;
128
129 if (name[0] != 'a' && name[0] != 'c' && name[0] != 'f'
130 && name[0] != 'r' && name[0] != 'v')
131 return -1;
132
133 if (ISDIGIT (name[1]))
a85d7ed0 134 {
1e2e8c52
AK
135 val = name[1] - '0';
136 if (ISDIGIT (name[2]))
137 val = val * 10 + name[2] - '0';
a85d7ed0 138 }
a85d7ed0 139
1e2e8c52
AK
140 if ((name[0] != 'v' && val > 15) || val > 31)
141 val = -1;
142
143 return val;
a85d7ed0
NC
144}
145
146
147/*
148 * Summary of register_name().
149 *
150 * in: Input_line_pointer points to 1st char of operand.
151 *
152 * out: A expressionS.
153 * The operand may have been a register: in this case, X_op == O_register,
154 * X_add_number is set to the register number, and truth is returned.
155 * Input_line_pointer->(next non-blank) char after operand, or is in its
156 * original state.
157 */
158
5b7c81bd 159static bool
5a49b8ac 160register_name (expressionS *expressionP)
a85d7ed0
NC
161{
162 int reg_number;
163 char *name;
164 char *start;
165 char c;
166
468cced8 167 /* Find the spelling of the operand. */
a85d7ed0 168 start = name = input_line_pointer;
3882b010 169 if (name[0] == '%' && ISALPHA (name[1]))
a85d7ed0
NC
170 name = ++input_line_pointer;
171 else
5b7c81bd 172 return false;
a85d7ed0 173
d02603dc 174 c = get_symbol_name (&name);
1e2e8c52 175 reg_number = reg_name_search (name);
a85d7ed0 176
468cced8 177 /* Put back the delimiting char. */
d02603dc 178 (void) restore_line_pointer (c);
468cced8
AM
179
180 /* Look to see if it's in the register table. */
198ce79b 181 if (reg_number >= 0)
a85d7ed0
NC
182 {
183 expressionP->X_op = O_register;
184 expressionP->X_add_number = reg_number;
198ce79b 185
468cced8 186 /* Make the rest nice. */
a85d7ed0
NC
187 expressionP->X_add_symbol = NULL;
188 expressionP->X_op_symbol = NULL;
5b7c81bd 189 return true;
a85d7ed0 190 }
468cced8
AM
191
192 /* Reset the line as if we had not done anything. */
193 input_line_pointer = start;
5b7c81bd 194 return false;
a85d7ed0
NC
195}
196
197/* Local variables. */
198
199/* Opformat hash table. */
629310ab 200static htab_t s390_opformat_hash;
a85d7ed0
NC
201
202/* Opcode hash table. */
629310ab 203static htab_t s390_opcode_hash = NULL;
a85d7ed0
NC
204
205/* Flags to set in the elf header */
206static flagword s390_flags = 0;
207
208symbolS *GOT_symbol; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
209
210#ifndef WORKING_DOT_WORD
2b4f075a
HPN
211int md_short_jump_size = 4;
212int md_long_jump_size = 4;
a85d7ed0
NC
213#endif
214
5a38dc70 215const char *md_shortopts = "A:m:kVQ:";
a85d7ed0
NC
216struct option md_longopts[] = {
217 {NULL, no_argument, NULL, 0}
218};
07726851 219size_t md_longopts_size = sizeof (md_longopts);
a85d7ed0
NC
220
221/* Initialize the default opcode arch and word size from the default
37a58793 222 architecture name if not specified by an option. */
a85d7ed0 223static void
5a49b8ac 224init_default_arch (void)
a85d7ed0 225{
07726851 226 if (strcmp (default_arch, "s390") == 0)
07855bec 227 {
37a58793
MS
228 if (s390_arch_size == 0)
229 s390_arch_size = 32;
07855bec 230 }
07726851 231 else if (strcmp (default_arch, "s390x") == 0)
07855bec 232 {
37a58793
MS
233 if (s390_arch_size == 0)
234 s390_arch_size = 64;
07855bec
NC
235 }
236 else
20203fb9 237 as_fatal (_("Invalid default architecture, broken assembler."));
df9a398f
MS
238
239 if (current_mode_mask == 0)
240 {
1e8766d7
AK
241 /* Default to z/Architecture mode if the CPU supports it. */
242 if (current_cpu < S390_OPCODE_Z900)
df9a398f
MS
243 current_mode_mask = 1 << S390_OPCODE_ESA;
244 else
245 current_mode_mask = 1 << S390_OPCODE_ZARCH;
246 }
a85d7ed0
NC
247}
248
249/* Called by TARGET_FORMAT. */
250const char *
5a49b8ac 251s390_target_format (void)
a85d7ed0
NC
252{
253 /* We don't get a chance to initialize anything before we're called,
254 so handle that now. */
2ebb4b88 255 init_default_arch ();
a85d7ed0
NC
256
257 return s390_arch_size == 64 ? "elf64-s390" : "elf32-s390";
258}
259
7ecc513a
DV
260/* Map a cpu string ARG as given with -march= or .machine to the respective
261 enum s390_opcode_cpu_val value. If ALLOW_EXTENSIONS is TRUE, the cpu name
262 can be followed by a list of cpu facility flags each beginning with the
263 character '+'. The active cpu flags are returned through *RET_FLAGS.
264 In case of an error, S390_OPCODE_MAXCPU is returned. */
902cc293
AK
265
266static unsigned int
5b7c81bd
AM
267s390_parse_cpu (const char *arg,
268 unsigned int *ret_flags,
269 bool allow_extensions)
902cc293 270{
7ecc513a
DV
271 static struct
272 {
273 const char * name;
952c3f51
AK
274 unsigned int name_len;
275 const char * alt_name;
276 unsigned int alt_name_len;
7ecc513a
DV
277 unsigned int flags;
278 } cpu_table[S390_OPCODE_MAXCPU] =
279 {
952c3f51
AK
280 { STRING_COMMA_LEN ("g5"), STRING_COMMA_LEN ("arch3"), 0 },
281 { STRING_COMMA_LEN ("g6"), STRING_COMMA_LEN (""), 0 },
282 { STRING_COMMA_LEN ("z900"), STRING_COMMA_LEN ("arch5"), 0 },
283 { STRING_COMMA_LEN ("z990"), STRING_COMMA_LEN ("arch6"), 0 },
284 { STRING_COMMA_LEN ("z9-109"), STRING_COMMA_LEN (""), 0 },
285 { STRING_COMMA_LEN ("z9-ec"), STRING_COMMA_LEN ("arch7"), 0 },
286 { STRING_COMMA_LEN ("z10"), STRING_COMMA_LEN ("arch8"), 0 },
287 { STRING_COMMA_LEN ("z196"), STRING_COMMA_LEN ("arch9"), 0 },
288 { STRING_COMMA_LEN ("zEC12"), STRING_COMMA_LEN ("arch10"),
289 S390_INSTR_FLAG_HTM },
290 { STRING_COMMA_LEN ("z13"), STRING_COMMA_LEN ("arch11"),
64025b4e 291 S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX },
47826cdb 292 { STRING_COMMA_LEN ("z14"), STRING_COMMA_LEN ("arch12"),
fc60b8c8 293 S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX },
46e292ab 294 { STRING_COMMA_LEN ("z15"), STRING_COMMA_LEN ("arch13"),
ba2b480f 295 S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX },
69341966 296 { STRING_COMMA_LEN ("z16"), STRING_COMMA_LEN ("arch14"),
2253c8f0 297 S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX }
7ecc513a
DV
298 };
299 static struct
300 {
5b7c81bd 301 const char *name;
7ecc513a 302 unsigned int mask;
5b7c81bd 303 bool on;
7ecc513a
DV
304 } cpu_flags[] =
305 {
5b7c81bd
AM
306 { "htm", S390_INSTR_FLAG_HTM, true },
307 { "nohtm", S390_INSTR_FLAG_HTM, false },
308 { "vx", S390_INSTR_FLAG_VX, true },
309 { "novx", S390_INSTR_FLAG_VX, false }
7ecc513a
DV
310 };
311 unsigned int icpu;
312 char *ilp_bak;
313
314 icpu = S390_OPCODE_MAXCPU;
d34049e8 315 if (startswith (arg, "all") && (arg[3] == 0 || arg[3] == '+'))
7ecc513a
DV
316 {
317 icpu = S390_OPCODE_MAXCPU - 1;
318 arg += 3;
319 }
902cc293 320 else
7ecc513a
DV
321 {
322 for (icpu = 0; icpu < S390_OPCODE_MAXCPU; icpu++)
323 {
952c3f51
AK
324 unsigned int l, l_alt;
325
326 l = cpu_table[icpu].name_len;
7ecc513a 327
7ecc513a
DV
328 if (strncmp (arg, cpu_table[icpu].name, l) == 0
329 && (arg[l] == 0 || arg[l] == '+'))
330 {
331 arg += l;
332 break;
333 }
952c3f51
AK
334
335 l_alt = cpu_table[icpu].alt_name_len;
336
337 if (l_alt > 0
338 && strncmp (arg, cpu_table[icpu].alt_name, l_alt) == 0
339 && (arg[l_alt] == 0 || arg[l_alt] == '+'))
340 {
341 arg += l_alt;
342 break;
343 }
7ecc513a
DV
344 }
345 }
346
952c3f51
AK
347 if (icpu == S390_OPCODE_MAXCPU)
348 return S390_OPCODE_MAXCPU;
349
7ecc513a
DV
350 ilp_bak = input_line_pointer;
351 if (icpu != S390_OPCODE_MAXCPU)
352 {
17b9d67d 353 input_line_pointer = (char *) arg;
7ecc513a
DV
354 *ret_flags = (cpu_table[icpu].flags & S390_INSTR_FLAG_FACILITY_MASK);
355
356 while (*input_line_pointer == '+' && allow_extensions)
357 {
358 unsigned int iflag;
359 char *sym;
360 char c;
361
362 input_line_pointer++;
363 c = get_symbol_name (&sym);
364 for (iflag = 0; iflag < ARRAY_SIZE (cpu_flags); iflag++)
365 {
366 if (strcmp (sym, cpu_flags[iflag].name) == 0)
367 {
368 if (cpu_flags[iflag].on)
369 *ret_flags |= cpu_flags[iflag].mask;
370 else
371 *ret_flags &= ~cpu_flags[iflag].mask;
372 break;
373 }
374 }
375 if (iflag == ARRAY_SIZE (cpu_flags))
376 as_bad (_("no such machine extension `%s'"), sym - 1);
377 *input_line_pointer = c;
378 if (iflag == ARRAY_SIZE (cpu_flags))
379 break;
380 }
381 }
382
383 SKIP_WHITESPACE ();
384
385 if (*input_line_pointer != 0 && *input_line_pointer != '\n')
386 {
387 as_bad (_("junk at end of machine string, first unrecognized character"
388 " is `%c'"), *input_line_pointer);
389 icpu = S390_OPCODE_MAXCPU;
390 }
391 input_line_pointer = ilp_bak;
392
393 return icpu;
902cc293
AK
394}
395
a85d7ed0 396int
17b9d67d 397md_parse_option (int c, const char *arg)
a85d7ed0 398{
07855bec
NC
399 switch (c)
400 {
401 /* -k: Ignore for FreeBSD compatibility. */
402 case 'k':
403 break;
404 case 'm':
405 if (arg != NULL && strcmp (arg, "regnames") == 0)
5b7c81bd 406 reg_names_p = true;
198ce79b 407
07855bec 408 else if (arg != NULL && strcmp (arg, "no-regnames") == 0)
5b7c81bd 409 reg_names_p = false;
198ce79b 410
16a419ba 411 else if (arg != NULL && strcmp (arg, "warn-areg-zero") == 0)
5b7c81bd 412 warn_areg_zero = true;
16a419ba 413
ff0fb565 414 else if (arg != NULL && strcmp (arg, "31") == 0)
75504fed 415 s390_arch_size = 32;
ff0fb565
MS
416
417 else if (arg != NULL && strcmp (arg, "64") == 0)
418 s390_arch_size = 64;
419
37a58793
MS
420 else if (arg != NULL && strcmp (arg, "esa") == 0)
421 current_mode_mask = 1 << S390_OPCODE_ESA;
422
423 else if (arg != NULL && strcmp (arg, "zarch") == 0)
1dd53816
AK
424 {
425 if (s390_arch_size == 32)
5b7c81bd 426 set_highgprs_p = true;
1dd53816
AK
427 current_mode_mask = 1 << S390_OPCODE_ZARCH;
428 }
37a58793 429
d34049e8 430 else if (arg != NULL && startswith (arg, "arch="))
37a58793 431 {
5b7c81bd 432 current_cpu = s390_parse_cpu (arg + 5, &current_flags, false);
7ecc513a 433 if (current_cpu == S390_OPCODE_MAXCPU)
37a58793
MS
434 {
435 as_bad (_("invalid switch -m%s"), arg);
436 return 0;
437 }
438 }
439
07855bec
NC
440 else
441 {
442 as_bad (_("invalid switch -m%s"), arg);
443 return 0;
444 }
445 break;
198ce79b 446
07855bec 447 case 'A':
67c1ffbe 448 /* Option -A is deprecated. Still available for compatibility. */
07855bec 449 if (arg != NULL && strcmp (arg, "esa") == 0)
37a58793 450 current_cpu = S390_OPCODE_G5;
07855bec 451 else if (arg != NULL && strcmp (arg, "esame") == 0)
37a58793 452 current_cpu = S390_OPCODE_Z900;
07855bec 453 else
20203fb9 454 as_bad (_("invalid architecture -A%s"), arg);
07855bec
NC
455 break;
456
457 /* -V: SVR4 argument to print version ID. */
458 case 'V':
459 print_version_id ();
460 break;
198ce79b 461
07855bec
NC
462 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
463 should be emitted or not. FIXME: Not implemented. */
464 case 'Q':
465 break;
198ce79b 466
07855bec
NC
467 default:
468 return 0;
469 }
198ce79b 470
a85d7ed0
NC
471 return 1;
472}
473
474void
5a49b8ac 475md_show_usage (FILE *stream)
a85d7ed0 476{
07855bec 477 fprintf (stream, _("\
16a419ba
NC
478 S390 options:\n\
479 -mregnames Allow symbolic names for registers\n\
480 -mwarn-areg-zero Warn about zero base/index registers\n\
ff0fb565
MS
481 -mno-regnames Do not allow symbolic names for registers\n\
482 -m31 Set file format to 31 bit format\n\
483 -m64 Set file format to 64 bit format\n"));
07855bec 484 fprintf (stream, _("\
16a419ba
NC
485 -V print assembler version number\n\
486 -Qy, -Qn ignored\n"));
a85d7ed0
NC
487}
488
902cc293
AK
489/* Generate the hash table mapping mnemonics to struct s390_opcode.
490 This table is built at startup and whenever the CPU level is
491 changed using .machine. */
a85d7ed0 492
902cc293
AK
493static void
494s390_setup_opcodes (void)
a85d7ed0 495{
ed9e98c2 496 const struct s390_opcode *op;
a85d7ed0 497 const struct s390_opcode *op_end;
5b7c81bd 498 bool dup_insn = false;
a85d7ed0 499
902cc293 500 if (s390_opcode_hash != NULL)
629310ab 501 htab_delete (s390_opcode_hash);
a85d7ed0
NC
502
503 /* Insert the opcodes into a hash table. */
629310ab 504 s390_opcode_hash = str_htab_create ();
a85d7ed0
NC
505
506 op_end = s390_opcodes + s390_num_opcodes;
07855bec 507 for (op = s390_opcodes; op < op_end; op++)
e6181b6a 508 {
7ecc513a
DV
509 int use_opcode;
510
e6181b6a
MS
511 while (op < op_end - 1 && strcmp(op->name, op[1].name) == 0)
512 {
513 if (op->min_cpu <= current_cpu && (op->modes & current_mode_mask))
514 break;
933fbc29 515 op++;
e6181b6a 516 }
be7a250d 517
7ecc513a
DV
518 if ((op->modes & current_mode_mask) == 0)
519 use_opcode = 0;
520 else if ((op->flags & S390_INSTR_FLAG_FACILITY_MASK) == 0)
521 {
522 /* Opcodes that do not belong to a specific facility are enabled if
523 present in the selected cpu. */
524 use_opcode = (op->min_cpu <= current_cpu);
525 }
526 else
527 {
528 unsigned int f;
529
530 /* Opcodes of a specific facility are enabled if the facility is
531 enabled. Note: only some facilities are represented as flags. */
532 f = (op->flags & S390_INSTR_FLAG_FACILITY_MASK);
533 use_opcode = ((f & current_flags) == f);
534 }
fe0e921f
AM
535 if (use_opcode
536 && str_hash_insert (s390_opcode_hash, op->name, op, 0) != NULL)
537 {
538 as_bad (_("duplicate %s"), op->name);
5b7c81bd 539 dup_insn = true;
fe0e921f 540 }
be7a250d 541
e6181b6a
MS
542 while (op < op_end - 1 && strcmp (op->name, op[1].name) == 0)
543 op++;
7ecc513a 544 }
07855bec 545
a85d7ed0
NC
546 if (dup_insn)
547 abort ();
902cc293
AK
548}
549
550/* This function is called when the assembler starts up. It is called
551 after the options have been parsed and the output file has been
552 opened. */
553
554void
555md_begin (void)
556{
ed9e98c2 557 const struct s390_opcode *op;
902cc293 558 const struct s390_opcode *op_end;
902cc293
AK
559
560 /* Give a warning if the combination -m64-bit and -Aesa is used. */
561 if (s390_arch_size == 64 && current_cpu < S390_OPCODE_Z900)
562 as_warn (_("The 64 bit file format is used without esame instructions."));
563
564 s390_cie_data_alignment = -s390_arch_size / 8;
565
566 /* Set the ELF flags if desired. */
567 if (s390_flags)
568 bfd_set_private_flags (stdoutput, s390_flags);
569
570 /* Insert the opcode formats into a hash table. */
629310ab 571 s390_opformat_hash = str_htab_create ();
902cc293
AK
572
573 op_end = s390_opformats + s390_num_opformats;
574 for (op = s390_opformats; op < op_end; op++)
fe0e921f
AM
575 if (str_hash_insert (s390_opformat_hash, op->name, op, 0) != NULL)
576 as_fatal (_("duplicate %s"), op->name);
902cc293
AK
577
578 s390_setup_opcodes ();
a85d7ed0
NC
579
580 record_alignment (text_section, 2);
581 record_alignment (data_section, 2);
582 record_alignment (bss_section, 2);
a85d7ed0
NC
583}
584
585/* Called after all assembly has been done. */
586void
ed2917de 587s390_md_finish (void)
a85d7ed0 588{
07855bec 589 if (s390_arch_size == 64)
ff0fb565 590 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_64);
07855bec 591 else
ff0fb565 592 bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_31);
a85d7ed0
NC
593}
594
a85d7ed0
NC
595/* Insert an operand value into an instruction. */
596
597static void
5a49b8ac
AM
598s390_insert_operand (unsigned char *insn,
599 const struct s390_operand *operand,
600 offsetT val,
3b4dbbbf 601 const char *file,
5a49b8ac 602 unsigned int line)
a85d7ed0
NC
603{
604 addressT uval;
605 int offset;
606
07855bec
NC
607 if (operand->flags & (S390_OPERAND_SIGNED|S390_OPERAND_PCREL))
608 {
609 offsetT min, max;
610
611 max = ((offsetT) 1 << (operand->bits - 1)) - 1;
612 min = - ((offsetT) 1 << (operand->bits - 1));
613 /* Halve PCREL operands. */
614 if (operand->flags & S390_OPERAND_PCREL)
615 val >>= 1;
616 /* Check for underflow / overflow. */
617 if (val < min || val > max)
618 {
619 const char *err =
a2d8448d
AM
620 _("operand out of range (%" PRId64 " not between %" PRId64
621 " and %" PRId64 ")");
07855bec
NC
622
623 if (operand->flags & S390_OPERAND_PCREL)
624 {
973773de
IL
625 val = (offsetT) ((addressT) val << 1);
626 min = (offsetT) ((addressT) min << 1);
627 max = (offsetT) ((addressT) max << 1);
07855bec 628 }
07855bec 629 if (file == (char *) NULL)
a2d8448d 630 as_bad (err, (int64_t) val, (int64_t) min, (int64_t) max);
07855bec 631 else
a2d8448d
AM
632 as_bad_where (file, line,
633 err, (int64_t) val, (int64_t) min, (int64_t) max);
07855bec
NC
634 return;
635 }
636 /* val is ok, now restrict it to operand->bits bits. */
637 uval = (addressT) val & ((((addressT) 1 << (operand->bits-1)) << 1) - 1);
933fbc29
MS
638 /* val is restrict, now check for special case. */
639 if (operand->bits == 20 && operand->shift == 20)
640 uval = (uval >> 12) | ((uval & 0xfff) << 8);
a85d7ed0 641 }
07855bec
NC
642 else
643 {
644 addressT min, max;
198ce79b 645
98d3f06f 646 max = (((addressT) 1 << (operand->bits - 1)) << 1) - 1;
07855bec
NC
647 min = (offsetT) 0;
648 uval = (addressT) val;
1e2e8c52
AK
649
650 /* Vector register operands have an additional bit in the RXB
651 field. */
652 if (operand->flags & S390_OPERAND_VR)
653 max = (max << 1) | 1;
654
07855bec
NC
655 /* Length x in an instructions has real length x+1. */
656 if (operand->flags & S390_OPERAND_LENGTH)
657 uval--;
658 /* Check for underflow / overflow. */
659 if (uval < min || uval > max)
660 {
07855bec
NC
661 if (operand->flags & S390_OPERAND_LENGTH)
662 {
663 uval++;
664 min++;
665 max++;
666 }
e5976317
NC
667
668 as_bad_value_out_of_range (_("operand"), uval, (offsetT) min, (offsetT) max, file, line);
669
07855bec
NC
670 return;
671 }
a85d7ed0 672 }
a85d7ed0 673
1e2e8c52
AK
674 if (operand->flags & S390_OPERAND_VR)
675 {
676 /* Insert the extra bit into the RXB field. */
677 switch (operand->shift)
678 {
679 case 8:
680 insn[4] |= (uval & 0x10) >> 1;
681 break;
682 case 12:
683 insn[4] |= (uval & 0x10) >> 2;
684 break;
685 case 16:
686 insn[4] |= (uval & 0x10) >> 3;
687 break;
688 case 32:
689 insn[4] |= (uval & 0x10) >> 4;
690 break;
691 }
692 uval &= 0xf;
693 }
694
695 if (operand->flags & S390_OPERAND_OR1)
696 uval |= 1;
697 if (operand->flags & S390_OPERAND_OR2)
698 uval |= 2;
699 if (operand->flags & S390_OPERAND_OR8)
700 uval |= 8;
701
702 /* Duplicate the operand at bit pos 12 to 16. */
703 if (operand->flags & S390_OPERAND_CP16)
704 {
705 /* Copy VR operand at bit pos 12 to bit pos 16. */
706 insn[2] |= uval << 4;
707 /* Copy the flag in the RXB field. */
708 insn[4] |= (insn[4] & 4) >> 1;
709 }
710
a85d7ed0
NC
711 /* Insert fragments of the operand byte for byte. */
712 offset = operand->shift + operand->bits;
713 uval <<= (-offset) & 7;
98d3f06f 714 insn += (offset - 1) / 8;
07855bec
NC
715 while (uval != 0)
716 {
717 *insn-- |= uval;
718 uval >>= 8;
719 }
a85d7ed0
NC
720}
721
1971b29d
MS
722struct map_tls
723 {
f86f5863 724 const char *string;
1971b29d
MS
725 int length;
726 bfd_reloc_code_real_type reloc;
727 };
728
1971b29d
MS
729/* Parse tls marker and return the desired relocation. */
730static bfd_reloc_code_real_type
5a49b8ac 731s390_tls_suffix (char **str_p, expressionS *exp_p)
1971b29d
MS
732{
733 static struct map_tls mapping[] =
734 {
735 { "tls_load", 8, BFD_RELOC_390_TLS_LOAD },
736 { "tls_gdcall", 10, BFD_RELOC_390_TLS_GDCALL },
737 { "tls_ldcall", 10, BFD_RELOC_390_TLS_LDCALL },
738 { NULL, 0, BFD_RELOC_UNUSED }
739 };
740 struct map_tls *ptr;
741 char *orig_line;
742 char *str;
743 char *ident;
744 int len;
745
746 str = *str_p;
747 if (*str++ != ':')
748 return BFD_RELOC_UNUSED;
749
750 ident = str;
751 while (ISIDNUM (*str))
752 str++;
753 len = str - ident;
754 if (*str++ != ':')
755 return BFD_RELOC_UNUSED;
756
757 orig_line = input_line_pointer;
758 input_line_pointer = str;
759 expression (exp_p);
760 str = input_line_pointer;
761 if (&input_line_pointer != str_p)
762 input_line_pointer = orig_line;
763
764 if (exp_p->X_op != O_symbol)
765 return BFD_RELOC_UNUSED;
766
767 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
768 if (len == ptr->length
769 && strncasecmp (ident, ptr->string, ptr->length) == 0)
770 {
771 /* Found a matching tls suffix. */
772 *str_p = str;
773 return ptr->reloc;
774 }
775 return BFD_RELOC_UNUSED;
776}
777
a85d7ed0 778/* Structure used to hold suffixes. */
07855bec
NC
779typedef enum
780 {
781 ELF_SUFFIX_NONE = 0,
782 ELF_SUFFIX_GOT,
783 ELF_SUFFIX_PLT,
2a19f73f
MS
784 ELF_SUFFIX_GOTENT,
785 ELF_SUFFIX_GOTOFF,
786 ELF_SUFFIX_GOTPLT,
1971b29d
MS
787 ELF_SUFFIX_PLTOFF,
788 ELF_SUFFIX_TLS_GD,
789 ELF_SUFFIX_TLS_GOTIE,
790 ELF_SUFFIX_TLS_IE,
791 ELF_SUFFIX_TLS_LDM,
792 ELF_SUFFIX_TLS_LDO,
793 ELF_SUFFIX_TLS_LE
07855bec
NC
794 }
795elf_suffix_type;
796
797struct map_bfd
798 {
f86f5863 799 const char *string;
07855bec
NC
800 int length;
801 elf_suffix_type suffix;
802 };
a85d7ed0 803
9d654c1c 804
a85d7ed0
NC
805/* Parse @got/@plt/@gotoff. and return the desired relocation. */
806static elf_suffix_type
5a49b8ac 807s390_elf_suffix (char **str_p, expressionS *exp_p)
a85d7ed0 808{
07855bec
NC
809 static struct map_bfd mapping[] =
810 {
a85d7ed0
NC
811 { "got", 3, ELF_SUFFIX_GOT },
812 { "got12", 5, ELF_SUFFIX_GOT },
813 { "plt", 3, ELF_SUFFIX_PLT },
814 { "gotent", 6, ELF_SUFFIX_GOTENT },
2a19f73f
MS
815 { "gotoff", 6, ELF_SUFFIX_GOTOFF },
816 { "gotplt", 6, ELF_SUFFIX_GOTPLT },
817 { "pltoff", 6, ELF_SUFFIX_PLTOFF },
1971b29d
MS
818 { "tlsgd", 5, ELF_SUFFIX_TLS_GD },
819 { "gotntpoff", 9, ELF_SUFFIX_TLS_GOTIE },
820 { "indntpoff", 9, ELF_SUFFIX_TLS_IE },
821 { "tlsldm", 6, ELF_SUFFIX_TLS_LDM },
822 { "dtpoff", 6, ELF_SUFFIX_TLS_LDO },
823 { "ntpoff", 6, ELF_SUFFIX_TLS_LE },
a85d7ed0
NC
824 { NULL, 0, ELF_SUFFIX_NONE }
825 };
826
827 struct map_bfd *ptr;
828 char *str = *str_p;
829 char *ident;
830 int len;
831
832 if (*str++ != '@')
833 return ELF_SUFFIX_NONE;
834
835 ident = str;
3882b010 836 while (ISALNUM (*str))
a85d7ed0
NC
837 str++;
838 len = str - ident;
839
840 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
16a419ba
NC
841 if (len == ptr->length
842 && strncasecmp (ident, ptr->string, ptr->length) == 0)
07855bec
NC
843 {
844 if (exp_p->X_add_number != 0)
845 as_warn (_("identifier+constant@%s means identifier@%s+constant"),
846 ptr->string, ptr->string);
847 /* Now check for identifier@suffix+constant. */
848 if (*str == '-' || *str == '+')
849 {
850 char *orig_line = input_line_pointer;
851 expressionS new_exp;
852
853 input_line_pointer = str;
854 expression (&new_exp);
855
856 switch (new_exp.X_op)
857 {
858 case O_constant: /* X_add_number (a constant expression). */
859 exp_p->X_add_number += new_exp.X_add_number;
860 str = input_line_pointer;
861 break;
862 case O_symbol: /* X_add_symbol + X_add_number. */
863 /* this case is used for e.g. xyz@PLT+.Label. */
864 exp_p->X_add_number += new_exp.X_add_number;
865 exp_p->X_op_symbol = new_exp.X_add_symbol;
866 exp_p->X_op = O_add;
867 str = input_line_pointer;
868 break;
869 case O_uminus: /* (- X_add_symbol) + X_add_number. */
870 /* this case is used for e.g. xyz@PLT-.Label. */
871 exp_p->X_add_number += new_exp.X_add_number;
872 exp_p->X_op_symbol = new_exp.X_add_symbol;
873 exp_p->X_op = O_subtract;
874 str = input_line_pointer;
875 break;
876 default:
877 break;
878 }
879
880 /* If s390_elf_suffix has not been called with
881 &input_line_pointer as first parameter, we have
882 clobbered the input_line_pointer. We have to
883 undo that. */
884 if (&input_line_pointer != str_p)
885 input_line_pointer = orig_line;
a85d7ed0 886 }
07855bec
NC
887 *str_p = str;
888 return ptr->suffix;
a85d7ed0 889 }
a85d7ed0 890
d26cc8a9 891 return ELF_SUFFIX_NONE;
a85d7ed0
NC
892}
893
894/* Structure used to hold a literal pool entry. */
07855bec
NC
895struct s390_lpe
896 {
897 struct s390_lpe *next;
898 expressionS ex;
899 FLONUM_TYPE floatnum; /* used if X_op == O_big && X_add_number <= 0 */
900 LITTLENUM_TYPE bignum[4]; /* used if X_op == O_big && X_add_number > 0 */
901 int nbytes;
902 bfd_reloc_code_real_type reloc;
903 symbolS *sym;
904 };
a85d7ed0
NC
905
906static struct s390_lpe *lpe_free_list = NULL;
907static struct s390_lpe *lpe_list = NULL;
908static struct s390_lpe *lpe_list_tail = NULL;
909static symbolS *lp_sym = NULL;
910static int lp_count = 0;
911static int lpe_count = 0;
912
913static int
5a49b8ac 914s390_exp_compare (expressionS *exp1, expressionS *exp2)
a85d7ed0
NC
915{
916 if (exp1->X_op != exp2->X_op)
917 return 0;
918
07855bec
NC
919 switch (exp1->X_op)
920 {
921 case O_constant: /* X_add_number must be equal. */
922 case O_register:
923 return exp1->X_add_number == exp2->X_add_number;
924
925 case O_big:
198ce79b 926 as_bad (_("Can't handle O_big in s390_exp_compare"));
2b804145 927 return 0;
07855bec
NC
928
929 case O_symbol: /* X_add_symbol & X_add_number must be equal. */
930 case O_symbol_rva:
931 case O_uminus:
932 case O_bit_not:
933 case O_logical_not:
16a419ba
NC
934 return (exp1->X_add_symbol == exp2->X_add_symbol)
935 && (exp1->X_add_number == exp2->X_add_number);
07855bec
NC
936
937 case O_multiply: /* X_add_symbol,X_op_symbol&X_add_number must be equal. */
938 case O_divide:
939 case O_modulus:
940 case O_left_shift:
941 case O_right_shift:
942 case O_bit_inclusive_or:
943 case O_bit_or_not:
944 case O_bit_exclusive_or:
945 case O_bit_and:
946 case O_add:
947 case O_subtract:
948 case O_eq:
949 case O_ne:
950 case O_lt:
951 case O_le:
952 case O_ge:
953 case O_gt:
954 case O_logical_and:
955 case O_logical_or:
16a419ba
NC
956 return (exp1->X_add_symbol == exp2->X_add_symbol)
957 && (exp1->X_op_symbol == exp2->X_op_symbol)
958 && (exp1->X_add_number == exp2->X_add_number);
07855bec 959 default:
98d3f06f
KH
960 return 0;
961 }
a85d7ed0
NC
962}
963
33eaf5de 964/* Test for @lit and if it's present make an entry in the literal pool and
a85d7ed0
NC
965 modify the current expression to be an offset into the literal pool. */
966static elf_suffix_type
5a49b8ac 967s390_lit_suffix (char **str_p, expressionS *exp_p, elf_suffix_type suffix)
a85d7ed0
NC
968{
969 bfd_reloc_code_real_type reloc;
970 char tmp_name[64];
971 char *str = *str_p;
972 char *ident;
973 struct s390_lpe *lpe;
974 int nbytes, len;
975
976 if (*str++ != ':')
977 return suffix; /* No modification. */
198ce79b 978
a85d7ed0
NC
979 /* We look for a suffix of the form "@lit1", "@lit2", "@lit4" or "@lit8". */
980 ident = str;
3882b010 981 while (ISALNUM (*str))
a85d7ed0
NC
982 str++;
983 len = str - ident;
16a419ba
NC
984 if (len != 4 || strncasecmp (ident, "lit", 3) != 0
985 || (ident[3]!='1' && ident[3]!='2' && ident[3]!='4' && ident[3]!='8'))
a85d7ed0
NC
986 return suffix; /* no modification */
987 nbytes = ident[3] - '0';
988
989 reloc = BFD_RELOC_UNUSED;
07855bec
NC
990 if (suffix == ELF_SUFFIX_GOT)
991 {
992 if (nbytes == 2)
993 reloc = BFD_RELOC_390_GOT16;
994 else if (nbytes == 4)
995 reloc = BFD_RELOC_32_GOT_PCREL;
996 else if (nbytes == 8)
997 reloc = BFD_RELOC_390_GOT64;
998 }
999 else if (suffix == ELF_SUFFIX_PLT)
1000 {
1001 if (nbytes == 4)
1002 reloc = BFD_RELOC_390_PLT32;
1003 else if (nbytes == 8)
1004 reloc = BFD_RELOC_390_PLT64;
1005 }
a85d7ed0 1006
07855bec 1007 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
a85d7ed0 1008 as_bad (_("Invalid suffix for literal pool entry"));
a85d7ed0
NC
1009
1010 /* Search the pool if the new entry is a duplicate. */
07855bec
NC
1011 if (exp_p->X_op == O_big)
1012 {
1013 /* Special processing for big numbers. */
1014 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
1015 {
1016 if (lpe->ex.X_op == O_big)
1017 {
1018 if (exp_p->X_add_number <= 0 && lpe->ex.X_add_number <= 0)
1019 {
1020 if (memcmp (&generic_floating_point_number, &lpe->floatnum,
1021 sizeof (FLONUM_TYPE)) == 0)
1022 break;
1023 }
1024 else if (exp_p->X_add_number == lpe->ex.X_add_number)
1025 {
1026 if (memcmp (generic_bignum, lpe->bignum,
1027 sizeof (LITTLENUM_TYPE)*exp_p->X_add_number) == 0)
1028 break;
1029 }
1030 }
1031 }
a85d7ed0 1032 }
07855bec
NC
1033 else
1034 {
1035 /* Processing for 'normal' data types. */
1036 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
16a419ba 1037 if (lpe->nbytes == nbytes && lpe->reloc == reloc
98d3f06f 1038 && s390_exp_compare (exp_p, &lpe->ex) != 0)
07855bec 1039 break;
a85d7ed0 1040 }
07855bec
NC
1041
1042 if (lpe == NULL)
1043 {
1044 /* A new literal. */
1045 if (lpe_free_list != NULL)
1046 {
1047 lpe = lpe_free_list;
1048 lpe_free_list = lpe_free_list->next;
1049 }
a85d7ed0 1050 else
07855bec 1051 {
325801bd 1052 lpe = XNEW (struct s390_lpe);
07855bec
NC
1053 }
1054
1055 lpe->ex = *exp_p;
1056
1057 if (exp_p->X_op == O_big)
1058 {
1059 if (exp_p->X_add_number <= 0)
1060 lpe->floatnum = generic_floating_point_number;
1061 else if (exp_p->X_add_number <= 4)
1062 memcpy (lpe->bignum, generic_bignum,
98d3f06f 1063 exp_p->X_add_number * sizeof (LITTLENUM_TYPE));
07855bec
NC
1064 else
1065 as_bad (_("Big number is too big"));
1066 }
1067
1068 lpe->nbytes = nbytes;
1069 lpe->reloc = reloc;
1070 /* Literal pool name defined ? */
1071 if (lp_sym == NULL)
1072 {
07726851 1073 sprintf (tmp_name, ".L\001%i", lp_count);
98d3f06f 1074 lp_sym = symbol_make (tmp_name);
07855bec 1075 }
a85d7ed0 1076
07855bec 1077 /* Make name for literal pool entry. */
07726851 1078 sprintf (tmp_name, ".L\001%i\002%i", lp_count, lpe_count);
07855bec 1079 lpe_count++;
98d3f06f 1080 lpe->sym = symbol_make (tmp_name);
07855bec
NC
1081
1082 /* Add to literal pool list. */
1083 lpe->next = NULL;
1084 if (lpe_list_tail != NULL)
1085 {
1086 lpe_list_tail->next = lpe;
1087 lpe_list_tail = lpe;
1088 }
1089 else
1090 lpe_list = lpe_list_tail = lpe;
1091 }
198ce79b 1092
a85d7ed0 1093 /* Now change exp_p to the offset into the literal pool.
33eaf5de 1094 That's the expression: .L^Ax^By-.L^Ax */
a85d7ed0
NC
1095 exp_p->X_add_symbol = lpe->sym;
1096 exp_p->X_op_symbol = lp_sym;
1097 exp_p->X_op = O_subtract;
1098 exp_p->X_add_number = 0;
1099
1100 *str_p = str;
1101
1102 /* We change the suffix type to ELF_SUFFIX_NONE, because
1103 the difference of two local labels is just a number. */
1104 return ELF_SUFFIX_NONE;
1105}
1106
1107/* Like normal .long/.short/.word, except support @got, etc.
1108 clobbers input_line_pointer, checks end-of-line. */
1109static void
5a49b8ac 1110s390_elf_cons (int nbytes /* 1=.byte, 2=.word, 4=.long */)
a85d7ed0
NC
1111{
1112 expressionS exp;
1113 elf_suffix_type suffix;
1114
07855bec
NC
1115 if (is_it_end_of_statement ())
1116 {
1117 demand_empty_rest_of_line ();
1118 return;
1119 }
a85d7ed0 1120
07855bec
NC
1121 do
1122 {
1123 expression (&exp);
1124
1125 if (exp.X_op == O_symbol
1126 && *input_line_pointer == '@'
1127 && (suffix = s390_elf_suffix (&input_line_pointer, &exp)) != ELF_SUFFIX_NONE)
1128 {
1129 bfd_reloc_code_real_type reloc;
1130 reloc_howto_type *reloc_howto;
1131 int size;
1132 char *where;
1133
1971b29d
MS
1134 if (nbytes == 2)
1135 {
1136 static bfd_reloc_code_real_type tab2[] =
1137 {
5cfbfc2b
MS
1138 BFD_RELOC_UNUSED, /* ELF_SUFFIX_NONE */
1139 BFD_RELOC_390_GOT16, /* ELF_SUFFIX_GOT */
1140 BFD_RELOC_UNUSED, /* ELF_SUFFIX_PLT */
1141 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTENT */
1142 BFD_RELOC_16_GOTOFF, /* ELF_SUFFIX_GOTOFF */
1143 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTPLT */
1144 BFD_RELOC_390_PLTOFF16, /* ELF_SUFFIX_PLTOFF */
1145 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_GD */
1146 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_GOTIE */
1147 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_IE */
1148 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_LDM */
1149 BFD_RELOC_UNUSED, /* ELF_SUFFIX_TLS_LDO */
1150 BFD_RELOC_UNUSED /* ELF_SUFFIX_TLS_LE */
1971b29d
MS
1151 };
1152 reloc = tab2[suffix];
1153 }
1154 else if (nbytes == 4)
1155 {
1156 static bfd_reloc_code_real_type tab4[] =
1157 {
5cfbfc2b
MS
1158 BFD_RELOC_UNUSED, /* ELF_SUFFIX_NONE */
1159 BFD_RELOC_32_GOT_PCREL, /* ELF_SUFFIX_GOT */
1160 BFD_RELOC_390_PLT32, /* ELF_SUFFIX_PLT */
1161 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTENT */
1162 BFD_RELOC_32_GOTOFF, /* ELF_SUFFIX_GOTOFF */
1163 BFD_RELOC_390_GOTPLT32, /* ELF_SUFFIX_GOTPLT */
1164 BFD_RELOC_390_PLTOFF32, /* ELF_SUFFIX_PLTOFF */
1165 BFD_RELOC_390_TLS_GD32, /* ELF_SUFFIX_TLS_GD */
1166 BFD_RELOC_390_TLS_GOTIE32, /* ELF_SUFFIX_TLS_GOTIE */
1167 BFD_RELOC_390_TLS_IE32, /* ELF_SUFFIX_TLS_IE */
1168 BFD_RELOC_390_TLS_LDM32, /* ELF_SUFFIX_TLS_LDM */
1169 BFD_RELOC_390_TLS_LDO32, /* ELF_SUFFIX_TLS_LDO */
1170 BFD_RELOC_390_TLS_LE32 /* ELF_SUFFIX_TLS_LE */
1971b29d
MS
1171 };
1172 reloc = tab4[suffix];
1173 }
1174 else if (nbytes == 8)
1175 {
1176 static bfd_reloc_code_real_type tab8[] =
1177 {
5cfbfc2b
MS
1178 BFD_RELOC_UNUSED, /* ELF_SUFFIX_NONE */
1179 BFD_RELOC_390_GOT64, /* ELF_SUFFIX_GOT */
1180 BFD_RELOC_390_PLT64, /* ELF_SUFFIX_PLT */
1181 BFD_RELOC_UNUSED, /* ELF_SUFFIX_GOTENT */
1182 BFD_RELOC_390_GOTOFF64, /* ELF_SUFFIX_GOTOFF */
1183 BFD_RELOC_390_GOTPLT64, /* ELF_SUFFIX_GOTPLT */
1184 BFD_RELOC_390_PLTOFF64, /* ELF_SUFFIX_PLTOFF */
1185 BFD_RELOC_390_TLS_GD64, /* ELF_SUFFIX_TLS_GD */
1186 BFD_RELOC_390_TLS_GOTIE64, /* ELF_SUFFIX_TLS_GOTIE */
1187 BFD_RELOC_390_TLS_IE64, /* ELF_SUFFIX_TLS_IE */
1188 BFD_RELOC_390_TLS_LDM64, /* ELF_SUFFIX_TLS_LDM */
1189 BFD_RELOC_390_TLS_LDO64, /* ELF_SUFFIX_TLS_LDO */
1190 BFD_RELOC_390_TLS_LE64 /* ELF_SUFFIX_TLS_LE */
1971b29d
MS
1191 };
1192 reloc = tab8[suffix];
1193 }
07855bec
NC
1194 else
1195 reloc = BFD_RELOC_UNUSED;
1196
1971b29d
MS
1197 if (reloc != BFD_RELOC_UNUSED
1198 && (reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc)))
07855bec 1199 {
07855bec
NC
1200 size = bfd_get_reloc_size (reloc_howto);
1201 if (size > nbytes)
992a06ee
AM
1202 as_bad (ngettext ("%s relocations do not fit in %d byte",
1203 "%s relocations do not fit in %d bytes",
1204 nbytes),
07855bec 1205 reloc_howto->name, nbytes);
07726851 1206 where = frag_more (nbytes);
07855bec 1207 md_number_to_chars (where, 0, size);
198ce79b 1208 /* To make fixup_segment do the pc relative conversion the
b34976b6 1209 pcrel parameter on the fix_new_exp call needs to be FALSE. */
198ce79b 1210 fix_new_exp (frag_now, where - frag_now->fr_literal,
5b7c81bd 1211 size, &exp, false, reloc);
07855bec
NC
1212 }
1213 else
1214 as_bad (_("relocation not applicable"));
1215 }
a85d7ed0 1216 else
07855bec
NC
1217 emit_expr (&exp, (unsigned int) nbytes);
1218 }
1219 while (*input_line_pointer++ == ',');
a85d7ed0 1220
98d3f06f 1221 input_line_pointer--; /* Put terminator back into stream. */
a85d7ed0
NC
1222 demand_empty_rest_of_line ();
1223}
1224
13daa8e4
AK
1225/* Return true if all remaining operands in the opcode with
1226 OPCODE_FLAGS can be skipped. */
5b7c81bd 1227static bool
13daa8e4
AK
1228skip_optargs_p (unsigned int opcode_flags, const unsigned char *opindex_ptr)
1229{
1230 if ((opcode_flags & (S390_INSTR_FLAG_OPTPARM | S390_INSTR_FLAG_OPTPARM2))
1231 && opindex_ptr[0] != '\0'
1232 && opindex_ptr[1] == '\0')
5b7c81bd 1233 return true;
13daa8e4
AK
1234
1235 if ((opcode_flags & S390_INSTR_FLAG_OPTPARM2)
1236 && opindex_ptr[0] != '\0'
1237 && opindex_ptr[1] != '\0'
1238 && opindex_ptr[2] == '\0')
5b7c81bd
AM
1239 return true;
1240 return false;
13daa8e4
AK
1241}
1242
a85d7ed0
NC
1243/* We need to keep a list of fixups. We can't simply generate them as
1244 we go, because that would require us to first create the frag, and
1245 that would screw up references to ``.''. */
1246
1247struct s390_fixup
07855bec
NC
1248 {
1249 expressionS exp;
1250 int opindex;
1251 bfd_reloc_code_real_type reloc;
1252 };
a85d7ed0
NC
1253
1254#define MAX_INSN_FIXUPS (4)
1255
1256/* This routine is called for each instruction to be assembled. */
1257
9d654c1c 1258static char *
5a49b8ac
AM
1259md_gather_operands (char *str,
1260 unsigned char *insn,
1261 const struct s390_opcode *opcode)
a85d7ed0
NC
1262{
1263 struct s390_fixup fixups[MAX_INSN_FIXUPS];
1264 const struct s390_operand *operand;
1265 const unsigned char *opindex_ptr;
1971b29d 1266 expressionS ex;
a85d7ed0
NC
1267 elf_suffix_type suffix;
1268 bfd_reloc_code_real_type reloc;
1269 int skip_optional;
a85d7ed0
NC
1270 char *f;
1271 int fc, i;
1272
98d3f06f
KH
1273 while (ISSPACE (*str))
1274 str++;
a85d7ed0 1275
a85d7ed0
NC
1276 skip_optional = 0;
1277
1278 /* Gather the operands. */
1279 fc = 0;
07855bec
NC
1280 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
1281 {
07855bec
NC
1282 char *hold;
1283
1284 operand = s390_operands + *opindex_ptr;
198ce79b 1285
a09f2586
AK
1286 if ((opcode->flags & (S390_INSTR_FLAG_OPTPARM | S390_INSTR_FLAG_OPTPARM2))
1287 && *str == '\0')
1e2e8c52
AK
1288 {
1289 /* Optional parameters might need to be ORed with a
1290 value so calling s390_insert_operand is needed. */
1291 s390_insert_operand (insn, operand, 0, NULL, 0);
1292 break;
1293 }
1294
07855bec
NC
1295 if (skip_optional && (operand->flags & S390_OPERAND_INDEX))
1296 {
1297 /* We do an early skip. For D(X,B) constructions the index
198ce79b 1298 register is skipped (X is optional). For D(L,B) the base
07855bec
NC
1299 register will be the skipped operand, because L is NOT
1300 optional. */
1301 skip_optional = 0;
1302 continue;
1303 }
198ce79b 1304
07855bec
NC
1305 /* Gather the operand. */
1306 hold = input_line_pointer;
1307 input_line_pointer = str;
1308
98d3f06f
KH
1309 /* Parse the operand. */
1310 if (! register_name (&ex))
d50c498a
JB
1311 {
1312 expression (&ex);
1313 resolve_register (&ex);
1314 }
198ce79b 1315
07855bec
NC
1316 str = input_line_pointer;
1317 input_line_pointer = hold;
198ce79b 1318
07855bec
NC
1319 /* Write the operand to the insn. */
1320 if (ex.X_op == O_illegal)
1321 as_bad (_("illegal operand"));
1322 else if (ex.X_op == O_absent)
5e7c27a6 1323 {
5e7c27a6
MS
1324 if (opindex_ptr[0] == '\0')
1325 break;
1326 as_bad (_("missing operand"));
1327 }
07855bec
NC
1328 else if (ex.X_op == O_register || ex.X_op == O_constant)
1329 {
1330 s390_lit_suffix (&str, &ex, ELF_SUFFIX_NONE);
1331
1332 if (ex.X_op != O_register && ex.X_op != O_constant)
1333 {
1334 /* We need to generate a fixup for the
1335 expression returned by s390_lit_suffix. */
1336 if (fc >= MAX_INSN_FIXUPS)
1337 as_fatal (_("too many fixups"));
1338 fixups[fc].exp = ex;
1339 fixups[fc].opindex = *opindex_ptr;
1340 fixups[fc].reloc = BFD_RELOC_UNUSED;
1341 ++fc;
1342 }
1343 else
1344 {
c6837265
AK
1345 if ((operand->flags & S390_OPERAND_LENGTH)
1346 && ex.X_op != O_constant)
1347 as_fatal (_("invalid length field specified"));
16a419ba
NC
1348 if ((operand->flags & S390_OPERAND_INDEX)
1349 && ex.X_add_number == 0
b34976b6 1350 && warn_areg_zero)
20203fb9 1351 as_warn (_("index register specified but zero"));
16a419ba
NC
1352 if ((operand->flags & S390_OPERAND_BASE)
1353 && ex.X_add_number == 0
b34976b6 1354 && warn_areg_zero)
20203fb9 1355 as_warn (_("base register specified but zero"));
c8fa16ed
AK
1356 if ((operand->flags & S390_OPERAND_GPR)
1357 && (operand->flags & S390_OPERAND_REG_PAIR)
5e4b319c 1358 && (ex.X_add_number & 1))
c8fa16ed
AK
1359 as_fatal (_("odd numbered general purpose register specified as "
1360 "register pair"));
1361 if ((operand->flags & S390_OPERAND_FPR)
1362 && (operand->flags & S390_OPERAND_REG_PAIR)
1363 && ex.X_add_number != 0 && ex.X_add_number != 1
1364 && ex.X_add_number != 4 && ex.X_add_number != 5
1365 && ex.X_add_number != 8 && ex.X_add_number != 9
1366 && ex.X_add_number != 12 && ex.X_add_number != 13)
1367 as_fatal (_("invalid floating point register pair. Valid fp "
1368 "register pair operands are 0, 1, 4, 5, 8, 9, "
1369 "12 or 13."));
07855bec
NC
1370 s390_insert_operand (insn, operand, ex.X_add_number, NULL, 0);
1371 }
1372 }
1373 else
1374 {
1375 suffix = s390_elf_suffix (&str, &ex);
1376 suffix = s390_lit_suffix (&str, &ex, suffix);
1377 reloc = BFD_RELOC_UNUSED;
1378
1379 if (suffix == ELF_SUFFIX_GOT)
1380 {
933fbc29
MS
1381 if ((operand->flags & S390_OPERAND_DISP) &&
1382 (operand->bits == 12))
07855bec 1383 reloc = BFD_RELOC_390_GOT12;
933fbc29
MS
1384 else if ((operand->flags & S390_OPERAND_DISP) &&
1385 (operand->bits == 20))
1386 reloc = BFD_RELOC_390_GOT20;
16a419ba
NC
1387 else if ((operand->flags & S390_OPERAND_SIGNED)
1388 && (operand->bits == 16))
07855bec 1389 reloc = BFD_RELOC_390_GOT16;
16a419ba
NC
1390 else if ((operand->flags & S390_OPERAND_PCREL)
1391 && (operand->bits == 32))
07855bec
NC
1392 reloc = BFD_RELOC_390_GOTENT;
1393 }
1394 else if (suffix == ELF_SUFFIX_PLT)
1395 {
16a419ba 1396 if ((operand->flags & S390_OPERAND_PCREL)
fb798c50
AK
1397 && (operand->bits == 12))
1398 reloc = BFD_RELOC_390_PLT12DBL;
1399 else if ((operand->flags & S390_OPERAND_PCREL)
1400 && (operand->bits == 16))
07855bec 1401 reloc = BFD_RELOC_390_PLT16DBL;
fb798c50
AK
1402 else if ((operand->flags & S390_OPERAND_PCREL)
1403 && (operand->bits == 24))
1404 reloc = BFD_RELOC_390_PLT24DBL;
16a419ba
NC
1405 else if ((operand->flags & S390_OPERAND_PCREL)
1406 && (operand->bits == 32))
07855bec
NC
1407 reloc = BFD_RELOC_390_PLT32DBL;
1408 }
1409 else if (suffix == ELF_SUFFIX_GOTENT)
1410 {
16a419ba
NC
1411 if ((operand->flags & S390_OPERAND_PCREL)
1412 && (operand->bits == 32))
07855bec
NC
1413 reloc = BFD_RELOC_390_GOTENT;
1414 }
2a19f73f
MS
1415 else if (suffix == ELF_SUFFIX_GOTOFF)
1416 {
1417 if ((operand->flags & S390_OPERAND_SIGNED)
1418 && (operand->bits == 16))
1419 reloc = BFD_RELOC_16_GOTOFF;
1420 }
1421 else if (suffix == ELF_SUFFIX_PLTOFF)
1422 {
1423 if ((operand->flags & S390_OPERAND_SIGNED)
1424 && (operand->bits == 16))
1425 reloc = BFD_RELOC_390_PLTOFF16;
1426 }
1427 else if (suffix == ELF_SUFFIX_GOTPLT)
1428 {
1429 if ((operand->flags & S390_OPERAND_DISP)
1430 && (operand->bits == 12))
1431 reloc = BFD_RELOC_390_GOTPLT12;
1432 else if ((operand->flags & S390_OPERAND_SIGNED)
1433 && (operand->bits == 16))
1434 reloc = BFD_RELOC_390_GOTPLT16;
1435 else if ((operand->flags & S390_OPERAND_PCREL)
1436 && (operand->bits == 32))
1437 reloc = BFD_RELOC_390_GOTPLTENT;
1438 }
1971b29d
MS
1439 else if (suffix == ELF_SUFFIX_TLS_GOTIE)
1440 {
1441 if ((operand->flags & S390_OPERAND_DISP)
1442 && (operand->bits == 12))
1443 reloc = BFD_RELOC_390_TLS_GOTIE12;
933fbc29
MS
1444 else if ((operand->flags & S390_OPERAND_DISP)
1445 && (operand->bits == 20))
1446 reloc = BFD_RELOC_390_TLS_GOTIE20;
1971b29d
MS
1447 }
1448 else if (suffix == ELF_SUFFIX_TLS_IE)
1449 {
1450 if ((operand->flags & S390_OPERAND_PCREL)
1451 && (operand->bits == 32))
1452 reloc = BFD_RELOC_390_TLS_IEENT;
1453 }
07855bec
NC
1454
1455 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED)
1456 as_bad (_("invalid operand suffix"));
1457 /* We need to generate a fixup of type 'reloc' for this
1458 expression. */
a85d7ed0
NC
1459 if (fc >= MAX_INSN_FIXUPS)
1460 as_fatal (_("too many fixups"));
1461 fixups[fc].exp = ex;
1462 fixups[fc].opindex = *opindex_ptr;
07855bec 1463 fixups[fc].reloc = reloc;
a85d7ed0 1464 ++fc;
07855bec 1465 }
198ce79b 1466
07855bec
NC
1467 /* Check the next character. The call to expression has advanced
1468 str past any whitespace. */
1469 if (operand->flags & S390_OPERAND_DISP)
1470 {
1471 /* After a displacement a block in parentheses can start. */
1472 if (*str != '(')
1473 {
67c1ffbe 1474 /* Check if parenthesized block can be skipped. If the next
33eaf5de 1475 operand is neither an optional operand nor a base register
07855bec
NC
1476 then we have a syntax error. */
1477 operand = s390_operands + *(++opindex_ptr);
1478 if (!(operand->flags & (S390_OPERAND_INDEX|S390_OPERAND_BASE)))
1479 as_bad (_("syntax error; missing '(' after displacement"));
1480
1481 /* Ok, skip all operands until S390_OPERAND_BASE. */
1482 while (!(operand->flags & S390_OPERAND_BASE))
1483 operand = s390_operands + *(++opindex_ptr);
198ce79b 1484
13daa8e4
AK
1485 if (*str == '\0' && skip_optargs_p (opcode->flags, &opindex_ptr[1]))
1486 continue;
1487
67c1ffbe 1488 /* If there is a next operand it must be separated by a comma. */
07855bec
NC
1489 if (opindex_ptr[1] != '\0')
1490 {
6c639ef9
MS
1491 if (*str != ',')
1492 {
1493 while (opindex_ptr[1] != '\0')
1494 {
1495 operand = s390_operands + *(++opindex_ptr);
33eaf5de 1496 as_bad (_("syntax error; expected ','"));
6c639ef9
MS
1497 break;
1498 }
1499 }
1500 else
1501 str++;
07855bec
NC
1502 }
1503 }
1504 else
1505 {
1506 /* We found an opening parentheses. */
1507 str++;
1508 for (f = str; *f != '\0'; f++)
1509 if (*f == ',' || *f == ')')
1510 break;
1511 /* If there is no comma until the closing parentheses OR
1512 there is a comma right after the opening parentheses,
1513 we have to skip optional operands. */
1514 if (*f == ',' && f == str)
1515 {
1516 /* comma directly after '(' ? */
1517 skip_optional = 1;
1518 str++;
1519 }
1520 else
1521 skip_optional = (*f != ',');
1522 }
1523 }
1524 else if (operand->flags & S390_OPERAND_BASE)
1525 {
33eaf5de 1526 /* After the base register the parenthesised block ends. */
07855bec
NC
1527 if (*str++ != ')')
1528 as_bad (_("syntax error; missing ')' after base register"));
1529 skip_optional = 0;
f47998d6 1530
13daa8e4 1531 if (*str == '\0' && skip_optargs_p (opcode->flags, &opindex_ptr[1]))
f47998d6
AK
1532 continue;
1533
67c1ffbe 1534 /* If there is a next operand it must be separated by a comma. */
07855bec
NC
1535 if (opindex_ptr[1] != '\0')
1536 {
6c639ef9
MS
1537 if (*str != ',')
1538 {
1539 while (opindex_ptr[1] != '\0')
1540 {
1541 operand = s390_operands + *(++opindex_ptr);
33eaf5de 1542 as_bad (_("syntax error; expected ','"));
6c639ef9
MS
1543 break;
1544 }
1545 }
1546 else
1547 str++;
07855bec
NC
1548 }
1549 }
1550 else
1551 {
1552 /* We can find an 'early' closing parentheses in e.g. D(L) instead
1553 of D(L,B). In this case the base register has to be skipped. */
1554 if (*str == ')')
1555 {
1556 operand = s390_operands + *(++opindex_ptr);
1557
1558 if (!(operand->flags & S390_OPERAND_BASE))
1559 as_bad (_("syntax error; ')' not allowed here"));
1560 str++;
1561 }
1e2e8c52 1562
13daa8e4 1563 if (*str == '\0' && skip_optargs_p (opcode->flags, &opindex_ptr[1]))
1e2e8c52
AK
1564 continue;
1565
67c1ffbe 1566 /* If there is a next operand it must be separated by a comma. */
07855bec
NC
1567 if (opindex_ptr[1] != '\0')
1568 {
6c639ef9
MS
1569 if (*str != ',')
1570 {
1571 while (opindex_ptr[1] != '\0')
1572 {
1573 operand = s390_operands + *(++opindex_ptr);
33eaf5de 1574 as_bad (_("syntax error; expected ','"));
6c639ef9
MS
1575 break;
1576 }
1577 }
1578 else
1579 str++;
07855bec 1580 }
a85d7ed0 1581 }
a85d7ed0 1582 }
a85d7ed0 1583
3882b010 1584 while (ISSPACE (*str))
a85d7ed0
NC
1585 ++str;
1586
1971b29d
MS
1587 /* Check for tls instruction marker. */
1588 reloc = s390_tls_suffix (&str, &ex);
1589 if (reloc != BFD_RELOC_UNUSED)
1590 {
1591 /* We need to generate a fixup of type 'reloc' for this
1592 instruction. */
1593 if (fc >= MAX_INSN_FIXUPS)
1594 as_fatal (_("too many fixups"));
1595 fixups[fc].exp = ex;
1596 fixups[fc].opindex = -1;
1597 fixups[fc].reloc = reloc;
1598 ++fc;
1599 }
1600
07855bec
NC
1601 if (*str != '\0')
1602 {
1603 char *linefeed;
a85d7ed0 1604
07726851 1605 if ((linefeed = strchr (str, '\n')) != NULL)
07855bec
NC
1606 *linefeed = '\0';
1607 as_bad (_("junk at end of line: `%s'"), str);
1608 if (linefeed != NULL)
1609 *linefeed = '\n';
1610 }
a85d7ed0
NC
1611
1612 /* Write out the instruction. */
1613 f = frag_more (opcode->oplen);
07855bec 1614 memcpy (f, insn, opcode->oplen);
8f5b2891 1615 dwarf2_emit_insn (opcode->oplen);
a85d7ed0
NC
1616
1617 /* Create any fixups. At this point we do not use a
1618 bfd_reloc_code_real_type, but instead just use the
1619 BFD_RELOC_UNUSED plus the operand index. This lets us easily
1620 handle fixups for any operand type, although that is admittedly
1621 not a very exciting feature. We pick a BFD reloc type in
55cf6793 1622 md_apply_fix. */
07855bec
NC
1623 for (i = 0; i < fc; i++)
1624 {
0cfd6cff 1625 fixS *fixP;
1971b29d
MS
1626
1627 if (fixups[i].opindex < 0)
1628 {
1629 /* Create tls instruction marker relocation. */
1630 fix_new_exp (frag_now, f - frag_now->fr_literal, opcode->oplen,
1631 &fixups[i].exp, 0, fixups[i].reloc);
1632 continue;
1633 }
1634
07855bec 1635 operand = s390_operands + fixups[i].opindex;
a85d7ed0 1636
07855bec
NC
1637 if (fixups[i].reloc != BFD_RELOC_UNUSED)
1638 {
1639 reloc_howto_type *reloc_howto;
07855bec 1640 int size;
198ce79b 1641
07855bec
NC
1642 reloc_howto = bfd_reloc_type_lookup (stdoutput, fixups[i].reloc);
1643 if (!reloc_howto)
1644 abort ();
198ce79b 1645
fb798c50 1646 size = ((reloc_howto->bitsize - 1) / 8) + 1;
07855bec
NC
1647
1648 if (size < 1 || size > 4)
1649 abort ();
198ce79b
AJ
1650
1651 fixP = fix_new_exp (frag_now,
1652 f - frag_now->fr_literal + (operand->shift/8),
07855bec
NC
1653 size, &fixups[i].exp, reloc_howto->pc_relative,
1654 fixups[i].reloc);
1655 /* Turn off overflow checking in fixup_segment. This is necessary
1656 because fixup_segment will signal an overflow for large 4 byte
1657 quantities for GOT12 relocations. */
16a419ba 1658 if ( fixups[i].reloc == BFD_RELOC_390_GOT12
933fbc29 1659 || fixups[i].reloc == BFD_RELOC_390_GOT20
16a419ba 1660 || fixups[i].reloc == BFD_RELOC_390_GOT16)
07855bec 1661 fixP->fx_no_overflow = 1;
feb4bea7
AK
1662
1663 if (operand->flags & S390_OPERAND_PCREL)
1664 fixP->fx_pcrel_adjust = operand->shift / 8;
07855bec
NC
1665 }
1666 else
0cfd6cff
IL
1667 fixP = fix_new_exp (frag_now, f - frag_now->fr_literal, 4,
1668 &fixups[i].exp,
1669 (operand->flags & S390_OPERAND_PCREL) != 0,
1670 ((bfd_reloc_code_real_type)
1671 (fixups[i].opindex + (int) BFD_RELOC_UNUSED)));
1672 /* s390_insert_operand () does the range checking. */
1673 if (operand->flags & S390_OPERAND_PCREL)
1674 fixP->fx_no_overflow = 1;
07855bec 1675 }
a85d7ed0
NC
1676 return str;
1677}
1678
1679/* This routine is called for each instruction to be assembled. */
1680
1681void
5a49b8ac 1682md_assemble (char *str)
a85d7ed0
NC
1683{
1684 const struct s390_opcode *opcode;
1685 unsigned char insn[6];
1686 char *s;
1687
1688 /* Get the opcode. */
3882b010 1689 for (s = str; *s != '\0' && ! ISSPACE (*s); s++)
a85d7ed0
NC
1690 ;
1691 if (*s != '\0')
1692 *s++ = '\0';
1693
1694 /* Look up the opcode in the hash table. */
629310ab 1695 opcode = (struct s390_opcode *) str_hash_find (s390_opcode_hash, str);
07855bec
NC
1696 if (opcode == (const struct s390_opcode *) NULL)
1697 {
1698 as_bad (_("Unrecognized opcode: `%s'"), str);
1699 return;
1700 }
37a58793
MS
1701 else if (!(opcode->modes & current_mode_mask))
1702 {
20203fb9 1703 as_bad (_("Opcode %s not available in this mode"), str);
37a58793
MS
1704 return;
1705 }
07726851 1706 memcpy (insn, opcode->opcode, sizeof (insn));
07855bec 1707 md_gather_operands (s, insn, opcode);
a85d7ed0
NC
1708}
1709
1710#ifndef WORKING_DOT_WORD
1711/* Handle long and short jumps. We don't support these */
1712void
1713md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
1714 char *ptr;
1715 addressT from_addr, to_addr;
1716 fragS *frag;
1717 symbolS *to_symbol;
1718{
1719 abort ();
1720}
1721
1722void
1723md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
1724 char *ptr;
1725 addressT from_addr, to_addr;
1726 fragS *frag;
1727 symbolS *to_symbol;
1728{
1729 abort ();
1730}
1731#endif
1732
1733void
5a49b8ac 1734s390_bss (int ignore ATTRIBUTE_UNUSED)
a85d7ed0
NC
1735{
1736 /* We don't support putting frags in the BSS segment, we fake it
1737 by marking in_bss, then looking at s_skip for clues. */
1738
1739 subseg_set (bss_section, 0);
1740 demand_empty_rest_of_line ();
1741}
1742
1743/* Pseudo-op handling. */
1744
1745void
5a49b8ac 1746s390_insn (int ignore ATTRIBUTE_UNUSED)
a85d7ed0
NC
1747{
1748 expressionS exp;
1749 const struct s390_opcode *opformat;
1750 unsigned char insn[6];
1751 char *s;
1752
1753 /* Get the opcode format. */
1754 s = input_line_pointer;
3882b010 1755 while (*s != '\0' && *s != ',' && ! ISSPACE (*s))
a85d7ed0
NC
1756 s++;
1757 if (*s != ',')
1758 as_bad (_("Invalid .insn format\n"));
1759 *s++ = '\0';
1760
1761 /* Look up the opcode in the hash table. */
1762 opformat = (struct s390_opcode *)
629310ab 1763 str_hash_find (s390_opformat_hash, input_line_pointer);
07855bec
NC
1764 if (opformat == (const struct s390_opcode *) NULL)
1765 {
1766 as_bad (_("Unrecognized opcode format: `%s'"), input_line_pointer);
1767 return;
1768 }
a85d7ed0
NC
1769 input_line_pointer = s;
1770 expression (&exp);
07855bec
NC
1771 if (exp.X_op == O_constant)
1772 {
1d6d62a4 1773 if ( ( opformat->oplen == 6
1d6d62a4
MS
1774 && (addressT) exp.X_add_number < (1ULL << 48))
1775 || ( opformat->oplen == 4
1d6d62a4
MS
1776 && (addressT) exp.X_add_number < (1ULL << 32))
1777 || ( opformat->oplen == 2
1d6d62a4 1778 && (addressT) exp.X_add_number < (1ULL << 16)))
2132e3a3 1779 md_number_to_chars ((char *) insn, exp.X_add_number, opformat->oplen);
07855bec 1780 else
07726851 1781 as_bad (_("Invalid .insn format\n"));
07855bec
NC
1782 }
1783 else if (exp.X_op == O_big)
1784 {
16a419ba
NC
1785 if (exp.X_add_number > 0
1786 && opformat->oplen == 6
1787 && generic_bignum[3] == 0)
07855bec 1788 {
2132e3a3
AM
1789 md_number_to_chars ((char *) insn, generic_bignum[2], 2);
1790 md_number_to_chars ((char *) &insn[2], generic_bignum[1], 2);
1791 md_number_to_chars ((char *) &insn[4], generic_bignum[0], 2);
07855bec
NC
1792 }
1793 else
07726851 1794 as_bad (_("Invalid .insn format\n"));
07855bec
NC
1795 }
1796 else
a85d7ed0 1797 as_bad (_("second operand of .insn not a constant\n"));
a85d7ed0 1798
b6849f55
NC
1799 if (strcmp (opformat->name, "e") != 0 && *input_line_pointer++ != ',')
1800 as_bad (_("missing comma after insn constant\n"));
98d3f06f 1801
07726851 1802 if ((s = strchr (input_line_pointer, '\n')) != NULL)
a85d7ed0 1803 *s = '\0';
b6849f55
NC
1804 input_line_pointer = md_gather_operands (input_line_pointer, insn,
1805 opformat);
a85d7ed0
NC
1806 if (s != NULL)
1807 *s = '\n';
1808 demand_empty_rest_of_line ();
1809}
1810
1811/* The .byte pseudo-op. This is similar to the normal .byte
1812 pseudo-op, but it can also take a single ASCII string. */
1813
1814static void
5a49b8ac 1815s390_byte (int ignore ATTRIBUTE_UNUSED)
a85d7ed0
NC
1816{
1817 if (*input_line_pointer != '\"')
1818 {
1819 cons (1);
1820 return;
1821 }
1822
1823 /* Gather characters. A real double quote is doubled. Unusual
1824 characters are not permitted. */
1825 ++input_line_pointer;
1826 while (1)
1827 {
1828 char c;
1829
1830 c = *input_line_pointer++;
1831
1832 if (c == '\"')
1833 {
1834 if (*input_line_pointer != '\"')
1835 break;
1836 ++input_line_pointer;
1837 }
1838
1839 FRAG_APPEND_1_CHAR (c);
1840 }
1841
1842 demand_empty_rest_of_line ();
1843}
1844
1845/* The .ltorg pseudo-op.This emits all literals defined since the last
198ce79b 1846 .ltorg or the invocation of gas. Literals are defined with the
a85d7ed0
NC
1847 @lit suffix. */
1848
1849static void
5a49b8ac 1850s390_literals (int ignore ATTRIBUTE_UNUSED)
a85d7ed0
NC
1851{
1852 struct s390_lpe *lpe;
1853
1854 if (lp_sym == NULL || lpe_count == 0)
98d3f06f 1855 return; /* Nothing to be done. */
a85d7ed0
NC
1856
1857 /* Emit symbol for start of literal pool. */
1858 S_SET_SEGMENT (lp_sym, now_seg);
1859 S_SET_VALUE (lp_sym, (valueT) frag_now_fix ());
8d1015a8 1860 symbol_set_frag (lp_sym, frag_now);
a85d7ed0 1861
07855bec
NC
1862 while (lpe_list)
1863 {
1864 lpe = lpe_list;
1865 lpe_list = lpe_list->next;
1866 S_SET_SEGMENT (lpe->sym, now_seg);
1867 S_SET_VALUE (lpe->sym, (valueT) frag_now_fix ());
8d1015a8 1868 symbol_set_frag (lpe->sym, frag_now);
07855bec
NC
1869
1870 /* Emit literal pool entry. */
1871 if (lpe->reloc != BFD_RELOC_UNUSED)
1872 {
198ce79b 1873 reloc_howto_type *reloc_howto =
07855bec
NC
1874 bfd_reloc_type_lookup (stdoutput, lpe->reloc);
1875 int size = bfd_get_reloc_size (reloc_howto);
1876 char *where;
1877
1878 if (size > lpe->nbytes)
992a06ee
AM
1879 as_bad (ngettext ("%s relocations do not fit in %d byte",
1880 "%s relocations do not fit in %d bytes",
1881 lpe->nbytes),
07855bec 1882 reloc_howto->name, lpe->nbytes);
07726851 1883 where = frag_more (lpe->nbytes);
07855bec
NC
1884 md_number_to_chars (where, 0, size);
1885 fix_new_exp (frag_now, where - frag_now->fr_literal,
1886 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
1887 }
1888 else
1889 {
1890 if (lpe->ex.X_op == O_big)
1891 {
1892 if (lpe->ex.X_add_number <= 0)
1893 generic_floating_point_number = lpe->floatnum;
1894 else
1895 memcpy (generic_bignum, lpe->bignum,
98d3f06f 1896 lpe->ex.X_add_number * sizeof (LITTLENUM_TYPE));
07855bec
NC
1897 }
1898 emit_expr (&lpe->ex, lpe->nbytes);
1899 }
a85d7ed0 1900
07855bec
NC
1901 lpe->next = lpe_free_list;
1902 lpe_free_list = lpe;
1903 }
a85d7ed0
NC
1904 lpe_list_tail = NULL;
1905 lp_sym = NULL;
1906 lp_count++;
1907 lpe_count = 0;
1908}
1909
7ecc513a
DV
1910#define MAX_HISTORY 100
1911
f9a6a8f0 1912/* The .machine pseudo op allows one to switch to a different CPU level in
902cc293 1913 the asm listing. The current CPU setting can be stored on a stack
1dd53816 1914 with .machine push and restored with .machine pop. */
902cc293
AK
1915
1916static void
1917s390_machine (int ignore ATTRIBUTE_UNUSED)
1918{
1919 char *cpu_string;
325801bd 1920 static struct cpu_history
7ecc513a
DV
1921 {
1922 unsigned int cpu;
1923 unsigned int flags;
1924 } *cpu_history;
902cc293
AK
1925 static int curr_hist;
1926
1927 SKIP_WHITESPACE ();
1928
1929 if (*input_line_pointer == '"')
1930 {
1931 int len;
1932 cpu_string = demand_copy_C_string (&len);
1933 }
1934 else
1935 {
1936 char c;
7ecc513a
DV
1937
1938 cpu_string = input_line_pointer;
1939 do
1940 {
1941 char * str;
1942
1943 c = get_symbol_name (&str);
1944 c = restore_line_pointer (c);
1945 if (c == '+')
1946 ++ input_line_pointer;
1947 }
1948 while (c == '+');
1949
1950 c = *input_line_pointer;
1951 *input_line_pointer = 0;
902cc293 1952 cpu_string = xstrdup (cpu_string);
d02603dc 1953 (void) restore_line_pointer (c);
902cc293
AK
1954 }
1955
1956 if (cpu_string != NULL)
1957 {
7ecc513a
DV
1958 unsigned int new_cpu = current_cpu;
1959 unsigned int new_flags = current_flags;
902cc293
AK
1960
1961 if (strcmp (cpu_string, "push") == 0)
1962 {
1963 if (cpu_history == NULL)
325801bd 1964 cpu_history = XNEWVEC (struct cpu_history, MAX_HISTORY);
902cc293
AK
1965
1966 if (curr_hist >= MAX_HISTORY)
1967 as_bad (_(".machine stack overflow"));
1968 else
7ecc513a
DV
1969 {
1970 cpu_history[curr_hist].cpu = current_cpu;
1971 cpu_history[curr_hist].flags = current_flags;
1972 curr_hist++;
1973 }
902cc293
AK
1974 }
1975 else if (strcmp (cpu_string, "pop") == 0)
1976 {
1977 if (curr_hist <= 0)
1978 as_bad (_(".machine stack underflow"));
1979 else
7ecc513a
DV
1980 {
1981 curr_hist--;
1982 new_cpu = cpu_history[curr_hist].cpu;
1983 new_flags = cpu_history[curr_hist].flags;
1984 }
902cc293 1985 }
902cc293 1986 else
5b7c81bd 1987 new_cpu = s390_parse_cpu (cpu_string, &new_flags, true);
7ecc513a
DV
1988
1989 if (new_cpu == S390_OPCODE_MAXCPU)
902cc293
AK
1990 as_bad (_("invalid machine `%s'"), cpu_string);
1991
7ecc513a
DV
1992 if (new_cpu != current_cpu || new_flags != current_flags)
1993 {
1994 current_cpu = new_cpu;
1995 current_flags = new_flags;
1996 s390_setup_opcodes ();
1997 }
902cc293
AK
1998 }
1999
2000 demand_empty_rest_of_line ();
2001}
2002
f9a6a8f0 2003/* The .machinemode pseudo op allows one to switch to a different
1dd53816
AK
2004 architecture mode in the asm listing. The current architecture
2005 mode setting can be stored on a stack with .machinemode push and
2006 restored with .machinemode pop. */
2007
2008static void
2009s390_machinemode (int ignore ATTRIBUTE_UNUSED)
2010{
2011 char *mode_string;
1dd53816
AK
2012 static unsigned int *mode_history;
2013 static int curr_hist;
2014
2015 SKIP_WHITESPACE ();
2016
d02603dc
NC
2017 {
2018 char c;
2019
2020 c = get_symbol_name (&mode_string);
2021 mode_string = xstrdup (mode_string);
2022 (void) restore_line_pointer (c);
2023 }
1dd53816
AK
2024
2025 if (mode_string != NULL)
2026 {
2027 unsigned int old_mode_mask = current_mode_mask;
2028 char *p;
2029
2030 for (p = mode_string; *p != 0; p++)
2031 *p = TOLOWER (*p);
2032
2033 if (strcmp (mode_string, "push") == 0)
2034 {
2035 if (mode_history == NULL)
325801bd 2036 mode_history = XNEWVEC (unsigned int, MAX_HISTORY);
1dd53816
AK
2037
2038 if (curr_hist >= MAX_HISTORY)
2039 as_bad (_(".machinemode stack overflow"));
2040 else
2041 mode_history[curr_hist++] = current_mode_mask;
2042 }
2043 else if (strcmp (mode_string, "pop") == 0)
2044 {
2045 if (curr_hist <= 0)
2046 as_bad (_(".machinemode stack underflow"));
2047 else
2048 current_mode_mask = mode_history[--curr_hist];
2049 }
2050 else
2051 {
2052 if (strcmp (mode_string, "esa") == 0)
2053 current_mode_mask = 1 << S390_OPCODE_ESA;
2054 else if (strcmp (mode_string, "zarch") == 0)
2055 {
2056 if (s390_arch_size == 32)
5b7c81bd 2057 set_highgprs_p = true;
1dd53816
AK
2058 current_mode_mask = 1 << S390_OPCODE_ZARCH;
2059 }
2060 else if (strcmp (mode_string, "zarch_nohighgprs") == 0)
2061 current_mode_mask = 1 << S390_OPCODE_ZARCH;
2062 else
7ecc513a 2063 as_bad (_("invalid machine mode `%s'"), mode_string);
1dd53816
AK
2064 }
2065
2066 if (current_mode_mask != old_mode_mask)
2067 s390_setup_opcodes ();
2068 }
2069
2070 demand_empty_rest_of_line ();
2071}
2072
7ecc513a
DV
2073#undef MAX_HISTORY
2074
6d4af3c2 2075const char *
499ac353 2076md_atof (int type, char *litp, int *sizep)
a85d7ed0 2077{
5b7c81bd 2078 return ieee_md_atof (type, litp, sizep, true);
a85d7ed0
NC
2079}
2080
2081/* Align a section (I don't know why this is machine dependent). */
2082
2083valueT
5a49b8ac 2084md_section_align (asection *seg, valueT addr)
a85d7ed0 2085{
fd361982 2086 int align = bfd_section_alignment (seg);
a85d7ed0 2087
8d3842cd 2088 return ((addr + (1 << align) - 1) & -(1 << align));
a85d7ed0
NC
2089}
2090
2091/* We don't have any form of relaxing. */
2092
2093int
5a49b8ac
AM
2094md_estimate_size_before_relax (fragS *fragp ATTRIBUTE_UNUSED,
2095 asection *seg ATTRIBUTE_UNUSED)
a85d7ed0
NC
2096{
2097 abort ();
2098 return 0;
2099}
2100
2101/* Convert a machine dependent frag. We never generate these. */
2102
2103void
5a49b8ac
AM
2104md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
2105 asection *sec ATTRIBUTE_UNUSED,
2106 fragS *fragp ATTRIBUTE_UNUSED)
a85d7ed0
NC
2107{
2108 abort ();
2109}
2110
2111symbolS *
5a49b8ac 2112md_undefined_symbol (char *name)
a85d7ed0 2113{
98d3f06f 2114 if (*name == '_' && *(name + 1) == 'G'
07726851 2115 && strcmp (name, "_GLOBAL_OFFSET_TABLE_") == 0)
98d3f06f
KH
2116 {
2117 if (!GOT_symbol)
2118 {
2119 if (symbol_find (name))
2120 as_bad (_("GOT already in symbol table"));
2121 GOT_symbol = symbol_new (name, undefined_section,
e01e1cee 2122 &zero_address_frag, 0);
98d3f06f
KH
2123 }
2124 return GOT_symbol;
2125 }
a85d7ed0
NC
2126 return 0;
2127}
2128
2129/* Functions concerning relocs. */
2130
2131/* The location from which a PC relative jump should be calculated,
2132 given a PC relative reloc. */
2133
2134long
5a49b8ac 2135md_pcrel_from_section (fixS *fixp, segT sec ATTRIBUTE_UNUSED)
a85d7ed0
NC
2136{
2137 return fixp->fx_frag->fr_address + fixp->fx_where;
2138}
2139
2140/* Here we decide which fixups can be adjusted to make them relative to
2141 the beginning of the section instead of the symbol. Basically we need
2142 to make sure that the dynamic relocations are done correctly, so in
2143 some cases we force the original symbol to be used. */
2144int
5a49b8ac 2145tc_s390_fix_adjustable (fixS *fixP)
a85d7ed0 2146{
dc1e4d6d
NC
2147 /* Don't adjust pc-relative references to merge sections. */
2148 if (fixP->fx_pcrel
2149 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0)
0a00dd48 2150 return 0;
dc1e4d6d 2151
a85d7ed0 2152 /* adjust_reloc_syms doesn't know about the GOT. */
2a19f73f
MS
2153 if ( fixP->fx_r_type == BFD_RELOC_16_GOTOFF
2154 || fixP->fx_r_type == BFD_RELOC_32_GOTOFF
2155 || fixP->fx_r_type == BFD_RELOC_390_GOTOFF64
2156 || fixP->fx_r_type == BFD_RELOC_390_PLTOFF16
2157 || fixP->fx_r_type == BFD_RELOC_390_PLTOFF32
2158 || fixP->fx_r_type == BFD_RELOC_390_PLTOFF64
fb798c50 2159 || fixP->fx_r_type == BFD_RELOC_390_PLT12DBL
a85d7ed0 2160 || fixP->fx_r_type == BFD_RELOC_390_PLT16DBL
fb798c50 2161 || fixP->fx_r_type == BFD_RELOC_390_PLT24DBL
a85d7ed0
NC
2162 || fixP->fx_r_type == BFD_RELOC_390_PLT32
2163 || fixP->fx_r_type == BFD_RELOC_390_PLT32DBL
2164 || fixP->fx_r_type == BFD_RELOC_390_PLT64
2165 || fixP->fx_r_type == BFD_RELOC_390_GOT12
933fbc29 2166 || fixP->fx_r_type == BFD_RELOC_390_GOT20
a85d7ed0
NC
2167 || fixP->fx_r_type == BFD_RELOC_390_GOT16
2168 || fixP->fx_r_type == BFD_RELOC_32_GOT_PCREL
2169 || fixP->fx_r_type == BFD_RELOC_390_GOT64
07855bec 2170 || fixP->fx_r_type == BFD_RELOC_390_GOTENT
2a19f73f
MS
2171 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT12
2172 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT16
933fbc29 2173 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT20
2a19f73f
MS
2174 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT32
2175 || fixP->fx_r_type == BFD_RELOC_390_GOTPLT64
2176 || fixP->fx_r_type == BFD_RELOC_390_GOTPLTENT
1971b29d
MS
2177 || fixP->fx_r_type == BFD_RELOC_390_TLS_LOAD
2178 || fixP->fx_r_type == BFD_RELOC_390_TLS_GDCALL
2179 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDCALL
2180 || fixP->fx_r_type == BFD_RELOC_390_TLS_GD32
2181 || fixP->fx_r_type == BFD_RELOC_390_TLS_GD64
2182 || fixP->fx_r_type == BFD_RELOC_390_TLS_GOTIE12
933fbc29 2183 || fixP->fx_r_type == BFD_RELOC_390_TLS_GOTIE20
1971b29d
MS
2184 || fixP->fx_r_type == BFD_RELOC_390_TLS_GOTIE32
2185 || fixP->fx_r_type == BFD_RELOC_390_TLS_GOTIE64
2186 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDM32
2187 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDM64
2188 || fixP->fx_r_type == BFD_RELOC_390_TLS_IE32
2189 || fixP->fx_r_type == BFD_RELOC_390_TLS_IE64
2190 || fixP->fx_r_type == BFD_RELOC_390_TLS_IEENT
2191 || fixP->fx_r_type == BFD_RELOC_390_TLS_LE32
2192 || fixP->fx_r_type == BFD_RELOC_390_TLS_LE64
2193 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDO32
2194 || fixP->fx_r_type == BFD_RELOC_390_TLS_LDO64
2195 || fixP->fx_r_type == BFD_RELOC_390_TLS_DTPMOD
2196 || fixP->fx_r_type == BFD_RELOC_390_TLS_DTPOFF
2197 || fixP->fx_r_type == BFD_RELOC_390_TLS_TPOFF
a85d7ed0
NC
2198 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
2199 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
2200 return 0;
2201 return 1;
2202}
2203
b8edc45c 2204/* Return true if we must always emit a reloc for a type and false if
c03099e6 2205 there is some hope of resolving it at assembly time. */
b8edc45c 2206int
5a49b8ac 2207tc_s390_force_relocation (struct fix *fixp)
b8edc45c
MS
2208{
2209 /* Ensure we emit a relocation for every reference to the global
2210 offset table or to the procedure link table. */
2211 switch (fixp->fx_r_type)
2212 {
2213 case BFD_RELOC_390_GOT12:
933fbc29 2214 case BFD_RELOC_390_GOT20:
b8edc45c
MS
2215 case BFD_RELOC_32_GOT_PCREL:
2216 case BFD_RELOC_32_GOTOFF:
2a19f73f
MS
2217 case BFD_RELOC_390_GOTOFF64:
2218 case BFD_RELOC_390_PLTOFF16:
2219 case BFD_RELOC_390_PLTOFF32:
2220 case BFD_RELOC_390_PLTOFF64:
b8edc45c
MS
2221 case BFD_RELOC_390_GOTPC:
2222 case BFD_RELOC_390_GOT16:
2223 case BFD_RELOC_390_GOTPCDBL:
2224 case BFD_RELOC_390_GOT64:
2225 case BFD_RELOC_390_GOTENT:
2226 case BFD_RELOC_390_PLT32:
fb798c50 2227 case BFD_RELOC_390_PLT12DBL:
b8edc45c 2228 case BFD_RELOC_390_PLT16DBL:
fb798c50 2229 case BFD_RELOC_390_PLT24DBL:
b8edc45c
MS
2230 case BFD_RELOC_390_PLT32DBL:
2231 case BFD_RELOC_390_PLT64:
2a19f73f
MS
2232 case BFD_RELOC_390_GOTPLT12:
2233 case BFD_RELOC_390_GOTPLT16:
933fbc29 2234 case BFD_RELOC_390_GOTPLT20:
2a19f73f
MS
2235 case BFD_RELOC_390_GOTPLT32:
2236 case BFD_RELOC_390_GOTPLT64:
2237 case BFD_RELOC_390_GOTPLTENT:
b8edc45c
MS
2238 return 1;
2239 default:
5bb3703f 2240 break;
b8edc45c 2241 }
a161fe53 2242
ae6063d4 2243 return generic_force_reloc (fixp);
b8edc45c
MS
2244}
2245
a85d7ed0
NC
2246/* Apply a fixup to the object code. This is called for all the
2247 fixups we generated by the call to fix_new_exp, above. In the call
2248 above we used a reloc code which was the largest legal reloc code
2249 plus the operand index. Here we undo that to recover the operand
2250 index. At this point all symbol values should be fully resolved,
2251 and we attempt to completely resolve the reloc. If we can not do
2252 that, we determine the correct reloc code and put it back in the
2253 fixup. */
2254
94f592af 2255void
5a49b8ac 2256md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
a85d7ed0
NC
2257{
2258 char *where;
98d3f06f 2259 valueT value = *valP;
a85d7ed0 2260
94f592af 2261 where = fixP->fx_frag->fr_literal + fixP->fx_where;
a85d7ed0 2262
98d3f06f 2263 if (fixP->fx_subsy != NULL)
4bf09429 2264 as_bad_subtract (fixP);
98d3f06f
KH
2265
2266 if (fixP->fx_addsy != NULL)
07855bec 2267 {
94f592af
NC
2268 if (fixP->fx_pcrel)
2269 value += fixP->fx_frag->fr_address + fixP->fx_where;
07855bec
NC
2270 }
2271 else
94f592af 2272 fixP->fx_done = 1;
a85d7ed0 2273
94f592af 2274 if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
07855bec
NC
2275 {
2276 const struct s390_operand *operand;
2277 int opindex;
198ce79b 2278
94f592af 2279 opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
07855bec 2280 operand = &s390_operands[opindex];
198ce79b 2281
94f592af 2282 if (fixP->fx_done)
07855bec
NC
2283 {
2284 /* Insert the fully resolved operand value. */
2132e3a3
AM
2285 s390_insert_operand ((unsigned char *) where, operand,
2286 (offsetT) value, fixP->fx_file, fixP->fx_line);
94f592af 2287 return;
07855bec 2288 }
198ce79b 2289
07855bec
NC
2290 /* Determine a BFD reloc value based on the operand information.
2291 We are only prepared to turn a few of the operands into
2292 relocs. */
94f592af 2293 fixP->fx_offset = value;
b5c37946 2294 if (operand->bits == 12 && operand->shift == 20 && !fixP->fx_pcrel)
07855bec 2295 {
94f592af
NC
2296 fixP->fx_size = 2;
2297 fixP->fx_where += 2;
2298 fixP->fx_r_type = BFD_RELOC_390_12;
07855bec 2299 }
b5c37946 2300 else if (operand->bits == 12 && operand->shift == 36 && !fixP->fx_pcrel)
07855bec 2301 {
94f592af
NC
2302 fixP->fx_size = 2;
2303 fixP->fx_where += 4;
2304 fixP->fx_r_type = BFD_RELOC_390_12;
07855bec 2305 }
b5c37946 2306 else if (operand->bits == 20 && operand->shift == 20 && !fixP->fx_pcrel)
933fbc29 2307 {
3d6e0c01 2308 fixP->fx_size = 4;
933fbc29
MS
2309 fixP->fx_where += 2;
2310 fixP->fx_r_type = BFD_RELOC_390_20;
2311 }
b5c37946 2312 else if (operand->bits == 8 && operand->shift == 8 && !fixP->fx_pcrel)
07855bec 2313 {
94f592af
NC
2314 fixP->fx_size = 1;
2315 fixP->fx_where += 1;
2316 fixP->fx_r_type = BFD_RELOC_8;
07855bec 2317 }
fb798c50
AK
2318 else if (operand->bits == 12 && operand->shift == 12
2319 && (operand->flags & S390_OPERAND_PCREL))
2320 {
2321 fixP->fx_size = 2;
2322 fixP->fx_where += 1;
2323 fixP->fx_offset += 1;
feb4bea7 2324 fixP->fx_pcrel_adjust = 1;
fb798c50
AK
2325 fixP->fx_r_type = BFD_RELOC_390_PC12DBL;
2326 }
07855bec
NC
2327 else if (operand->bits == 16 && operand->shift == 16)
2328 {
94f592af
NC
2329 fixP->fx_size = 2;
2330 fixP->fx_where += 2;
07855bec
NC
2331 if (operand->flags & S390_OPERAND_PCREL)
2332 {
94f592af
NC
2333 fixP->fx_r_type = BFD_RELOC_390_PC16DBL;
2334 fixP->fx_offset += 2;
feb4bea7 2335 fixP->fx_pcrel_adjust = 2;
07855bec 2336 }
b5c37946
SJ
2337 else if (fixP->fx_pcrel)
2338 {
2339 fixP->fx_r_type = BFD_RELOC_16_PCREL;
2340 fixP->fx_offset += 2;
2341 fixP->fx_pcrel_adjust = 2;
2342 }
07855bec 2343 else
94f592af 2344 fixP->fx_r_type = BFD_RELOC_16;
07855bec 2345 }
feb4bea7
AK
2346 else if (operand->bits == 16 && operand->shift == 32
2347 && (operand->flags & S390_OPERAND_PCREL))
2348 {
2349 fixP->fx_size = 2;
2350 fixP->fx_where += 4;
2351 fixP->fx_offset += 4;
2352 fixP->fx_pcrel_adjust = 4;
2353 fixP->fx_r_type = BFD_RELOC_390_PC16DBL;
2354 }
fb798c50
AK
2355 else if (operand->bits == 24 && operand->shift == 24
2356 && (operand->flags & S390_OPERAND_PCREL))
2357 {
2358 fixP->fx_size = 3;
2359 fixP->fx_where += 3;
2360 fixP->fx_offset += 3;
feb4bea7 2361 fixP->fx_pcrel_adjust = 3;
fb798c50
AK
2362 fixP->fx_r_type = BFD_RELOC_390_PC24DBL;
2363 }
16a419ba
NC
2364 else if (operand->bits == 32 && operand->shift == 16
2365 && (operand->flags & S390_OPERAND_PCREL))
07855bec 2366 {
94f592af
NC
2367 fixP->fx_size = 4;
2368 fixP->fx_where += 2;
2369 fixP->fx_offset += 2;
feb4bea7 2370 fixP->fx_pcrel_adjust = 2;
94f592af 2371 fixP->fx_r_type = BFD_RELOC_390_PC32DBL;
07855bec 2372 }
a85d7ed0 2373 else
07855bec 2374 {
3b4dbbbf 2375 const char *sfile;
07855bec 2376 unsigned int sline;
198ce79b 2377
07855bec
NC
2378 /* Use expr_symbol_where to see if this is an expression
2379 symbol. */
94f592af
NC
2380 if (expr_symbol_where (fixP->fx_addsy, &sfile, &sline))
2381 as_bad_where (fixP->fx_file, fixP->fx_line,
07855bec
NC
2382 _("unresolved expression that must be resolved"));
2383 else
94f592af 2384 as_bad_where (fixP->fx_file, fixP->fx_line,
07855bec 2385 _("unsupported relocation type"));
94f592af
NC
2386 fixP->fx_done = 1;
2387 return;
07855bec 2388 }
a85d7ed0 2389 }
07855bec
NC
2390 else
2391 {
94f592af 2392 switch (fixP->fx_r_type)
07855bec
NC
2393 {
2394 case BFD_RELOC_8:
94f592af 2395 if (fixP->fx_pcrel)
07855bec 2396 abort ();
94f592af 2397 if (fixP->fx_done)
07855bec
NC
2398 md_number_to_chars (where, value, 1);
2399 break;
2400 case BFD_RELOC_390_12:
2401 case BFD_RELOC_390_GOT12:
2a19f73f 2402 case BFD_RELOC_390_GOTPLT12:
fb798c50
AK
2403 case BFD_RELOC_390_PC12DBL:
2404 case BFD_RELOC_390_PLT12DBL:
2405 if (fixP->fx_pcrel)
feb4bea7 2406 value += fixP->fx_pcrel_adjust;
fb798c50 2407
94f592af 2408 if (fixP->fx_done)
07855bec
NC
2409 {
2410 unsigned short mop;
2411
fb798c50
AK
2412 if (fixP->fx_pcrel)
2413 value >>= 1;
2414
07855bec
NC
2415 mop = bfd_getb16 ((unsigned char *) where);
2416 mop |= (unsigned short) (value & 0xfff);
2417 bfd_putb16 ((bfd_vma) mop, (unsigned char *) where);
198ce79b 2418 }
07855bec 2419 break;
198ce79b 2420
933fbc29
MS
2421 case BFD_RELOC_390_20:
2422 case BFD_RELOC_390_GOT20:
2423 case BFD_RELOC_390_GOTPLT20:
2424 if (fixP->fx_done)
2425 {
2426 unsigned int mop;
2427 mop = bfd_getb32 ((unsigned char *) where);
2428 mop |= (unsigned int) ((value & 0xfff) << 8 |
2429 (value & 0xff000) >> 12);
2430 bfd_putb32 ((bfd_vma) mop, (unsigned char *) where);
3739860c 2431 }
933fbc29
MS
2432 break;
2433
07855bec
NC
2434 case BFD_RELOC_16:
2435 case BFD_RELOC_GPREL16:
2436 case BFD_RELOC_16_GOT_PCREL:
2437 case BFD_RELOC_16_GOTOFF:
94f592af
NC
2438 if (fixP->fx_pcrel)
2439 as_bad_where (fixP->fx_file, fixP->fx_line,
20203fb9 2440 _("cannot emit PC relative %s relocation%s%s"),
94f592af
NC
2441 bfd_get_reloc_code_name (fixP->fx_r_type),
2442 fixP->fx_addsy != NULL ? " against " : "",
2443 (fixP->fx_addsy != NULL
2444 ? S_GET_NAME (fixP->fx_addsy)
07855bec 2445 : ""));
94f592af 2446 if (fixP->fx_done)
07855bec
NC
2447 md_number_to_chars (where, value, 2);
2448 break;
2449 case BFD_RELOC_390_GOT16:
2a19f73f
MS
2450 case BFD_RELOC_390_PLTOFF16:
2451 case BFD_RELOC_390_GOTPLT16:
94f592af 2452 if (fixP->fx_done)
07855bec
NC
2453 md_number_to_chars (where, value, 2);
2454 break;
2455 case BFD_RELOC_390_PC16DBL:
2456 case BFD_RELOC_390_PLT16DBL:
feb4bea7 2457 value += fixP->fx_pcrel_adjust;
94f592af 2458 if (fixP->fx_done)
07855bec
NC
2459 md_number_to_chars (where, (offsetT) value >> 1, 2);
2460 break;
2461
fb798c50
AK
2462 case BFD_RELOC_390_PC24DBL:
2463 case BFD_RELOC_390_PLT24DBL:
feb4bea7 2464 value += fixP->fx_pcrel_adjust;
fb798c50
AK
2465 if (fixP->fx_done)
2466 {
2467 unsigned int mop;
2468 value >>= 1;
2469
2470 mop = bfd_getb32 ((unsigned char *) where - 1);
2471 mop |= (unsigned int) (value & 0xffffff);
2472 bfd_putb32 ((bfd_vma) mop, (unsigned char *) where - 1);
2473 }
2474 break;
2475
07855bec 2476 case BFD_RELOC_32:
94f592af
NC
2477 if (fixP->fx_pcrel)
2478 fixP->fx_r_type = BFD_RELOC_32_PCREL;
07855bec 2479 else
94f592af
NC
2480 fixP->fx_r_type = BFD_RELOC_32;
2481 if (fixP->fx_done)
07855bec
NC
2482 md_number_to_chars (where, value, 4);
2483 break;
2484 case BFD_RELOC_32_PCREL:
2485 case BFD_RELOC_32_BASEREL:
94f592af
NC
2486 fixP->fx_r_type = BFD_RELOC_32_PCREL;
2487 if (fixP->fx_done)
07855bec
NC
2488 md_number_to_chars (where, value, 4);
2489 break;
2490 case BFD_RELOC_32_GOT_PCREL:
2a19f73f 2491 case BFD_RELOC_390_PLTOFF32:
07855bec 2492 case BFD_RELOC_390_PLT32:
2a19f73f 2493 case BFD_RELOC_390_GOTPLT32:
94f592af 2494 if (fixP->fx_done)
07855bec
NC
2495 md_number_to_chars (where, value, 4);
2496 break;
2497 case BFD_RELOC_390_PC32DBL:
2498 case BFD_RELOC_390_PLT32DBL:
2499 case BFD_RELOC_390_GOTPCDBL:
2500 case BFD_RELOC_390_GOTENT:
2a19f73f 2501 case BFD_RELOC_390_GOTPLTENT:
feb4bea7 2502 value += fixP->fx_pcrel_adjust;
94f592af 2503 if (fixP->fx_done)
07855bec
NC
2504 md_number_to_chars (where, (offsetT) value >> 1, 4);
2505 break;
2506
2507 case BFD_RELOC_32_GOTOFF:
94f592af 2508 if (fixP->fx_done)
07726851 2509 md_number_to_chars (where, value, sizeof (int));
07855bec
NC
2510 break;
2511
2a19f73f
MS
2512 case BFD_RELOC_390_GOTOFF64:
2513 if (fixP->fx_done)
2514 md_number_to_chars (where, value, 8);
2515 break;
2516
07855bec 2517 case BFD_RELOC_390_GOT64:
2a19f73f 2518 case BFD_RELOC_390_PLTOFF64:
07855bec 2519 case BFD_RELOC_390_PLT64:
2a19f73f 2520 case BFD_RELOC_390_GOTPLT64:
94f592af 2521 if (fixP->fx_done)
07855bec
NC
2522 md_number_to_chars (where, value, 8);
2523 break;
2524
2525 case BFD_RELOC_64:
94f592af
NC
2526 if (fixP->fx_pcrel)
2527 fixP->fx_r_type = BFD_RELOC_64_PCREL;
07855bec 2528 else
94f592af
NC
2529 fixP->fx_r_type = BFD_RELOC_64;
2530 if (fixP->fx_done)
07855bec
NC
2531 md_number_to_chars (where, value, 8);
2532 break;
2533
2534 case BFD_RELOC_64_PCREL:
94f592af
NC
2535 fixP->fx_r_type = BFD_RELOC_64_PCREL;
2536 if (fixP->fx_done)
07855bec
NC
2537 md_number_to_chars (where, value, 8);
2538 break;
2539
2540 case BFD_RELOC_VTABLE_INHERIT:
2541 case BFD_RELOC_VTABLE_ENTRY:
94f592af
NC
2542 fixP->fx_done = 0;
2543 return;
07855bec 2544
1971b29d
MS
2545 case BFD_RELOC_390_TLS_LOAD:
2546 case BFD_RELOC_390_TLS_GDCALL:
2547 case BFD_RELOC_390_TLS_LDCALL:
2548 case BFD_RELOC_390_TLS_GD32:
2549 case BFD_RELOC_390_TLS_GD64:
2550 case BFD_RELOC_390_TLS_GOTIE12:
933fbc29 2551 case BFD_RELOC_390_TLS_GOTIE20:
1971b29d
MS
2552 case BFD_RELOC_390_TLS_GOTIE32:
2553 case BFD_RELOC_390_TLS_GOTIE64:
2554 case BFD_RELOC_390_TLS_LDM32:
2555 case BFD_RELOC_390_TLS_LDM64:
2556 case BFD_RELOC_390_TLS_IE32:
2557 case BFD_RELOC_390_TLS_IE64:
2558 case BFD_RELOC_390_TLS_LE32:
2559 case BFD_RELOC_390_TLS_LE64:
2560 case BFD_RELOC_390_TLS_LDO32:
2561 case BFD_RELOC_390_TLS_LDO64:
2562 case BFD_RELOC_390_TLS_DTPMOD:
2563 case BFD_RELOC_390_TLS_DTPOFF:
2564 case BFD_RELOC_390_TLS_TPOFF:
7c1d0959 2565 S_SET_THREAD_LOCAL (fixP->fx_addsy);
1971b29d
MS
2566 /* Fully resolved at link time. */
2567 break;
2568 case BFD_RELOC_390_TLS_IEENT:
2569 /* Fully resolved at link time. */
7c1d0959 2570 S_SET_THREAD_LOCAL (fixP->fx_addsy);
1971b29d
MS
2571 value += 2;
2572 break;
2573
07855bec
NC
2574 default:
2575 {
94f592af 2576 const char *reloc_name = bfd_get_reloc_code_name (fixP->fx_r_type);
198ce79b 2577
07855bec 2578 if (reloc_name != NULL)
20203fb9 2579 as_fatal (_("Gas failure, reloc type %s\n"), reloc_name);
07855bec 2580 else
20203fb9 2581 as_fatal (_("Gas failure, reloc type #%i\n"), fixP->fx_r_type);
07855bec
NC
2582 }
2583 }
a85d7ed0 2584
94f592af 2585 fixP->fx_offset = value;
07855bec 2586 }
a85d7ed0
NC
2587}
2588
2589/* Generate a reloc for a fixup. */
2590
2591arelent *
5a49b8ac 2592tc_gen_reloc (asection *seg ATTRIBUTE_UNUSED, fixS *fixp)
a85d7ed0
NC
2593{
2594 bfd_reloc_code_real_type code;
2595 arelent *reloc;
2596
2597 code = fixp->fx_r_type;
07855bec
NC
2598 if (GOT_symbol && fixp->fx_addsy == GOT_symbol)
2599 {
16a419ba
NC
2600 if ( (s390_arch_size == 32 && code == BFD_RELOC_32_PCREL)
2601 || (s390_arch_size == 64 && code == BFD_RELOC_64_PCREL))
07855bec
NC
2602 code = BFD_RELOC_390_GOTPC;
2603 if (code == BFD_RELOC_390_PC32DBL)
2604 code = BFD_RELOC_390_GOTPCDBL;
2605 }
a85d7ed0 2606
325801bd
TS
2607 reloc = XNEW (arelent);
2608 reloc->sym_ptr_ptr = XNEW (asymbol *);
a85d7ed0
NC
2609 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
2610 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
2611 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
2612 if (reloc->howto == NULL)
2613 {
2614 as_bad_where (fixp->fx_file, fixp->fx_line,
98d3f06f
KH
2615 _("cannot represent relocation type %s"),
2616 bfd_get_reloc_code_name (code));
a85d7ed0
NC
2617 /* Set howto to a garbage value so that we can keep going. */
2618 reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 2619 gas_assert (reloc->howto != NULL);
a85d7ed0
NC
2620 }
2621 reloc->addend = fixp->fx_offset;
2622
2623 return reloc;
2624}
75e21f08
JJ
2625
2626void
5a49b8ac 2627s390_cfi_frame_initial_instructions (void)
75e21f08
JJ
2628{
2629 cfi_add_CFA_def_cfa (15, s390_arch_size == 64 ? 160 : 96);
2630}
2631
2632int
1df69f4f 2633tc_s390_regname_to_dw2regnum (char *regname)
75e21f08
JJ
2634{
2635 int regnum = -1;
2636
2637 if (regname[0] != 'c' && regname[0] != 'a')
2638 {
1e2e8c52 2639 regnum = reg_name_search (regname);
75e21f08
JJ
2640 if (regname[0] == 'f' && regnum != -1)
2641 regnum += 16;
2642 }
2643 else if (strcmp (regname, "ap") == 0)
2644 regnum = 32;
2645 else if (strcmp (regname, "cc") == 0)
2646 regnum = 33;
2647 return regnum;
2648}
55786da2
AK
2649
2650void
2651s390_elf_final_processing (void)
2652{
1dd53816 2653 if (set_highgprs_p)
55786da2
AK
2654 elf_elfheader (stdoutput)->e_flags |= EF_S390_HIGH_GPRS;
2655}