Rearrange symbol_create parameters
[deliverable/binutils-gdb.git] / gas / config / tc-alpha.c
CommitLineData
252b5132 1/* tc-alpha.c - Processor-specific code for the DEC Alpha AXP CPU.
b3adc24a 2 Copyright (C) 1989-2020 Free Software Foundation, Inc.
252b5132
RH
3 Contributed by Carnegie Mellon University, 1993.
4 Written by Alessandro Forin, based on earlier gas-1.38 target CPU files.
5 Modified by Ken Raeburn for gas-2.x and ECOFF support.
6 Modified by Richard Henderson for ELF support.
9de8d8f1 7 Modified by Klaus K"ampf for EVAX (OpenVMS/Alpha) support.
252b5132
RH
8
9 This file is part of GAS, the GNU Assembler.
10
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
ec2655a6 13 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
14 any later version.
15
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
252b5132 25
ea1562b3
NC
26/* Mach Operating System
27 Copyright (c) 1993 Carnegie Mellon University
28 All Rights Reserved.
29
30 Permission to use, copy, modify and distribute this software and its
31 documentation is hereby granted, provided that both the copyright
32 notice and this permission notice appear in all copies of the
33 software, derivative works or modified versions, and any portions
34 thereof, and that both notices appear in supporting documentation.
35
36 CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
37 CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
39
40 Carnegie Mellon requests users of this software to return to
41
42 Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 School of Computer Science
44 Carnegie Mellon University
45 Pittsburgh PA 15213-3890
46
47 any improvements or extensions that they make and grant Carnegie the
48 rights to redistribute these changes. */
252b5132
RH
49
50#include "as.h"
51#include "subsegs.h"
52#include "ecoff.h"
53
54#include "opcode/alpha.h"
55
56#ifdef OBJ_ELF
57#include "elf/alpha.h"
58#endif
59
198f1251
TG
60#ifdef OBJ_EVAX
61#include "vms.h"
d8703844 62#include "vms/egps.h"
198f1251
TG
63#endif
64
65#include "dwarf2dbg.h"
ea1562b3 66#include "dw2gencfi.h"
3882b010 67#include "safe-ctype.h"
252b5132 68\f
11f45fb5 69/* Local types. */
252b5132 70
ea1562b3
NC
71#define TOKENIZE_ERROR -1
72#define TOKENIZE_ERROR_REPORT -2
73#define MAX_INSN_FIXUPS 2
74#define MAX_INSN_ARGS 5
252b5132 75
21d799b5
NC
76/* Used since new relocation types are introduced in this
77 file (DUMMY_RELOC_LITUSE_*) */
78typedef int extended_bfd_reloc_code_real_type;
79
11f45fb5
NC
80struct alpha_fixup
81{
252b5132 82 expressionS exp;
21d799b5
NC
83 /* bfd_reloc_code_real_type reloc; */
84 extended_bfd_reloc_code_real_type reloc;
198f1251 85#ifdef OBJ_EVAX
51794af8
TG
86 /* The symbol of the item in the linkage section. */
87 symbolS *xtrasym;
88
89 /* The symbol of the procedure descriptor. */
90 symbolS *procsym;
198f1251 91#endif
252b5132
RH
92};
93
11f45fb5
NC
94struct alpha_insn
95{
252b5132
RH
96 unsigned insn;
97 int nfixups;
98 struct alpha_fixup fixups[MAX_INSN_FIXUPS];
19f78583 99 long sequence;
252b5132
RH
100};
101
11f45fb5
NC
102enum alpha_macro_arg
103 {
104 MACRO_EOA = 1,
105 MACRO_IR,
106 MACRO_PIR,
107 MACRO_OPIR,
108 MACRO_CPIR,
109 MACRO_FPR,
198f1251 110 MACRO_EXP
11f45fb5 111 };
252b5132 112
11f45fb5
NC
113struct alpha_macro
114{
252b5132 115 const char *name;
ea1562b3
NC
116 void (*emit) (const expressionS *, int, const void *);
117 const void * arg;
252b5132
RH
118 enum alpha_macro_arg argsets[16];
119};
120
1dab94dd 121/* Extra expression types. */
252b5132 122
ea1562b3
NC
123#define O_pregister O_md1 /* O_register, in parentheses. */
124#define O_cpregister O_md2 /* + a leading comma. */
252b5132 125
3765b1be 126/* The alpha_reloc_op table below depends on the ordering of these. */
04fe8f58
RH
127#define O_literal O_md3 /* !literal relocation. */
128#define O_lituse_addr O_md4 /* !lituse_addr relocation. */
129#define O_lituse_base O_md5 /* !lituse_base relocation. */
130#define O_lituse_bytoff O_md6 /* !lituse_bytoff relocation. */
131#define O_lituse_jsr O_md7 /* !lituse_jsr relocation. */
132#define O_lituse_tlsgd O_md8 /* !lituse_tlsgd relocation. */
133#define O_lituse_tlsldm O_md9 /* !lituse_tlsldm relocation. */
134#define O_lituse_jsrdirect O_md10 /* !lituse_jsrdirect relocation. */
135#define O_gpdisp O_md11 /* !gpdisp relocation. */
136#define O_gprelhigh O_md12 /* !gprelhigh relocation. */
137#define O_gprellow O_md13 /* !gprellow relocation. */
138#define O_gprel O_md14 /* !gprel relocation. */
139#define O_samegp O_md15 /* !samegp relocation. */
140#define O_tlsgd O_md16 /* !tlsgd relocation. */
141#define O_tlsldm O_md17 /* !tlsldm relocation. */
142#define O_gotdtprel O_md18 /* !gotdtprel relocation. */
143#define O_dtprelhi O_md19 /* !dtprelhi relocation. */
144#define O_dtprello O_md20 /* !dtprello relocation. */
145#define O_dtprel O_md21 /* !dtprel relocation. */
146#define O_gottprel O_md22 /* !gottprel relocation. */
147#define O_tprelhi O_md23 /* !tprelhi relocation. */
148#define O_tprello O_md24 /* !tprello relocation. */
149#define O_tprel O_md25 /* !tprel relocation. */
19f78583
RH
150
151#define DUMMY_RELOC_LITUSE_ADDR (BFD_RELOC_UNUSED + 1)
152#define DUMMY_RELOC_LITUSE_BASE (BFD_RELOC_UNUSED + 2)
153#define DUMMY_RELOC_LITUSE_BYTOFF (BFD_RELOC_UNUSED + 3)
154#define DUMMY_RELOC_LITUSE_JSR (BFD_RELOC_UNUSED + 4)
3765b1be
RH
155#define DUMMY_RELOC_LITUSE_TLSGD (BFD_RELOC_UNUSED + 5)
156#define DUMMY_RELOC_LITUSE_TLSLDM (BFD_RELOC_UNUSED + 6)
04fe8f58 157#define DUMMY_RELOC_LITUSE_JSRDIRECT (BFD_RELOC_UNUSED + 7)
19f78583 158
3765b1be 159#define USER_RELOC_P(R) ((R) >= O_literal && (R) <= O_tprel)
43b4c25e 160
11f45fb5 161/* Macros for extracting the type and number of encoded register tokens. */
252b5132
RH
162
163#define is_ir_num(x) (((x) & 32) == 0)
164#define is_fpr_num(x) (((x) & 32) != 0)
165#define regno(x) ((x) & 31)
166
11f45fb5 167/* Something odd inherited from the old assembler. */
252b5132
RH
168
169#define note_gpreg(R) (alpha_gprmask |= (1 << (R)))
170#define note_fpreg(R) (alpha_fprmask |= (1 << (R)))
171
172/* Predicates for 16- and 32-bit ranges */
173/* XXX: The non-shift version appears to trigger a compiler bug when
174 cross-assembling from x86 w/ gcc 2.7.2. */
175
176#if 1
177#define range_signed_16(x) \
bc805888 178 (((offsetT) (x) >> 15) == 0 || ((offsetT) (x) >> 15) == -1)
252b5132 179#define range_signed_32(x) \
bc805888 180 (((offsetT) (x) >> 31) == 0 || ((offsetT) (x) >> 31) == -1)
252b5132 181#else
32ff5c2e
KH
182#define range_signed_16(x) ((offsetT) (x) >= -(offsetT) 0x8000 && \
183 (offsetT) (x) <= (offsetT) 0x7FFF)
184#define range_signed_32(x) ((offsetT) (x) >= -(offsetT) 0x80000000 && \
185 (offsetT) (x) <= (offsetT) 0x7FFFFFFF)
252b5132
RH
186#endif
187
188/* Macros for sign extending from 16- and 32-bits. */
189/* XXX: The cast macros will work on all the systems that I care about,
190 but really a predicate should be found to use the non-cast forms. */
191
192#if 1
bc805888
KH
193#define sign_extend_16(x) ((short) (x))
194#define sign_extend_32(x) ((int) (x))
252b5132 195#else
bc805888
KH
196#define sign_extend_16(x) ((offsetT) (((x) & 0xFFFF) ^ 0x8000) - 0x8000)
197#define sign_extend_32(x) ((offsetT) (((x) & 0xFFFFFFFF) \
252b5132
RH
198 ^ 0x80000000) - 0x80000000)
199#endif
200
11f45fb5 201/* Macros to build tokens. */
252b5132 202
32ff5c2e 203#define set_tok_reg(t, r) (memset (&(t), 0, sizeof (t)), \
252b5132
RH
204 (t).X_op = O_register, \
205 (t).X_add_number = (r))
32ff5c2e 206#define set_tok_preg(t, r) (memset (&(t), 0, sizeof (t)), \
252b5132
RH
207 (t).X_op = O_pregister, \
208 (t).X_add_number = (r))
32ff5c2e 209#define set_tok_cpreg(t, r) (memset (&(t), 0, sizeof (t)), \
252b5132
RH
210 (t).X_op = O_cpregister, \
211 (t).X_add_number = (r))
32ff5c2e 212#define set_tok_freg(t, r) (memset (&(t), 0, sizeof (t)), \
252b5132 213 (t).X_op = O_register, \
66498417 214 (t).X_add_number = (r) + 32)
32ff5c2e 215#define set_tok_sym(t, s, a) (memset (&(t), 0, sizeof (t)), \
252b5132
RH
216 (t).X_op = O_symbol, \
217 (t).X_add_symbol = (s), \
218 (t).X_add_number = (a))
32ff5c2e 219#define set_tok_const(t, n) (memset (&(t), 0, sizeof (t)), \
252b5132
RH
220 (t).X_op = O_constant, \
221 (t).X_add_number = (n))
252b5132 222\f
252b5132
RH
223/* Generic assembler global variables which must be defined by all
224 targets. */
225
226/* Characters which always start a comment. */
227const char comment_chars[] = "#";
228
229/* Characters which start a comment at the beginning of a line. */
230const char line_comment_chars[] = "#";
231
232/* Characters which may be used to separate multiple commands on a
233 single line. */
234const char line_separator_chars[] = ";";
235
236/* Characters which are used to indicate an exponent in a floating
237 point number. */
238const char EXP_CHARS[] = "eE";
239
240/* Characters which mean that a number is a floating point constant,
241 as in 0d1.0. */
252b5132 242/* XXX: Do all of these really get used on the alpha?? */
ae2689b0 243const char FLT_CHARS[] = "rRsSfFdDxXpP";
252b5132
RH
244
245#ifdef OBJ_EVAX
246const char *md_shortopts = "Fm:g+1h:HG:";
247#else
248const char *md_shortopts = "Fm:gG:";
249#endif
250
11f45fb5
NC
251struct option md_longopts[] =
252 {
252b5132 253#define OPTION_32ADDR (OPTION_MD_BASE)
11f45fb5 254 { "32addr", no_argument, NULL, OPTION_32ADDR },
66498417 255#define OPTION_RELAX (OPTION_32ADDR + 1)
11f45fb5 256 { "relax", no_argument, NULL, OPTION_RELAX },
252b5132 257#ifdef OBJ_ELF
66498417
KH
258#define OPTION_MDEBUG (OPTION_RELAX + 1)
259#define OPTION_NO_MDEBUG (OPTION_MDEBUG + 1)
11f45fb5
NC
260 { "mdebug", no_argument, NULL, OPTION_MDEBUG },
261 { "no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG },
198f1251
TG
262#endif
263#ifdef OBJ_EVAX
264#define OPTION_REPLACE (OPTION_RELAX + 1)
265#define OPTION_NOREPLACE (OPTION_REPLACE+1)
266 { "replace", no_argument, NULL, OPTION_REPLACE },
3739860c 267 { "noreplace", no_argument, NULL, OPTION_NOREPLACE },
252b5132 268#endif
11f45fb5
NC
269 { NULL, no_argument, NULL, 0 }
270 };
252b5132 271
bc805888 272size_t md_longopts_size = sizeof (md_longopts);
252b5132
RH
273\f
274#ifdef OBJ_EVAX
275#define AXP_REG_R0 0
276#define AXP_REG_R16 16
277#define AXP_REG_R17 17
278#undef AXP_REG_T9
279#define AXP_REG_T9 22
280#undef AXP_REG_T10
281#define AXP_REG_T10 23
282#undef AXP_REG_T11
283#define AXP_REG_T11 24
284#undef AXP_REG_T12
285#define AXP_REG_T12 25
286#define AXP_REG_AI 25
287#undef AXP_REG_FP
288#define AXP_REG_FP 29
289
290#undef AXP_REG_GP
291#define AXP_REG_GP AXP_REG_PV
198f1251 292
252b5132
RH
293#endif /* OBJ_EVAX */
294
11f45fb5 295/* The cpu for which we are generating code. */
252b5132
RH
296static unsigned alpha_target = AXP_OPCODE_BASE;
297static const char *alpha_target_name = "<all>";
298
11f45fb5 299/* The hash table of instruction opcodes. */
629310ab 300static htab_t alpha_opcode_hash;
252b5132 301
11f45fb5 302/* The hash table of macro opcodes. */
629310ab 303static htab_t alpha_macro_hash;
252b5132
RH
304
305#ifdef OBJ_ECOFF
11f45fb5 306/* The $gp relocation symbol. */
252b5132
RH
307static symbolS *alpha_gp_symbol;
308
309/* XXX: what is this, and why is it exported? */
310valueT alpha_gp_value;
311#endif
312
11f45fb5 313/* The current $gp register. */
252b5132
RH
314static int alpha_gp_register = AXP_REG_GP;
315
11f45fb5 316/* A table of the register symbols. */
252b5132
RH
317static symbolS *alpha_register_table[64];
318
11f45fb5 319/* Constant sections, or sections of constants. */
252b5132
RH
320#ifdef OBJ_ECOFF
321static segT alpha_lita_section;
252b5132
RH
322#endif
323#ifdef OBJ_EVAX
198f1251 324segT alpha_link_section;
252b5132 325#endif
198f1251 326#ifndef OBJ_EVAX
252b5132 327static segT alpha_lit8_section;
198f1251 328#endif
252b5132 329
1dab94dd 330/* Symbols referring to said sections. */
252b5132
RH
331#ifdef OBJ_ECOFF
332static symbolS *alpha_lita_symbol;
252b5132
RH
333#endif
334#ifdef OBJ_EVAX
335static symbolS *alpha_link_symbol;
252b5132 336#endif
198f1251 337#ifndef OBJ_EVAX
252b5132 338static symbolS *alpha_lit8_symbol;
198f1251 339#endif
252b5132 340
11f45fb5 341/* Literal for .litX+0x8000 within .lita. */
252b5132 342#ifdef OBJ_ECOFF
252b5132
RH
343static offsetT alpha_lit8_literal;
344#endif
345
11f45fb5 346/* Is the assembler not allowed to use $at? */
252b5132
RH
347static int alpha_noat_on = 0;
348
11f45fb5 349/* Are macros enabled? */
252b5132
RH
350static int alpha_macros_on = 1;
351
11f45fb5 352/* Are floats disabled? */
252b5132
RH
353static int alpha_nofloats_on = 0;
354
11f45fb5 355/* Are addresses 32 bit? */
252b5132
RH
356static int alpha_addr32_on = 0;
357
358/* Symbol labelling the current insn. When the Alpha gas sees
359 foo:
360 .quad 0
361 and the section happens to not be on an eight byte boundary, it
362 will align both the symbol and the .quad to an eight byte boundary. */
363static symbolS *alpha_insn_label;
eb979bfb 364#if defined(OBJ_ELF) || defined (OBJ_EVAX)
198f1251 365static symbolS *alpha_prologue_label;
d9319cec 366#endif
198f1251
TG
367
368#ifdef OBJ_EVAX
369/* Symbol associate with the current jsr instruction. */
370static symbolS *alpha_linkage_symbol;
371#endif
252b5132
RH
372
373/* Whether we should automatically align data generation pseudo-ops.
374 .align 0 will turn this off. */
375static int alpha_auto_align_on = 1;
376
377/* The known current alignment of the current section. */
378static int alpha_current_align;
379
380/* These are exported to ECOFF code. */
381unsigned long alpha_gprmask, alpha_fprmask;
382
383/* Whether the debugging option was seen. */
384static int alpha_debug;
385
386#ifdef OBJ_ELF
387/* Whether we are emitting an mdebug section. */
a8316fe2 388int alpha_flag_mdebug = -1;
252b5132
RH
389#endif
390
198f1251
TG
391#ifdef OBJ_EVAX
392/* Whether to perform the VMS procedure call optimization. */
393int alpha_flag_replace = 1;
394#endif
395
252b5132
RH
396/* Don't fully resolve relocations, allowing code movement in the linker. */
397static int alpha_flag_relax;
398
399/* What value to give to bfd_set_gp_size. */
400static int g_switch_value = 8;
401
402#ifdef OBJ_EVAX
403/* Collect information about current procedure here. */
198f1251 404struct alpha_evax_procs
ea1562b3
NC
405{
406 symbolS *symbol; /* Proc pdesc symbol. */
252b5132 407 int pdsckind;
ea1562b3
NC
408 int framereg; /* Register for frame pointer. */
409 int framesize; /* Size of frame. */
252b5132
RH
410 int rsa_offset;
411 int ra_save;
412 int fp_save;
413 long imask;
414 long fmask;
415 int type;
416 int prologue;
198f1251
TG
417 symbolS *handler;
418 int handler_data;
419};
420
51794af8 421/* Linked list of .linkage fixups. */
198f1251
TG
422struct alpha_linkage_fixups *alpha_linkage_fixup_root;
423static struct alpha_linkage_fixups *alpha_linkage_fixup_tail;
424
51794af8 425/* Current procedure descriptor. */
198f1251 426static struct alpha_evax_procs *alpha_evax_proc;
4b1c4d2b 427static struct alpha_evax_procs alpha_evax_proc_data;
252b5132
RH
428
429static int alpha_flag_hash_long_names = 0; /* -+ */
430static int alpha_flag_show_after_trunc = 0; /* -H */
431
432/* If the -+ switch is given, then a hash is appended to any name that is
11f45fb5 433 longer than 64 characters, else longer symbol names are truncated. */
252b5132 434
43b4c25e
MM
435#endif
436\f
437#ifdef RELOC_OP_P
438/* A table to map the spelling of a relocation operand into an appropriate
439 bfd_reloc_code_real_type type. The table is assumed to be ordered such
440 that op-O_literal indexes into it. */
441
442#define ALPHA_RELOC_TABLE(op) \
19f78583 443(&alpha_reloc_op[ ((!USER_RELOC_P (op)) \
43b4c25e 444 ? (abort (), 0) \
19f78583 445 : (int) (op) - (int) O_literal) ])
43b4c25e 446
ec8fcf4a
RH
447#define DEF(NAME, RELOC, REQ, ALLOW) \
448 { #NAME, sizeof(#NAME)-1, O_##NAME, RELOC, REQ, ALLOW}
43b4c25e 449
11f45fb5
NC
450static const struct alpha_reloc_op_tag
451{
ea1562b3
NC
452 const char *name; /* String to lookup. */
453 size_t length; /* Size of the string. */
454 operatorT op; /* Which operator to use. */
21d799b5 455 extended_bfd_reloc_code_real_type reloc;
ea1562b3
NC
456 unsigned int require_seq : 1; /* Require a sequence number. */
457 unsigned int allow_seq : 1; /* Allow a sequence number. */
11f45fb5
NC
458}
459alpha_reloc_op[] =
460{
ea1562b3
NC
461 DEF (literal, BFD_RELOC_ALPHA_ELF_LITERAL, 0, 1),
462 DEF (lituse_addr, DUMMY_RELOC_LITUSE_ADDR, 1, 1),
463 DEF (lituse_base, DUMMY_RELOC_LITUSE_BASE, 1, 1),
464 DEF (lituse_bytoff, DUMMY_RELOC_LITUSE_BYTOFF, 1, 1),
465 DEF (lituse_jsr, DUMMY_RELOC_LITUSE_JSR, 1, 1),
466 DEF (lituse_tlsgd, DUMMY_RELOC_LITUSE_TLSGD, 1, 1),
467 DEF (lituse_tlsldm, DUMMY_RELOC_LITUSE_TLSLDM, 1, 1),
04fe8f58 468 DEF (lituse_jsrdirect, DUMMY_RELOC_LITUSE_JSRDIRECT, 1, 1),
ea1562b3
NC
469 DEF (gpdisp, BFD_RELOC_ALPHA_GPDISP, 1, 1),
470 DEF (gprelhigh, BFD_RELOC_ALPHA_GPREL_HI16, 0, 0),
471 DEF (gprellow, BFD_RELOC_ALPHA_GPREL_LO16, 0, 0),
472 DEF (gprel, BFD_RELOC_GPREL16, 0, 0),
473 DEF (samegp, BFD_RELOC_ALPHA_BRSGP, 0, 0),
474 DEF (tlsgd, BFD_RELOC_ALPHA_TLSGD, 0, 1),
475 DEF (tlsldm, BFD_RELOC_ALPHA_TLSLDM, 0, 1),
476 DEF (gotdtprel, BFD_RELOC_ALPHA_GOTDTPREL16, 0, 0),
477 DEF (dtprelhi, BFD_RELOC_ALPHA_DTPREL_HI16, 0, 0),
478 DEF (dtprello, BFD_RELOC_ALPHA_DTPREL_LO16, 0, 0),
479 DEF (dtprel, BFD_RELOC_ALPHA_DTPREL16, 0, 0),
480 DEF (gottprel, BFD_RELOC_ALPHA_GOTTPREL16, 0, 0),
481 DEF (tprelhi, BFD_RELOC_ALPHA_TPREL_HI16, 0, 0),
482 DEF (tprello, BFD_RELOC_ALPHA_TPREL_LO16, 0, 0),
483 DEF (tprel, BFD_RELOC_ALPHA_TPREL16, 0, 0),
43b4c25e
MM
484};
485
19f78583
RH
486#undef DEF
487
43b4c25e 488static const int alpha_num_reloc_op
bc805888 489 = sizeof (alpha_reloc_op) / sizeof (*alpha_reloc_op);
19f78583 490#endif /* RELOC_OP_P */
43b4c25e 491
ea1562b3 492/* Maximum # digits needed to hold the largest sequence #. */
43b4c25e
MM
493#define ALPHA_RELOC_DIGITS 25
494
2d2255b5 495/* Structure to hold explicit sequence information. */
19f78583 496struct alpha_reloc_tag
43b4c25e 497{
ea1562b3 498 fixS *master; /* The literal reloc. */
198f1251 499#ifdef OBJ_EVAX
51794af8
TG
500 struct symbol *sym; /* Linkage section item symbol. */
501 struct symbol *psym; /* Pdesc symbol. */
198f1251 502#endif
ea1562b3
NC
503 fixS *slaves; /* Head of linked list of lituses. */
504 segT segment; /* Segment relocs are in or undefined_section. */
505 long sequence; /* Sequence #. */
506 unsigned n_master; /* # of literals. */
507 unsigned n_slaves; /* # of lituses. */
508 unsigned saw_tlsgd : 1; /* True if ... */
3765b1be
RH
509 unsigned saw_tlsldm : 1;
510 unsigned saw_lu_tlsgd : 1;
511 unsigned saw_lu_tlsldm : 1;
ea1562b3
NC
512 unsigned multi_section_p : 1; /* True if more than one section was used. */
513 char string[1]; /* Printable form of sequence to hash with. */
43b4c25e
MM
514};
515
ea1562b3 516/* Hash table to link up literals with the appropriate lituse. */
629310ab 517static htab_t alpha_literal_hash;
19f78583
RH
518
519/* Sequence numbers for internal use by macros. */
520static long next_sequence_num = -1;
252b5132
RH
521\f
522/* A table of CPU names and opcode sets. */
523
11f45fb5
NC
524static const struct cpu_type
525{
252b5132
RH
526 const char *name;
527 unsigned flags;
11f45fb5
NC
528}
529cpu_types[] =
530{
252b5132 531 /* Ad hoc convention: cpu number gets palcode, process code doesn't.
1dab94dd 532 This supports usage under DU 4.0b that does ".arch ev4", and
252b5132
RH
533 usage in MILO that does -m21064. Probably something more
534 specific like -m21064-pal should be used, but oh well. */
535
536 { "21064", AXP_OPCODE_BASE|AXP_OPCODE_EV4 },
537 { "21064a", AXP_OPCODE_BASE|AXP_OPCODE_EV4 },
538 { "21066", AXP_OPCODE_BASE|AXP_OPCODE_EV4 },
539 { "21068", AXP_OPCODE_BASE|AXP_OPCODE_EV4 },
540 { "21164", AXP_OPCODE_BASE|AXP_OPCODE_EV5 },
541 { "21164a", AXP_OPCODE_BASE|AXP_OPCODE_EV5|AXP_OPCODE_BWX },
542 { "21164pc", (AXP_OPCODE_BASE|AXP_OPCODE_EV5|AXP_OPCODE_BWX
543 |AXP_OPCODE_MAX) },
544 { "21264", (AXP_OPCODE_BASE|AXP_OPCODE_EV6|AXP_OPCODE_BWX
545 |AXP_OPCODE_MAX|AXP_OPCODE_CIX) },
dbac4f5b
RH
546 { "21264a", (AXP_OPCODE_BASE|AXP_OPCODE_EV6|AXP_OPCODE_BWX
547 |AXP_OPCODE_MAX|AXP_OPCODE_CIX) },
548 { "21264b", (AXP_OPCODE_BASE|AXP_OPCODE_EV6|AXP_OPCODE_BWX
549 |AXP_OPCODE_MAX|AXP_OPCODE_CIX) },
252b5132
RH
550
551 { "ev4", AXP_OPCODE_BASE },
552 { "ev45", AXP_OPCODE_BASE },
553 { "lca45", AXP_OPCODE_BASE },
554 { "ev5", AXP_OPCODE_BASE },
555 { "ev56", AXP_OPCODE_BASE|AXP_OPCODE_BWX },
556 { "pca56", AXP_OPCODE_BASE|AXP_OPCODE_BWX|AXP_OPCODE_MAX },
557 { "ev6", AXP_OPCODE_BASE|AXP_OPCODE_BWX|AXP_OPCODE_MAX|AXP_OPCODE_CIX },
dbac4f5b
RH
558 { "ev67", AXP_OPCODE_BASE|AXP_OPCODE_BWX|AXP_OPCODE_MAX|AXP_OPCODE_CIX },
559 { "ev68", AXP_OPCODE_BASE|AXP_OPCODE_BWX|AXP_OPCODE_MAX|AXP_OPCODE_CIX },
252b5132
RH
560
561 { "all", AXP_OPCODE_BASE },
446a06c9 562 { 0, 0 }
252b5132
RH
563};
564
ea1562b3
NC
565/* Some instruction sets indexed by lg(size). */
566static const char * const sextX_op[] = { "sextb", "sextw", "sextl", NULL };
567static const char * const insXl_op[] = { "insbl", "inswl", "insll", "insql" };
568static const char * const insXh_op[] = { NULL, "inswh", "inslh", "insqh" };
569static const char * const extXl_op[] = { "extbl", "extwl", "extll", "extql" };
570static const char * const extXh_op[] = { NULL, "extwh", "extlh", "extqh" };
571static const char * const mskXl_op[] = { "mskbl", "mskwl", "mskll", "mskql" };
572static const char * const mskXh_op[] = { NULL, "mskwh", "msklh", "mskqh" };
573static const char * const stX_op[] = { "stb", "stw", "stl", "stq" };
574static const char * const ldXu_op[] = { "ldbu", "ldwu", NULL, NULL };
252b5132 575
21d799b5 576static void assemble_insn (const struct alpha_opcode *, const expressionS *, int, struct alpha_insn *, extended_bfd_reloc_code_real_type);
ea1562b3
NC
577static void emit_insn (struct alpha_insn *);
578static void assemble_tokens (const char *, const expressionS *, int, int);
198f1251 579#ifdef OBJ_EVAX
6d4af3c2 580static const char *s_alpha_section_name (void);
8aacb050 581static symbolS *add_to_link_pool (symbolS *, offsetT);
198f1251 582#endif
ea1562b3
NC
583\f
584static struct alpha_reloc_tag *
585get_alpha_reloc_tag (long sequence)
11f45fb5 586{
ea1562b3
NC
587 char buffer[ALPHA_RELOC_DIGITS];
588 struct alpha_reloc_tag *info;
252b5132 589
ea1562b3 590 sprintf (buffer, "!%ld", sequence);
252b5132 591
629310ab 592 info = (struct alpha_reloc_tag *) str_hash_find (alpha_literal_hash, buffer);
ea1562b3
NC
593 if (! info)
594 {
595 size_t len = strlen (buffer);
252b5132 596
21d799b5
NC
597 info = (struct alpha_reloc_tag *)
598 xcalloc (sizeof (struct alpha_reloc_tag) + len, 1);
252b5132 599
ea1562b3
NC
600 info->segment = now_seg;
601 info->sequence = sequence;
602 strcpy (info->string, buffer);
629310ab 603 str_hash_insert (alpha_literal_hash, info->string, (void *) info);
198f1251
TG
604#ifdef OBJ_EVAX
605 info->sym = 0;
606 info->psym = 0;
607#endif
ea1562b3 608 }
252b5132 609
ea1562b3
NC
610 return info;
611}
252b5132 612
198f1251
TG
613#ifndef OBJ_EVAX
614
ea1562b3
NC
615static void
616alpha_adjust_relocs (bfd *abfd ATTRIBUTE_UNUSED,
617 asection *sec,
618 void * ptr ATTRIBUTE_UNUSED)
619{
620 segment_info_type *seginfo = seg_info (sec);
621 fixS **prevP;
622 fixS *fixp;
623 fixS *next;
624 fixS *slave;
252b5132 625
ea1562b3
NC
626 /* If seginfo is NULL, we did not create this section; don't do
627 anything with it. By using a pointer to a pointer, we can update
628 the links in place. */
629 if (seginfo == NULL)
630 return;
252b5132 631
ea1562b3
NC
632 /* If there are no relocations, skip the section. */
633 if (! seginfo->fix_root)
634 return;
252b5132 635
ea1562b3
NC
636 /* First rebuild the fixup chain without the explicit lituse and
637 gpdisp_lo16 relocs. */
638 prevP = &seginfo->fix_root;
639 for (fixp = seginfo->fix_root; fixp; fixp = next)
640 {
641 next = fixp->fx_next;
642 fixp->fx_next = (fixS *) 0;
252b5132 643
ea1562b3
NC
644 switch (fixp->fx_r_type)
645 {
646 case BFD_RELOC_ALPHA_LITUSE:
647 if (fixp->tc_fix_data.info->n_master == 0)
648 as_bad_where (fixp->fx_file, fixp->fx_line,
649 _("No !literal!%ld was found"),
650 fixp->tc_fix_data.info->sequence);
651#ifdef RELOC_OP_P
652 if (fixp->fx_offset == LITUSE_ALPHA_TLSGD)
653 {
654 if (! fixp->tc_fix_data.info->saw_tlsgd)
655 as_bad_where (fixp->fx_file, fixp->fx_line,
656 _("No !tlsgd!%ld was found"),
657 fixp->tc_fix_data.info->sequence);
658 }
659 else if (fixp->fx_offset == LITUSE_ALPHA_TLSLDM)
660 {
661 if (! fixp->tc_fix_data.info->saw_tlsldm)
662 as_bad_where (fixp->fx_file, fixp->fx_line,
663 _("No !tlsldm!%ld was found"),
664 fixp->tc_fix_data.info->sequence);
665 }
666#endif
667 break;
252b5132 668
ea1562b3
NC
669 case BFD_RELOC_ALPHA_GPDISP_LO16:
670 if (fixp->tc_fix_data.info->n_master == 0)
671 as_bad_where (fixp->fx_file, fixp->fx_line,
672 _("No ldah !gpdisp!%ld was found"),
673 fixp->tc_fix_data.info->sequence);
674 break;
252b5132 675
ea1562b3
NC
676 case BFD_RELOC_ALPHA_ELF_LITERAL:
677 if (fixp->tc_fix_data.info
678 && (fixp->tc_fix_data.info->saw_tlsgd
679 || fixp->tc_fix_data.info->saw_tlsldm))
680 break;
681 /* FALLTHRU */
252b5132 682
ea1562b3
NC
683 default:
684 *prevP = fixp;
685 prevP = &fixp->fx_next;
686 break;
252b5132 687 }
252b5132
RH
688 }
689
ea1562b3
NC
690 /* Go back and re-chain dependent relocations. They are currently
691 linked through the next_reloc field in reverse order, so as we
692 go through the next_reloc chain, we effectively reverse the chain
693 once again.
252b5132 694
ea1562b3
NC
695 Except if there is more than one !literal for a given sequence
696 number. In that case, the programmer and/or compiler is not sure
697 how control flows from literal to lituse, and we can't be sure to
698 get the relaxation correct.
252b5132 699
ea1562b3
NC
700 ??? Well, actually we could, if there are enough lituses such that
701 we can make each literal have at least one of each lituse type
702 present. Not implemented.
252b5132 703
ea1562b3 704 Also suppress the optimization if the !literals/!lituses are spread
33eaf5de 705 in different segments. This can happen with "interesting" uses of
ea1562b3 706 inline assembly; examples are present in the Linux kernel semaphores. */
11f45fb5 707
ea1562b3 708 for (fixp = seginfo->fix_root; fixp; fixp = next)
252b5132 709 {
ea1562b3
NC
710 next = fixp->fx_next;
711 switch (fixp->fx_r_type)
712 {
713 case BFD_RELOC_ALPHA_TLSGD:
714 case BFD_RELOC_ALPHA_TLSLDM:
715 if (!fixp->tc_fix_data.info)
716 break;
717 if (fixp->tc_fix_data.info->n_master == 0)
718 break;
719 else if (fixp->tc_fix_data.info->n_master > 1)
720 {
721 as_bad_where (fixp->fx_file, fixp->fx_line,
722 _("too many !literal!%ld for %s"),
723 fixp->tc_fix_data.info->sequence,
724 (fixp->fx_r_type == BFD_RELOC_ALPHA_TLSGD
725 ? "!tlsgd" : "!tlsldm"));
726 break;
727 }
252b5132 728
ea1562b3
NC
729 fixp->tc_fix_data.info->master->fx_next = fixp->fx_next;
730 fixp->fx_next = fixp->tc_fix_data.info->master;
731 fixp = fixp->fx_next;
732 /* Fall through. */
252b5132 733
ea1562b3
NC
734 case BFD_RELOC_ALPHA_ELF_LITERAL:
735 if (fixp->tc_fix_data.info
736 && fixp->tc_fix_data.info->n_master == 1
737 && ! fixp->tc_fix_data.info->multi_section_p)
738 {
739 for (slave = fixp->tc_fix_data.info->slaves;
740 slave != (fixS *) 0;
741 slave = slave->tc_fix_data.next_reloc)
742 {
743 slave->fx_next = fixp->fx_next;
744 fixp->fx_next = slave;
745 }
746 }
747 break;
252b5132 748
ea1562b3
NC
749 case BFD_RELOC_ALPHA_GPDISP_HI16:
750 if (fixp->tc_fix_data.info->n_slaves == 0)
751 as_bad_where (fixp->fx_file, fixp->fx_line,
752 _("No lda !gpdisp!%ld was found"),
753 fixp->tc_fix_data.info->sequence);
754 else
755 {
756 slave = fixp->tc_fix_data.info->slaves;
757 slave->fx_next = next;
758 fixp->fx_next = slave;
759 }
760 break;
252b5132 761
ea1562b3
NC
762 default:
763 break;
764 }
252b5132 765 }
252b5132
RH
766}
767
ea1562b3
NC
768/* Before the relocations are written, reorder them, so that user
769 supplied !lituse relocations follow the appropriate !literal
770 relocations, and similarly for !gpdisp relocations. */
252b5132
RH
771
772void
ea1562b3 773alpha_before_fix (void)
252b5132 774{
ea1562b3
NC
775 if (alpha_literal_hash)
776 bfd_map_over_sections (stdoutput, alpha_adjust_relocs, NULL);
252b5132 777}
198f1251
TG
778
779#endif
ea1562b3
NC
780\f
781#ifdef DEBUG_ALPHA
782static void
783debug_exp (expressionS tok[], int ntok)
252b5132 784{
ea1562b3 785 int i;
252b5132 786
ea1562b3
NC
787 fprintf (stderr, "debug_exp: %d tokens", ntok);
788 for (i = 0; i < ntok; i++)
252b5132 789 {
ea1562b3
NC
790 expressionS *t = &tok[i];
791 const char *name;
252b5132 792
ea1562b3
NC
793 switch (t->X_op)
794 {
795 default: name = "unknown"; break;
796 case O_illegal: name = "O_illegal"; break;
797 case O_absent: name = "O_absent"; break;
798 case O_constant: name = "O_constant"; break;
799 case O_symbol: name = "O_symbol"; break;
800 case O_symbol_rva: name = "O_symbol_rva"; break;
801 case O_register: name = "O_register"; break;
802 case O_big: name = "O_big"; break;
803 case O_uminus: name = "O_uminus"; break;
804 case O_bit_not: name = "O_bit_not"; break;
805 case O_logical_not: name = "O_logical_not"; break;
806 case O_multiply: name = "O_multiply"; break;
807 case O_divide: name = "O_divide"; break;
808 case O_modulus: name = "O_modulus"; break;
809 case O_left_shift: name = "O_left_shift"; break;
810 case O_right_shift: name = "O_right_shift"; break;
811 case O_bit_inclusive_or: name = "O_bit_inclusive_or"; break;
812 case O_bit_or_not: name = "O_bit_or_not"; break;
813 case O_bit_exclusive_or: name = "O_bit_exclusive_or"; break;
814 case O_bit_and: name = "O_bit_and"; break;
815 case O_add: name = "O_add"; break;
816 case O_subtract: name = "O_subtract"; break;
817 case O_eq: name = "O_eq"; break;
818 case O_ne: name = "O_ne"; break;
819 case O_lt: name = "O_lt"; break;
820 case O_le: name = "O_le"; break;
821 case O_ge: name = "O_ge"; break;
822 case O_gt: name = "O_gt"; break;
823 case O_logical_and: name = "O_logical_and"; break;
824 case O_logical_or: name = "O_logical_or"; break;
825 case O_index: name = "O_index"; break;
826 case O_pregister: name = "O_pregister"; break;
827 case O_cpregister: name = "O_cpregister"; break;
828 case O_literal: name = "O_literal"; break;
829 case O_lituse_addr: name = "O_lituse_addr"; break;
830 case O_lituse_base: name = "O_lituse_base"; break;
831 case O_lituse_bytoff: name = "O_lituse_bytoff"; break;
832 case O_lituse_jsr: name = "O_lituse_jsr"; break;
833 case O_lituse_tlsgd: name = "O_lituse_tlsgd"; break;
834 case O_lituse_tlsldm: name = "O_lituse_tlsldm"; break;
04fe8f58 835 case O_lituse_jsrdirect: name = "O_lituse_jsrdirect"; break;
ea1562b3
NC
836 case O_gpdisp: name = "O_gpdisp"; break;
837 case O_gprelhigh: name = "O_gprelhigh"; break;
838 case O_gprellow: name = "O_gprellow"; break;
839 case O_gprel: name = "O_gprel"; break;
840 case O_samegp: name = "O_samegp"; break;
841 case O_tlsgd: name = "O_tlsgd"; break;
842 case O_tlsldm: name = "O_tlsldm"; break;
843 case O_gotdtprel: name = "O_gotdtprel"; break;
844 case O_dtprelhi: name = "O_dtprelhi"; break;
845 case O_dtprello: name = "O_dtprello"; break;
846 case O_dtprel: name = "O_dtprel"; break;
847 case O_gottprel: name = "O_gottprel"; break;
848 case O_tprelhi: name = "O_tprelhi"; break;
849 case O_tprello: name = "O_tprello"; break;
850 case O_tprel: name = "O_tprel"; break;
851 }
252b5132 852
ea1562b3
NC
853 fprintf (stderr, ", %s(%s, %s, %d)", name,
854 (t->X_add_symbol) ? S_GET_NAME (t->X_add_symbol) : "--",
855 (t->X_op_symbol) ? S_GET_NAME (t->X_op_symbol) : "--",
856 (int) t->X_add_number);
252b5132 857 }
ea1562b3
NC
858 fprintf (stderr, "\n");
859 fflush (stderr);
252b5132 860}
ea1562b3 861#endif
252b5132 862
ea1562b3 863/* Parse the arguments to an opcode. */
252b5132 864
ea1562b3
NC
865static int
866tokenize_arguments (char *str,
867 expressionS tok[],
868 int ntok)
252b5132 869{
ea1562b3
NC
870 expressionS *end_tok = tok + ntok;
871 char *old_input_line_pointer;
872 int saw_comma = 0, saw_arg = 0;
873#ifdef DEBUG_ALPHA
874 expressionS *orig_tok = tok;
875#endif
876#ifdef RELOC_OP_P
877 char *p;
878 const struct alpha_reloc_op_tag *r;
879 int c, i;
880 size_t len;
881 int reloc_found_p = 0;
882#endif
252b5132 883
ea1562b3 884 memset (tok, 0, sizeof (*tok) * ntok);
252b5132 885
ea1562b3
NC
886 /* Save and restore input_line_pointer around this function. */
887 old_input_line_pointer = input_line_pointer;
888 input_line_pointer = str;
252b5132 889
ea1562b3
NC
890#ifdef RELOC_OP_P
891 /* ??? Wrest control of ! away from the regular expression parser. */
892 is_end_of_line[(unsigned char) '!'] = 1;
893#endif
252b5132 894
ea1562b3
NC
895 while (tok < end_tok && *input_line_pointer)
896 {
897 SKIP_WHITESPACE ();
898 switch (*input_line_pointer)
899 {
900 case '\0':
901 goto fini;
902
903#ifdef RELOC_OP_P
904 case '!':
905 /* A relocation operand can be placed after the normal operand on an
906 assembly language statement, and has the following form:
907 !relocation_type!sequence_number. */
908 if (reloc_found_p)
252b5132 909 {
ea1562b3
NC
910 /* Only support one relocation op per insn. */
911 as_bad (_("More than one relocation op per insn"));
912 goto err_report;
252b5132 913 }
252b5132 914
ea1562b3
NC
915 if (!saw_arg)
916 goto err;
252b5132 917
ea1562b3
NC
918 ++input_line_pointer;
919 SKIP_WHITESPACE ();
d02603dc 920 c = get_symbol_name (&p);
252b5132 921
ea1562b3
NC
922 /* Parse !relocation_type. */
923 len = input_line_pointer - p;
924 if (len == 0)
925 {
926 as_bad (_("No relocation operand"));
927 goto err_report;
928 }
252b5132 929
ea1562b3
NC
930 r = &alpha_reloc_op[0];
931 for (i = alpha_num_reloc_op - 1; i >= 0; i--, r++)
932 if (len == r->length && memcmp (p, r->name, len) == 0)
933 break;
934 if (i < 0)
935 {
936 as_bad (_("Unknown relocation operand: !%s"), p);
937 goto err_report;
938 }
252b5132 939
ea1562b3 940 *input_line_pointer = c;
d02603dc 941 SKIP_WHITESPACE_AFTER_NAME ();
ea1562b3
NC
942 if (*input_line_pointer != '!')
943 {
944 if (r->require_seq)
945 {
946 as_bad (_("no sequence number after !%s"), p);
947 goto err_report;
948 }
252b5132 949
ea1562b3
NC
950 tok->X_add_number = 0;
951 }
952 else
953 {
954 if (! r->allow_seq)
955 {
956 as_bad (_("!%s does not use a sequence number"), p);
957 goto err_report;
958 }
252b5132 959
ea1562b3 960 input_line_pointer++;
252b5132 961
ea1562b3
NC
962 /* Parse !sequence_number. */
963 expression (tok);
964 if (tok->X_op != O_constant || tok->X_add_number <= 0)
965 {
966 as_bad (_("Bad sequence number: !%s!%s"),
967 r->name, input_line_pointer);
968 goto err_report;
969 }
970 }
252b5132 971
ea1562b3
NC
972 tok->X_op = r->op;
973 reloc_found_p = 1;
974 ++tok;
975 break;
976#endif /* RELOC_OP_P */
252b5132 977
ea1562b3
NC
978 case ',':
979 ++input_line_pointer;
980 if (saw_comma || !saw_arg)
981 goto err;
982 saw_comma = 1;
983 break;
252b5132 984
ea1562b3
NC
985 case '(':
986 {
987 char *hold = input_line_pointer++;
252b5132 988
ea1562b3
NC
989 /* First try for parenthesized register ... */
990 expression (tok);
991 if (*input_line_pointer == ')' && tok->X_op == O_register)
992 {
993 tok->X_op = (saw_comma ? O_cpregister : O_pregister);
994 saw_comma = 0;
995 saw_arg = 1;
996 ++input_line_pointer;
997 ++tok;
998 break;
999 }
252b5132 1000
ea1562b3
NC
1001 /* ... then fall through to plain expression. */
1002 input_line_pointer = hold;
1003 }
1a0670f3 1004 /* Fall through. */
252b5132 1005
ea1562b3
NC
1006 default:
1007 if (saw_arg && !saw_comma)
1008 goto err;
252b5132 1009
ea1562b3
NC
1010 expression (tok);
1011 if (tok->X_op == O_illegal || tok->X_op == O_absent)
1012 goto err;
252b5132 1013
ea1562b3
NC
1014 saw_comma = 0;
1015 saw_arg = 1;
1016 ++tok;
1017 break;
1018 }
1019 }
252b5132 1020
dc1e8a47 1021 fini:
ea1562b3
NC
1022 if (saw_comma)
1023 goto err;
1024 input_line_pointer = old_input_line_pointer;
252b5132 1025
ea1562b3
NC
1026#ifdef DEBUG_ALPHA
1027 debug_exp (orig_tok, ntok - (end_tok - tok));
252b5132 1028#endif
ea1562b3
NC
1029#ifdef RELOC_OP_P
1030 is_end_of_line[(unsigned char) '!'] = 0;
252b5132 1031#endif
252b5132 1032
ea1562b3 1033 return ntok - (end_tok - tok);
00f7efb6 1034
dc1e8a47 1035 err:
ea1562b3
NC
1036#ifdef RELOC_OP_P
1037 is_end_of_line[(unsigned char) '!'] = 0;
543833df 1038#endif
ea1562b3
NC
1039 input_line_pointer = old_input_line_pointer;
1040 return TOKENIZE_ERROR;
543833df 1041
ea1562b3 1042#ifdef RELOC_OP_P
dc1e8a47 1043 err_report:
ea1562b3 1044 is_end_of_line[(unsigned char) '!'] = 0;
252b5132 1045#endif
ea1562b3
NC
1046 input_line_pointer = old_input_line_pointer;
1047 return TOKENIZE_ERROR_REPORT;
1048}
252b5132 1049
ea1562b3
NC
1050/* Search forward through all variants of an opcode looking for a
1051 syntax match. */
252b5132 1052
ea1562b3
NC
1053static const struct alpha_opcode *
1054find_opcode_match (const struct alpha_opcode *first_opcode,
1055 const expressionS *tok,
1056 int *pntok,
1057 int *pcpumatch)
1058{
1059 const struct alpha_opcode *opcode = first_opcode;
1060 int ntok = *pntok;
1061 int got_cpu_match = 0;
252b5132 1062
ea1562b3 1063 do
252b5132 1064 {
ea1562b3
NC
1065 const unsigned char *opidx;
1066 int tokidx = 0;
252b5132 1067
ea1562b3
NC
1068 /* Don't match opcodes that don't exist on this architecture. */
1069 if (!(opcode->flags & alpha_target))
1070 goto match_failed;
252b5132 1071
ea1562b3 1072 got_cpu_match = 1;
252b5132 1073
ea1562b3 1074 for (opidx = opcode->operands; *opidx; ++opidx)
252b5132 1075 {
ea1562b3 1076 const struct alpha_operand *operand = &alpha_operands[*opidx];
252b5132 1077
ea1562b3
NC
1078 /* Only take input from real operands. */
1079 if (operand->flags & AXP_OPERAND_FAKE)
1080 continue;
252b5132 1081
ea1562b3
NC
1082 /* When we expect input, make sure we have it. */
1083 if (tokidx >= ntok)
252b5132 1084 {
ea1562b3
NC
1085 if ((operand->flags & AXP_OPERAND_OPTIONAL_MASK) == 0)
1086 goto match_failed;
1087 continue;
252b5132 1088 }
252b5132 1089
ea1562b3
NC
1090 /* Match operand type with expression type. */
1091 switch (operand->flags & AXP_OPERAND_TYPECHECK_MASK)
252b5132 1092 {
ea1562b3
NC
1093 case AXP_OPERAND_IR:
1094 if (tok[tokidx].X_op != O_register
1095 || !is_ir_num (tok[tokidx].X_add_number))
1096 goto match_failed;
1097 break;
1098 case AXP_OPERAND_FPR:
1099 if (tok[tokidx].X_op != O_register
1100 || !is_fpr_num (tok[tokidx].X_add_number))
1101 goto match_failed;
1102 break;
1103 case AXP_OPERAND_IR | AXP_OPERAND_PARENS:
1104 if (tok[tokidx].X_op != O_pregister
1105 || !is_ir_num (tok[tokidx].X_add_number))
1106 goto match_failed;
1107 break;
1108 case AXP_OPERAND_IR | AXP_OPERAND_PARENS | AXP_OPERAND_COMMA:
1109 if (tok[tokidx].X_op != O_cpregister
1110 || !is_ir_num (tok[tokidx].X_add_number))
1111 goto match_failed;
1112 break;
252b5132 1113
ea1562b3
NC
1114 case AXP_OPERAND_RELATIVE:
1115 case AXP_OPERAND_SIGNED:
1116 case AXP_OPERAND_UNSIGNED:
1117 switch (tok[tokidx].X_op)
1118 {
1119 case O_illegal:
1120 case O_absent:
1121 case O_register:
1122 case O_pregister:
1123 case O_cpregister:
1124 goto match_failed;
252b5132 1125
ea1562b3
NC
1126 default:
1127 break;
1128 }
1129 break;
1130
1131 default:
1132 /* Everything else should have been fake. */
1133 abort ();
1134 }
1135 ++tokidx;
252b5132 1136 }
ea1562b3
NC
1137
1138 /* Possible match -- did we use all of our input? */
1139 if (tokidx == ntok)
1140 {
1141 *pntok = ntok;
1142 return opcode;
1143 }
1144
1145 match_failed:;
252b5132 1146 }
ea1562b3
NC
1147 while (++opcode - alpha_opcodes < (int) alpha_num_opcodes
1148 && !strcmp (opcode->name, first_opcode->name));
252b5132 1149
ea1562b3
NC
1150 if (*pcpumatch)
1151 *pcpumatch = got_cpu_match;
252b5132 1152
ea1562b3 1153 return NULL;
252b5132 1154}
252b5132 1155
ea1562b3
NC
1156/* Given an opcode name and a pre-tokenized set of arguments, assemble
1157 the insn, but do not emit it.
252b5132 1158
ea1562b3
NC
1159 Note that this implies no macros allowed, since we can't store more
1160 than one insn in an insn structure. */
1161
1162static void
1163assemble_tokens_to_insn (const char *opname,
1164 const expressionS *tok,
1165 int ntok,
1166 struct alpha_insn *insn)
252b5132 1167{
ea1562b3
NC
1168 const struct alpha_opcode *opcode;
1169
1170 /* Search opcodes. */
629310ab 1171 opcode = (const struct alpha_opcode *) str_hash_find (alpha_opcode_hash, opname);
ea1562b3
NC
1172 if (opcode)
1173 {
1174 int cpumatch;
1175 opcode = find_opcode_match (opcode, tok, &ntok, &cpumatch);
1176 if (opcode)
1177 {
1178 assemble_insn (opcode, tok, ntok, insn, BFD_RELOC_UNUSED);
1179 return;
1180 }
1181 else if (cpumatch)
1182 as_bad (_("inappropriate arguments for opcode `%s'"), opname);
1183 else
1184 as_bad (_("opcode `%s' not supported for target %s"), opname,
1185 alpha_target_name);
1186 }
1187 else
1188 as_bad (_("unknown opcode `%s'"), opname);
252b5132
RH
1189}
1190
ea1562b3
NC
1191/* Build a BFD section with its flags set appropriately for the .lita,
1192 .lit8, or .lit4 sections. */
252b5132 1193
ea1562b3
NC
1194static void
1195create_literal_section (const char *name,
1196 segT *secp,
1197 symbolS **symp)
252b5132 1198{
ea1562b3
NC
1199 segT current_section = now_seg;
1200 int current_subsec = now_subseg;
1201 segT new_sec;
252b5132 1202
ea1562b3
NC
1203 *secp = new_sec = subseg_new (name, 0);
1204 subseg_set (current_section, current_subsec);
fd361982
AM
1205 bfd_set_section_alignment (new_sec, 4);
1206 bfd_set_section_flags (new_sec, (SEC_RELOC | SEC_ALLOC | SEC_LOAD
1207 | SEC_READONLY | SEC_DATA));
a161fe53 1208
ea1562b3 1209 S_CLEAR_EXTERNAL (*symp = section_symbol (new_sec));
252b5132
RH
1210}
1211
ea1562b3 1212/* Load a (partial) expression into a target register.
252b5132 1213
ea1562b3
NC
1214 If poffset is not null, after the call it will either contain
1215 O_constant 0, or a 16-bit offset appropriate for any MEM format
1216 instruction. In addition, pbasereg will be modified to point to
1217 the base register to use in that MEM format instruction.
252b5132 1218
ea1562b3
NC
1219 In any case, *pbasereg should contain a base register to add to the
1220 expression. This will normally be either AXP_REG_ZERO or
1221 alpha_gp_register. Symbol addresses will always be loaded via $gp,
1222 so "foo($0)" is interpreted as adding the address of foo to $0;
1223 i.e. "ldq $targ, LIT($gp); addq $targ, $0, $targ". Odd, perhaps,
1224 but this is what OSF/1 does.
252b5132 1225
ea1562b3
NC
1226 If explicit relocations of the form !literal!<number> are allowed,
1227 and used, then explicit_reloc with be an expression pointer.
252b5132 1228
ea1562b3
NC
1229 Finally, the return value is nonzero if the calling macro may emit
1230 a LITUSE reloc if otherwise appropriate; the return value is the
1231 sequence number to use. */
252b5132 1232
ea1562b3
NC
1233static long
1234load_expression (int targreg,
1235 const expressionS *exp,
1236 int *pbasereg,
198f1251
TG
1237 expressionS *poffset,
1238 const char *opname)
ea1562b3
NC
1239{
1240 long emit_lituse = 0;
1241 offsetT addend = exp->X_add_number;
1242 int basereg = *pbasereg;
1243 struct alpha_insn insn;
1244 expressionS newtok[3];
3765b1be 1245
ea1562b3
NC
1246 switch (exp->X_op)
1247 {
1248 case O_symbol:
66ba4c77 1249 {
ea1562b3
NC
1250#ifdef OBJ_ECOFF
1251 offsetT lit;
66ba4c77 1252
ea1562b3
NC
1253 /* Attempt to reduce .lit load by splitting the offset from
1254 its symbol when possible, but don't create a situation in
1255 which we'd fail. */
1256 if (!range_signed_32 (addend) &&
1257 (alpha_noat_on || targreg == AXP_REG_AT))
66ba4c77 1258 {
ea1562b3
NC
1259 lit = add_to_literal_pool (exp->X_add_symbol, addend,
1260 alpha_lita_section, 8);
1261 addend = 0;
66ba4c77 1262 }
ea1562b3
NC
1263 else
1264 lit = add_to_literal_pool (exp->X_add_symbol, 0,
1265 alpha_lita_section, 8);
252b5132 1266
ea1562b3
NC
1267 if (lit >= 0x8000)
1268 as_fatal (_("overflow in literal (.lita) table"));
252b5132 1269
ea1562b3 1270 /* Emit "ldq r, lit(gp)". */
252b5132 1271
ea1562b3
NC
1272 if (basereg != alpha_gp_register && targreg == basereg)
1273 {
1274 if (alpha_noat_on)
1275 as_bad (_("macro requires $at register while noat in effect"));
1276 if (targreg == AXP_REG_AT)
1277 as_bad (_("macro requires $at while $at in use"));
252b5132 1278
ea1562b3
NC
1279 set_tok_reg (newtok[0], AXP_REG_AT);
1280 }
1281 else
1282 set_tok_reg (newtok[0], targreg);
252b5132 1283
ea1562b3
NC
1284 set_tok_sym (newtok[1], alpha_lita_symbol, lit);
1285 set_tok_preg (newtok[2], alpha_gp_register);
252b5132 1286
ea1562b3 1287 assemble_tokens_to_insn ("ldq", newtok, 3, &insn);
252b5132 1288
9c2799c2 1289 gas_assert (insn.nfixups == 1);
ea1562b3
NC
1290 insn.fixups[0].reloc = BFD_RELOC_ALPHA_LITERAL;
1291 insn.sequence = emit_lituse = next_sequence_num--;
1292#endif /* OBJ_ECOFF */
252b5132 1293#ifdef OBJ_ELF
ea1562b3 1294 /* Emit "ldq r, gotoff(gp)". */
252b5132 1295
ea1562b3
NC
1296 if (basereg != alpha_gp_register && targreg == basereg)
1297 {
1298 if (alpha_noat_on)
1299 as_bad (_("macro requires $at register while noat in effect"));
1300 if (targreg == AXP_REG_AT)
1301 as_bad (_("macro requires $at while $at in use"));
252b5132 1302
ea1562b3
NC
1303 set_tok_reg (newtok[0], AXP_REG_AT);
1304 }
1305 else
1306 set_tok_reg (newtok[0], targreg);
252b5132 1307
ea1562b3
NC
1308 /* XXX: Disable this .got minimizing optimization so that we can get
1309 better instruction offset knowledge in the compiler. This happens
1310 very infrequently anyway. */
1311 if (1
1312 || (!range_signed_32 (addend)
1313 && (alpha_noat_on || targreg == AXP_REG_AT)))
1314 {
1315 newtok[1] = *exp;
1316 addend = 0;
1317 }
1318 else
1319 set_tok_sym (newtok[1], exp->X_add_symbol, 0);
252b5132 1320
ea1562b3 1321 set_tok_preg (newtok[2], alpha_gp_register);
252b5132 1322
ea1562b3 1323 assemble_tokens_to_insn ("ldq", newtok, 3, &insn);
252b5132 1324
9c2799c2 1325 gas_assert (insn.nfixups == 1);
ea1562b3
NC
1326 insn.fixups[0].reloc = BFD_RELOC_ALPHA_ELF_LITERAL;
1327 insn.sequence = emit_lituse = next_sequence_num--;
1328#endif /* OBJ_ELF */
1329#ifdef OBJ_EVAX
ea1562b3 1330 /* Find symbol or symbol pointer in link section. */
252b5132 1331
198f1251 1332 if (exp->X_add_symbol == alpha_evax_proc->symbol)
ea1562b3 1333 {
51794af8
TG
1334 /* Linkage-relative expression. */
1335 set_tok_reg (newtok[0], targreg);
1336
ea1562b3
NC
1337 if (range_signed_16 (addend))
1338 {
ea1562b3 1339 set_tok_const (newtok[1], addend);
ea1562b3
NC
1340 addend = 0;
1341 }
1342 else
1343 {
ea1562b3 1344 set_tok_const (newtok[1], 0);
ea1562b3 1345 }
51794af8
TG
1346 set_tok_preg (newtok[2], basereg);
1347 assemble_tokens_to_insn ("lda", newtok, 3, &insn);
ea1562b3
NC
1348 }
1349 else
1350 {
198f1251
TG
1351 const char *symname = S_GET_NAME (exp->X_add_symbol);
1352 const char *ptr1, *ptr2;
1353 int symlen = strlen (symname);
1354
1355 if ((symlen > 4 &&
1356 strcmp (ptr2 = &symname [symlen - 4], "..lk") == 0))
ea1562b3 1357 {
51794af8
TG
1358 /* Access to an item whose address is stored in the linkage
1359 section. Just read the address. */
198f1251
TG
1360 set_tok_reg (newtok[0], targreg);
1361
1362 newtok[1] = *exp;
1363 newtok[1].X_op = O_subtract;
1364 newtok[1].X_op_symbol = alpha_evax_proc->symbol;
1365
1366 set_tok_preg (newtok[2], basereg);
1367 assemble_tokens_to_insn ("ldq", newtok, 3, &insn);
1368 alpha_linkage_symbol = exp->X_add_symbol;
1369
1370 if (poffset)
1371 set_tok_const (*poffset, 0);
1372
1373 if (alpha_flag_replace && targreg == 26)
1374 {
51794af8 1375 /* Add a NOP fixup for 'ldX $26,YYY..NAME..lk'. */
198f1251
TG
1376 char *ensymname;
1377 symbolS *ensym;
198f1251 1378
51794af8 1379 /* Build the entry name as 'NAME..en'. */
198f1251
TG
1380 ptr1 = strstr (symname, "..") + 2;
1381 if (ptr1 > ptr2)
1382 ptr1 = symname;
add39d23 1383 ensymname = XNEWVEC (char, ptr2 - ptr1 + 5);
198f1251
TG
1384 memcpy (ensymname, ptr1, ptr2 - ptr1);
1385 memcpy (ensymname + (ptr2 - ptr1), "..en", 5);
1386
9c2799c2 1387 gas_assert (insn.nfixups + 1 <= MAX_INSN_FIXUPS);
198f1251
TG
1388 insn.fixups[insn.nfixups].reloc = BFD_RELOC_ALPHA_NOP;
1389 ensym = symbol_find_or_make (ensymname);
39a0d071 1390 free (ensymname);
f8e24652 1391 symbol_mark_used (ensym);
198f1251
TG
1392 /* The fixup must be the same as the BFD_RELOC_ALPHA_BOH
1393 case in emit_jsrjmp. See B.4.5.2 of the OpenVMS Linker
1394 Utility Manual. */
1395 insn.fixups[insn.nfixups].exp.X_op = O_symbol;
1396 insn.fixups[insn.nfixups].exp.X_add_symbol = ensym;
1397 insn.fixups[insn.nfixups].exp.X_add_number = 0;
1398 insn.fixups[insn.nfixups].xtrasym = alpha_linkage_symbol;
1399 insn.fixups[insn.nfixups].procsym = alpha_evax_proc->symbol;
1400 insn.nfixups++;
1401
1402 /* ??? Force bsym to be instantiated now, as it will be
1403 too late to do so in tc_gen_reloc. */
87975d2a 1404 symbol_get_bfdsym (exp->X_add_symbol);
198f1251
TG
1405 }
1406 else if (alpha_flag_replace && targreg == 27)
1407 {
51794af8 1408 /* Add a lda fixup for 'ldX $27,YYY.NAME..lk+8'. */
198f1251
TG
1409 char *psymname;
1410 symbolS *psym;
1411
51794af8 1412 /* Extract NAME. */
198f1251
TG
1413 ptr1 = strstr (symname, "..") + 2;
1414 if (ptr1 > ptr2)
1415 ptr1 = symname;
29a2809e 1416 psymname = xmemdup0 (ptr1, ptr2 - ptr1);
51794af8 1417
9c2799c2 1418 gas_assert (insn.nfixups + 1 <= MAX_INSN_FIXUPS);
198f1251
TG
1419 insn.fixups[insn.nfixups].reloc = BFD_RELOC_ALPHA_LDA;
1420 psym = symbol_find_or_make (psymname);
39a0d071 1421 free (psymname);
f8e24652 1422 symbol_mark_used (psym);
198f1251
TG
1423 insn.fixups[insn.nfixups].exp.X_op = O_subtract;
1424 insn.fixups[insn.nfixups].exp.X_add_symbol = psym;
1425 insn.fixups[insn.nfixups].exp.X_op_symbol = alpha_evax_proc->symbol;
1426 insn.fixups[insn.nfixups].exp.X_add_number = 0;
1427 insn.fixups[insn.nfixups].xtrasym = alpha_linkage_symbol;
1428 insn.fixups[insn.nfixups].procsym = alpha_evax_proc->symbol;
1429 insn.nfixups++;
1430 }
1431
51794af8 1432 emit_insn (&insn);
198f1251 1433 return 0;
ea1562b3
NC
1434 }
1435 else
198f1251 1436 {
51794af8
TG
1437 /* Not in the linkage section. Put the value into the linkage
1438 section. */
198f1251 1439 symbolS *linkexp;
252b5132 1440
198f1251
TG
1441 if (!range_signed_32 (addend))
1442 addend = sign_extend_32 (addend);
8aacb050 1443 linkexp = add_to_link_pool (exp->X_add_symbol, 0);
198f1251
TG
1444 set_tok_reg (newtok[0], targreg);
1445 set_tok_sym (newtok[1], linkexp, 0);
1446 set_tok_preg (newtok[2], basereg);
1447 assemble_tokens_to_insn ("ldq", newtok, 3, &insn);
1448 }
ea1562b3
NC
1449 }
1450#endif /* OBJ_EVAX */
252b5132 1451
ea1562b3 1452 emit_insn (&insn);
19f78583 1453
ea1562b3
NC
1454#ifndef OBJ_EVAX
1455 if (basereg != alpha_gp_register && basereg != AXP_REG_ZERO)
1456 {
1457 /* Emit "addq r, base, r". */
19f78583 1458
ea1562b3
NC
1459 set_tok_reg (newtok[1], basereg);
1460 set_tok_reg (newtok[2], targreg);
1461 assemble_tokens ("addq", newtok, 3, 0);
1462 }
1463#endif
1464 basereg = targreg;
1465 }
1466 break;
19f78583 1467
ea1562b3
NC
1468 case O_constant:
1469 break;
19f78583 1470
ea1562b3
NC
1471 case O_subtract:
1472 /* Assume that this difference expression will be resolved to an
1473 absolute value and that that value will fit in 16 bits. */
19f78583 1474
ea1562b3
NC
1475 set_tok_reg (newtok[0], targreg);
1476 newtok[1] = *exp;
1477 set_tok_preg (newtok[2], basereg);
198f1251 1478 assemble_tokens (opname, newtok, 3, 0);
43b4c25e 1479
ea1562b3
NC
1480 if (poffset)
1481 set_tok_const (*poffset, 0);
1482 return 0;
43b4c25e 1483
ea1562b3
NC
1484 case O_big:
1485 if (exp->X_add_number > 0)
1486 as_bad (_("bignum invalid; zero assumed"));
1487 else
1488 as_bad (_("floating point number invalid; zero assumed"));
1489 addend = 0;
1490 break;
43b4c25e 1491
ea1562b3
NC
1492 default:
1493 as_bad (_("can't handle expression"));
1494 addend = 0;
1495 break;
1496 }
43b4c25e 1497
ea1562b3 1498 if (!range_signed_32 (addend))
43b4c25e 1499 {
198f1251
TG
1500#ifdef OBJ_EVAX
1501 symbolS *litexp;
1502#else
ea1562b3
NC
1503 offsetT lit;
1504 long seq_num = next_sequence_num--;
198f1251 1505#endif
43b4c25e 1506
ea1562b3
NC
1507 /* For 64-bit addends, just put it in the literal pool. */
1508#ifdef OBJ_EVAX
1509 /* Emit "ldq targreg, lit(basereg)". */
8aacb050 1510 litexp = add_to_link_pool (section_symbol (absolute_section), addend);
ea1562b3 1511 set_tok_reg (newtok[0], targreg);
198f1251 1512 set_tok_sym (newtok[1], litexp, 0);
ea1562b3
NC
1513 set_tok_preg (newtok[2], alpha_gp_register);
1514 assemble_tokens ("ldq", newtok, 3, 0);
1515#else
1516
1517 if (alpha_lit8_section == NULL)
43b4c25e 1518 {
ea1562b3
NC
1519 create_literal_section (".lit8",
1520 &alpha_lit8_section,
1521 &alpha_lit8_symbol);
1522
1523#ifdef OBJ_ECOFF
1524 alpha_lit8_literal = add_to_literal_pool (alpha_lit8_symbol, 0x8000,
1525 alpha_lita_section, 8);
1526 if (alpha_lit8_literal >= 0x8000)
1527 as_fatal (_("overflow in literal (.lita) table"));
11f45fb5 1528#endif
ea1562b3 1529 }
43b4c25e 1530
ea1562b3
NC
1531 lit = add_to_literal_pool (NULL, addend, alpha_lit8_section, 8) - 0x8000;
1532 if (lit >= 0x8000)
1533 as_fatal (_("overflow in literal (.lit8) table"));
19f78583 1534
ea1562b3 1535 /* Emit "lda litreg, .lit8+0x8000". */
3765b1be 1536
ea1562b3
NC
1537 if (targreg == basereg)
1538 {
1539 if (alpha_noat_on)
1540 as_bad (_("macro requires $at register while noat in effect"));
1541 if (targreg == AXP_REG_AT)
1542 as_bad (_("macro requires $at while $at in use"));
1543
1544 set_tok_reg (newtok[0], AXP_REG_AT);
43b4c25e 1545 }
ea1562b3
NC
1546 else
1547 set_tok_reg (newtok[0], targreg);
1548#ifdef OBJ_ECOFF
1549 set_tok_sym (newtok[1], alpha_lita_symbol, alpha_lit8_literal);
1550#endif
1551#ifdef OBJ_ELF
1552 set_tok_sym (newtok[1], alpha_lit8_symbol, 0x8000);
1553#endif
1554 set_tok_preg (newtok[2], alpha_gp_register);
43b4c25e 1555
ea1562b3 1556 assemble_tokens_to_insn ("ldq", newtok, 3, &insn);
19f78583 1557
9c2799c2 1558 gas_assert (insn.nfixups == 1);
ea1562b3
NC
1559#ifdef OBJ_ECOFF
1560 insn.fixups[0].reloc = BFD_RELOC_ALPHA_LITERAL;
1561#endif
1562#ifdef OBJ_ELF
1563 insn.fixups[0].reloc = BFD_RELOC_ALPHA_ELF_LITERAL;
1564#endif
1565 insn.sequence = seq_num;
19f78583 1566
ea1562b3 1567 emit_insn (&insn);
19f78583 1568
ea1562b3 1569 /* Emit "ldq litreg, lit(litreg)". */
19f78583 1570
ea1562b3
NC
1571 set_tok_const (newtok[1], lit);
1572 set_tok_preg (newtok[2], newtok[0].X_add_number);
1573
1574 assemble_tokens_to_insn ("ldq", newtok, 3, &insn);
1575
9c2799c2 1576 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
1577 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BASE;
1578 insn.fixups[insn.nfixups].exp.X_op = O_absent;
1579 insn.nfixups++;
1580 insn.sequence = seq_num;
1581 emit_lituse = 0;
1582
1583 emit_insn (&insn);
1584
1585 /* Emit "addq litreg, base, target". */
1586
1587 if (basereg != AXP_REG_ZERO)
1588 {
1589 set_tok_reg (newtok[1], basereg);
1590 set_tok_reg (newtok[2], targreg);
1591 assemble_tokens ("addq", newtok, 3, 0);
1592 }
1593#endif /* !OBJ_EVAX */
1594
1595 if (poffset)
1596 set_tok_const (*poffset, 0);
1597 *pbasereg = targreg;
1598 }
1599 else
43b4c25e 1600 {
ea1562b3
NC
1601 offsetT low, high, extra, tmp;
1602
1603 /* For 32-bit operands, break up the addend. */
1604
1605 low = sign_extend_16 (addend);
1606 tmp = addend - low;
1607 high = sign_extend_16 (tmp >> 16);
1608
1609 if (tmp - (high << 16))
43b4c25e 1610 {
ea1562b3
NC
1611 extra = 0x4000;
1612 tmp -= 0x40000000;
1613 high = sign_extend_16 (tmp >> 16);
1614 }
1615 else
1616 extra = 0;
3765b1be 1617
ea1562b3
NC
1618 set_tok_reg (newtok[0], targreg);
1619 set_tok_preg (newtok[2], basereg);
3765b1be 1620
ea1562b3
NC
1621 if (extra)
1622 {
1623 /* Emit "ldah r, extra(r). */
1624 set_tok_const (newtok[1], extra);
1625 assemble_tokens ("ldah", newtok, 3, 0);
1626 set_tok_preg (newtok[2], basereg = targreg);
1627 }
43b4c25e 1628
ea1562b3
NC
1629 if (high)
1630 {
1631 /* Emit "ldah r, high(r). */
1632 set_tok_const (newtok[1], high);
1633 assemble_tokens ("ldah", newtok, 3, 0);
1634 basereg = targreg;
1635 set_tok_preg (newtok[2], basereg);
1636 }
19f78583 1637
ea1562b3
NC
1638 if ((low && !poffset) || (!poffset && basereg != targreg))
1639 {
1640 /* Emit "lda r, low(base)". */
1641 set_tok_const (newtok[1], low);
1642 assemble_tokens ("lda", newtok, 3, 0);
1643 basereg = targreg;
1644 low = 0;
43b4c25e 1645 }
ea1562b3
NC
1646
1647 if (poffset)
1648 set_tok_const (*poffset, low);
1649 *pbasereg = basereg;
43b4c25e 1650 }
ea1562b3
NC
1651
1652 return emit_lituse;
43b4c25e 1653}
43b4c25e 1654
ea1562b3
NC
1655/* The lda macro differs from the lda instruction in that it handles
1656 most simple expressions, particularly symbol address loads and
1657 large constants. */
11f45fb5 1658
ea1562b3
NC
1659static void
1660emit_lda (const expressionS *tok,
1661 int ntok,
1662 const void * unused ATTRIBUTE_UNUSED)
1663{
1664 int basereg;
43b4c25e 1665
ea1562b3
NC
1666 if (ntok == 2)
1667 basereg = (tok[1].X_op == O_constant ? AXP_REG_ZERO : alpha_gp_register);
1668 else
1669 basereg = tok[2].X_add_number;
1670
198f1251 1671 (void) load_expression (tok[0].X_add_number, &tok[1], &basereg, NULL, "lda");
43b4c25e 1672}
43b4c25e 1673
ea1562b3
NC
1674/* The ldah macro differs from the ldah instruction in that it has $31
1675 as an implied base register. */
252b5132 1676
ea1562b3
NC
1677static void
1678emit_ldah (const expressionS *tok,
1679 int ntok ATTRIBUTE_UNUSED,
1680 const void * unused ATTRIBUTE_UNUSED)
252b5132 1681{
ea1562b3 1682 expressionS newtok[3];
252b5132 1683
ea1562b3
NC
1684 newtok[0] = tok[0];
1685 newtok[1] = tok[1];
1686 set_tok_preg (newtok[2], AXP_REG_ZERO);
252b5132 1687
ea1562b3
NC
1688 assemble_tokens ("ldah", newtok, 3, 0);
1689}
19f78583 1690
ea1562b3
NC
1691/* Called internally to handle all alignment needs. This takes care
1692 of eliding calls to frag_align if'n the cached current alignment
1693 says we've already got it, as well as taking care of the auto-align
1694 feature wrt labels. */
252b5132 1695
ea1562b3
NC
1696static void
1697alpha_align (int n,
1698 char *pfill,
1699 symbolS *label,
1700 int force ATTRIBUTE_UNUSED)
1701{
1702 if (alpha_current_align >= n)
1703 return;
43b4c25e 1704
ea1562b3
NC
1705 if (pfill == NULL)
1706 {
1707 if (subseg_text_p (now_seg))
1708 frag_align_code (n, 0);
1709 else
1710 frag_align (n, 0, 0);
1711 }
1712 else
1713 frag_align (n, *pfill, 0);
43b4c25e 1714
ea1562b3 1715 alpha_current_align = n;
43b4c25e 1716
ea1562b3
NC
1717 if (label != NULL && S_GET_SEGMENT (label) == now_seg)
1718 {
1719 symbol_set_frag (label, frag_now);
1720 S_SET_VALUE (label, (valueT) frag_now_fix ());
1721 }
43b4c25e 1722
ea1562b3 1723 record_alignment (now_seg, n);
43b4c25e 1724
ea1562b3
NC
1725 /* ??? If alpha_flag_relax && force && elf, record the requested alignment
1726 in a reloc for the linker to see. */
1727}
19f78583 1728
ea1562b3 1729/* Actually output an instruction with its fixup. */
19f78583 1730
ea1562b3
NC
1731static void
1732emit_insn (struct alpha_insn *insn)
1733{
1734 char *f;
1735 int i;
43b4c25e 1736
ea1562b3
NC
1737 /* Take care of alignment duties. */
1738 if (alpha_auto_align_on && alpha_current_align < 2)
1739 alpha_align (2, (char *) NULL, alpha_insn_label, 0);
1740 if (alpha_current_align > 2)
1741 alpha_current_align = 2;
1742 alpha_insn_label = NULL;
43b4c25e 1743
ea1562b3
NC
1744 /* Write out the instruction. */
1745 f = frag_more (4);
1746 md_number_to_chars (f, insn->insn, 4);
43b4c25e 1747
ea1562b3
NC
1748#ifdef OBJ_ELF
1749 dwarf2_emit_insn (4);
1750#endif
252b5132 1751
ea1562b3
NC
1752 /* Apply the fixups in order. */
1753 for (i = 0; i < insn->nfixups; ++i)
1754 {
1755 const struct alpha_operand *operand = (const struct alpha_operand *) 0;
1756 struct alpha_fixup *fixup = &insn->fixups[i];
1757 struct alpha_reloc_tag *info = NULL;
1758 int size, pcrel;
1759 fixS *fixP;
252b5132 1760
ea1562b3
NC
1761 /* Some fixups are only used internally and so have no howto. */
1762 if ((int) fixup->reloc < 0)
1763 {
1764 operand = &alpha_operands[-(int) fixup->reloc];
1765 size = 4;
1766 pcrel = ((operand->flags & AXP_OPERAND_RELATIVE) != 0);
1767 }
1768 else if (fixup->reloc > BFD_RELOC_UNUSED
1769 || fixup->reloc == BFD_RELOC_ALPHA_GPDISP_HI16
1770 || fixup->reloc == BFD_RELOC_ALPHA_GPDISP_LO16)
1771 {
1772 size = 2;
1773 pcrel = 0;
1774 }
1775 else
1776 {
21d799b5
NC
1777 reloc_howto_type *reloc_howto =
1778 bfd_reloc_type_lookup (stdoutput,
1779 (bfd_reloc_code_real_type) fixup->reloc);
9c2799c2 1780 gas_assert (reloc_howto);
252b5132 1781
ea1562b3 1782 size = bfd_get_reloc_size (reloc_howto);
252b5132 1783
198f1251
TG
1784 switch (fixup->reloc)
1785 {
1786#ifdef OBJ_EVAX
1787 case BFD_RELOC_ALPHA_NOP:
1788 case BFD_RELOC_ALPHA_BSR:
1789 case BFD_RELOC_ALPHA_LDA:
1790 case BFD_RELOC_ALPHA_BOH:
1791 break;
1792#endif
1793 default:
9c2799c2 1794 gas_assert (size >= 1 && size <= 4);
198f1251 1795 }
3739860c 1796
ea1562b3
NC
1797 pcrel = reloc_howto->pc_relative;
1798 }
43b4c25e 1799
ea1562b3 1800 fixP = fix_new_exp (frag_now, f - frag_now->fr_literal, size,
21d799b5 1801 &fixup->exp, pcrel, (bfd_reloc_code_real_type) fixup->reloc);
252b5132 1802
ea1562b3
NC
1803 /* Turn off complaints that the addend is too large for some fixups,
1804 and copy in the sequence number for the explicit relocations. */
1805 switch (fixup->reloc)
1806 {
1807 case BFD_RELOC_ALPHA_HINT:
1808 case BFD_RELOC_GPREL32:
1809 case BFD_RELOC_GPREL16:
1810 case BFD_RELOC_ALPHA_GPREL_HI16:
1811 case BFD_RELOC_ALPHA_GPREL_LO16:
1812 case BFD_RELOC_ALPHA_GOTDTPREL16:
1813 case BFD_RELOC_ALPHA_DTPREL_HI16:
1814 case BFD_RELOC_ALPHA_DTPREL_LO16:
1815 case BFD_RELOC_ALPHA_DTPREL16:
1816 case BFD_RELOC_ALPHA_GOTTPREL16:
1817 case BFD_RELOC_ALPHA_TPREL_HI16:
1818 case BFD_RELOC_ALPHA_TPREL_LO16:
1819 case BFD_RELOC_ALPHA_TPREL16:
1820 fixP->fx_no_overflow = 1;
252b5132 1821 break;
252b5132 1822
ea1562b3
NC
1823 case BFD_RELOC_ALPHA_GPDISP_HI16:
1824 fixP->fx_no_overflow = 1;
1825 fixP->fx_addsy = section_symbol (now_seg);
1826 fixP->fx_offset = 0;
43b4c25e 1827
ea1562b3
NC
1828 info = get_alpha_reloc_tag (insn->sequence);
1829 if (++info->n_master > 1)
1830 as_bad (_("too many ldah insns for !gpdisp!%ld"), insn->sequence);
1831 if (info->segment != now_seg)
1832 as_bad (_("both insns for !gpdisp!%ld must be in the same section"),
1833 insn->sequence);
1834 fixP->tc_fix_data.info = info;
1835 break;
43b4c25e 1836
ea1562b3
NC
1837 case BFD_RELOC_ALPHA_GPDISP_LO16:
1838 fixP->fx_no_overflow = 1;
252b5132 1839
ea1562b3
NC
1840 info = get_alpha_reloc_tag (insn->sequence);
1841 if (++info->n_slaves > 1)
1842 as_bad (_("too many lda insns for !gpdisp!%ld"), insn->sequence);
1843 if (info->segment != now_seg)
1844 as_bad (_("both insns for !gpdisp!%ld must be in the same section"),
1845 insn->sequence);
1846 fixP->tc_fix_data.info = info;
1847 info->slaves = fixP;
1848 break;
1849
1850 case BFD_RELOC_ALPHA_LITERAL:
1851 case BFD_RELOC_ALPHA_ELF_LITERAL:
1852 fixP->fx_no_overflow = 1;
1853
1854 if (insn->sequence == 0)
1855 break;
1856 info = get_alpha_reloc_tag (insn->sequence);
1857 info->master = fixP;
1858 info->n_master++;
1859 if (info->segment != now_seg)
1860 info->multi_section_p = 1;
1861 fixP->tc_fix_data.info = info;
1862 break;
43b4c25e 1863
19f78583 1864#ifdef RELOC_OP_P
ea1562b3
NC
1865 case DUMMY_RELOC_LITUSE_ADDR:
1866 fixP->fx_offset = LITUSE_ALPHA_ADDR;
1867 goto do_lituse;
1868 case DUMMY_RELOC_LITUSE_BASE:
1869 fixP->fx_offset = LITUSE_ALPHA_BASE;
1870 goto do_lituse;
1871 case DUMMY_RELOC_LITUSE_BYTOFF:
1872 fixP->fx_offset = LITUSE_ALPHA_BYTOFF;
1873 goto do_lituse;
1874 case DUMMY_RELOC_LITUSE_JSR:
1875 fixP->fx_offset = LITUSE_ALPHA_JSR;
1876 goto do_lituse;
1877 case DUMMY_RELOC_LITUSE_TLSGD:
1878 fixP->fx_offset = LITUSE_ALPHA_TLSGD;
1879 goto do_lituse;
1880 case DUMMY_RELOC_LITUSE_TLSLDM:
1881 fixP->fx_offset = LITUSE_ALPHA_TLSLDM;
1882 goto do_lituse;
04fe8f58
RH
1883 case DUMMY_RELOC_LITUSE_JSRDIRECT:
1884 fixP->fx_offset = LITUSE_ALPHA_JSRDIRECT;
1885 goto do_lituse;
ea1562b3
NC
1886 do_lituse:
1887 fixP->fx_addsy = section_symbol (now_seg);
1888 fixP->fx_r_type = BFD_RELOC_ALPHA_LITUSE;
1889
1890 info = get_alpha_reloc_tag (insn->sequence);
1891 if (fixup->reloc == DUMMY_RELOC_LITUSE_TLSGD)
1892 info->saw_lu_tlsgd = 1;
1893 else if (fixup->reloc == DUMMY_RELOC_LITUSE_TLSLDM)
1894 info->saw_lu_tlsldm = 1;
1895 if (++info->n_slaves > 1)
1896 {
1897 if (info->saw_lu_tlsgd)
1898 as_bad (_("too many lituse insns for !lituse_tlsgd!%ld"),
1899 insn->sequence);
1900 else if (info->saw_lu_tlsldm)
1901 as_bad (_("too many lituse insns for !lituse_tlsldm!%ld"),
1902 insn->sequence);
1903 }
1904 fixP->tc_fix_data.info = info;
1905 fixP->tc_fix_data.next_reloc = info->slaves;
1906 info->slaves = fixP;
1907 if (info->segment != now_seg)
1908 info->multi_section_p = 1;
1909 break;
1910
1911 case BFD_RELOC_ALPHA_TLSGD:
1912 fixP->fx_no_overflow = 1;
1913
1914 if (insn->sequence == 0)
1915 break;
1916 info = get_alpha_reloc_tag (insn->sequence);
1917 if (info->saw_tlsgd)
1918 as_bad (_("duplicate !tlsgd!%ld"), insn->sequence);
1919 else if (info->saw_tlsldm)
1920 as_bad (_("sequence number in use for !tlsldm!%ld"),
1921 insn->sequence);
1922 else
1923 info->saw_tlsgd = 1;
1924 fixP->tc_fix_data.info = info;
1925 break;
1926
1927 case BFD_RELOC_ALPHA_TLSLDM:
1928 fixP->fx_no_overflow = 1;
1929
1930 if (insn->sequence == 0)
1931 break;
1932 info = get_alpha_reloc_tag (insn->sequence);
1933 if (info->saw_tlsldm)
1934 as_bad (_("duplicate !tlsldm!%ld"), insn->sequence);
1935 else if (info->saw_tlsgd)
1936 as_bad (_("sequence number in use for !tlsgd!%ld"),
1937 insn->sequence);
1938 else
1939 info->saw_tlsldm = 1;
1940 fixP->tc_fix_data.info = info;
1941 break;
19f78583 1942#endif
198f1251
TG
1943#ifdef OBJ_EVAX
1944 case BFD_RELOC_ALPHA_NOP:
1945 case BFD_RELOC_ALPHA_LDA:
1946 case BFD_RELOC_ALPHA_BSR:
1947 case BFD_RELOC_ALPHA_BOH:
1948 info = get_alpha_reloc_tag (next_sequence_num--);
1949 fixP->tc_fix_data.info = info;
1950 fixP->tc_fix_data.info->sym = fixup->xtrasym;
1951 fixP->tc_fix_data.info->psym = fixup->procsym;
1952 break;
1953#endif
1954
ea1562b3
NC
1955 default:
1956 if ((int) fixup->reloc < 0)
1957 {
1958 if (operand->flags & AXP_OPERAND_NOOVERFLOW)
1959 fixP->fx_no_overflow = 1;
1960 }
1961 break;
1962 }
1963 }
252b5132
RH
1964}
1965
ea1562b3 1966/* Insert an operand value into an instruction. */
252b5132 1967
ea1562b3
NC
1968static unsigned
1969insert_operand (unsigned insn,
1970 const struct alpha_operand *operand,
1971 offsetT val,
3b4dbbbf 1972 const char *file,
ea1562b3 1973 unsigned line)
252b5132 1974{
ea1562b3 1975 if (operand->bits != 32 && !(operand->flags & AXP_OPERAND_NOOVERFLOW))
252b5132 1976 {
ea1562b3 1977 offsetT min, max;
252b5132 1978
ea1562b3 1979 if (operand->flags & AXP_OPERAND_SIGNED)
252b5132 1980 {
ea1562b3
NC
1981 max = (1 << (operand->bits - 1)) - 1;
1982 min = -(1 << (operand->bits - 1));
1983 }
1984 else
1985 {
1986 max = (1 << operand->bits) - 1;
1987 min = 0;
1988 }
252b5132 1989
ea1562b3 1990 if (val < min || val > max)
a06413e3 1991 as_bad_value_out_of_range (_("operand"), val, min, max, file, line);
ea1562b3 1992 }
252b5132 1993
ea1562b3
NC
1994 if (operand->insert)
1995 {
1996 const char *errmsg = NULL;
252b5132
RH
1997
1998 insn = (*operand->insert) (insn, val, &errmsg);
1999 if (errmsg)
20203fb9 2000 as_warn ("%s", errmsg);
252b5132
RH
2001 }
2002 else
2003 insn |= ((val & ((1 << operand->bits) - 1)) << operand->shift);
2004
2005 return insn;
2006}
2007
11f45fb5
NC
2008/* Turn an opcode description and a set of arguments into
2009 an instruction and a fixup. */
252b5132
RH
2010
2011static void
ea1562b3
NC
2012assemble_insn (const struct alpha_opcode *opcode,
2013 const expressionS *tok,
2014 int ntok,
2015 struct alpha_insn *insn,
21d799b5 2016 extended_bfd_reloc_code_real_type reloc)
252b5132 2017{
19f78583
RH
2018 const struct alpha_operand *reloc_operand = NULL;
2019 const expressionS *reloc_exp = NULL;
252b5132
RH
2020 const unsigned char *argidx;
2021 unsigned image;
2022 int tokidx = 0;
2023
2024 memset (insn, 0, sizeof (*insn));
2025 image = opcode->opcode;
2026
2027 for (argidx = opcode->operands; *argidx; ++argidx)
2028 {
2029 const struct alpha_operand *operand = &alpha_operands[*argidx];
32ff5c2e 2030 const expressionS *t = (const expressionS *) 0;
252b5132
RH
2031
2032 if (operand->flags & AXP_OPERAND_FAKE)
2033 {
ea1562b3 2034 /* Fake operands take no value and generate no fixup. */
32ff5c2e 2035 image = insert_operand (image, operand, 0, NULL, 0);
252b5132
RH
2036 continue;
2037 }
2038
2039 if (tokidx >= ntok)
2040 {
2041 switch (operand->flags & AXP_OPERAND_OPTIONAL_MASK)
2042 {
2043 case AXP_OPERAND_DEFAULT_FIRST:
2044 t = &tok[0];
2045 break;
2046 case AXP_OPERAND_DEFAULT_SECOND:
2047 t = &tok[1];
2048 break;
2049 case AXP_OPERAND_DEFAULT_ZERO:
2050 {
446a06c9 2051 static expressionS zero_exp;
252b5132 2052 t = &zero_exp;
446a06c9
MM
2053 zero_exp.X_op = O_constant;
2054 zero_exp.X_unsigned = 1;
252b5132
RH
2055 }
2056 break;
2057 default:
bc805888 2058 abort ();
252b5132
RH
2059 }
2060 }
2061 else
2062 t = &tok[tokidx++];
2063
2064 switch (t->X_op)
2065 {
2066 case O_register:
2067 case O_pregister:
2068 case O_cpregister:
32ff5c2e
KH
2069 image = insert_operand (image, operand, regno (t->X_add_number),
2070 NULL, 0);
252b5132
RH
2071 break;
2072
2073 case O_constant:
32ff5c2e 2074 image = insert_operand (image, operand, t->X_add_number, NULL, 0);
9c2799c2 2075 gas_assert (reloc_operand == NULL);
19f78583
RH
2076 reloc_operand = operand;
2077 reloc_exp = t;
252b5132
RH
2078 break;
2079
2080 default:
19f78583
RH
2081 /* This is only 0 for fields that should contain registers,
2082 which means this pattern shouldn't have matched. */
2083 if (operand->default_reloc == 0)
2084 abort ();
252b5132 2085
19f78583 2086 /* There is one special case for which an insn receives two
cc8a6dd0 2087 relocations, and thus the user-supplied reloc does not
19f78583
RH
2088 override the operand reloc. */
2089 if (operand->default_reloc == BFD_RELOC_ALPHA_HINT)
2090 {
2091 struct alpha_fixup *fixup;
252b5132 2092
19f78583
RH
2093 if (insn->nfixups >= MAX_INSN_FIXUPS)
2094 as_fatal (_("too many fixups"));
252b5132 2095
19f78583
RH
2096 fixup = &insn->fixups[insn->nfixups++];
2097 fixup->exp = *t;
2098 fixup->reloc = BFD_RELOC_ALPHA_HINT;
2099 }
2100 else
2101 {
2102 if (reloc == BFD_RELOC_UNUSED)
2103 reloc = operand->default_reloc;
2104
9c2799c2 2105 gas_assert (reloc_operand == NULL);
19f78583
RH
2106 reloc_operand = operand;
2107 reloc_exp = t;
2108 }
252b5132
RH
2109 break;
2110 }
2111 }
2112
19f78583
RH
2113 if (reloc != BFD_RELOC_UNUSED)
2114 {
2115 struct alpha_fixup *fixup;
2116
2117 if (insn->nfixups >= MAX_INSN_FIXUPS)
2118 as_fatal (_("too many fixups"));
2119
2120 /* ??? My but this is hacky. But the OSF/1 assembler uses the same
2121 relocation tag for both ldah and lda with gpdisp. Choose the
2122 correct internal relocation based on the opcode. */
2123 if (reloc == BFD_RELOC_ALPHA_GPDISP)
2124 {
2125 if (strcmp (opcode->name, "ldah") == 0)
2126 reloc = BFD_RELOC_ALPHA_GPDISP_HI16;
2127 else if (strcmp (opcode->name, "lda") == 0)
2128 reloc = BFD_RELOC_ALPHA_GPDISP_LO16;
2129 else
2130 as_bad (_("invalid relocation for instruction"));
2131 }
2132
2133 /* If this is a real relocation (as opposed to a lituse hint), then
198f1251 2134 the relocation width should match the operand width.
3739860c 2135 Take care of -MDISP in operand table. */
198f1251 2136 else if (reloc < BFD_RELOC_UNUSED && reloc > 0)
19f78583
RH
2137 {
2138 reloc_howto_type *reloc_howto
21d799b5
NC
2139 = bfd_reloc_type_lookup (stdoutput,
2140 (bfd_reloc_code_real_type) reloc);
ee21dcab
AM
2141 if (reloc_operand == NULL
2142 || reloc_howto->bitsize != reloc_operand->bits)
19f78583
RH
2143 {
2144 as_bad (_("invalid relocation for field"));
2145 return;
2146 }
2147 }
2148
2149 fixup = &insn->fixups[insn->nfixups++];
2150 if (reloc_exp)
2151 fixup->exp = *reloc_exp;
2152 else
2153 fixup->exp.X_op = O_absent;
2154 fixup->reloc = reloc;
2155 }
2156
252b5132
RH
2157 insn->insn = image;
2158}
2159
ea1562b3
NC
2160/* Handle all "simple" integer register loads -- ldq, ldq_l, ldq_u,
2161 etc. They differ from the real instructions in that they do simple
2162 expressions like the lda macro. */
252b5132
RH
2163
2164static void
ea1562b3
NC
2165emit_ir_load (const expressionS *tok,
2166 int ntok,
2167 const void * opname)
252b5132 2168{
ea1562b3
NC
2169 int basereg;
2170 long lituse;
2171 expressionS newtok[3];
2172 struct alpha_insn insn;
198f1251
TG
2173 const char *symname
2174 = tok[1].X_add_symbol ? S_GET_NAME (tok[1].X_add_symbol): "";
2175 int symlen = strlen (symname);
252b5132 2176
ea1562b3
NC
2177 if (ntok == 2)
2178 basereg = (tok[1].X_op == O_constant ? AXP_REG_ZERO : alpha_gp_register);
2179 else
2180 basereg = tok[2].X_add_number;
252b5132 2181
198f1251 2182 lituse = load_expression (tok[0].X_add_number, &tok[1],
21d799b5 2183 &basereg, &newtok[1], (const char *) opname);
252b5132 2184
198f1251
TG
2185 if (basereg == alpha_gp_register &&
2186 (symlen > 4 && strcmp (&symname [symlen - 4], "..lk") == 0))
2187 return;
3739860c 2188
ea1562b3
NC
2189 newtok[0] = tok[0];
2190 set_tok_preg (newtok[2], basereg);
4dc7ead9 2191
ea1562b3
NC
2192 assemble_tokens_to_insn ((const char *) opname, newtok, 3, &insn);
2193
2194 if (lituse)
252b5132 2195 {
9c2799c2 2196 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2197 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BASE;
2198 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2199 insn.nfixups++;
2200 insn.sequence = lituse;
2201 }
252b5132 2202
ea1562b3
NC
2203 emit_insn (&insn);
2204}
252b5132 2205
ea1562b3
NC
2206/* Handle fp register loads, and both integer and fp register stores.
2207 Again, we handle simple expressions. */
43b4c25e 2208
ea1562b3
NC
2209static void
2210emit_loadstore (const expressionS *tok,
2211 int ntok,
2212 const void * opname)
2213{
2214 int basereg;
2215 long lituse;
2216 expressionS newtok[3];
2217 struct alpha_insn insn;
252b5132 2218
ea1562b3
NC
2219 if (ntok == 2)
2220 basereg = (tok[1].X_op == O_constant ? AXP_REG_ZERO : alpha_gp_register);
2221 else
2222 basereg = tok[2].X_add_number;
252b5132 2223
ea1562b3
NC
2224 if (tok[1].X_op != O_constant || !range_signed_16 (tok[1].X_add_number))
2225 {
2226 if (alpha_noat_on)
2227 as_bad (_("macro requires $at register while noat in effect"));
252b5132 2228
3739860c 2229 lituse = load_expression (AXP_REG_AT, &tok[1],
21d799b5 2230 &basereg, &newtok[1], (const char *) opname);
ea1562b3
NC
2231 }
2232 else
2233 {
2234 newtok[1] = tok[1];
2235 lituse = 0;
2236 }
43b4c25e 2237
ea1562b3
NC
2238 newtok[0] = tok[0];
2239 set_tok_preg (newtok[2], basereg);
43b4c25e 2240
ea1562b3 2241 assemble_tokens_to_insn ((const char *) opname, newtok, 3, &insn);
43b4c25e 2242
ea1562b3
NC
2243 if (lituse)
2244 {
9c2799c2 2245 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2246 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BASE;
2247 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2248 insn.nfixups++;
2249 insn.sequence = lituse;
2250 }
43b4c25e 2251
ea1562b3
NC
2252 emit_insn (&insn);
2253}
43b4c25e 2254
ea1562b3 2255/* Load a half-word or byte as an unsigned value. */
43b4c25e 2256
ea1562b3
NC
2257static void
2258emit_ldXu (const expressionS *tok,
2259 int ntok,
2260 const void * vlgsize)
2261{
2262 if (alpha_target & AXP_OPCODE_BWX)
2263 emit_ir_load (tok, ntok, ldXu_op[(long) vlgsize]);
2264 else
2265 {
2266 expressionS newtok[3];
2267 struct alpha_insn insn;
2268 int basereg;
2269 long lituse;
19f78583 2270
ea1562b3
NC
2271 if (alpha_noat_on)
2272 as_bad (_("macro requires $at register while noat in effect"));
43b4c25e 2273
ea1562b3
NC
2274 if (ntok == 2)
2275 basereg = (tok[1].X_op == O_constant
2276 ? AXP_REG_ZERO : alpha_gp_register);
2277 else
2278 basereg = tok[2].X_add_number;
3765b1be 2279
ea1562b3 2280 /* Emit "lda $at, exp". */
198f1251 2281 lituse = load_expression (AXP_REG_AT, &tok[1], &basereg, NULL, "lda");
3765b1be 2282
ea1562b3
NC
2283 /* Emit "ldq_u targ, 0($at)". */
2284 newtok[0] = tok[0];
2285 set_tok_const (newtok[1], 0);
2286 set_tok_preg (newtok[2], basereg);
2287 assemble_tokens_to_insn ("ldq_u", newtok, 3, &insn);
3765b1be 2288
ea1562b3
NC
2289 if (lituse)
2290 {
9c2799c2 2291 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2292 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BASE;
2293 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2294 insn.nfixups++;
2295 insn.sequence = lituse;
252b5132 2296 }
252b5132 2297
ea1562b3 2298 emit_insn (&insn);
252b5132 2299
ea1562b3
NC
2300 /* Emit "extXl targ, $at, targ". */
2301 set_tok_reg (newtok[1], basereg);
2302 newtok[2] = newtok[0];
2303 assemble_tokens_to_insn (extXl_op[(long) vlgsize], newtok, 3, &insn);
252b5132 2304
ea1562b3 2305 if (lituse)
252b5132 2306 {
9c2799c2 2307 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2308 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BYTOFF;
2309 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2310 insn.nfixups++;
2311 insn.sequence = lituse;
252b5132 2312 }
ea1562b3
NC
2313
2314 emit_insn (&insn);
252b5132 2315 }
252b5132
RH
2316}
2317
ea1562b3 2318/* Load a half-word or byte as a signed value. */
252b5132
RH
2319
2320static void
ea1562b3
NC
2321emit_ldX (const expressionS *tok,
2322 int ntok,
2323 const void * vlgsize)
252b5132 2324{
ea1562b3
NC
2325 emit_ldXu (tok, ntok, vlgsize);
2326 assemble_tokens (sextX_op[(long) vlgsize], tok, 1, 1);
2327}
252b5132 2328
ea1562b3
NC
2329/* Load an integral value from an unaligned address as an unsigned
2330 value. */
252b5132
RH
2331
2332static void
ea1562b3
NC
2333emit_uldXu (const expressionS *tok,
2334 int ntok,
2335 const void * vlgsize)
252b5132 2336{
ea1562b3 2337 long lgsize = (long) vlgsize;
252b5132 2338 expressionS newtok[3];
252b5132 2339
ea1562b3
NC
2340 if (alpha_noat_on)
2341 as_bad (_("macro requires $at register while noat in effect"));
252b5132 2342
ea1562b3
NC
2343 /* Emit "lda $at, exp". */
2344 memcpy (newtok, tok, sizeof (expressionS) * ntok);
2345 newtok[0].X_add_number = AXP_REG_AT;
2346 assemble_tokens ("lda", newtok, ntok, 1);
2347
2348 /* Emit "ldq_u $t9, 0($at)". */
2349 set_tok_reg (newtok[0], AXP_REG_T9);
252b5132 2350 set_tok_const (newtok[1], 0);
ea1562b3
NC
2351 set_tok_preg (newtok[2], AXP_REG_AT);
2352 assemble_tokens ("ldq_u", newtok, 3, 1);
252b5132 2353
ea1562b3
NC
2354 /* Emit "ldq_u $t10, size-1($at)". */
2355 set_tok_reg (newtok[0], AXP_REG_T10);
2356 set_tok_const (newtok[1], (1 << lgsize) - 1);
2357 assemble_tokens ("ldq_u", newtok, 3, 1);
252b5132 2358
ea1562b3
NC
2359 /* Emit "extXl $t9, $at, $t9". */
2360 set_tok_reg (newtok[0], AXP_REG_T9);
2361 set_tok_reg (newtok[1], AXP_REG_AT);
2362 set_tok_reg (newtok[2], AXP_REG_T9);
2363 assemble_tokens (extXl_op[lgsize], newtok, 3, 1);
252b5132 2364
ea1562b3
NC
2365 /* Emit "extXh $t10, $at, $t10". */
2366 set_tok_reg (newtok[0], AXP_REG_T10);
2367 set_tok_reg (newtok[2], AXP_REG_T10);
2368 assemble_tokens (extXh_op[lgsize], newtok, 3, 1);
252b5132 2369
ea1562b3
NC
2370 /* Emit "or $t9, $t10, targ". */
2371 set_tok_reg (newtok[0], AXP_REG_T9);
2372 set_tok_reg (newtok[1], AXP_REG_T10);
2373 newtok[2] = tok[0];
2374 assemble_tokens ("or", newtok, 3, 1);
2375}
252b5132 2376
ea1562b3
NC
2377/* Load an integral value from an unaligned address as a signed value.
2378 Note that quads should get funneled to the unsigned load since we
2379 don't have to do the sign extension. */
252b5132 2380
ea1562b3
NC
2381static void
2382emit_uldX (const expressionS *tok,
2383 int ntok,
2384 const void * vlgsize)
2385{
2386 emit_uldXu (tok, ntok, vlgsize);
2387 assemble_tokens (sextX_op[(long) vlgsize], tok, 1, 1);
2388}
252b5132 2389
ea1562b3 2390/* Implement the ldil macro. */
252b5132 2391
ea1562b3
NC
2392static void
2393emit_ldil (const expressionS *tok,
2394 int ntok,
2395 const void * unused ATTRIBUTE_UNUSED)
2396{
2397 expressionS newtok[2];
252b5132 2398
ea1562b3
NC
2399 memcpy (newtok, tok, sizeof (newtok));
2400 newtok[1].X_add_number = sign_extend_32 (tok[1].X_add_number);
252b5132 2401
ea1562b3 2402 assemble_tokens ("lda", newtok, ntok, 1);
252b5132
RH
2403}
2404
ea1562b3 2405/* Store a half-word or byte. */
252b5132 2406
ea1562b3
NC
2407static void
2408emit_stX (const expressionS *tok,
2409 int ntok,
2410 const void * vlgsize)
252b5132 2411{
ea1562b3 2412 int lgsize = (int) (long) vlgsize;
252b5132 2413
ea1562b3
NC
2414 if (alpha_target & AXP_OPCODE_BWX)
2415 emit_loadstore (tok, ntok, stX_op[lgsize]);
2416 else
2417 {
2418 expressionS newtok[3];
2419 struct alpha_insn insn;
2420 int basereg;
2421 long lituse;
252b5132 2422
ea1562b3
NC
2423 if (alpha_noat_on)
2424 as_bad (_("macro requires $at register while noat in effect"));
252b5132 2425
ea1562b3
NC
2426 if (ntok == 2)
2427 basereg = (tok[1].X_op == O_constant
2428 ? AXP_REG_ZERO : alpha_gp_register);
2429 else
2430 basereg = tok[2].X_add_number;
252b5132 2431
ea1562b3 2432 /* Emit "lda $at, exp". */
198f1251 2433 lituse = load_expression (AXP_REG_AT, &tok[1], &basereg, NULL, "lda");
252b5132 2434
ea1562b3
NC
2435 /* Emit "ldq_u $t9, 0($at)". */
2436 set_tok_reg (newtok[0], AXP_REG_T9);
2437 set_tok_const (newtok[1], 0);
2438 set_tok_preg (newtok[2], basereg);
2439 assemble_tokens_to_insn ("ldq_u", newtok, 3, &insn);
252b5132 2440
ea1562b3
NC
2441 if (lituse)
2442 {
9c2799c2 2443 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2444 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BASE;
2445 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2446 insn.nfixups++;
2447 insn.sequence = lituse;
2448 }
252b5132 2449
ea1562b3 2450 emit_insn (&insn);
252b5132 2451
ea1562b3
NC
2452 /* Emit "insXl src, $at, $t10". */
2453 newtok[0] = tok[0];
2454 set_tok_reg (newtok[1], basereg);
2455 set_tok_reg (newtok[2], AXP_REG_T10);
2456 assemble_tokens_to_insn (insXl_op[lgsize], newtok, 3, &insn);
252b5132 2457
ea1562b3
NC
2458 if (lituse)
2459 {
9c2799c2 2460 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2461 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BYTOFF;
2462 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2463 insn.nfixups++;
2464 insn.sequence = lituse;
2465 }
252b5132 2466
ea1562b3 2467 emit_insn (&insn);
252b5132 2468
ea1562b3
NC
2469 /* Emit "mskXl $t9, $at, $t9". */
2470 set_tok_reg (newtok[0], AXP_REG_T9);
2471 newtok[2] = newtok[0];
2472 assemble_tokens_to_insn (mskXl_op[lgsize], newtok, 3, &insn);
43b4c25e 2473
ea1562b3
NC
2474 if (lituse)
2475 {
9c2799c2 2476 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2477 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BYTOFF;
2478 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2479 insn.nfixups++;
2480 insn.sequence = lituse;
2481 }
252b5132 2482
ea1562b3 2483 emit_insn (&insn);
252b5132 2484
ea1562b3
NC
2485 /* Emit "or $t9, $t10, $t9". */
2486 set_tok_reg (newtok[1], AXP_REG_T10);
2487 assemble_tokens ("or", newtok, 3, 1);
252b5132 2488
ea1562b3
NC
2489 /* Emit "stq_u $t9, 0($at). */
2490 set_tok_const(newtok[1], 0);
2491 set_tok_preg (newtok[2], AXP_REG_AT);
2492 assemble_tokens_to_insn ("stq_u", newtok, 3, &insn);
252b5132 2493
ea1562b3
NC
2494 if (lituse)
2495 {
9c2799c2 2496 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3
NC
2497 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BASE;
2498 insn.fixups[insn.nfixups].exp.X_op = O_absent;
2499 insn.nfixups++;
2500 insn.sequence = lituse;
2501 }
252b5132 2502
ea1562b3
NC
2503 emit_insn (&insn);
2504 }
2505}
252b5132 2506
ea1562b3 2507/* Store an integer to an unaligned address. */
252b5132 2508
ea1562b3
NC
2509static void
2510emit_ustX (const expressionS *tok,
2511 int ntok,
2512 const void * vlgsize)
2513{
2514 int lgsize = (int) (long) vlgsize;
2515 expressionS newtok[3];
252b5132 2516
ea1562b3
NC
2517 /* Emit "lda $at, exp". */
2518 memcpy (newtok, tok, sizeof (expressionS) * ntok);
2519 newtok[0].X_add_number = AXP_REG_AT;
2520 assemble_tokens ("lda", newtok, ntok, 1);
252b5132 2521
ea1562b3
NC
2522 /* Emit "ldq_u $9, 0($at)". */
2523 set_tok_reg (newtok[0], AXP_REG_T9);
2524 set_tok_const (newtok[1], 0);
2525 set_tok_preg (newtok[2], AXP_REG_AT);
2526 assemble_tokens ("ldq_u", newtok, 3, 1);
252b5132 2527
ea1562b3
NC
2528 /* Emit "ldq_u $10, size-1($at)". */
2529 set_tok_reg (newtok[0], AXP_REG_T10);
2530 set_tok_const (newtok[1], (1 << lgsize) - 1);
2531 assemble_tokens ("ldq_u", newtok, 3, 1);
252b5132 2532
ea1562b3
NC
2533 /* Emit "insXl src, $at, $t11". */
2534 newtok[0] = tok[0];
2535 set_tok_reg (newtok[1], AXP_REG_AT);
2536 set_tok_reg (newtok[2], AXP_REG_T11);
2537 assemble_tokens (insXl_op[lgsize], newtok, 3, 1);
252b5132 2538
ea1562b3
NC
2539 /* Emit "insXh src, $at, $t12". */
2540 set_tok_reg (newtok[2], AXP_REG_T12);
2541 assemble_tokens (insXh_op[lgsize], newtok, 3, 1);
252b5132 2542
ea1562b3
NC
2543 /* Emit "mskXl $t9, $at, $t9". */
2544 set_tok_reg (newtok[0], AXP_REG_T9);
2545 newtok[2] = newtok[0];
2546 assemble_tokens (mskXl_op[lgsize], newtok, 3, 1);
252b5132 2547
ea1562b3
NC
2548 /* Emit "mskXh $t10, $at, $t10". */
2549 set_tok_reg (newtok[0], AXP_REG_T10);
2550 newtok[2] = newtok[0];
2551 assemble_tokens (mskXh_op[lgsize], newtok, 3, 1);
252b5132 2552
ea1562b3
NC
2553 /* Emit "or $t9, $t11, $t9". */
2554 set_tok_reg (newtok[0], AXP_REG_T9);
2555 set_tok_reg (newtok[1], AXP_REG_T11);
2556 newtok[2] = newtok[0];
2557 assemble_tokens ("or", newtok, 3, 1);
252b5132 2558
ea1562b3
NC
2559 /* Emit "or $t10, $t12, $t10". */
2560 set_tok_reg (newtok[0], AXP_REG_T10);
2561 set_tok_reg (newtok[1], AXP_REG_T12);
2562 newtok[2] = newtok[0];
2563 assemble_tokens ("or", newtok, 3, 1);
252b5132 2564
ea1562b3
NC
2565 /* Emit "stq_u $t10, size-1($at)". */
2566 set_tok_reg (newtok[0], AXP_REG_T10);
2567 set_tok_const (newtok[1], (1 << lgsize) - 1);
af1c1010
NC
2568 set_tok_preg (newtok[2], AXP_REG_AT);
2569 assemble_tokens ("stq_u", newtok, 3, 1);
2570
2571 /* Emit "stq_u $t9, 0($at)". */
2572 set_tok_reg (newtok[0], AXP_REG_T9);
2573 set_tok_const (newtok[1], 0);
ea1562b3
NC
2574 assemble_tokens ("stq_u", newtok, 3, 1);
2575}
252b5132 2576
ea1562b3
NC
2577/* Sign extend a half-word or byte. The 32-bit sign extend is
2578 implemented as "addl $31, $r, $t" in the opcode table. */
252b5132 2579
ea1562b3
NC
2580static void
2581emit_sextX (const expressionS *tok,
2582 int ntok,
2583 const void * vlgsize)
2584{
2585 long lgsize = (long) vlgsize;
252b5132 2586
ea1562b3
NC
2587 if (alpha_target & AXP_OPCODE_BWX)
2588 assemble_tokens (sextX_op[lgsize], tok, ntok, 0);
2589 else
2590 {
2591 int bitshift = 64 - 8 * (1 << lgsize);
2592 expressionS newtok[3];
252b5132 2593
ea1562b3
NC
2594 /* Emit "sll src,bits,dst". */
2595 newtok[0] = tok[0];
2596 set_tok_const (newtok[1], bitshift);
2597 newtok[2] = tok[ntok - 1];
2598 assemble_tokens ("sll", newtok, 3, 1);
252b5132 2599
ea1562b3
NC
2600 /* Emit "sra dst,bits,dst". */
2601 newtok[0] = newtok[2];
2602 assemble_tokens ("sra", newtok, 3, 1);
252b5132 2603 }
ea1562b3 2604}
252b5132 2605
ea1562b3 2606/* Implement the division and modulus macros. */
252b5132
RH
2607
2608#ifdef OBJ_EVAX
252b5132 2609
ea1562b3
NC
2610/* Make register usage like in normal procedure call.
2611 Don't clobber PV and RA. */
252b5132 2612
ea1562b3
NC
2613static void
2614emit_division (const expressionS *tok,
2615 int ntok,
2616 const void * symname)
2617{
2618 /* DIVISION and MODULUS. Yech.
252b5132 2619
ea1562b3
NC
2620 Convert
2621 OP x,y,result
2622 to
2623 mov x,R16 # if x != R16
2624 mov y,R17 # if y != R17
2625 lda AT,__OP
2626 jsr AT,(AT),0
2627 mov R0,result
252b5132 2628
ea1562b3
NC
2629 with appropriate optimizations if R0,R16,R17 are the registers
2630 specified by the compiler. */
252b5132 2631
ea1562b3
NC
2632 int xr, yr, rr;
2633 symbolS *sym;
2634 expressionS newtok[3];
252b5132 2635
ea1562b3
NC
2636 xr = regno (tok[0].X_add_number);
2637 yr = regno (tok[1].X_add_number);
252b5132 2638
ea1562b3
NC
2639 if (ntok < 3)
2640 rr = xr;
2641 else
2642 rr = regno (tok[2].X_add_number);
252b5132 2643
ea1562b3
NC
2644 /* Move the operands into the right place. */
2645 if (yr == AXP_REG_R16 && xr == AXP_REG_R17)
2646 {
2647 /* They are in exactly the wrong order -- swap through AT. */
2648 if (alpha_noat_on)
2649 as_bad (_("macro requires $at register while noat in effect"));
252b5132 2650
ea1562b3
NC
2651 set_tok_reg (newtok[0], AXP_REG_R16);
2652 set_tok_reg (newtok[1], AXP_REG_AT);
2653 assemble_tokens ("mov", newtok, 2, 1);
252b5132 2654
ea1562b3
NC
2655 set_tok_reg (newtok[0], AXP_REG_R17);
2656 set_tok_reg (newtok[1], AXP_REG_R16);
2657 assemble_tokens ("mov", newtok, 2, 1);
252b5132 2658
ea1562b3
NC
2659 set_tok_reg (newtok[0], AXP_REG_AT);
2660 set_tok_reg (newtok[1], AXP_REG_R17);
2661 assemble_tokens ("mov", newtok, 2, 1);
252b5132
RH
2662 }
2663 else
2664 {
ea1562b3 2665 if (yr == AXP_REG_R16)
252b5132 2666 {
ea1562b3
NC
2667 set_tok_reg (newtok[0], AXP_REG_R16);
2668 set_tok_reg (newtok[1], AXP_REG_R17);
2669 assemble_tokens ("mov", newtok, 2, 1);
252b5132
RH
2670 }
2671
ea1562b3 2672 if (xr != AXP_REG_R16)
252b5132 2673 {
ea1562b3
NC
2674 set_tok_reg (newtok[0], xr);
2675 set_tok_reg (newtok[1], AXP_REG_R16);
2676 assemble_tokens ("mov", newtok, 2, 1);
252b5132
RH
2677 }
2678
ea1562b3 2679 if (yr != AXP_REG_R16 && yr != AXP_REG_R17)
252b5132 2680 {
ea1562b3
NC
2681 set_tok_reg (newtok[0], yr);
2682 set_tok_reg (newtok[1], AXP_REG_R17);
2683 assemble_tokens ("mov", newtok, 2, 1);
252b5132 2684 }
252b5132
RH
2685 }
2686
ea1562b3 2687 sym = symbol_find_or_make ((const char *) symname);
252b5132 2688
ea1562b3
NC
2689 set_tok_reg (newtok[0], AXP_REG_AT);
2690 set_tok_sym (newtok[1], sym, 0);
2691 assemble_tokens ("lda", newtok, 2, 1);
252b5132 2692
ea1562b3
NC
2693 /* Call the division routine. */
2694 set_tok_reg (newtok[0], AXP_REG_AT);
2695 set_tok_cpreg (newtok[1], AXP_REG_AT);
2696 set_tok_const (newtok[2], 0);
2697 assemble_tokens ("jsr", newtok, 3, 1);
252b5132 2698
ea1562b3
NC
2699 /* Move the result to the right place. */
2700 if (rr != AXP_REG_R0)
2701 {
2702 set_tok_reg (newtok[0], AXP_REG_R0);
2703 set_tok_reg (newtok[1], rr);
2704 assemble_tokens ("mov", newtok, 2, 1);
2705 }
252b5132
RH
2706}
2707
ea1562b3 2708#else /* !OBJ_EVAX */
252b5132
RH
2709
2710static void
ea1562b3
NC
2711emit_division (const expressionS *tok,
2712 int ntok,
2713 const void * symname)
252b5132 2714{
ea1562b3
NC
2715 /* DIVISION and MODULUS. Yech.
2716 Convert
2717 OP x,y,result
2718 to
2719 lda pv,__OP
2720 mov x,t10
2721 mov y,t11
2722 jsr t9,(pv),__OP
2723 mov t12,result
252b5132 2724
ea1562b3
NC
2725 with appropriate optimizations if t10,t11,t12 are the registers
2726 specified by the compiler. */
252b5132 2727
ea1562b3
NC
2728 int xr, yr, rr;
2729 symbolS *sym;
252b5132 2730 expressionS newtok[3];
252b5132 2731
ea1562b3
NC
2732 xr = regno (tok[0].X_add_number);
2733 yr = regno (tok[1].X_add_number);
252b5132 2734
ea1562b3
NC
2735 if (ntok < 3)
2736 rr = xr;
2737 else
2738 rr = regno (tok[2].X_add_number);
252b5132 2739
ea1562b3 2740 sym = symbol_find_or_make ((const char *) symname);
252b5132 2741
ea1562b3
NC
2742 /* Move the operands into the right place. */
2743 if (yr == AXP_REG_T10 && xr == AXP_REG_T11)
252b5132 2744 {
ea1562b3
NC
2745 /* They are in exactly the wrong order -- swap through AT. */
2746 if (alpha_noat_on)
2747 as_bad (_("macro requires $at register while noat in effect"));
252b5132 2748
ea1562b3
NC
2749 set_tok_reg (newtok[0], AXP_REG_T10);
2750 set_tok_reg (newtok[1], AXP_REG_AT);
2751 assemble_tokens ("mov", newtok, 2, 1);
252b5132 2752
ea1562b3
NC
2753 set_tok_reg (newtok[0], AXP_REG_T11);
2754 set_tok_reg (newtok[1], AXP_REG_T10);
2755 assemble_tokens ("mov", newtok, 2, 1);
252b5132 2756
ea1562b3
NC
2757 set_tok_reg (newtok[0], AXP_REG_AT);
2758 set_tok_reg (newtok[1], AXP_REG_T11);
2759 assemble_tokens ("mov", newtok, 2, 1);
2760 }
2761 else
2762 {
2763 if (yr == AXP_REG_T10)
2764 {
2765 set_tok_reg (newtok[0], AXP_REG_T10);
2766 set_tok_reg (newtok[1], AXP_REG_T11);
2767 assemble_tokens ("mov", newtok, 2, 1);
2768 }
2769
2770 if (xr != AXP_REG_T10)
2771 {
2772 set_tok_reg (newtok[0], xr);
2773 set_tok_reg (newtok[1], AXP_REG_T10);
2774 assemble_tokens ("mov", newtok, 2, 1);
2775 }
2776
2777 if (yr != AXP_REG_T10 && yr != AXP_REG_T11)
2778 {
2779 set_tok_reg (newtok[0], yr);
2780 set_tok_reg (newtok[1], AXP_REG_T11);
2781 assemble_tokens ("mov", newtok, 2, 1);
2782 }
2783 }
2784
2785 /* Call the division routine. */
2786 set_tok_reg (newtok[0], AXP_REG_T9);
2787 set_tok_sym (newtok[1], sym, 0);
2788 assemble_tokens ("jsr", newtok, 2, 1);
2789
2790 /* Reload the GP register. */
2791#ifdef OBJ_AOUT
2792FIXME
2793#endif
2794#if defined(OBJ_ECOFF) || defined(OBJ_ELF)
2795 set_tok_reg (newtok[0], alpha_gp_register);
2796 set_tok_const (newtok[1], 0);
2797 set_tok_preg (newtok[2], AXP_REG_T9);
2798 assemble_tokens ("ldgp", newtok, 3, 1);
2799#endif
2800
2801 /* Move the result to the right place. */
2802 if (rr != AXP_REG_T12)
2803 {
2804 set_tok_reg (newtok[0], AXP_REG_T12);
2805 set_tok_reg (newtok[1], rr);
2806 assemble_tokens ("mov", newtok, 2, 1);
2807 }
2808}
2809
2810#endif /* !OBJ_EVAX */
2811
2812/* The jsr and jmp macros differ from their instruction counterparts
2813 in that they can load the target address and default most
2814 everything. */
2815
2816static void
2817emit_jsrjmp (const expressionS *tok,
2818 int ntok,
2819 const void * vopname)
252b5132 2820{
ea1562b3 2821 const char *opname = (const char *) vopname;
252b5132 2822 struct alpha_insn insn;
ea1562b3
NC
2823 expressionS newtok[3];
2824 int r, tokidx = 0;
2825 long lituse = 0;
252b5132 2826
ea1562b3
NC
2827 if (tokidx < ntok && tok[tokidx].X_op == O_register)
2828 r = regno (tok[tokidx++].X_add_number);
252b5132 2829 else
ea1562b3 2830 r = strcmp (opname, "jmp") == 0 ? AXP_REG_ZERO : AXP_REG_RA;
252b5132 2831
ea1562b3 2832 set_tok_reg (newtok[0], r);
252b5132 2833
ea1562b3
NC
2834 if (tokidx < ntok &&
2835 (tok[tokidx].X_op == O_pregister || tok[tokidx].X_op == O_cpregister))
2836 r = regno (tok[tokidx++].X_add_number);
2837#ifdef OBJ_EVAX
2838 /* Keep register if jsr $n.<sym>. */
2839#else
252b5132
RH
2840 else
2841 {
ea1562b3 2842 int basereg = alpha_gp_register;
198f1251
TG
2843 lituse = load_expression (r = AXP_REG_PV, &tok[tokidx],
2844 &basereg, NULL, opname);
252b5132 2845 }
ea1562b3 2846#endif
252b5132 2847
ea1562b3 2848 set_tok_cpreg (newtok[1], r);
252b5132 2849
198f1251 2850#ifndef OBJ_EVAX
ea1562b3
NC
2851 if (tokidx < ntok)
2852 newtok[2] = tok[tokidx];
2853 else
2854#endif
2855 set_tok_const (newtok[2], 0);
2856
2857 assemble_tokens_to_insn (opname, newtok, 3, &insn);
252b5132
RH
2858
2859 if (lituse)
2860 {
9c2799c2 2861 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
ea1562b3 2862 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_JSR;
19f78583 2863 insn.fixups[insn.nfixups].exp.X_op = O_absent;
252b5132 2864 insn.nfixups++;
19f78583 2865 insn.sequence = lituse;
252b5132
RH
2866 }
2867
198f1251
TG
2868#ifdef OBJ_EVAX
2869 if (alpha_flag_replace
2870 && r == AXP_REG_RA
2871 && tok[tokidx].X_add_symbol
2872 && alpha_linkage_symbol)
2873 {
51794af8 2874 /* Create a BOH reloc for 'jsr $27,NAME'. */
198f1251
TG
2875 const char *symname = S_GET_NAME (tok[tokidx].X_add_symbol);
2876 int symlen = strlen (symname);
2877 char *ensymname;
2878
51794af8 2879 /* Build the entry name as 'NAME..en'. */
add39d23 2880 ensymname = XNEWVEC (char, symlen + 5);
198f1251
TG
2881 memcpy (ensymname, symname, symlen);
2882 memcpy (ensymname + symlen, "..en", 5);
2883
9c2799c2 2884 gas_assert (insn.nfixups < MAX_INSN_FIXUPS);
198f1251
TG
2885 if (insn.nfixups > 0)
2886 {
2887 memmove (&insn.fixups[1], &insn.fixups[0],
2888 sizeof(struct alpha_fixup) * insn.nfixups);
2889 }
2890
2891 /* The fixup must be the same as the BFD_RELOC_ALPHA_NOP
2892 case in load_expression. See B.4.5.2 of the OpenVMS
2893 Linker Utility Manual. */
2894 insn.fixups[0].reloc = BFD_RELOC_ALPHA_BOH;
2895 insn.fixups[0].exp.X_op = O_symbol;
2896 insn.fixups[0].exp.X_add_symbol = symbol_find_or_make (ensymname);
2897 insn.fixups[0].exp.X_add_number = 0;
2898 insn.fixups[0].xtrasym = alpha_linkage_symbol;
2899 insn.fixups[0].procsym = alpha_evax_proc->symbol;
2900 insn.nfixups++;
2901 alpha_linkage_symbol = 0;
39a0d071 2902 free (ensymname);
198f1251
TG
2903 }
2904#endif
2905
252b5132
RH
2906 emit_insn (&insn);
2907}
2908
ea1562b3
NC
2909/* The ret and jcr instructions differ from their instruction
2910 counterparts in that everything can be defaulted. */
252b5132
RH
2911
2912static void
ea1562b3
NC
2913emit_retjcr (const expressionS *tok,
2914 int ntok,
2915 const void * vopname)
252b5132 2916{
ea1562b3
NC
2917 const char *opname = (const char *) vopname;
2918 expressionS newtok[3];
2919 int r, tokidx = 0;
252b5132 2920
ea1562b3
NC
2921 if (tokidx < ntok && tok[tokidx].X_op == O_register)
2922 r = regno (tok[tokidx++].X_add_number);
2923 else
2924 r = AXP_REG_ZERO;
252b5132 2925
ea1562b3 2926 set_tok_reg (newtok[0], r);
19f78583 2927
ea1562b3
NC
2928 if (tokidx < ntok &&
2929 (tok[tokidx].X_op == O_pregister || tok[tokidx].X_op == O_cpregister))
2930 r = regno (tok[tokidx++].X_add_number);
2931 else
2932 r = AXP_REG_RA;
19f78583 2933
ea1562b3 2934 set_tok_cpreg (newtok[1], r);
252b5132 2935
ea1562b3
NC
2936 if (tokidx < ntok)
2937 newtok[2] = tok[tokidx];
2938 else
2939 set_tok_const (newtok[2], strcmp (opname, "ret") == 0);
252b5132 2940
ea1562b3 2941 assemble_tokens (opname, newtok, 3, 0);
252b5132
RH
2942}
2943
ea1562b3 2944/* Implement the ldgp macro. */
252b5132
RH
2945
2946static void
87975d2a 2947emit_ldgp (const expressionS *tok ATTRIBUTE_UNUSED,
ea1562b3
NC
2948 int ntok ATTRIBUTE_UNUSED,
2949 const void * unused ATTRIBUTE_UNUSED)
252b5132 2950{
ea1562b3
NC
2951#ifdef OBJ_AOUT
2952FIXME
2953#endif
2954#if defined(OBJ_ECOFF) || defined(OBJ_ELF)
2955 /* from "ldgp r1,n(r2)", generate "ldah r1,X(R2); lda r1,Y(r1)"
2956 with appropriate constants and relocations. */
2957 struct alpha_insn insn;
252b5132 2958 expressionS newtok[3];
ea1562b3 2959 expressionS addend;
252b5132 2960
ea1562b3
NC
2961#ifdef OBJ_ECOFF
2962 if (regno (tok[2].X_add_number) == AXP_REG_PV)
2963 ecoff_set_gp_prolog_size (0);
2964#endif
252b5132 2965
ea1562b3
NC
2966 newtok[0] = tok[0];
2967 set_tok_const (newtok[1], 0);
2968 newtok[2] = tok[2];
252b5132 2969
ea1562b3 2970 assemble_tokens_to_insn ("ldah", newtok, 3, &insn);
252b5132 2971
ea1562b3 2972 addend = tok[1];
252b5132 2973
ea1562b3
NC
2974#ifdef OBJ_ECOFF
2975 if (addend.X_op != O_constant)
2976 as_bad (_("can not resolve expression"));
2977 addend.X_op = O_symbol;
2978 addend.X_add_symbol = alpha_gp_symbol;
2979#endif
252b5132 2980
ea1562b3
NC
2981 insn.nfixups = 1;
2982 insn.fixups[0].exp = addend;
2983 insn.fixups[0].reloc = BFD_RELOC_ALPHA_GPDISP_HI16;
2984 insn.sequence = next_sequence_num;
252b5132 2985
ea1562b3 2986 emit_insn (&insn);
252b5132 2987
ea1562b3 2988 set_tok_preg (newtok[2], tok[0].X_add_number);
252b5132 2989
ea1562b3 2990 assemble_tokens_to_insn ("lda", newtok, 3, &insn);
252b5132 2991
ea1562b3
NC
2992#ifdef OBJ_ECOFF
2993 addend.X_add_number += 4;
2994#endif
252b5132 2995
ea1562b3
NC
2996 insn.nfixups = 1;
2997 insn.fixups[0].exp = addend;
2998 insn.fixups[0].reloc = BFD_RELOC_ALPHA_GPDISP_LO16;
2999 insn.sequence = next_sequence_num--;
252b5132 3000
ea1562b3 3001 emit_insn (&insn);
87975d2a 3002#endif /* OBJ_ECOFF || OBJ_ELF */
252b5132
RH
3003}
3004
ea1562b3 3005/* The macro table. */
252b5132 3006
ea1562b3 3007static const struct alpha_macro alpha_macros[] =
252b5132 3008{
ea1562b3
NC
3009/* Load/Store macros. */
3010 { "lda", emit_lda, NULL,
3011 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3012 { "ldah", emit_ldah, NULL,
3013 { MACRO_IR, MACRO_EXP, MACRO_EOA } },
252b5132 3014
ea1562b3
NC
3015 { "ldl", emit_ir_load, "ldl",
3016 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3017 { "ldl_l", emit_ir_load, "ldl_l",
3018 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3019 { "ldq", emit_ir_load, "ldq",
3020 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3021 { "ldq_l", emit_ir_load, "ldq_l",
3022 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3023 { "ldq_u", emit_ir_load, "ldq_u",
3024 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3025 { "ldf", emit_loadstore, "ldf",
3026 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3027 { "ldg", emit_loadstore, "ldg",
3028 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3029 { "lds", emit_loadstore, "lds",
3030 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3031 { "ldt", emit_loadstore, "ldt",
3032 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
252b5132 3033
ea1562b3
NC
3034 { "ldb", emit_ldX, (void *) 0,
3035 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3036 { "ldbu", emit_ldXu, (void *) 0,
3037 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3038 { "ldw", emit_ldX, (void *) 1,
3039 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3040 { "ldwu", emit_ldXu, (void *) 1,
3041 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
252b5132 3042
ea1562b3
NC
3043 { "uldw", emit_uldX, (void *) 1,
3044 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3045 { "uldwu", emit_uldXu, (void *) 1,
3046 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3047 { "uldl", emit_uldX, (void *) 2,
3048 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3049 { "uldlu", emit_uldXu, (void *) 2,
3050 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3051 { "uldq", emit_uldXu, (void *) 3,
3052 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
252b5132 3053
ea1562b3
NC
3054 { "ldgp", emit_ldgp, NULL,
3055 { MACRO_IR, MACRO_EXP, MACRO_PIR, MACRO_EOA } },
252b5132 3056
ea1562b3
NC
3057 { "ldi", emit_lda, NULL,
3058 { MACRO_IR, MACRO_EXP, MACRO_EOA } },
3059 { "ldil", emit_ldil, NULL,
3060 { MACRO_IR, MACRO_EXP, MACRO_EOA } },
3061 { "ldiq", emit_lda, NULL,
3062 { MACRO_IR, MACRO_EXP, MACRO_EOA } },
252b5132 3063
ea1562b3
NC
3064 { "stl", emit_loadstore, "stl",
3065 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3066 { "stl_c", emit_loadstore, "stl_c",
3067 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3068 { "stq", emit_loadstore, "stq",
3069 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3070 { "stq_c", emit_loadstore, "stq_c",
3071 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3072 { "stq_u", emit_loadstore, "stq_u",
3073 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3074 { "stf", emit_loadstore, "stf",
3075 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3076 { "stg", emit_loadstore, "stg",
3077 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3078 { "sts", emit_loadstore, "sts",
3079 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3080 { "stt", emit_loadstore, "stt",
3081 { MACRO_FPR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
252b5132 3082
ea1562b3
NC
3083 { "stb", emit_stX, (void *) 0,
3084 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3085 { "stw", emit_stX, (void *) 1,
3086 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3087 { "ustw", emit_ustX, (void *) 1,
3088 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3089 { "ustl", emit_ustX, (void *) 2,
3090 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
3091 { "ustq", emit_ustX, (void *) 3,
3092 { MACRO_IR, MACRO_EXP, MACRO_OPIR, MACRO_EOA } },
252b5132 3093
ea1562b3 3094/* Arithmetic macros. */
19f78583 3095
ea1562b3
NC
3096 { "sextb", emit_sextX, (void *) 0,
3097 { MACRO_IR, MACRO_IR, MACRO_EOA,
3098 MACRO_IR, MACRO_EOA,
3099 /* MACRO_EXP, MACRO_IR, MACRO_EOA */ } },
3100 { "sextw", emit_sextX, (void *) 1,
3101 { MACRO_IR, MACRO_IR, MACRO_EOA,
3102 MACRO_IR, MACRO_EOA,
3103 /* MACRO_EXP, MACRO_IR, MACRO_EOA */ } },
252b5132 3104
ea1562b3
NC
3105 { "divl", emit_division, "__divl",
3106 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3107 MACRO_IR, MACRO_IR, MACRO_EOA,
3108 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3109 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
3110 { "divlu", emit_division, "__divlu",
3111 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3112 MACRO_IR, MACRO_IR, MACRO_EOA,
3113 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3114 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
3115 { "divq", emit_division, "__divq",
3116 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3117 MACRO_IR, MACRO_IR, MACRO_EOA,
3118 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3119 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
3120 { "divqu", emit_division, "__divqu",
3121 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3122 MACRO_IR, MACRO_IR, MACRO_EOA,
3123 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3124 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
3125 { "reml", emit_division, "__reml",
3126 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3127 MACRO_IR, MACRO_IR, MACRO_EOA,
3128 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3129 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
3130 { "remlu", emit_division, "__remlu",
3131 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3132 MACRO_IR, MACRO_IR, MACRO_EOA,
3133 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3134 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
3135 { "remq", emit_division, "__remq",
3136 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3137 MACRO_IR, MACRO_IR, MACRO_EOA,
3138 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3139 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
3140 { "remqu", emit_division, "__remqu",
3141 { MACRO_IR, MACRO_IR, MACRO_IR, MACRO_EOA,
3142 MACRO_IR, MACRO_IR, MACRO_EOA,
3143 /* MACRO_IR, MACRO_EXP, MACRO_IR, MACRO_EOA,
3144 MACRO_IR, MACRO_EXP, MACRO_EOA */ } },
252b5132 3145
ea1562b3
NC
3146 { "jsr", emit_jsrjmp, "jsr",
3147 { MACRO_PIR, MACRO_EXP, MACRO_EOA,
3148 MACRO_PIR, MACRO_EOA,
3149 MACRO_IR, MACRO_EXP, MACRO_EOA,
3150 MACRO_EXP, MACRO_EOA } },
3151 { "jmp", emit_jsrjmp, "jmp",
3152 { MACRO_PIR, MACRO_EXP, MACRO_EOA,
3153 MACRO_PIR, MACRO_EOA,
3154 MACRO_IR, MACRO_EXP, MACRO_EOA,
3155 MACRO_EXP, MACRO_EOA } },
3156 { "ret", emit_retjcr, "ret",
3157 { MACRO_IR, MACRO_EXP, MACRO_EOA,
3158 MACRO_IR, MACRO_EOA,
3159 MACRO_PIR, MACRO_EXP, MACRO_EOA,
3160 MACRO_PIR, MACRO_EOA,
3161 MACRO_EXP, MACRO_EOA,
3162 MACRO_EOA } },
3163 { "jcr", emit_retjcr, "jcr",
3164 { MACRO_IR, MACRO_EXP, MACRO_EOA,
3165 MACRO_IR, MACRO_EOA,
3166 MACRO_PIR, MACRO_EXP, MACRO_EOA,
3167 MACRO_PIR, MACRO_EOA,
3168 MACRO_EXP, MACRO_EOA,
3169 MACRO_EOA } },
3170 { "jsr_coroutine", emit_retjcr, "jcr",
3171 { MACRO_IR, MACRO_EXP, MACRO_EOA,
3172 MACRO_IR, MACRO_EOA,
3173 MACRO_PIR, MACRO_EXP, MACRO_EOA,
3174 MACRO_PIR, MACRO_EOA,
3175 MACRO_EXP, MACRO_EOA,
3176 MACRO_EOA } },
3177};
252b5132 3178
ea1562b3
NC
3179static const unsigned int alpha_num_macros
3180 = sizeof (alpha_macros) / sizeof (*alpha_macros);
19f78583 3181
ea1562b3
NC
3182/* Search forward through all variants of a macro looking for a syntax
3183 match. */
19f78583 3184
ea1562b3
NC
3185static const struct alpha_macro *
3186find_macro_match (const struct alpha_macro *first_macro,
3187 const expressionS *tok,
3188 int *pntok)
252b5132 3189
ea1562b3
NC
3190{
3191 const struct alpha_macro *macro = first_macro;
3192 int ntok = *pntok;
252b5132 3193
ea1562b3
NC
3194 do
3195 {
3196 const enum alpha_macro_arg *arg = macro->argsets;
3197 int tokidx = 0;
19f78583 3198
ea1562b3 3199 while (*arg)
19f78583 3200 {
ea1562b3
NC
3201 switch (*arg)
3202 {
3203 case MACRO_EOA:
3204 if (tokidx == ntok)
3205 return macro;
3206 else
3207 tokidx = 0;
3208 break;
252b5132 3209
ea1562b3
NC
3210 /* Index register. */
3211 case MACRO_IR:
3212 if (tokidx >= ntok || tok[tokidx].X_op != O_register
3213 || !is_ir_num (tok[tokidx].X_add_number))
3214 goto match_failed;
3215 ++tokidx;
3216 break;
19f78583 3217
ea1562b3
NC
3218 /* Parenthesized index register. */
3219 case MACRO_PIR:
3220 if (tokidx >= ntok || tok[tokidx].X_op != O_pregister
3221 || !is_ir_num (tok[tokidx].X_add_number))
3222 goto match_failed;
3223 ++tokidx;
3224 break;
19f78583 3225
ea1562b3
NC
3226 /* Optional parenthesized index register. */
3227 case MACRO_OPIR:
3228 if (tokidx < ntok && tok[tokidx].X_op == O_pregister
3229 && is_ir_num (tok[tokidx].X_add_number))
3230 ++tokidx;
3231 break;
252b5132 3232
ea1562b3
NC
3233 /* Leading comma with a parenthesized index register. */
3234 case MACRO_CPIR:
3235 if (tokidx >= ntok || tok[tokidx].X_op != O_cpregister
3236 || !is_ir_num (tok[tokidx].X_add_number))
3237 goto match_failed;
3238 ++tokidx;
3239 break;
252b5132 3240
ea1562b3
NC
3241 /* Floating point register. */
3242 case MACRO_FPR:
3243 if (tokidx >= ntok || tok[tokidx].X_op != O_register
3244 || !is_fpr_num (tok[tokidx].X_add_number))
3245 goto match_failed;
3246 ++tokidx;
3247 break;
252b5132 3248
ea1562b3
NC
3249 /* Normal expression. */
3250 case MACRO_EXP:
3251 if (tokidx >= ntok)
3252 goto match_failed;
3253 switch (tok[tokidx].X_op)
3254 {
3255 case O_illegal:
3256 case O_absent:
3257 case O_register:
3258 case O_pregister:
3259 case O_cpregister:
3260 case O_literal:
3261 case O_lituse_base:
3262 case O_lituse_bytoff:
3263 case O_lituse_jsr:
3264 case O_gpdisp:
3265 case O_gprelhigh:
3266 case O_gprellow:
3267 case O_gprel:
3268 case O_samegp:
3269 goto match_failed;
252b5132 3270
ea1562b3
NC
3271 default:
3272 break;
3273 }
3274 ++tokidx;
3275 break;
19f78583 3276
ea1562b3
NC
3277 match_failed:
3278 while (*arg != MACRO_EOA)
3279 ++arg;
3280 tokidx = 0;
3281 break;
3282 }
3283 ++arg;
19f78583 3284 }
252b5132 3285 }
ea1562b3
NC
3286 while (++macro - alpha_macros < (int) alpha_num_macros
3287 && !strcmp (macro->name, first_macro->name));
3288
3289 return NULL;
252b5132
RH
3290}
3291
ea1562b3
NC
3292/* Given an opcode name and a pre-tokenized set of arguments, take the
3293 opcode all the way through emission. */
252b5132
RH
3294
3295static void
ea1562b3
NC
3296assemble_tokens (const char *opname,
3297 const expressionS *tok,
3298 int ntok,
3299 int local_macros_on)
252b5132 3300{
ea1562b3
NC
3301 int found_something = 0;
3302 const struct alpha_opcode *opcode;
3303 const struct alpha_macro *macro;
3304 int cpumatch = 1;
21d799b5 3305 extended_bfd_reloc_code_real_type reloc = BFD_RELOC_UNUSED;
252b5132 3306
ea1562b3
NC
3307#ifdef RELOC_OP_P
3308 /* If a user-specified relocation is present, this is not a macro. */
3309 if (ntok && USER_RELOC_P (tok[ntok - 1].X_op))
3310 {
3311 reloc = ALPHA_RELOC_TABLE (tok[ntok - 1].X_op)->reloc;
3312 ntok--;
3313 }
3314 else
3315#endif
3316 if (local_macros_on)
3317 {
3318 macro = ((const struct alpha_macro *)
629310ab 3319 str_hash_find (alpha_macro_hash, opname));
ea1562b3
NC
3320 if (macro)
3321 {
3322 found_something = 1;
3323 macro = find_macro_match (macro, tok, &ntok);
3324 if (macro)
3325 {
3326 (*macro->emit) (tok, ntok, macro->arg);
3327 return;
3328 }
3329 }
3330 }
252b5132 3331
ea1562b3 3332 /* Search opcodes. */
629310ab 3333 opcode = (const struct alpha_opcode *) str_hash_find (alpha_opcode_hash, opname);
ea1562b3
NC
3334 if (opcode)
3335 {
3336 found_something = 1;
3337 opcode = find_opcode_match (opcode, tok, &ntok, &cpumatch);
3338 if (opcode)
3339 {
3340 struct alpha_insn insn;
3341 assemble_insn (opcode, tok, ntok, &insn, reloc);
252b5132 3342
ea1562b3
NC
3343 /* Copy the sequence number for the reloc from the reloc token. */
3344 if (reloc != BFD_RELOC_UNUSED)
3345 insn.sequence = tok[ntok].X_add_number;
252b5132 3346
ea1562b3
NC
3347 emit_insn (&insn);
3348 return;
3349 }
3350 }
252b5132 3351
ea1562b3
NC
3352 if (found_something)
3353 {
3354 if (cpumatch)
3355 as_bad (_("inappropriate arguments for opcode `%s'"), opname);
3356 else
3357 as_bad (_("opcode `%s' not supported for target %s"), opname,
3358 alpha_target_name);
3359 }
3360 else
3361 as_bad (_("unknown opcode `%s'"), opname);
3362}
3363\f
3364#ifdef OBJ_EVAX
252b5132 3365
576d3307 3366/* Add sym+addend to link pool.
33eaf5de 3367 Return offset from current procedure value (pv) to entry in link pool.
252b5132 3368
ea1562b3 3369 Add new fixup only if offset isn't 16bit. */
252b5132 3370
198f1251 3371static symbolS *
8aacb050 3372add_to_link_pool (symbolS *sym, offsetT addend)
ea1562b3 3373{
8aacb050 3374 symbolS *basesym;
ea1562b3
NC
3375 segT current_section = now_seg;
3376 int current_subsec = now_subseg;
ea1562b3
NC
3377 char *p;
3378 segment_info_type *seginfo = seg_info (alpha_link_section);
3379 fixS *fixp;
198f1251
TG
3380 symbolS *linksym, *expsym;
3381 expressionS e;
3739860c 3382
8aacb050
TG
3383 basesym = alpha_evax_proc->symbol;
3384
ea1562b3
NC
3385 /* @@ This assumes all entries in a given section will be of the same
3386 size... Probably correct, but unwise to rely on. */
3387 /* This must always be called with the same subsegment. */
252b5132 3388
ea1562b3
NC
3389 if (seginfo->frchainP)
3390 for (fixp = seginfo->frchainP->fix_root;
3391 fixp != (fixS *) NULL;
198f1251 3392 fixp = fixp->fx_next)
ea1562b3 3393 {
198f1251
TG
3394 if (fixp->fx_addsy == sym
3395 && fixp->fx_offset == (valueT)addend
3396 && fixp->tc_fix_data.info
3397 && fixp->tc_fix_data.info->sym
8d1015a8
AM
3398 && symbol_symbolS (fixp->tc_fix_data.info->sym)
3399 && (symbol_get_value_expression (fixp->tc_fix_data.info->sym)
3400 ->X_op_symbol == basesym))
198f1251 3401 return fixp->tc_fix_data.info->sym;
ea1562b3 3402 }
252b5132 3403
8aacb050 3404 /* Not found, add a new entry. */
ea1562b3 3405 subseg_set (alpha_link_section, 0);
e01e1cee 3406 linksym = symbol_new (FAKE_LABEL_NAME, now_seg, frag_now, frag_now_fix ());
ea1562b3
NC
3407 p = frag_more (8);
3408 memset (p, 0, 8);
252b5132 3409
0189c2eb 3410 /* Create a symbol for 'basesym - linksym' (offset of the added entry). */
198f1251
TG
3411 e.X_op = O_subtract;
3412 e.X_add_symbol = linksym;
3413 e.X_op_symbol = basesym;
3414 e.X_add_number = 0;
3415 expsym = make_expr_symbol (&e);
3416
0189c2eb 3417 /* Create a fixup for the entry. */
198f1251 3418 fixp = fix_new
576d3307 3419 (frag_now, p - frag_now->fr_literal, 8, sym, addend, 0, BFD_RELOC_64);
198f1251
TG
3420 fixp->tc_fix_data.info = get_alpha_reloc_tag (next_sequence_num--);
3421 fixp->tc_fix_data.info->sym = expsym;
252b5132 3422
ea1562b3 3423 subseg_set (current_section, current_subsec);
0189c2eb
TG
3424
3425 /* Return the symbol. */
198f1251 3426 return expsym;
ea1562b3 3427}
ea1562b3
NC
3428#endif /* OBJ_EVAX */
3429\f
3430/* Assembler directives. */
252b5132 3431
ea1562b3
NC
3432/* Handle the .text pseudo-op. This is like the usual one, but it
3433 clears alpha_insn_label and restores auto alignment. */
252b5132 3434
ea1562b3
NC
3435static void
3436s_alpha_text (int i)
ea1562b3
NC
3437{
3438#ifdef OBJ_ELF
3439 obj_elf_text (i);
3440#else
3441 s_text (i);
198f1251
TG
3442#endif
3443#ifdef OBJ_EVAX
3444 {
3445 symbolS * symbolP;
3446
3447 symbolP = symbol_find (".text");
3448 if (symbolP == NULL)
3449 {
3450 symbolP = symbol_make (".text");
3451 S_SET_SEGMENT (symbolP, text_section);
3452 symbol_table_insert (symbolP);
3453 }
3454 }
ea1562b3
NC
3455#endif
3456 alpha_insn_label = NULL;
3457 alpha_auto_align_on = 1;
3458 alpha_current_align = 0;
252b5132
RH
3459}
3460
ea1562b3
NC
3461/* Handle the .data pseudo-op. This is like the usual one, but it
3462 clears alpha_insn_label and restores auto alignment. */
252b5132
RH
3463
3464static void
ea1562b3 3465s_alpha_data (int i)
252b5132 3466{
ea1562b3
NC
3467#ifdef OBJ_ELF
3468 obj_elf_data (i);
3469#else
3470 s_data (i);
3471#endif
3472 alpha_insn_label = NULL;
3473 alpha_auto_align_on = 1;
3474 alpha_current_align = 0;
252b5132
RH
3475}
3476
ea1562b3 3477#if defined (OBJ_ECOFF) || defined (OBJ_EVAX)
252b5132 3478
198f1251 3479/* Handle the OSF/1 and openVMS .comm pseudo quirks. */
252b5132
RH
3480
3481static void
ea1562b3 3482s_alpha_comm (int ignore ATTRIBUTE_UNUSED)
252b5132 3483{
ea1562b3
NC
3484 char *name;
3485 char c;
3486 char *p;
d9319cec 3487 offsetT size;
ea1562b3 3488 symbolS *symbolP;
d9319cec
NC
3489#ifdef OBJ_EVAX
3490 offsetT temp;
198f1251 3491 int log_align = 0;
d9319cec 3492#endif
252b5132 3493
d02603dc 3494 c = get_symbol_name (&name);
252b5132 3495
ea1562b3
NC
3496 /* Just after name is now '\0'. */
3497 p = input_line_pointer;
3498 *p = c;
252b5132 3499
d02603dc 3500 SKIP_WHITESPACE_AFTER_NAME ();
252b5132 3501
ea1562b3
NC
3502 /* Alpha OSF/1 compiler doesn't provide the comma, gcc does. */
3503 if (*input_line_pointer == ',')
252b5132 3504 {
ea1562b3
NC
3505 input_line_pointer++;
3506 SKIP_WHITESPACE ();
3507 }
198f1251 3508 if ((size = get_absolute_expression ()) < 0)
ea1562b3 3509 {
198f1251 3510 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) size);
ea1562b3
NC
3511 ignore_rest_of_line ();
3512 return;
3513 }
252b5132 3514
ea1562b3
NC
3515 *p = 0;
3516 symbolP = symbol_find_or_make (name);
ea1562b3 3517 *p = c;
252b5132 3518
ea1562b3
NC
3519 if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
3520 {
3521 as_bad (_("Ignoring attempt to re-define symbol"));
3522 ignore_rest_of_line ();
3523 return;
3524 }
3525
3526#ifdef OBJ_EVAX
198f1251
TG
3527 if (*input_line_pointer != ',')
3528 temp = 8; /* Default alignment. */
3529 else
ea1562b3 3530 {
198f1251
TG
3531 input_line_pointer++;
3532 SKIP_WHITESPACE ();
3533 temp = get_absolute_expression ();
ea1562b3 3534 }
198f1251
TG
3535
3536 /* ??? Unlike on OSF/1, the alignment factor is not in log units. */
3537 while ((temp >>= 1) != 0)
3538 ++log_align;
3539
3540 if (*input_line_pointer == ',')
ea1562b3 3541 {
198f1251
TG
3542 /* Extended form of the directive
3543
3544 .comm symbol, size, alignment, section
3545
3546 where the "common" semantics is transferred to the section.
3547 The symbol is effectively an alias for the section name. */
3548
3549 segT sec;
6d4af3c2 3550 const char *sec_name;
198f1251
TG
3551 symbolS *sec_symbol;
3552 segT current_seg = now_seg;
3553 subsegT current_subseg = now_subseg;
3554 int cur_size;
3739860c 3555
198f1251
TG
3556 input_line_pointer++;
3557 SKIP_WHITESPACE ();
3558 sec_name = s_alpha_section_name ();
3559 sec_symbol = symbol_find_or_make (sec_name);
3560 sec = subseg_new (sec_name, 0);
3561 S_SET_SEGMENT (sec_symbol, sec);
3562 symbol_get_bfdsym (sec_symbol)->flags |= BSF_SECTION_SYM;
d8703844
TG
3563 bfd_vms_set_section_flags (stdoutput, sec, 0,
3564 EGPS__V_OVR | EGPS__V_GBL | EGPS__V_NOMOD);
198f1251
TG
3565 record_alignment (sec, log_align);
3566
3567 /* Reuse stab_string_size to store the size of the section. */
3568 cur_size = seg_info (sec)->stabu.stab_string_size;
3569 if ((int) size > cur_size)
3570 {
3571 char *pfrag
3572 = frag_var (rs_fill, 1, 1, (relax_substateT)0, NULL,
3573 (valueT)size - (valueT)cur_size, NULL);
3574 *pfrag = 0;
3575 seg_info (sec)->stabu.stab_string_size = (int)size;
3576 }
3577
3578 S_SET_SEGMENT (symbolP, sec);
3579
3580 subseg_set (current_seg, current_subseg);
3581 }
3582 else
3583 {
3584 /* Regular form of the directive
3585
3586 .comm symbol, size, alignment
3587
3588 where the "common" semantics in on the symbol.
3589 These symbols are assembled in the .bss section. */
3590
3591 char *pfrag;
3592 segT current_seg = now_seg;
3593 subsegT current_subseg = now_subseg;
3594
3595 subseg_set (bss_section, 1);
3596 frag_align (log_align, 0, 0);
3597 record_alignment (bss_section, log_align);
3598
f8e24652 3599 symbol_set_frag (symbolP, frag_now);
198f1251
TG
3600 pfrag = frag_var (rs_org, 1, 1, (relax_substateT)0, symbolP,
3601 size, NULL);
3602 *pfrag = 0;
3603
3604 S_SET_SEGMENT (symbolP, bss_section);
3605
3606 subseg_set (current_seg, current_subseg);
252b5132 3607 }
ea1562b3 3608#endif
3739860c 3609
198f1251
TG
3610 if (S_GET_VALUE (symbolP))
3611 {
3612 if (S_GET_VALUE (symbolP) != (valueT) size)
20203fb9 3613 as_bad (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
198f1251
TG
3614 S_GET_NAME (symbolP),
3615 (long) S_GET_VALUE (symbolP),
3616 (long) size);
3617 }
252b5132
RH
3618 else
3619 {
198f1251
TG
3620#ifndef OBJ_EVAX
3621 S_SET_VALUE (symbolP, (valueT) size);
ea1562b3
NC
3622#endif
3623 S_SET_EXTERNAL (symbolP);
3624 }
3739860c 3625
198f1251 3626#ifndef OBJ_EVAX
8d1015a8 3627 know (symbol_get_frag (symbolP) == &zero_address_frag);
ea1562b3 3628#endif
ea1562b3
NC
3629 demand_empty_rest_of_line ();
3630}
252b5132 3631
ea1562b3 3632#endif /* ! OBJ_ELF */
252b5132 3633
ea1562b3 3634#ifdef OBJ_ECOFF
252b5132 3635
ea1562b3
NC
3636/* Handle the .rdata pseudo-op. This is like the usual one, but it
3637 clears alpha_insn_label and restores auto alignment. */
3638
3639static void
3640s_alpha_rdata (int ignore ATTRIBUTE_UNUSED)
3641{
87975d2a 3642 get_absolute_expression ();
ea1562b3
NC
3643 subseg_new (".rdata", 0);
3644 demand_empty_rest_of_line ();
3645 alpha_insn_label = NULL;
3646 alpha_auto_align_on = 1;
3647 alpha_current_align = 0;
252b5132
RH
3648}
3649
ea1562b3
NC
3650#endif
3651
3652#ifdef OBJ_ECOFF
3653
3654/* Handle the .sdata pseudo-op. This is like the usual one, but it
3655 clears alpha_insn_label and restores auto alignment. */
252b5132
RH
3656
3657static void
ea1562b3 3658s_alpha_sdata (int ignore ATTRIBUTE_UNUSED)
252b5132 3659{
87975d2a 3660 get_absolute_expression ();
ea1562b3
NC
3661 subseg_new (".sdata", 0);
3662 demand_empty_rest_of_line ();
3663 alpha_insn_label = NULL;
3664 alpha_auto_align_on = 1;
3665 alpha_current_align = 0;
3666}
3667#endif
252b5132 3668
ea1562b3
NC
3669#ifdef OBJ_ELF
3670struct alpha_elf_frame_data
3671{
3672 symbolS *func_sym;
3673 symbolS *func_end_sym;
3674 symbolS *prologue_sym;
3675 unsigned int mask;
3676 unsigned int fmask;
3677 int fp_regno;
3678 int ra_regno;
3679 offsetT frame_size;
3680 offsetT mask_offset;
3681 offsetT fmask_offset;
252b5132 3682
ea1562b3
NC
3683 struct alpha_elf_frame_data *next;
3684};
252b5132 3685
ea1562b3
NC
3686static struct alpha_elf_frame_data *all_frame_data;
3687static struct alpha_elf_frame_data **plast_frame_data = &all_frame_data;
3688static struct alpha_elf_frame_data *cur_frame_data;
252b5132 3689
2f0c68f2
CM
3690extern int all_cfi_sections;
3691
ea1562b3
NC
3692/* Handle the .section pseudo-op. This is like the usual one, but it
3693 clears alpha_insn_label and restores auto alignment. */
252b5132 3694
ea1562b3
NC
3695static void
3696s_alpha_section (int ignore ATTRIBUTE_UNUSED)
3697{
3698 obj_elf_section (ignore);
252b5132 3699
ea1562b3
NC
3700 alpha_insn_label = NULL;
3701 alpha_auto_align_on = 1;
3702 alpha_current_align = 0;
3703}
252b5132 3704
ea1562b3
NC
3705static void
3706s_alpha_ent (int dummy ATTRIBUTE_UNUSED)
3707{
3708 if (ECOFF_DEBUGGING)
3709 ecoff_directive_ent (0);
252b5132
RH
3710 else
3711 {
ea1562b3 3712 char *name, name_end;
d02603dc
NC
3713
3714 name_end = get_symbol_name (&name);
2f0c68f2
CM
3715 /* CFI_EMIT_eh_frame is the default. */
3716 all_cfi_sections = CFI_EMIT_eh_frame;
252b5132 3717
ea1562b3 3718 if (! is_name_beginner (*name))
252b5132 3719 {
ea1562b3 3720 as_warn (_(".ent directive has no name"));
d02603dc 3721 (void) restore_line_pointer (name_end);
252b5132 3722 }
ea1562b3 3723 else
252b5132 3724 {
ea1562b3 3725 symbolS *sym;
252b5132 3726
ea1562b3
NC
3727 if (cur_frame_data)
3728 as_warn (_("nested .ent directives"));
252b5132 3729
ea1562b3
NC
3730 sym = symbol_find_or_make (name);
3731 symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION;
252b5132 3732
add39d23 3733 cur_frame_data = XCNEW (struct alpha_elf_frame_data);
ea1562b3 3734 cur_frame_data->func_sym = sym;
252b5132 3735
ea1562b3
NC
3736 /* Provide sensible defaults. */
3737 cur_frame_data->fp_regno = 30; /* sp */
3738 cur_frame_data->ra_regno = 26; /* ra */
252b5132 3739
ea1562b3
NC
3740 *plast_frame_data = cur_frame_data;
3741 plast_frame_data = &cur_frame_data->next;
3742
3743 /* The .ent directive is sometimes followed by a number. Not sure
3744 what it really means, but ignore it. */
3745 *input_line_pointer = name_end;
d02603dc 3746 SKIP_WHITESPACE_AFTER_NAME ();
ea1562b3
NC
3747 if (*input_line_pointer == ',')
3748 {
3749 input_line_pointer++;
3750 SKIP_WHITESPACE ();
3751 }
3752 if (ISDIGIT (*input_line_pointer) || *input_line_pointer == '-')
3753 (void) get_absolute_expression ();
3754 }
3755 demand_empty_rest_of_line ();
3756 }
3757}
252b5132
RH
3758
3759static void
ea1562b3 3760s_alpha_end (int dummy ATTRIBUTE_UNUSED)
252b5132 3761{
ea1562b3
NC
3762 if (ECOFF_DEBUGGING)
3763 ecoff_directive_end (0);
252b5132 3764 else
ea1562b3
NC
3765 {
3766 char *name, name_end;
d02603dc
NC
3767
3768 name_end = get_symbol_name (&name);
252b5132 3769
ea1562b3
NC
3770 if (! is_name_beginner (*name))
3771 {
3772 as_warn (_(".end directive has no name"));
ea1562b3
NC
3773 }
3774 else
3775 {
3776 symbolS *sym;
252b5132 3777
ea1562b3
NC
3778 sym = symbol_find (name);
3779 if (!cur_frame_data)
3780 as_warn (_(".end directive without matching .ent"));
3781 else if (sym != cur_frame_data->func_sym)
3782 as_warn (_(".end directive names different symbol than .ent"));
252b5132 3783
ea1562b3
NC
3784 /* Create an expression to calculate the size of the function. */
3785 if (sym && cur_frame_data)
3786 {
3787 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (sym);
add39d23 3788 expressionS *exp = XNEW (expressionS);
252b5132 3789
ea1562b3
NC
3790 obj->size = exp;
3791 exp->X_op = O_subtract;
3792 exp->X_add_symbol = symbol_temp_new_now ();
3793 exp->X_op_symbol = sym;
3794 exp->X_add_number = 0;
252b5132 3795
ea1562b3
NC
3796 cur_frame_data->func_end_sym = exp->X_add_symbol;
3797 }
252b5132 3798
ea1562b3 3799 cur_frame_data = NULL;
ea1562b3 3800 }
d02603dc
NC
3801
3802 (void) restore_line_pointer (name_end);
ea1562b3
NC
3803 demand_empty_rest_of_line ();
3804 }
252b5132
RH
3805}
3806
252b5132 3807static void
ea1562b3 3808s_alpha_mask (int fp)
252b5132 3809{
ea1562b3
NC
3810 if (ECOFF_DEBUGGING)
3811 {
3812 if (fp)
3813 ecoff_directive_fmask (0);
3814 else
3815 ecoff_directive_mask (0);
3816 }
252b5132 3817 else
ea1562b3
NC
3818 {
3819 long val;
3820 offsetT offset;
252b5132 3821
ea1562b3
NC
3822 if (!cur_frame_data)
3823 {
3824 if (fp)
3825 as_warn (_(".fmask outside of .ent"));
3826 else
3827 as_warn (_(".mask outside of .ent"));
3828 discard_rest_of_line ();
3829 return;
3830 }
252b5132 3831
ea1562b3
NC
3832 if (get_absolute_expression_and_terminator (&val) != ',')
3833 {
3834 if (fp)
3835 as_warn (_("bad .fmask directive"));
3836 else
3837 as_warn (_("bad .mask directive"));
3838 --input_line_pointer;
3839 discard_rest_of_line ();
3840 return;
3841 }
252b5132 3842
ea1562b3
NC
3843 offset = get_absolute_expression ();
3844 demand_empty_rest_of_line ();
252b5132 3845
ea1562b3
NC
3846 if (fp)
3847 {
3848 cur_frame_data->fmask = val;
3849 cur_frame_data->fmask_offset = offset;
3850 }
3851 else
3852 {
3853 cur_frame_data->mask = val;
3854 cur_frame_data->mask_offset = offset;
3855 }
3856 }
252b5132 3857}
252b5132
RH
3858
3859static void
ea1562b3 3860s_alpha_frame (int dummy ATTRIBUTE_UNUSED)
252b5132 3861{
ea1562b3
NC
3862 if (ECOFF_DEBUGGING)
3863 ecoff_directive_frame (0);
3864 else
3865 {
3866 long val;
252b5132 3867
ea1562b3
NC
3868 if (!cur_frame_data)
3869 {
3870 as_warn (_(".frame outside of .ent"));
3871 discard_rest_of_line ();
3872 return;
3873 }
252b5132 3874
ea1562b3 3875 cur_frame_data->fp_regno = tc_get_register (1);
252b5132 3876
ea1562b3
NC
3877 SKIP_WHITESPACE ();
3878 if (*input_line_pointer++ != ','
3879 || get_absolute_expression_and_terminator (&val) != ',')
3880 {
3881 as_warn (_("bad .frame directive"));
3882 --input_line_pointer;
3883 discard_rest_of_line ();
3884 return;
3885 }
3886 cur_frame_data->frame_size = val;
252b5132 3887
ea1562b3
NC
3888 cur_frame_data->ra_regno = tc_get_register (0);
3889
3890 /* Next comes the "offset of saved $a0 from $sp". In gcc terms
3891 this is current_function_pretend_args_size. There's no place
3892 to put this value, so ignore it. */
3893 s_ignore (42);
3894 }
3895}
252b5132
RH
3896
3897static void
ea1562b3 3898s_alpha_prologue (int ignore ATTRIBUTE_UNUSED)
252b5132 3899{
ea1562b3
NC
3900 symbolS *sym;
3901 int arg;
252b5132 3902
ea1562b3
NC
3903 arg = get_absolute_expression ();
3904 demand_empty_rest_of_line ();
e01e1cee
AM
3905 alpha_prologue_label = symbol_new (FAKE_LABEL_NAME, now_seg, frag_now,
3906 frag_now_fix ());
252b5132 3907
ea1562b3
NC
3908 if (ECOFF_DEBUGGING)
3909 sym = ecoff_get_cur_proc_sym ();
3910 else
3911 sym = cur_frame_data ? cur_frame_data->func_sym : NULL;
252b5132 3912
ea1562b3 3913 if (sym == NULL)
252b5132 3914 {
ea1562b3 3915 as_bad (_(".prologue directive without a preceding .ent directive"));
252b5132
RH
3916 return;
3917 }
3918
ea1562b3 3919 switch (arg)
252b5132 3920 {
ea1562b3
NC
3921 case 0: /* No PV required. */
3922 S_SET_OTHER (sym, STO_ALPHA_NOPV
3923 | (S_GET_OTHER (sym) & ~STO_ALPHA_STD_GPLOAD));
3924 break;
3925 case 1: /* Std GP load. */
3926 S_SET_OTHER (sym, STO_ALPHA_STD_GPLOAD
3927 | (S_GET_OTHER (sym) & ~STO_ALPHA_STD_GPLOAD));
3928 break;
3929 case 2: /* Non-std use of PV. */
3930 break;
252b5132 3931
ea1562b3
NC
3932 default:
3933 as_bad (_("Invalid argument %d to .prologue."), arg);
3934 break;
252b5132
RH
3935 }
3936
ea1562b3
NC
3937 if (cur_frame_data)
3938 cur_frame_data->prologue_sym = symbol_temp_new_now ();
252b5132
RH
3939}
3940
ea1562b3 3941static char *first_file_directive;
252b5132
RH
3942
3943static void
ea1562b3 3944s_alpha_file (int ignore ATTRIBUTE_UNUSED)
252b5132 3945{
ea1562b3
NC
3946 /* Save the first .file directive we see, so that we can change our
3947 minds about whether ecoff debugging should or shouldn't be enabled. */
3948 if (alpha_flag_mdebug < 0 && ! first_file_directive)
3949 {
3950 char *start = input_line_pointer;
3951 size_t len;
252b5132 3952
ea1562b3 3953 discard_rest_of_line ();
252b5132 3954
ea1562b3 3955 len = input_line_pointer - start;
29a2809e 3956 first_file_directive = xmemdup0 (start, len);
252b5132 3957
ea1562b3
NC
3958 input_line_pointer = start;
3959 }
252b5132 3960
ea1562b3
NC
3961 if (ECOFF_DEBUGGING)
3962 ecoff_directive_file (0);
3963 else
3964 dwarf2_directive_file (0);
3965}
252b5132
RH
3966
3967static void
ea1562b3 3968s_alpha_loc (int ignore ATTRIBUTE_UNUSED)
252b5132 3969{
ea1562b3
NC
3970 if (ECOFF_DEBUGGING)
3971 ecoff_directive_loc (0);
3972 else
3973 dwarf2_directive_loc (0);
252b5132 3974}
252b5132 3975
ea1562b3
NC
3976static void
3977s_alpha_stab (int n)
f37f01cf 3978{
ea1562b3
NC
3979 /* If we've been undecided about mdebug, make up our minds in favour. */
3980 if (alpha_flag_mdebug < 0)
3981 {
3982 segT sec = subseg_new (".mdebug", 0);
fd361982
AM
3983 bfd_set_section_flags (sec, SEC_HAS_CONTENTS | SEC_READONLY);
3984 bfd_set_section_alignment (sec, 3);
f37f01cf 3985
ea1562b3 3986 ecoff_read_begin_hook ();
f37f01cf 3987
ea1562b3
NC
3988 if (first_file_directive)
3989 {
3990 char *save_ilp = input_line_pointer;
3991 input_line_pointer = first_file_directive;
3992 ecoff_directive_file (0);
3993 input_line_pointer = save_ilp;
3994 free (first_file_directive);
3995 }
252b5132 3996
ea1562b3
NC
3997 alpha_flag_mdebug = 1;
3998 }
3999 s_stab (n);
4000}
252b5132
RH
4001
4002static void
ea1562b3 4003s_alpha_coff_wrapper (int which)
252b5132 4004{
5a49b8ac 4005 static void (* const fns[]) (int) = {
ea1562b3
NC
4006 ecoff_directive_begin,
4007 ecoff_directive_bend,
4008 ecoff_directive_def,
4009 ecoff_directive_dim,
4010 ecoff_directive_endef,
4011 ecoff_directive_scl,
4012 ecoff_directive_tag,
4013 ecoff_directive_val,
4014 };
252b5132 4015
9c2799c2 4016 gas_assert (which >= 0 && which < (int) (sizeof (fns)/sizeof (*fns)));
252b5132 4017
252b5132 4018 if (ECOFF_DEBUGGING)
ea1562b3 4019 (*fns[which]) (0);
252b5132
RH
4020 else
4021 {
ea1562b3
NC
4022 as_bad (_("ECOFF debugging is disabled."));
4023 ignore_rest_of_line ();
4024 }
4025}
252b5132 4026
ea1562b3
NC
4027/* Called at the end of assembly. Here we emit unwind info for frames
4028 unless the compiler has done it for us. */
252b5132 4029
ea1562b3
NC
4030void
4031alpha_elf_md_end (void)
4032{
4033 struct alpha_elf_frame_data *p;
f37f01cf 4034
ea1562b3
NC
4035 if (cur_frame_data)
4036 as_warn (_(".ent directive without matching .end"));
f37f01cf 4037
ea1562b3
NC
4038 /* If someone has generated the unwind info themselves, great. */
4039 if (bfd_get_section_by_name (stdoutput, ".eh_frame") != NULL)
4040 return;
f37f01cf 4041
af385746
RH
4042 /* ??? In theory we could look for functions for which we have
4043 generated unwind info via CFI directives, and those we have not.
4044 Those we have not could still get their unwind info from here.
4045 For now, do nothing if we've seen any CFI directives. Note that
4046 the above test will not trigger, as we've not emitted data yet. */
4047 if (all_fde_data != NULL)
4048 return;
4049
ea1562b3
NC
4050 /* Generate .eh_frame data for the unwind directives specified. */
4051 for (p = all_frame_data; p ; p = p->next)
4052 if (p->prologue_sym)
4053 {
4054 /* Create a temporary symbol at the same location as our
4055 function symbol. This prevents problems with globals. */
4056 cfi_new_fde (symbol_temp_new (S_GET_SEGMENT (p->func_sym),
e01e1cee
AM
4057 symbol_get_frag (p->func_sym),
4058 S_GET_VALUE (p->func_sym)));
252b5132 4059
2f0c68f2 4060 cfi_set_sections ();
ea1562b3
NC
4061 cfi_set_return_column (p->ra_regno);
4062 cfi_add_CFA_def_cfa_register (30);
4063 if (p->fp_regno != 30 || p->mask || p->fmask || p->frame_size)
4064 {
4065 unsigned int mask;
4066 offsetT offset;
252b5132 4067
ea1562b3 4068 cfi_add_advance_loc (p->prologue_sym);
252b5132 4069
ea1562b3
NC
4070 if (p->fp_regno != 30)
4071 if (p->frame_size != 0)
4072 cfi_add_CFA_def_cfa (p->fp_regno, p->frame_size);
4073 else
4074 cfi_add_CFA_def_cfa_register (p->fp_regno);
4075 else if (p->frame_size != 0)
4076 cfi_add_CFA_def_cfa_offset (p->frame_size);
252b5132 4077
ea1562b3
NC
4078 mask = p->mask;
4079 offset = p->mask_offset;
252b5132 4080
ea1562b3
NC
4081 /* Recall that $26 is special-cased and stored first. */
4082 if ((mask >> 26) & 1)
4083 {
4084 cfi_add_CFA_offset (26, offset);
4085 offset += 8;
4086 mask &= ~(1 << 26);
4087 }
4088 while (mask)
4089 {
4090 unsigned int i;
4091 i = mask & -mask;
4092 mask ^= i;
4093 i = ffs (i) - 1;
f37f01cf 4094
ea1562b3
NC
4095 cfi_add_CFA_offset (i, offset);
4096 offset += 8;
4097 }
f37f01cf 4098
ea1562b3
NC
4099 mask = p->fmask;
4100 offset = p->fmask_offset;
4101 while (mask)
4102 {
4103 unsigned int i;
4104 i = mask & -mask;
4105 mask ^= i;
4106 i = ffs (i) - 1;
252b5132 4107
ea1562b3
NC
4108 cfi_add_CFA_offset (i + 32, offset);
4109 offset += 8;
4110 }
4111 }
252b5132 4112
ea1562b3
NC
4113 cfi_end_fde (p->func_end_sym);
4114 }
252b5132
RH
4115}
4116
4117static void
ea1562b3 4118s_alpha_usepv (int unused ATTRIBUTE_UNUSED)
252b5132 4119{
ea1562b3
NC
4120 char *name, name_end;
4121 char *which, which_end;
4122 symbolS *sym;
4123 int other;
f37f01cf 4124
d02603dc 4125 name_end = get_symbol_name (&name);
f37f01cf 4126
ea1562b3
NC
4127 if (! is_name_beginner (*name))
4128 {
4129 as_bad (_(".usepv directive has no name"));
d02603dc 4130 (void) restore_line_pointer (name_end);
ea1562b3
NC
4131 ignore_rest_of_line ();
4132 return;
4133 }
f37f01cf 4134
ea1562b3 4135 sym = symbol_find_or_make (name);
d02603dc
NC
4136 name_end = restore_line_pointer (name_end);
4137 if (! is_end_of_line[(unsigned char) name_end])
4138 input_line_pointer++;
f37f01cf 4139
ea1562b3
NC
4140 if (name_end != ',')
4141 {
4142 as_bad (_(".usepv directive has no type"));
4143 ignore_rest_of_line ();
4144 return;
f37f01cf 4145 }
252b5132 4146
ea1562b3 4147 SKIP_WHITESPACE ();
d02603dc
NC
4148
4149 which_end = get_symbol_name (&which);
ea1562b3
NC
4150
4151 if (strcmp (which, "no") == 0)
4152 other = STO_ALPHA_NOPV;
4153 else if (strcmp (which, "std") == 0)
4154 other = STO_ALPHA_STD_GPLOAD;
252b5132 4155 else
f37f01cf 4156 {
ea1562b3
NC
4157 as_bad (_("unknown argument for .usepv"));
4158 other = 0;
4159 }
f37f01cf 4160
d02603dc 4161 (void) restore_line_pointer (which_end);
ea1562b3 4162 demand_empty_rest_of_line ();
f37f01cf 4163
ea1562b3
NC
4164 S_SET_OTHER (sym, other | (S_GET_OTHER (sym) & ~STO_ALPHA_STD_GPLOAD));
4165}
4166#endif /* OBJ_ELF */
f37f01cf 4167
ea1562b3 4168/* Standard calling conventions leaves the CFA at $30 on entry. */
f37f01cf 4169
ea1562b3
NC
4170void
4171alpha_cfi_frame_initial_instructions (void)
4172{
4173 cfi_add_CFA_def_cfa_register (30);
252b5132
RH
4174}
4175
ea1562b3
NC
4176#ifdef OBJ_EVAX
4177
198f1251 4178/* Get name of section. */
6d4af3c2 4179static const char *
198f1251
TG
4180s_alpha_section_name (void)
4181{
4182 char *name;
4183
4184 SKIP_WHITESPACE ();
4185 if (*input_line_pointer == '"')
4186 {
4187 int dummy;
4188
4189 name = demand_copy_C_string (&dummy);
4190 if (name == NULL)
4191 {
4192 ignore_rest_of_line ();
4193 return NULL;
4194 }
4195 }
4196 else
4197 {
4198 char *end = input_line_pointer;
4199
4200 while (0 == strchr ("\n\t,; ", *end))
4201 end++;
4202 if (end == input_line_pointer)
4203 {
4204 as_warn (_("missing name"));
4205 ignore_rest_of_line ();
4206 return NULL;
4207 }
4208
29a2809e 4209 name = xmemdup0 (input_line_pointer, end - input_line_pointer);
198f1251
TG
4210 input_line_pointer = end;
4211 }
4212 SKIP_WHITESPACE ();
4213 return name;
4214}
4215
d8703844
TG
4216/* Put clear/set flags in one flagword. The LSBs are flags to be set,
4217 the MSBs are the flags to be cleared. */
4218
4219#define EGPS__V_NO_SHIFT 16
4220#define EGPS__V_MASK 0xffff
4221
4222/* Parse one VMS section flag. */
4223
198f1251
TG
4224static flagword
4225s_alpha_section_word (char *str, size_t len)
4226{
4227 int no = 0;
4228 flagword flag = 0;
4229
4230 if (len == 5 && strncmp (str, "NO", 2) == 0)
4231 {
4232 no = 1;
4233 str += 2;
3739860c 4234 len -= 2;
198f1251
TG
4235 }
4236
4237 if (len == 3)
4238 {
4239 if (strncmp (str, "PIC", 3) == 0)
d8703844 4240 flag = EGPS__V_PIC;
198f1251 4241 else if (strncmp (str, "LIB", 3) == 0)
d8703844 4242 flag = EGPS__V_LIB;
198f1251 4243 else if (strncmp (str, "OVR", 3) == 0)
d8703844 4244 flag = EGPS__V_OVR;
198f1251 4245 else if (strncmp (str, "REL", 3) == 0)
d8703844 4246 flag = EGPS__V_REL;
198f1251 4247 else if (strncmp (str, "GBL", 3) == 0)
d8703844 4248 flag = EGPS__V_GBL;
198f1251 4249 else if (strncmp (str, "SHR", 3) == 0)
d8703844 4250 flag = EGPS__V_SHR;
198f1251 4251 else if (strncmp (str, "EXE", 3) == 0)
d8703844 4252 flag = EGPS__V_EXE;
198f1251 4253 else if (strncmp (str, "WRT", 3) == 0)
d8703844 4254 flag = EGPS__V_WRT;
198f1251 4255 else if (strncmp (str, "VEC", 3) == 0)
d8703844 4256 flag = EGPS__V_VEC;
198f1251
TG
4257 else if (strncmp (str, "MOD", 3) == 0)
4258 {
d8703844 4259 flag = no ? EGPS__V_NOMOD : EGPS__V_NOMOD << EGPS__V_NO_SHIFT;
198f1251
TG
4260 no = 0;
4261 }
4262 else if (strncmp (str, "COM", 3) == 0)
d8703844 4263 flag = EGPS__V_COM;
198f1251
TG
4264 }
4265
4266 if (flag == 0)
4267 {
4268 char c = str[len];
4269 str[len] = 0;
4270 as_warn (_("unknown section attribute %s"), str);
4271 str[len] = c;
4272 return 0;
4273 }
4274
4275 if (no)
d8703844 4276 return flag << EGPS__V_NO_SHIFT;
198f1251
TG
4277 else
4278 return flag;
4279}
4280
ea1562b3
NC
4281/* Handle the section specific pseudo-op. */
4282
198f1251
TG
4283#define EVAX_SECTION_COUNT 5
4284
6d4af3c2 4285static const char *section_name[EVAX_SECTION_COUNT + 1] =
198f1251
TG
4286 { "NULL", ".rdata", ".comm", ".link", ".ctors", ".dtors" };
4287
252b5132 4288static void
ea1562b3 4289s_alpha_section (int secid)
252b5132 4290{
6d4af3c2
AM
4291 const char *name;
4292 char *beg;
198f1251
TG
4293 segT sec;
4294 flagword vms_flags = 0;
4295 symbolS *symbol;
252b5132 4296
198f1251 4297 if (secid == 0)
81283cde 4298 {
198f1251
TG
4299 name = s_alpha_section_name ();
4300 if (name == NULL)
4301 return;
4302 sec = subseg_new (name, 0);
4303 if (*input_line_pointer == ',')
4304 {
4305 /* Skip the comma. */
4306 ++input_line_pointer;
4307 SKIP_WHITESPACE ();
4308
4309 do
4310 {
4311 char c;
4312
4313 SKIP_WHITESPACE ();
d02603dc 4314 c = get_symbol_name (&beg);
198f1251
TG
4315 *input_line_pointer = c;
4316
4317 vms_flags |= s_alpha_section_word (beg, input_line_pointer - beg);
4318
d02603dc 4319 SKIP_WHITESPACE_AFTER_NAME ();
198f1251
TG
4320 }
4321 while (*input_line_pointer++ == ',');
d02603dc 4322
198f1251
TG
4323 --input_line_pointer;
4324 }
4325
4326 symbol = symbol_find_or_make (name);
4327 S_SET_SEGMENT (symbol, sec);
4328 symbol_get_bfdsym (symbol)->flags |= BSF_SECTION_SYM;
d8703844
TG
4329 bfd_vms_set_section_flags
4330 (stdoutput, sec,
4331 (vms_flags >> EGPS__V_NO_SHIFT) & EGPS__V_MASK,
4332 vms_flags & EGPS__V_MASK);
81283cde 4333 }
198f1251
TG
4334 else
4335 {
87975d2a 4336 get_absolute_expression ();
198f1251
TG
4337 subseg_new (section_name[secid], 0);
4338 }
4339
4340 demand_empty_rest_of_line ();
4341 alpha_insn_label = NULL;
4342 alpha_auto_align_on = 1;
4343 alpha_current_align = 0;
4344}
4345
4346static void
4347s_alpha_literals (int ignore ATTRIBUTE_UNUSED)
4348{
4349 subseg_new (".literals", 0);
ea1562b3
NC
4350 demand_empty_rest_of_line ();
4351 alpha_insn_label = NULL;
4352 alpha_auto_align_on = 1;
4353 alpha_current_align = 0;
252b5132
RH
4354}
4355
ea1562b3 4356/* Parse .ent directives. */
a8316fe2 4357
4dc7ead9 4358static void
ea1562b3 4359s_alpha_ent (int ignore ATTRIBUTE_UNUSED)
4dc7ead9 4360{
ea1562b3
NC
4361 symbolS *symbol;
4362 expressionS symexpr;
a8316fe2 4363
4b1c4d2b
TG
4364 if (alpha_evax_proc != NULL)
4365 as_bad (_("previous .ent not closed by a .end"));
4366
4367 alpha_evax_proc = &alpha_evax_proc_data;
198f1251
TG
4368
4369 alpha_evax_proc->pdsckind = 0;
4370 alpha_evax_proc->framereg = -1;
4371 alpha_evax_proc->framesize = 0;
4372 alpha_evax_proc->rsa_offset = 0;
4373 alpha_evax_proc->ra_save = AXP_REG_RA;
4374 alpha_evax_proc->fp_save = -1;
4375 alpha_evax_proc->imask = 0;
4376 alpha_evax_proc->fmask = 0;
4377 alpha_evax_proc->prologue = 0;
4378 alpha_evax_proc->type = 0;
4379 alpha_evax_proc->handler = 0;
4380 alpha_evax_proc->handler_data = 0;
a8316fe2 4381
ea1562b3 4382 expression (&symexpr);
a8316fe2 4383
ea1562b3
NC
4384 if (symexpr.X_op != O_symbol)
4385 {
4386 as_fatal (_(".ent directive has no symbol"));
4387 demand_empty_rest_of_line ();
4388 return;
a8316fe2
RH
4389 }
4390
ea1562b3
NC
4391 symbol = make_expr_symbol (&symexpr);
4392 symbol_get_bfdsym (symbol)->flags |= BSF_FUNCTION;
198f1251
TG
4393 alpha_evax_proc->symbol = symbol;
4394
ea1562b3 4395 demand_empty_rest_of_line ();
4dc7ead9
RH
4396}
4397
198f1251
TG
4398static void
4399s_alpha_handler (int is_data)
4400{
4401 if (is_data)
4402 alpha_evax_proc->handler_data = get_absolute_expression ();
4403 else
4404 {
4405 char *name, name_end;
d02603dc
NC
4406
4407 name_end = get_symbol_name (&name);
198f1251
TG
4408
4409 if (! is_name_beginner (*name))
4410 {
4411 as_warn (_(".handler directive has no name"));
198f1251
TG
4412 }
4413 else
4414 {
4415 symbolS *sym;
4416
4417 sym = symbol_find_or_make (name);
4418 symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION;
4419 alpha_evax_proc->handler = sym;
198f1251 4420 }
d02603dc
NC
4421
4422 (void) restore_line_pointer (name_end);
4423 }
4424
198f1251
TG
4425 demand_empty_rest_of_line ();
4426}
4427
ea1562b3
NC
4428/* Parse .frame <framreg>,<framesize>,RA,<rsa_offset> directives. */
4429
a8316fe2 4430static void
ea1562b3 4431s_alpha_frame (int ignore ATTRIBUTE_UNUSED)
a8316fe2 4432{
ea1562b3 4433 long val;
467b607e 4434 int ra;
a8316fe2 4435
198f1251 4436 alpha_evax_proc->framereg = tc_get_register (1);
a8316fe2 4437
ea1562b3
NC
4438 SKIP_WHITESPACE ();
4439 if (*input_line_pointer++ != ','
4440 || get_absolute_expression_and_terminator (&val) != ',')
4441 {
4442 as_warn (_("Bad .frame directive 1./2. param"));
4443 --input_line_pointer;
4444 demand_empty_rest_of_line ();
4445 return;
4446 }
a8316fe2 4447
198f1251 4448 alpha_evax_proc->framesize = val;
ea1562b3 4449
467b607e
TG
4450 ra = tc_get_register (1);
4451 if (ra != AXP_REG_RA)
4452 as_warn (_("Bad RA (%d) register for .frame"), ra);
4453
ea1562b3
NC
4454 SKIP_WHITESPACE ();
4455 if (*input_line_pointer++ != ',')
4456 {
4457 as_warn (_("Bad .frame directive 3./4. param"));
4458 --input_line_pointer;
4459 demand_empty_rest_of_line ();
4460 return;
a8316fe2 4461 }
198f1251
TG
4462 alpha_evax_proc->rsa_offset = get_absolute_expression ();
4463}
4464
51794af8
TG
4465/* Parse .prologue. */
4466
198f1251
TG
4467static void
4468s_alpha_prologue (int ignore ATTRIBUTE_UNUSED)
4469{
198f1251 4470 demand_empty_rest_of_line ();
e01e1cee
AM
4471 alpha_prologue_label = symbol_new (FAKE_LABEL_NAME, now_seg, frag_now,
4472 frag_now_fix ());
a8316fe2
RH
4473}
4474
467b607e 4475/* Parse .pdesc <entry_name>,{null|stack|reg}
51794af8
TG
4476 Insert a procedure descriptor. */
4477
252b5132 4478static void
ea1562b3 4479s_alpha_pdesc (int ignore ATTRIBUTE_UNUSED)
252b5132 4480{
ea1562b3
NC
4481 char *name;
4482 char name_end;
ed9e98c2 4483 char *p;
ea1562b3
NC
4484 expressionS exp;
4485 symbolS *entry_sym;
198f1251 4486 const char *entry_sym_name;
4b1c4d2b
TG
4487 const char *pdesc_sym_name;
4488 fixS *fixp;
4489 size_t len;
252b5132 4490
ea1562b3
NC
4491 if (now_seg != alpha_link_section)
4492 {
4493 as_bad (_(".pdesc directive not in link (.link) section"));
ea1562b3
NC
4494 return;
4495 }
252b5132 4496
198f1251
TG
4497 expression (&exp);
4498 if (exp.X_op != O_symbol)
252b5132 4499 {
4b1c4d2b 4500 as_bad (_(".pdesc directive has no entry symbol"));
ea1562b3 4501 return;
252b5132 4502 }
3739860c 4503
198f1251 4504 entry_sym = make_expr_symbol (&exp);
4b1c4d2b 4505 entry_sym_name = S_GET_NAME (entry_sym);
3739860c 4506
8aacb050 4507 /* Strip "..en". */
198f1251 4508 len = strlen (entry_sym_name);
4b1c4d2b 4509 if (len < 4 || strcmp (entry_sym_name + len - 4, "..en") != 0)
ea1562b3 4510 {
4b1c4d2b
TG
4511 as_bad (_(".pdesc has a bad entry symbol"));
4512 return;
4513 }
4514 len -= 4;
4515 pdesc_sym_name = S_GET_NAME (alpha_evax_proc->symbol);
4516
4517 if (!alpha_evax_proc
4518 || !S_IS_DEFINED (alpha_evax_proc->symbol)
4519 || strlen (pdesc_sym_name) != len
4520 || memcmp (entry_sym_name, pdesc_sym_name, len) != 0)
4521 {
4522 as_fatal (_(".pdesc doesn't match with last .ent"));
ea1562b3
NC
4523 return;
4524 }
f37f01cf 4525
8aacb050 4526 /* Define pdesc symbol. */
4b1c4d2b 4527 symbol_set_value_now (alpha_evax_proc->symbol);
3739860c 4528
198f1251
TG
4529 /* Save bfd symbol of proc entry in function symbol. */
4530 ((struct evax_private_udata_struct *)
4531 symbol_get_bfdsym (alpha_evax_proc->symbol)->udata.p)->enbsym
4532 = symbol_get_bfdsym (entry_sym);
3739860c 4533
ea1562b3
NC
4534 SKIP_WHITESPACE ();
4535 if (*input_line_pointer++ != ',')
4536 {
4537 as_warn (_("No comma after .pdesc <entryname>"));
4538 demand_empty_rest_of_line ();
4539 return;
4540 }
f37f01cf 4541
ea1562b3 4542 SKIP_WHITESPACE ();
d02603dc 4543 name_end = get_symbol_name (&name);
f37f01cf 4544
ea1562b3 4545 if (strncmp (name, "stack", 5) == 0)
198f1251 4546 alpha_evax_proc->pdsckind = PDSC_S_K_KIND_FP_STACK;
f37f01cf 4547
ea1562b3 4548 else if (strncmp (name, "reg", 3) == 0)
198f1251 4549 alpha_evax_proc->pdsckind = PDSC_S_K_KIND_FP_REGISTER;
f37f01cf 4550
ea1562b3 4551 else if (strncmp (name, "null", 4) == 0)
198f1251 4552 alpha_evax_proc->pdsckind = PDSC_S_K_KIND_NULL;
f37f01cf 4553
ea1562b3
NC
4554 else
4555 {
d02603dc 4556 (void) restore_line_pointer (name_end);
ea1562b3
NC
4557 as_fatal (_("unknown procedure kind"));
4558 demand_empty_rest_of_line ();
4559 return;
4560 }
f37f01cf 4561
d02603dc 4562 (void) restore_line_pointer (name_end);
ea1562b3 4563 demand_empty_rest_of_line ();
f37f01cf 4564
ea1562b3
NC
4565#ifdef md_flush_pending_output
4566 md_flush_pending_output ();
4567#endif
252b5132
RH
4568
4569 frag_align (3, 0, 0);
4570 p = frag_more (16);
4571 fixp = fix_new (frag_now, p - frag_now->fr_literal, 8, 0, 0, 0, 0);
4572 fixp->fx_done = 1;
252b5132 4573
198f1251
TG
4574 *p = alpha_evax_proc->pdsckind
4575 | ((alpha_evax_proc->framereg == 29) ? PDSC_S_M_BASE_REG_IS_FP : 0)
4576 | ((alpha_evax_proc->handler) ? PDSC_S_M_HANDLER_VALID : 0)
4577 | ((alpha_evax_proc->handler_data) ? PDSC_S_M_HANDLER_DATA_VALID : 0);
66498417 4578 *(p + 1) = PDSC_S_M_NATIVE | PDSC_S_M_NO_JACKET;
252b5132 4579
198f1251 4580 switch (alpha_evax_proc->pdsckind)
252b5132 4581 {
1aad8cf8 4582 case PDSC_S_K_KIND_NULL:
66498417
KH
4583 *(p + 2) = 0;
4584 *(p + 3) = 0;
1aad8cf8
KH
4585 break;
4586 case PDSC_S_K_KIND_FP_REGISTER:
198f1251
TG
4587 *(p + 2) = alpha_evax_proc->fp_save;
4588 *(p + 3) = alpha_evax_proc->ra_save;
1aad8cf8
KH
4589 break;
4590 case PDSC_S_K_KIND_FP_STACK:
198f1251 4591 md_number_to_chars (p + 2, (valueT) alpha_evax_proc->rsa_offset, 2);
1aad8cf8
KH
4592 break;
4593 default: /* impossible */
4594 break;
252b5132
RH
4595 }
4596
66498417 4597 *(p + 4) = 0;
198f1251 4598 *(p + 5) = alpha_evax_proc->type & 0x0f;
252b5132
RH
4599
4600 /* Signature offset. */
66498417 4601 md_number_to_chars (p + 6, (valueT) 0, 2);
252b5132 4602
af24f60c
TG
4603 fix_new_exp (frag_now, p - frag_now->fr_literal + 8,
4604 8, &exp, 0, BFD_RELOC_64);
252b5132 4605
198f1251 4606 if (alpha_evax_proc->pdsckind == PDSC_S_K_KIND_NULL)
252b5132
RH
4607 return;
4608
252b5132 4609 /* pdesc+16: Size. */
af24f60c 4610 p = frag_more (6);
198f1251 4611 md_number_to_chars (p, (valueT) alpha_evax_proc->framesize, 4);
66498417 4612 md_number_to_chars (p + 4, (valueT) 0, 2);
252b5132
RH
4613
4614 /* Entry length. */
198f1251
TG
4615 exp.X_op = O_subtract;
4616 exp.X_add_symbol = alpha_prologue_label;
4617 exp.X_op_symbol = entry_sym;
4618 emit_expr (&exp, 2);
252b5132 4619
198f1251 4620 if (alpha_evax_proc->pdsckind == PDSC_S_K_KIND_FP_REGISTER)
252b5132
RH
4621 return;
4622
252b5132 4623 /* pdesc+24: register masks. */
af24f60c 4624 p = frag_more (8);
198f1251
TG
4625 md_number_to_chars (p, alpha_evax_proc->imask, 4);
4626 md_number_to_chars (p + 4, alpha_evax_proc->fmask, 4);
4627
4628 if (alpha_evax_proc->handler)
4629 {
4630 p = frag_more (8);
4631 fixp = fix_new (frag_now, p - frag_now->fr_literal, 8,
4632 alpha_evax_proc->handler, 0, 0, BFD_RELOC_64);
4633 }
4634
4635 if (alpha_evax_proc->handler_data)
4636 {
198f1251 4637 p = frag_more (8);
198f1251
TG
4638 md_number_to_chars (p, alpha_evax_proc->handler_data, 8);
4639 }
252b5132
RH
4640}
4641
252b5132
RH
4642/* Support for crash debug on vms. */
4643
4644static void
ea1562b3 4645s_alpha_name (int ignore ATTRIBUTE_UNUSED)
252b5132 4646{
ea1562b3 4647 char *p;
252b5132 4648 expressionS exp;
252b5132
RH
4649
4650 if (now_seg != alpha_link_section)
4651 {
4652 as_bad (_(".name directive not in link (.link) section"));
4653 demand_empty_rest_of_line ();
4654 return;
4655 }
4656
4657 expression (&exp);
4658 if (exp.X_op != O_symbol)
4659 {
4660 as_warn (_(".name directive has no symbol"));
4661 demand_empty_rest_of_line ();
4662 return;
4663 }
4664
4665 demand_empty_rest_of_line ();
4666
4667#ifdef md_flush_pending_output
4668 md_flush_pending_output ();
4669#endif
4670
4671 frag_align (3, 0, 0);
4672 p = frag_more (8);
252b5132 4673
66498417 4674 fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &exp, 0, BFD_RELOC_64);
252b5132
RH
4675}
4676
51794af8
TG
4677/* Parse .linkage <symbol>.
4678 Create a linkage pair relocation. */
4679
252b5132 4680static void
ea1562b3 4681s_alpha_linkage (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4682{
4683 expressionS exp;
4684 char *p;
198f1251 4685 fixS *fixp;
252b5132
RH
4686
4687#ifdef md_flush_pending_output
4688 md_flush_pending_output ();
4689#endif
4690
4691 expression (&exp);
4692 if (exp.X_op != O_symbol)
4693 {
4694 as_fatal (_("No symbol after .linkage"));
4695 }
4696 else
4697 {
198f1251 4698 struct alpha_linkage_fixups *linkage_fixup;
3739860c 4699
252b5132
RH
4700 p = frag_more (LKP_S_K_SIZE);
4701 memset (p, 0, LKP_S_K_SIZE);
198f1251 4702 fixp = fix_new_exp
0ac5db19 4703 (frag_now, p - frag_now->fr_literal, LKP_S_K_SIZE, &exp, 0,
198f1251
TG
4704 BFD_RELOC_ALPHA_LINKAGE);
4705
0ac5db19 4706 if (alpha_insn_label == NULL)
e01e1cee
AM
4707 alpha_insn_label = symbol_new (FAKE_LABEL_NAME, now_seg, frag_now,
4708 frag_now_fix ());
0ac5db19
TG
4709
4710 /* Create a linkage element. */
add39d23 4711 linkage_fixup = XNEW (struct alpha_linkage_fixups);
198f1251 4712 linkage_fixup->fixp = fixp;
0ac5db19 4713 linkage_fixup->next = NULL;
198f1251
TG
4714 linkage_fixup->label = alpha_insn_label;
4715
0ac5db19
TG
4716 /* Append it to the list. */
4717 if (alpha_linkage_fixup_root == NULL)
4718 alpha_linkage_fixup_root = linkage_fixup;
198f1251 4719 else
0ac5db19
TG
4720 alpha_linkage_fixup_tail->next = linkage_fixup;
4721 alpha_linkage_fixup_tail = linkage_fixup;
252b5132
RH
4722 }
4723 demand_empty_rest_of_line ();
252b5132
RH
4724}
4725
51794af8
TG
4726/* Parse .code_address <symbol>.
4727 Create a code address relocation. */
4728
252b5132 4729static void
ea1562b3 4730s_alpha_code_address (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4731{
4732 expressionS exp;
4733 char *p;
4734
4735#ifdef md_flush_pending_output
4736 md_flush_pending_output ();
4737#endif
4738
4739 expression (&exp);
4740 if (exp.X_op != O_symbol)
ea1562b3 4741 as_fatal (_("No symbol after .code_address"));
252b5132
RH
4742 else
4743 {
4744 p = frag_more (8);
4745 memset (p, 0, 8);
4746 fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &exp, 0,\
4747 BFD_RELOC_ALPHA_CODEADDR);
4748 }
4749 demand_empty_rest_of_line ();
252b5132
RH
4750}
4751
252b5132 4752static void
ea1562b3 4753s_alpha_fp_save (int ignore ATTRIBUTE_UNUSED)
252b5132 4754{
198f1251 4755 alpha_evax_proc->fp_save = tc_get_register (1);
252b5132
RH
4756
4757 demand_empty_rest_of_line ();
252b5132
RH
4758}
4759
252b5132 4760static void
ea1562b3 4761s_alpha_mask (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4762{
4763 long val;
4764
4765 if (get_absolute_expression_and_terminator (&val) != ',')
4766 {
4767 as_warn (_("Bad .mask directive"));
4768 --input_line_pointer;
4769 }
4770 else
4771 {
198f1251 4772 alpha_evax_proc->imask = val;
32ff5c2e 4773 (void) get_absolute_expression ();
252b5132
RH
4774 }
4775 demand_empty_rest_of_line ();
252b5132
RH
4776}
4777
252b5132 4778static void
ea1562b3 4779s_alpha_fmask (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4780{
4781 long val;
4782
4783 if (get_absolute_expression_and_terminator (&val) != ',')
4784 {
4785 as_warn (_("Bad .fmask directive"));
4786 --input_line_pointer;
4787 }
4788 else
4789 {
198f1251 4790 alpha_evax_proc->fmask = val;
252b5132
RH
4791 (void) get_absolute_expression ();
4792 }
4793 demand_empty_rest_of_line ();
252b5132
RH
4794}
4795
4796static void
ea1562b3 4797s_alpha_end (int ignore ATTRIBUTE_UNUSED)
252b5132 4798{
d02603dc 4799 char *name;
252b5132
RH
4800 char c;
4801
d02603dc
NC
4802 c = get_symbol_name (&name);
4803 (void) restore_line_pointer (c);
252b5132 4804 demand_empty_rest_of_line ();
8aacb050 4805 alpha_evax_proc = NULL;
252b5132
RH
4806}
4807
252b5132 4808static void
ea1562b3 4809s_alpha_file (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4810{
4811 symbolS *s;
4812 int length;
4813 static char case_hack[32];
4814
252b5132 4815 sprintf (case_hack, "<CASE:%01d%01d>",
9de8d8f1 4816 alpha_flag_hash_long_names, alpha_flag_show_after_trunc);
252b5132
RH
4817
4818 s = symbol_find_or_make (case_hack);
9de8d8f1 4819 symbol_get_bfdsym (s)->flags |= BSF_FILE;
252b5132
RH
4820
4821 get_absolute_expression ();
4822 s = symbol_find_or_make (demand_copy_string (&length));
9de8d8f1 4823 symbol_get_bfdsym (s)->flags |= BSF_FILE;
252b5132 4824 demand_empty_rest_of_line ();
252b5132
RH
4825}
4826#endif /* OBJ_EVAX */
4827
4828/* Handle the .gprel32 pseudo op. */
4829
4830static void
ea1562b3 4831s_alpha_gprel32 (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4832{
4833 expressionS e;
4834 char *p;
4835
4836 SKIP_WHITESPACE ();
4837 expression (&e);
4838
4839#ifdef OBJ_ELF
4840 switch (e.X_op)
4841 {
4842 case O_constant:
32ff5c2e 4843 e.X_add_symbol = section_symbol (absolute_section);
252b5132
RH
4844 e.X_op = O_symbol;
4845 /* FALLTHRU */
4846 case O_symbol:
4847 break;
4848 default:
bc805888 4849 abort ();
252b5132
RH
4850 }
4851#else
4852#ifdef OBJ_ECOFF
4853 switch (e.X_op)
4854 {
4855 case O_constant:
4856 e.X_add_symbol = section_symbol (absolute_section);
4857 /* fall through */
4858 case O_symbol:
4859 e.X_op = O_subtract;
4860 e.X_op_symbol = alpha_gp_symbol;
4861 break;
4862 default:
4863 abort ();
4864 }
4865#endif
4866#endif
4867
4868 if (alpha_auto_align_on && alpha_current_align < 2)
4869 alpha_align (2, (char *) NULL, alpha_insn_label, 0);
4870 if (alpha_current_align > 2)
4871 alpha_current_align = 2;
4872 alpha_insn_label = NULL;
4873
4874 p = frag_more (4);
4875 memset (p, 0, 4);
66498417 4876 fix_new_exp (frag_now, p - frag_now->fr_literal, 4,
252b5132
RH
4877 &e, 0, BFD_RELOC_GPREL32);
4878}
4879
4880/* Handle floating point allocation pseudo-ops. This is like the
33eaf5de 4881 generic version, but it makes sure the current label, if any, is
252b5132
RH
4882 correctly aligned. */
4883
4884static void
ea1562b3 4885s_alpha_float_cons (int type)
252b5132
RH
4886{
4887 int log_size;
4888
4889 switch (type)
4890 {
4891 default:
4892 case 'f':
4893 case 'F':
4894 log_size = 2;
4895 break;
4896
4897 case 'd':
4898 case 'D':
4899 case 'G':
4900 log_size = 3;
4901 break;
4902
4903 case 'x':
4904 case 'X':
4905 case 'p':
4906 case 'P':
4907 log_size = 4;
4908 break;
4909 }
4910
4911 if (alpha_auto_align_on && alpha_current_align < log_size)
4912 alpha_align (log_size, (char *) NULL, alpha_insn_label, 0);
4913 if (alpha_current_align > log_size)
4914 alpha_current_align = log_size;
4915 alpha_insn_label = NULL;
4916
4917 float_cons (type);
4918}
4919
4920/* Handle the .proc pseudo op. We don't really do much with it except
4921 parse it. */
4922
4923static void
ea1562b3 4924s_alpha_proc (int is_static ATTRIBUTE_UNUSED)
252b5132
RH
4925{
4926 char *name;
4927 char c;
4928 char *p;
4929 symbolS *symbolP;
4930 int temp;
4931
ea1562b3 4932 /* Takes ".proc name,nargs". */
252b5132 4933 SKIP_WHITESPACE ();
d02603dc 4934 c = get_symbol_name (&name);
252b5132
RH
4935 p = input_line_pointer;
4936 symbolP = symbol_find_or_make (name);
4937 *p = c;
d02603dc 4938 SKIP_WHITESPACE_AFTER_NAME ();
252b5132
RH
4939 if (*input_line_pointer != ',')
4940 {
4941 *p = 0;
4942 as_warn (_("Expected comma after name \"%s\""), name);
4943 *p = c;
4944 temp = 0;
4945 ignore_rest_of_line ();
4946 }
4947 else
4948 {
4949 input_line_pointer++;
4950 temp = get_absolute_expression ();
4951 }
7dcc9865 4952 /* *symbol_get_obj (symbolP) = (signed char) temp; */
87975d2a 4953 (void) symbolP;
252b5132
RH
4954 as_warn (_("unhandled: .proc %s,%d"), name, temp);
4955 demand_empty_rest_of_line ();
4956}
4957
4958/* Handle the .set pseudo op. This is used to turn on and off most of
4959 the assembler features. */
4960
4961static void
ea1562b3 4962s_alpha_set (int x ATTRIBUTE_UNUSED)
252b5132
RH
4963{
4964 char *name, ch, *s;
4965 int yesno = 1;
4966
4967 SKIP_WHITESPACE ();
252b5132 4968
d02603dc 4969 ch = get_symbol_name (&name);
252b5132
RH
4970 s = name;
4971 if (s[0] == 'n' && s[1] == 'o')
4972 {
4973 yesno = 0;
4974 s += 2;
4975 }
4976 if (!strcmp ("reorder", s))
4977 /* ignore */ ;
4978 else if (!strcmp ("at", s))
4979 alpha_noat_on = !yesno;
4980 else if (!strcmp ("macro", s))
4981 alpha_macros_on = yesno;
4982 else if (!strcmp ("move", s))
4983 /* ignore */ ;
4984 else if (!strcmp ("volatile", s))
4985 /* ignore */ ;
4986 else
4987 as_warn (_("Tried to .set unrecognized mode `%s'"), name);
4988
d02603dc 4989 (void) restore_line_pointer (ch);
252b5132
RH
4990 demand_empty_rest_of_line ();
4991}
4992
4993/* Handle the .base pseudo op. This changes the assembler's notion of
4994 the $gp register. */
4995
4996static void
ea1562b3 4997s_alpha_base (int ignore ATTRIBUTE_UNUSED)
252b5132 4998{
252b5132 4999 SKIP_WHITESPACE ();
ea1562b3 5000
252b5132 5001 if (*input_line_pointer == '$')
ea1562b3
NC
5002 {
5003 /* $rNN form. */
252b5132
RH
5004 input_line_pointer++;
5005 if (*input_line_pointer == 'r')
5006 input_line_pointer++;
5007 }
5008
5009 alpha_gp_register = get_absolute_expression ();
5010 if (alpha_gp_register < 0 || alpha_gp_register > 31)
5011 {
5012 alpha_gp_register = AXP_REG_GP;
5013 as_warn (_("Bad base register, using $%d."), alpha_gp_register);
5014 }
5015
5016 demand_empty_rest_of_line ();
5017}
5018
5019/* Handle the .align pseudo-op. This aligns to a power of two. It
5020 also adjusts any current instruction label. We treat this the same
5021 way the MIPS port does: .align 0 turns off auto alignment. */
5022
5023static void
ea1562b3 5024s_alpha_align (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
5025{
5026 int align;
5027 char fill, *pfill;
198f1251 5028 long max_alignment = 16;
252b5132
RH
5029
5030 align = get_absolute_expression ();
5031 if (align > max_alignment)
5032 {
5033 align = max_alignment;
5034 as_bad (_("Alignment too large: %d. assumed"), align);
5035 }
5036 else if (align < 0)
5037 {
5038 as_warn (_("Alignment negative: 0 assumed"));
5039 align = 0;
5040 }
5041
5042 if (*input_line_pointer == ',')
5043 {
5044 input_line_pointer++;
5045 fill = get_absolute_expression ();
5046 pfill = &fill;
5047 }
5048 else
5049 pfill = NULL;
5050
5051 if (align != 0)
5052 {
5053 alpha_auto_align_on = 1;
af3ecb4a 5054 alpha_align (align, pfill, NULL, 1);
252b5132
RH
5055 }
5056 else
5057 {
5058 alpha_auto_align_on = 0;
5059 }
af3ecb4a 5060 alpha_insn_label = NULL;
252b5132
RH
5061
5062 demand_empty_rest_of_line ();
5063}
5064
5065/* Hook the normal string processor to reset known alignment. */
5066
5067static void
ea1562b3 5068s_alpha_stringer (int terminate)
252b5132
RH
5069{
5070 alpha_current_align = 0;
5071 alpha_insn_label = NULL;
38a57ae7 5072 stringer (8 + terminate);
252b5132
RH
5073}
5074
5075/* Hook the normal space processing to reset known alignment. */
5076
5077static void
ea1562b3 5078s_alpha_space (int ignore)
252b5132
RH
5079{
5080 alpha_current_align = 0;
5081 alpha_insn_label = NULL;
5082 s_space (ignore);
5083}
5084
5085/* Hook into cons for auto-alignment. */
5086
5087void
ea1562b3 5088alpha_cons_align (int size)
252b5132
RH
5089{
5090 int log_size;
5091
5092 log_size = 0;
5093 while ((size >>= 1) != 0)
5094 ++log_size;
5095
5096 if (alpha_auto_align_on && alpha_current_align < log_size)
5097 alpha_align (log_size, (char *) NULL, alpha_insn_label, 0);
5098 if (alpha_current_align > log_size)
5099 alpha_current_align = log_size;
5100 alpha_insn_label = NULL;
5101}
5102
5103/* Here come the .uword, .ulong, and .uquad explicitly unaligned
5104 pseudos. We just turn off auto-alignment and call down to cons. */
5105
5106static void
ea1562b3 5107s_alpha_ucons (int bytes)
252b5132
RH
5108{
5109 int hold = alpha_auto_align_on;
5110 alpha_auto_align_on = 0;
5111 cons (bytes);
5112 alpha_auto_align_on = hold;
5113}
5114
5115/* Switch the working cpu type. */
5116
5117static void
ea1562b3 5118s_alpha_arch (int ignored ATTRIBUTE_UNUSED)
252b5132
RH
5119{
5120 char *name, ch;
5121 const struct cpu_type *p;
5122
5123 SKIP_WHITESPACE ();
d02603dc
NC
5124
5125 ch = get_symbol_name (&name);
252b5132
RH
5126
5127 for (p = cpu_types; p->name; ++p)
32ff5c2e 5128 if (strcmp (name, p->name) == 0)
252b5132 5129 {
1aad8cf8 5130 alpha_target_name = p->name, alpha_target = p->flags;
252b5132
RH
5131 goto found;
5132 }
20203fb9 5133 as_warn (_("Unknown CPU identifier `%s'"), name);
252b5132 5134
dc1e8a47 5135 found:
d02603dc 5136 (void) restore_line_pointer (ch);
252b5132
RH
5137 demand_empty_rest_of_line ();
5138}
252b5132 5139\f
252b5132
RH
5140#ifdef DEBUG1
5141/* print token expression with alpha specific extension. */
5142
5143static void
ea1562b3 5144alpha_print_token (FILE *f, const expressionS *exp)
252b5132
RH
5145{
5146 switch (exp->X_op)
5147 {
1aad8cf8
KH
5148 case O_cpregister:
5149 putc (',', f);
5150 /* FALLTHRU */
5151 case O_pregister:
5152 putc ('(', f);
5153 {
5154 expressionS nexp = *exp;
5155 nexp.X_op = O_register;
198f1251 5156 print_expr_1 (f, &nexp);
1aad8cf8
KH
5157 }
5158 putc (')', f);
5159 break;
5160 default:
198f1251 5161 print_expr_1 (f, exp);
1aad8cf8 5162 break;
252b5132 5163 }
252b5132
RH
5164}
5165#endif
5166\f
5167/* The target specific pseudo-ops which we support. */
5168
ea1562b3
NC
5169const pseudo_typeS md_pseudo_table[] =
5170{
252b5132 5171#ifdef OBJ_ECOFF
ea1562b3 5172 {"comm", s_alpha_comm, 0}, /* OSF1 compiler does this. */
252b5132
RH
5173 {"rdata", s_alpha_rdata, 0},
5174#endif
5175 {"text", s_alpha_text, 0},
5176 {"data", s_alpha_data, 0},
5177#ifdef OBJ_ECOFF
5178 {"sdata", s_alpha_sdata, 0},
5179#endif
5180#ifdef OBJ_ELF
5181 {"section", s_alpha_section, 0},
5182 {"section.s", s_alpha_section, 0},
5183 {"sect", s_alpha_section, 0},
5184 {"sect.s", s_alpha_section, 0},
5185#endif
5186#ifdef OBJ_EVAX
198f1251
TG
5187 {"section", s_alpha_section, 0},
5188 {"literals", s_alpha_literals, 0},
5189 {"pdesc", s_alpha_pdesc, 0},
5190 {"name", s_alpha_name, 0},
5191 {"linkage", s_alpha_linkage, 0},
5192 {"code_address", s_alpha_code_address, 0},
5193 {"ent", s_alpha_ent, 0},
5194 {"frame", s_alpha_frame, 0},
5195 {"fp_save", s_alpha_fp_save, 0},
5196 {"mask", s_alpha_mask, 0},
5197 {"fmask", s_alpha_fmask, 0},
5198 {"end", s_alpha_end, 0},
5199 {"file", s_alpha_file, 0},
5200 {"rdata", s_alpha_section, 1},
5201 {"comm", s_alpha_comm, 0},
5202 {"link", s_alpha_section, 3},
5203 {"ctors", s_alpha_section, 4},
5204 {"dtors", s_alpha_section, 5},
5205 {"handler", s_alpha_handler, 0},
5206 {"handler_data", s_alpha_handler, 1},
252b5132
RH
5207#endif
5208#ifdef OBJ_ELF
5209 /* Frame related pseudos. */
5210 {"ent", s_alpha_ent, 0},
5211 {"end", s_alpha_end, 0},
5212 {"mask", s_alpha_mask, 0},
5213 {"fmask", s_alpha_mask, 1},
5214 {"frame", s_alpha_frame, 0},
5215 {"prologue", s_alpha_prologue, 0},
4dc7ead9
RH
5216 {"file", s_alpha_file, 5},
5217 {"loc", s_alpha_loc, 9},
a8316fe2
RH
5218 {"stabs", s_alpha_stab, 's'},
5219 {"stabn", s_alpha_stab, 'n'},
f4b97536 5220 {"usepv", s_alpha_usepv, 0},
252b5132
RH
5221 /* COFF debugging related pseudos. */
5222 {"begin", s_alpha_coff_wrapper, 0},
5223 {"bend", s_alpha_coff_wrapper, 1},
5224 {"def", s_alpha_coff_wrapper, 2},
5225 {"dim", s_alpha_coff_wrapper, 3},
5226 {"endef", s_alpha_coff_wrapper, 4},
4dc7ead9
RH
5227 {"scl", s_alpha_coff_wrapper, 5},
5228 {"tag", s_alpha_coff_wrapper, 6},
5229 {"val", s_alpha_coff_wrapper, 7},
198f1251
TG
5230#else
5231#ifdef OBJ_EVAX
5232 {"prologue", s_alpha_prologue, 0},
252b5132
RH
5233#else
5234 {"prologue", s_ignore, 0},
198f1251 5235#endif
252b5132
RH
5236#endif
5237 {"gprel32", s_alpha_gprel32, 0},
5238 {"t_floating", s_alpha_float_cons, 'd'},
5239 {"s_floating", s_alpha_float_cons, 'f'},
5240 {"f_floating", s_alpha_float_cons, 'F'},
5241 {"g_floating", s_alpha_float_cons, 'G'},
5242 {"d_floating", s_alpha_float_cons, 'D'},
5243
5244 {"proc", s_alpha_proc, 0},
5245 {"aproc", s_alpha_proc, 1},
5246 {"set", s_alpha_set, 0},
5247 {"reguse", s_ignore, 0},
5248 {"livereg", s_ignore, 0},
5249 {"base", s_alpha_base, 0}, /*??*/
5250 {"option", s_ignore, 0},
5251 {"aent", s_ignore, 0},
5252 {"ugen", s_ignore, 0},
5253 {"eflag", s_ignore, 0},
5254
5255 {"align", s_alpha_align, 0},
5256 {"double", s_alpha_float_cons, 'd'},
5257 {"float", s_alpha_float_cons, 'f'},
5258 {"single", s_alpha_float_cons, 'f'},
5259 {"ascii", s_alpha_stringer, 0},
5260 {"asciz", s_alpha_stringer, 1},
5261 {"string", s_alpha_stringer, 1},
5262 {"space", s_alpha_space, 0},
5263 {"skip", s_alpha_space, 0},
5264 {"zero", s_alpha_space, 0},
5265
5266/* Unaligned data pseudos. */
5267 {"uword", s_alpha_ucons, 2},
5268 {"ulong", s_alpha_ucons, 4},
5269 {"uquad", s_alpha_ucons, 8},
5270
5271#ifdef OBJ_ELF
5272/* Dwarf wants these versions of unaligned. */
5273 {"2byte", s_alpha_ucons, 2},
5274 {"4byte", s_alpha_ucons, 4},
5275 {"8byte", s_alpha_ucons, 8},
5276#endif
5277
5278/* We don't do any optimizing, so we can safely ignore these. */
5279 {"noalias", s_ignore, 0},
5280 {"alias", s_ignore, 0},
5281
5282 {"arch", s_alpha_arch, 0},
5283
5284 {NULL, 0, 0},
5285};
252b5132 5286\f
ea1562b3 5287#ifdef OBJ_ECOFF
252b5132 5288
ea1562b3
NC
5289/* @@@ GP selection voodoo. All of this seems overly complicated and
5290 unnecessary; which is the primary reason it's for ECOFF only. */
ea1562b3
NC
5291
5292static inline void
5293maybe_set_gp (asection *sec)
252b5132 5294{
ea1562b3
NC
5295 bfd_vma vma;
5296
5297 if (!sec)
5298 return;
fd361982 5299 vma = bfd_section_vma (sec);
ea1562b3
NC
5300 if (vma && vma < alpha_gp_value)
5301 alpha_gp_value = vma;
5302}
5303
5304static void
5305select_gp_value (void)
5306{
9c2799c2 5307 gas_assert (alpha_gp_value == 0);
ea1562b3
NC
5308
5309 /* Get minus-one in whatever width... */
5310 alpha_gp_value = 0;
5311 alpha_gp_value--;
5312
5313 /* Select the smallest VMA of these existing sections. */
5314 maybe_set_gp (alpha_lita_section);
5315
5316/* @@ Will a simple 0x8000 work here? If not, why not? */
5317#define GP_ADJUSTMENT (0x8000 - 0x10)
5318
5319 alpha_gp_value += GP_ADJUSTMENT;
5320
5321 S_SET_VALUE (alpha_gp_symbol, alpha_gp_value);
5322
5323#ifdef DEBUG1
5324 printf (_("Chose GP value of %lx\n"), alpha_gp_value);
5325#endif
5326}
5327#endif /* OBJ_ECOFF */
5328
5329#ifdef OBJ_ELF
5330/* Map 's' to SHF_ALPHA_GPREL. */
5331
01e1a5bc 5332bfd_vma
6d4af3c2 5333alpha_elf_section_letter (int letter, const char **ptr_msg)
ea1562b3
NC
5334{
5335 if (letter == 's')
5336 return SHF_ALPHA_GPREL;
5337
8f3bae45 5338 *ptr_msg = _("bad .section directive: want a,s,w,x,M,S,G,T in string");
ea1562b3
NC
5339 return -1;
5340}
5341
5342/* Map SHF_ALPHA_GPREL to SEC_SMALL_DATA. */
5343
5344flagword
01e1a5bc 5345alpha_elf_section_flags (flagword flags, bfd_vma attr, int type ATTRIBUTE_UNUSED)
ea1562b3
NC
5346{
5347 if (attr & SHF_ALPHA_GPREL)
5348 flags |= SEC_SMALL_DATA;
5349 return flags;
5350}
5351#endif /* OBJ_ELF */
5352
5353/* This is called from HANDLE_ALIGN in write.c. Fill in the contents
5354 of an rs_align_code fragment. */
5355
5356void
5357alpha_handle_align (fragS *fragp)
5358{
d9235011
TS
5359 static unsigned char const unop[4] = { 0x00, 0x00, 0xfe, 0x2f };
5360 static unsigned char const nopunop[8] =
ea1562b3
NC
5361 {
5362 0x1f, 0x04, 0xff, 0x47,
5363 0x00, 0x00, 0xfe, 0x2f
5364 };
5365
5366 int bytes, fix;
5367 char *p;
5368
5369 if (fragp->fr_type != rs_align_code)
5370 return;
5371
5372 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
5373 p = fragp->fr_literal + fragp->fr_fix;
5374 fix = 0;
5375
5376 if (bytes & 3)
5377 {
5378 fix = bytes & 3;
5379 memset (p, 0, fix);
5380 p += fix;
5381 bytes -= fix;
5382 }
5383
5384 if (bytes & 4)
5385 {
5386 memcpy (p, unop, 4);
5387 p += 4;
5388 bytes -= 4;
5389 fix += 4;
5390 }
5391
5392 memcpy (p, nopunop, 8);
5393
5394 fragp->fr_fix += fix;
5395 fragp->fr_var = 8;
5396}
5397\f
5398/* Public interface functions. */
5399
5400/* This function is called once, at assembler startup time. It sets
5401 up all the tables, etc. that the MD part of the assembler will
5402 need, that can be determined before arguments are parsed. */
5403
5404void
5405md_begin (void)
5406{
5407 unsigned int i;
5408
5409 /* Verify that X_op field is wide enough. */
5410 {
5411 expressionS e;
5412
5413 e.X_op = O_max;
9c2799c2 5414 gas_assert (e.X_op == O_max);
ea1562b3
NC
5415 }
5416
5417 /* Create the opcode hash table. */
629310ab 5418 alpha_opcode_hash = str_htab_create ();
ea1562b3
NC
5419
5420 for (i = 0; i < alpha_num_opcodes;)
5421 {
629310ab 5422 const char *name, *slash;
ea1562b3
NC
5423
5424 name = alpha_opcodes[i].name;
629310ab 5425 str_hash_insert (alpha_opcode_hash, name, (void *) &alpha_opcodes[i]);
ea1562b3
NC
5426
5427 /* Some opcodes include modifiers of various sorts with a "/mod"
5428 syntax, like the architecture manual suggests. However, for
5429 use with gcc at least, we also need access to those same opcodes
5430 without the "/". */
5431
5432 if ((slash = strchr (name, '/')) != NULL)
5433 {
add39d23 5434 char *p = XNEWVEC (char, strlen (name));
ea1562b3
NC
5435
5436 memcpy (p, name, slash - name);
5437 strcpy (p + (slash - name), slash + 1);
5438
629310ab 5439 (void) str_hash_insert (alpha_opcode_hash, p, (void *) &alpha_opcodes[i]);
ea1562b3
NC
5440 /* Ignore failures -- the opcode table does duplicate some
5441 variants in different forms, like "hw_stq" and "hw_st/q". */
5442 }
5443
5444 while (++i < alpha_num_opcodes
5445 && (alpha_opcodes[i].name == name
5446 || !strcmp (alpha_opcodes[i].name, name)))
5447 continue;
5448 }
5449
5450 /* Create the macro hash table. */
629310ab 5451 alpha_macro_hash = str_htab_create ();
ea1562b3
NC
5452
5453 for (i = 0; i < alpha_num_macros;)
5454 {
629310ab 5455 const char *name;
ea1562b3
NC
5456
5457 name = alpha_macros[i].name;
629310ab 5458 str_hash_insert (alpha_macro_hash, name, (void *) &alpha_macros[i]);
ea1562b3
NC
5459
5460 while (++i < alpha_num_macros
5461 && (alpha_macros[i].name == name
5462 || !strcmp (alpha_macros[i].name, name)))
5463 continue;
5464 }
5465
5466 /* Construct symbols for each of the registers. */
5467 for (i = 0; i < 32; ++i)
5468 {
5469 char name[4];
5470
5471 sprintf (name, "$%d", i);
e01e1cee
AM
5472 alpha_register_table[i] = symbol_create (name, reg_section,
5473 &zero_address_frag, i);
ea1562b3
NC
5474 }
5475
5476 for (; i < 64; ++i)
5477 {
5478 char name[5];
5479
5480 sprintf (name, "$f%d", i - 32);
e01e1cee
AM
5481 alpha_register_table[i] = symbol_create (name, reg_section,
5482 &zero_address_frag, i);
ea1562b3
NC
5483 }
5484
5485 /* Create the special symbols and sections we'll be using. */
5486
5487 /* So .sbss will get used for tiny objects. */
5488 bfd_set_gp_size (stdoutput, g_switch_value);
5489
5490#ifdef OBJ_ECOFF
5491 create_literal_section (".lita", &alpha_lita_section, &alpha_lita_symbol);
5492
5493 /* For handling the GP, create a symbol that won't be output in the
5494 symbol table. We'll edit it out of relocs later. */
e01e1cee
AM
5495 alpha_gp_symbol = symbol_create ("<GP value>", alpha_lita_section,
5496 &zero_address_frag, 0x8000);
ea1562b3
NC
5497#endif
5498
5499#ifdef OBJ_EVAX
5500 create_literal_section (".link", &alpha_link_section, &alpha_link_symbol);
5501#endif
5502
5503#ifdef OBJ_ELF
5504 if (ECOFF_DEBUGGING)
5505 {
5506 segT sec = subseg_new (".mdebug", (subsegT) 0);
fd361982
AM
5507 bfd_set_section_flags (sec, SEC_HAS_CONTENTS | SEC_READONLY);
5508 bfd_set_section_alignment (sec, 3);
ea1562b3
NC
5509 }
5510#endif
5511
5512 /* Create literal lookup hash table. */
629310ab 5513 alpha_literal_hash = str_htab_create ();
ea1562b3
NC
5514
5515 subseg_set (text_section, 0);
5516}
5517
5518/* The public interface to the instruction assembler. */
5519
5520void
5521md_assemble (char *str)
5522{
5523 /* Current maximum is 13. */
5524 char opname[32];
5525 expressionS tok[MAX_INSN_ARGS];
5526 int ntok, trunclen;
5527 size_t opnamelen;
5528
5529 /* Split off the opcode. */
5530 opnamelen = strspn (str, "abcdefghijklmnopqrstuvwxyz_/46819");
5531 trunclen = (opnamelen < sizeof (opname) - 1
5532 ? opnamelen
5533 : sizeof (opname) - 1);
5534 memcpy (opname, str, trunclen);
5535 opname[trunclen] = '\0';
5536
5537 /* Tokenize the rest of the line. */
5538 if ((ntok = tokenize_arguments (str + opnamelen, tok, MAX_INSN_ARGS)) < 0)
5539 {
5540 if (ntok != TOKENIZE_ERROR_REPORT)
5541 as_bad (_("syntax error"));
5542
5543 return;
5544 }
5545
5546 /* Finish it off. */
5547 assemble_tokens (opname, tok, ntok, alpha_macros_on);
5548}
5549
5550/* Round up a section's size to the appropriate boundary. */
5551
5552valueT
5553md_section_align (segT seg, valueT size)
5554{
fd361982 5555 int align = bfd_section_alignment (seg);
ea1562b3
NC
5556 valueT mask = ((valueT) 1 << align) - 1;
5557
5558 return (size + mask) & ~mask;
5559}
5560
5561/* Turn a string in input_line_pointer into a floating point constant
5562 of type TYPE, and store the appropriate bytes in *LITP. The number
5563 of LITTLENUMS emitted is stored in *SIZEP. An error message is
5564 returned, or NULL on OK. */
5565
6d4af3c2 5566const char *
ea1562b3
NC
5567md_atof (int type, char *litP, int *sizeP)
5568{
6d4af3c2 5569 extern const char *vax_md_atof (int, char *, int *);
ea1562b3
NC
5570
5571 switch (type)
5572 {
5573 /* VAX floats. */
5574 case 'G':
499ac353 5575 /* vax_md_atof() doesn't like "G" for some reason. */
ea1562b3 5576 type = 'g';
1a0670f3 5577 /* Fall through. */
ea1562b3
NC
5578 case 'F':
5579 case 'D':
5580 return vax_md_atof (type, litP, sizeP);
5581
ea1562b3 5582 default:
499ac353 5583 return ieee_md_atof (type, litP, sizeP, FALSE);
ea1562b3 5584 }
ea1562b3
NC
5585}
5586
5587/* Take care of the target-specific command-line options. */
5588
5589int
17b9d67d 5590md_parse_option (int c, const char *arg)
ea1562b3
NC
5591{
5592 switch (c)
5593 {
5594 case 'F':
5595 alpha_nofloats_on = 1;
5596 break;
5597
5598 case OPTION_32ADDR:
5599 alpha_addr32_on = 1;
5600 break;
5601
5602 case 'g':
5603 alpha_debug = 1;
5604 break;
5605
5606 case 'G':
5607 g_switch_value = atoi (arg);
5608 break;
5609
5610 case 'm':
5611 {
5612 const struct cpu_type *p;
5613
5614 for (p = cpu_types; p->name; ++p)
5615 if (strcmp (arg, p->name) == 0)
5616 {
5617 alpha_target_name = p->name, alpha_target = p->flags;
5618 goto found;
5619 }
5620 as_warn (_("Unknown CPU identifier `%s'"), arg);
5621 found:;
5622 }
5623 break;
5624
5625#ifdef OBJ_EVAX
5626 case '+': /* For g++. Hash any name > 63 chars long. */
5627 alpha_flag_hash_long_names = 1;
5628 break;
5629
5630 case 'H': /* Show new symbol after hash truncation. */
5631 alpha_flag_show_after_trunc = 1;
5632 break;
5633
5634 case 'h': /* For gnu-c/vax compatibility. */
5635 break;
198f1251
TG
5636
5637 case OPTION_REPLACE:
5638 alpha_flag_replace = 1;
5639 break;
5640
5641 case OPTION_NOREPLACE:
5642 alpha_flag_replace = 0;
5643 break;
ea1562b3
NC
5644#endif
5645
5646 case OPTION_RELAX:
5647 alpha_flag_relax = 1;
5648 break;
5649
5650#ifdef OBJ_ELF
5651 case OPTION_MDEBUG:
5652 alpha_flag_mdebug = 1;
5653 break;
5654 case OPTION_NO_MDEBUG:
5655 alpha_flag_mdebug = 0;
5656 break;
5657#endif
5658
5659 default:
5660 return 0;
5661 }
5662
5663 return 1;
5664}
5665
5666/* Print a description of the command-line options that we accept. */
5667
5668void
5669md_show_usage (FILE *stream)
5670{
5671 fputs (_("\
5672Alpha options:\n\
5673-32addr treat addresses as 32-bit values\n\
5674-F lack floating point instructions support\n\
5675-mev4 | -mev45 | -mev5 | -mev56 | -mpca56 | -mev6 | -mev67 | -mev68 | -mall\n\
5676 specify variant of Alpha architecture\n\
5677-m21064 | -m21066 | -m21164 | -m21164a | -m21164pc | -m21264 | -m21264a | -m21264b\n\
5678 these variants include PALcode opcodes\n"),
5679 stream);
5680#ifdef OBJ_EVAX
5681 fputs (_("\
5682VMS options:\n\
198f1251
TG
5683-+ encode (don't truncate) names longer than 64 characters\n\
5684-H show new symbol after hash truncation\n\
5685-replace/-noreplace enable or disable the optimization of procedure calls\n"),
ea1562b3
NC
5686 stream);
5687#endif
5688}
5689
5690/* Decide from what point a pc-relative relocation is relative to,
5691 relative to the pc-relative fixup. Er, relatively speaking. */
5692
5693long
5694md_pcrel_from (fixS *fixP)
5695{
5696 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
5697
5698 switch (fixP->fx_r_type)
5699 {
5700 case BFD_RELOC_23_PCREL_S2:
5701 case BFD_RELOC_ALPHA_HINT:
5702 case BFD_RELOC_ALPHA_BRSGP:
5703 return addr + 4;
5704 default:
5705 return addr;
5706 }
5707}
5708
5709/* Attempt to simplify or even eliminate a fixup. The return value is
5710 ignored; perhaps it was once meaningful, but now it is historical.
5711 To indicate that a fixup has been eliminated, set fixP->fx_done.
5712
5713 For ELF, here it is that we transform the GPDISP_HI16 reloc we used
5714 internally into the GPDISP reloc used externally. We had to do
5715 this so that we'd have the GPDISP_LO16 reloc as a tag to compute
5716 the distance to the "lda" instruction for setting the addend to
5717 GPDISP. */
5718
5719void
55cf6793 5720md_apply_fix (fixS *fixP, valueT * valP, segT seg)
ea1562b3
NC
5721{
5722 char * const fixpos = fixP->fx_frag->fr_literal + fixP->fx_where;
5723 valueT value = * valP;
5724 unsigned image, size;
5725
5726 switch (fixP->fx_r_type)
5727 {
5728 /* The GPDISP relocations are processed internally with a symbol
5729 referring to the current function's section; we need to drop
5730 in a value which, when added to the address of the start of
5731 the function, gives the desired GP. */
5732 case BFD_RELOC_ALPHA_GPDISP_HI16:
5733 {
5734 fixS *next = fixP->fx_next;
5735
5736 /* With user-specified !gpdisp relocations, we can be missing
5737 the matching LO16 reloc. We will have already issued an
5738 error message. */
5739 if (next)
5740 fixP->fx_offset = (next->fx_frag->fr_address + next->fx_where
5741 - fixP->fx_frag->fr_address - fixP->fx_where);
5742
5743 value = (value - sign_extend_16 (value)) >> 16;
5744 }
5745#ifdef OBJ_ELF
5746 fixP->fx_r_type = BFD_RELOC_ALPHA_GPDISP;
5747#endif
5748 goto do_reloc_gp;
5749
5750 case BFD_RELOC_ALPHA_GPDISP_LO16:
5751 value = sign_extend_16 (value);
5752 fixP->fx_offset = 0;
5753#ifdef OBJ_ELF
5754 fixP->fx_done = 1;
5755#endif
5756
5757 do_reloc_gp:
5758 fixP->fx_addsy = section_symbol (seg);
5759 md_number_to_chars (fixpos, value, 2);
5760 break;
5761
e1748c54
AM
5762 case BFD_RELOC_8:
5763 if (fixP->fx_pcrel)
5764 fixP->fx_r_type = BFD_RELOC_8_PCREL;
5765 size = 1;
5766 goto do_reloc_xx;
5767
ea1562b3
NC
5768 case BFD_RELOC_16:
5769 if (fixP->fx_pcrel)
5770 fixP->fx_r_type = BFD_RELOC_16_PCREL;
5771 size = 2;
5772 goto do_reloc_xx;
5773
5774 case BFD_RELOC_32:
5775 if (fixP->fx_pcrel)
5776 fixP->fx_r_type = BFD_RELOC_32_PCREL;
5777 size = 4;
5778 goto do_reloc_xx;
5779
5780 case BFD_RELOC_64:
5781 if (fixP->fx_pcrel)
5782 fixP->fx_r_type = BFD_RELOC_64_PCREL;
5783 size = 8;
5784
5785 do_reloc_xx:
5786 if (fixP->fx_pcrel == 0 && fixP->fx_addsy == 0)
5787 {
5788 md_number_to_chars (fixpos, value, size);
5789 goto done;
5790 }
5791 return;
5792
5793#ifdef OBJ_ECOFF
5794 case BFD_RELOC_GPREL32:
9c2799c2 5795 gas_assert (fixP->fx_subsy == alpha_gp_symbol);
ea1562b3
NC
5796 fixP->fx_subsy = 0;
5797 /* FIXME: inherited this obliviousness of `value' -- why? */
5798 md_number_to_chars (fixpos, -alpha_gp_value, 4);
5799 break;
5800#else
5801 case BFD_RELOC_GPREL32:
5802#endif
5803 case BFD_RELOC_GPREL16:
5804 case BFD_RELOC_ALPHA_GPREL_HI16:
5805 case BFD_RELOC_ALPHA_GPREL_LO16:
5806 return;
5807
5808 case BFD_RELOC_23_PCREL_S2:
5809 if (fixP->fx_pcrel == 0 && fixP->fx_addsy == 0)
5810 {
5811 image = bfd_getl32 (fixpos);
5812 image = (image & ~0x1FFFFF) | ((value >> 2) & 0x1FFFFF);
5813 goto write_done;
5814 }
5815 return;
5816
5817 case BFD_RELOC_ALPHA_HINT:
5818 if (fixP->fx_pcrel == 0 && fixP->fx_addsy == 0)
5819 {
5820 image = bfd_getl32 (fixpos);
5821 image = (image & ~0x3FFF) | ((value >> 2) & 0x3FFF);
5822 goto write_done;
5823 }
5824 return;
5825
5826#ifdef OBJ_ELF
5827 case BFD_RELOC_ALPHA_BRSGP:
5828 return;
5829
5830 case BFD_RELOC_ALPHA_TLSGD:
5831 case BFD_RELOC_ALPHA_TLSLDM:
5832 case BFD_RELOC_ALPHA_GOTDTPREL16:
5833 case BFD_RELOC_ALPHA_DTPREL_HI16:
5834 case BFD_RELOC_ALPHA_DTPREL_LO16:
5835 case BFD_RELOC_ALPHA_DTPREL16:
5836 case BFD_RELOC_ALPHA_GOTTPREL16:
5837 case BFD_RELOC_ALPHA_TPREL_HI16:
5838 case BFD_RELOC_ALPHA_TPREL_LO16:
5839 case BFD_RELOC_ALPHA_TPREL16:
5840 if (fixP->fx_addsy)
5841 S_SET_THREAD_LOCAL (fixP->fx_addsy);
5842 return;
5843#endif
5844
5845#ifdef OBJ_ECOFF
5846 case BFD_RELOC_ALPHA_LITERAL:
5847 md_number_to_chars (fixpos, value, 2);
5848 return;
5849#endif
5850 case BFD_RELOC_ALPHA_ELF_LITERAL:
5851 case BFD_RELOC_ALPHA_LITUSE:
5852 case BFD_RELOC_ALPHA_LINKAGE:
5853 case BFD_RELOC_ALPHA_CODEADDR:
5854 return;
5855
198f1251
TG
5856#ifdef OBJ_EVAX
5857 case BFD_RELOC_ALPHA_NOP:
5858 value -= (8 + 4); /* PC-relative, base is jsr+4. */
5859
5860 /* From B.4.5.2 of the OpenVMS Linker Utility Manual:
5861 "Finally, the ETIR$C_STC_BSR command passes the same address
5862 as ETIR$C_STC_NOP (so that they will fail or succeed together),
5863 and the same test is done again." */
5864 if (S_GET_SEGMENT (fixP->fx_addsy) == undefined_section)
5865 {
5866 fixP->fx_addnumber = -value;
5867 return;
5868 }
5869
3ca4a8ec 5870 if (value + (1u << 22) >= (1u << 23))
198f1251
TG
5871 goto done;
5872 else
5873 {
5874 /* Change to a nop. */
5875 image = 0x47FF041F;
5876 goto write_done;
5877 }
5878
5879 case BFD_RELOC_ALPHA_LDA:
5880 /* fixup_segment sets fixP->fx_addsy to NULL when it can pre-compute
5881 the value for an O_subtract. */
5882 if (fixP->fx_addsy
5883 && S_GET_SEGMENT (fixP->fx_addsy) == undefined_section)
5884 {
5885 fixP->fx_addnumber = symbol_get_bfdsym (fixP->fx_subsy)->value;
5886 return;
5887 }
5888
3ca4a8ec 5889 if (value + (1u << 15) >= (1u << 16))
198f1251
TG
5890 goto done;
5891 else
5892 {
5893 /* Change to an lda. */
5894 image = 0x237B0000 | (value & 0xFFFF);
5895 goto write_done;
5896 }
5897
5898 case BFD_RELOC_ALPHA_BSR:
5899 case BFD_RELOC_ALPHA_BOH:
5900 value -= 4; /* PC-relative, base is jsr+4. */
5901
5902 /* See comment in the BFD_RELOC_ALPHA_NOP case above. */
5903 if (S_GET_SEGMENT (fixP->fx_addsy) == undefined_section)
5904 {
5905 fixP->fx_addnumber = -value;
5906 return;
5907 }
5908
3ca4a8ec 5909 if (value + (1u << 22) >= (1u << 23))
198f1251
TG
5910 {
5911 /* Out of range. */
5912 if (fixP->fx_r_type == BFD_RELOC_ALPHA_BOH)
5913 {
5914 /* Add a hint. */
5915 image = bfd_getl32(fixpos);
5916 image = (image & ~0x3FFF) | ((value >> 2) & 0x3FFF);
5917 goto write_done;
5918 }
5919 goto done;
5920 }
5921 else
5922 {
5923 /* Change to a branch. */
5924 image = 0xD3400000 | ((value >> 2) & 0x1FFFFF);
5925 goto write_done;
5926 }
5927#endif
5928
ea1562b3
NC
5929 case BFD_RELOC_VTABLE_INHERIT:
5930 case BFD_RELOC_VTABLE_ENTRY:
5931 return;
5932
5933 default:
5934 {
5935 const struct alpha_operand *operand;
5936
5937 if ((int) fixP->fx_r_type >= 0)
5938 as_fatal (_("unhandled relocation type %s"),
5939 bfd_get_reloc_code_name (fixP->fx_r_type));
5940
9c2799c2 5941 gas_assert (-(int) fixP->fx_r_type < (int) alpha_num_operands);
ea1562b3
NC
5942 operand = &alpha_operands[-(int) fixP->fx_r_type];
5943
5944 /* The rest of these fixups only exist internally during symbol
5945 resolution and have no representation in the object file.
5946 Therefore they must be completely resolved as constants. */
5947
5948 if (fixP->fx_addsy != 0
5949 && S_GET_SEGMENT (fixP->fx_addsy) != absolute_section)
5950 as_bad_where (fixP->fx_file, fixP->fx_line,
5951 _("non-absolute expression in constant field"));
5952
5953 image = bfd_getl32 (fixpos);
5954 image = insert_operand (image, operand, (offsetT) value,
5955 fixP->fx_file, fixP->fx_line);
5956 }
5957 goto write_done;
5958 }
5959
5960 if (fixP->fx_addsy != 0 || fixP->fx_pcrel != 0)
5961 return;
5962 else
5963 {
5964 as_warn_where (fixP->fx_file, fixP->fx_line,
5965 _("type %d reloc done?\n"), (int) fixP->fx_r_type);
5966 goto done;
5967 }
5968
dc1e8a47 5969 write_done:
ea1562b3
NC
5970 md_number_to_chars (fixpos, image, 4);
5971
dc1e8a47 5972 done:
ea1562b3
NC
5973 fixP->fx_done = 1;
5974}
5975
5976/* Look for a register name in the given symbol. */
5977
5978symbolS *
5979md_undefined_symbol (char *name)
5980{
5981 if (*name == '$')
5982 {
5983 int is_float = 0, num;
5984
5985 switch (*++name)
5986 {
5987 case 'f':
5988 if (name[1] == 'p' && name[2] == '\0')
5989 return alpha_register_table[AXP_REG_FP];
5990 is_float = 32;
5991 /* Fall through. */
5992
5993 case 'r':
5994 if (!ISDIGIT (*++name))
5995 break;
5996 /* Fall through. */
5997
5998 case '0': case '1': case '2': case '3': case '4':
5999 case '5': case '6': case '7': case '8': case '9':
6000 if (name[1] == '\0')
6001 num = name[0] - '0';
6002 else if (name[0] != '0' && ISDIGIT (name[1]) && name[2] == '\0')
6003 {
6004 num = (name[0] - '0') * 10 + name[1] - '0';
6005 if (num >= 32)
6006 break;
6007 }
6008 else
6009 break;
6010
6011 if (!alpha_noat_on && (num + is_float) == AXP_REG_AT)
6012 as_warn (_("Used $at without \".set noat\""));
6013 return alpha_register_table[num + is_float];
6014
6015 case 'a':
6016 if (name[1] == 't' && name[2] == '\0')
6017 {
6018 if (!alpha_noat_on)
6019 as_warn (_("Used $at without \".set noat\""));
6020 return alpha_register_table[AXP_REG_AT];
6021 }
6022 break;
6023
6024 case 'g':
6025 if (name[1] == 'p' && name[2] == '\0')
6026 return alpha_register_table[alpha_gp_register];
6027 break;
6028
6029 case 's':
6030 if (name[1] == 'p' && name[2] == '\0')
6031 return alpha_register_table[AXP_REG_SP];
6032 break;
6033 }
6034 }
6035 return NULL;
6036}
6037
6038#ifdef OBJ_ECOFF
6039/* @@@ Magic ECOFF bits. */
6040
6041void
6042alpha_frob_ecoff_data (void)
6043{
6044 select_gp_value ();
6045 /* $zero and $f31 are read-only. */
6046 alpha_gprmask &= ~1;
6047 alpha_fprmask &= ~1;
6048}
6049#endif
6050
6051/* Hook to remember a recently defined label so that the auto-align
6052 code can adjust the symbol after we know what alignment will be
6053 required. */
6054
6055void
6056alpha_define_label (symbolS *sym)
6057{
6058 alpha_insn_label = sym;
07a53e5c
RH
6059#ifdef OBJ_ELF
6060 dwarf2_emit_label (sym);
6061#endif
ea1562b3
NC
6062}
6063
6064/* Return true if we must always emit a reloc for a type and false if
6065 there is some hope of resolving it at assembly time. */
6066
6067int
6068alpha_force_relocation (fixS *f)
6069{
6070 if (alpha_flag_relax)
6071 return 1;
6072
6073 switch (f->fx_r_type)
6074 {
6075 case BFD_RELOC_ALPHA_GPDISP_HI16:
6076 case BFD_RELOC_ALPHA_GPDISP_LO16:
6077 case BFD_RELOC_ALPHA_GPDISP:
6078 case BFD_RELOC_ALPHA_LITERAL:
6079 case BFD_RELOC_ALPHA_ELF_LITERAL:
6080 case BFD_RELOC_ALPHA_LITUSE:
6081 case BFD_RELOC_GPREL16:
6082 case BFD_RELOC_GPREL32:
6083 case BFD_RELOC_ALPHA_GPREL_HI16:
6084 case BFD_RELOC_ALPHA_GPREL_LO16:
6085 case BFD_RELOC_ALPHA_LINKAGE:
6086 case BFD_RELOC_ALPHA_CODEADDR:
6087 case BFD_RELOC_ALPHA_BRSGP:
6088 case BFD_RELOC_ALPHA_TLSGD:
6089 case BFD_RELOC_ALPHA_TLSLDM:
6090 case BFD_RELOC_ALPHA_GOTDTPREL16:
6091 case BFD_RELOC_ALPHA_DTPREL_HI16:
6092 case BFD_RELOC_ALPHA_DTPREL_LO16:
6093 case BFD_RELOC_ALPHA_DTPREL16:
6094 case BFD_RELOC_ALPHA_GOTTPREL16:
6095 case BFD_RELOC_ALPHA_TPREL_HI16:
6096 case BFD_RELOC_ALPHA_TPREL_LO16:
6097 case BFD_RELOC_ALPHA_TPREL16:
198f1251
TG
6098#ifdef OBJ_EVAX
6099 case BFD_RELOC_ALPHA_NOP:
6100 case BFD_RELOC_ALPHA_BSR:
6101 case BFD_RELOC_ALPHA_LDA:
6102 case BFD_RELOC_ALPHA_BOH:
6103#endif
ea1562b3 6104 return 1;
252b5132 6105
ea1562b3
NC
6106 default:
6107 break;
6108 }
252b5132 6109
ea1562b3 6110 return generic_force_reloc (f);
252b5132
RH
6111}
6112
ea1562b3 6113/* Return true if we can partially resolve a relocation now. */
252b5132 6114
ea1562b3
NC
6115int
6116alpha_fix_adjustable (fixS *f)
252b5132 6117{
ea1562b3
NC
6118 /* Are there any relocation types for which we must generate a
6119 reloc but we can adjust the values contained within it? */
6120 switch (f->fx_r_type)
6121 {
6122 case BFD_RELOC_ALPHA_GPDISP_HI16:
6123 case BFD_RELOC_ALPHA_GPDISP_LO16:
6124 case BFD_RELOC_ALPHA_GPDISP:
6125 return 0;
252b5132 6126
ea1562b3
NC
6127 case BFD_RELOC_ALPHA_LITERAL:
6128 case BFD_RELOC_ALPHA_ELF_LITERAL:
6129 case BFD_RELOC_ALPHA_LITUSE:
6130 case BFD_RELOC_ALPHA_LINKAGE:
6131 case BFD_RELOC_ALPHA_CODEADDR:
6132 return 1;
252b5132 6133
ea1562b3
NC
6134 case BFD_RELOC_VTABLE_ENTRY:
6135 case BFD_RELOC_VTABLE_INHERIT:
6136 return 0;
252b5132 6137
ea1562b3
NC
6138 case BFD_RELOC_GPREL16:
6139 case BFD_RELOC_GPREL32:
6140 case BFD_RELOC_ALPHA_GPREL_HI16:
6141 case BFD_RELOC_ALPHA_GPREL_LO16:
6142 case BFD_RELOC_23_PCREL_S2:
198f1251 6143 case BFD_RELOC_16:
ea1562b3
NC
6144 case BFD_RELOC_32:
6145 case BFD_RELOC_64:
6146 case BFD_RELOC_ALPHA_HINT:
6147 return 1;
252b5132 6148
ea1562b3
NC
6149 case BFD_RELOC_ALPHA_TLSGD:
6150 case BFD_RELOC_ALPHA_TLSLDM:
6151 case BFD_RELOC_ALPHA_GOTDTPREL16:
6152 case BFD_RELOC_ALPHA_DTPREL_HI16:
6153 case BFD_RELOC_ALPHA_DTPREL_LO16:
6154 case BFD_RELOC_ALPHA_DTPREL16:
6155 case BFD_RELOC_ALPHA_GOTTPREL16:
6156 case BFD_RELOC_ALPHA_TPREL_HI16:
6157 case BFD_RELOC_ALPHA_TPREL_LO16:
6158 case BFD_RELOC_ALPHA_TPREL16:
6159 /* ??? No idea why we can't return a reference to .tbss+10, but
6160 we're preventing this in the other assemblers. Follow for now. */
6161 return 0;
252b5132 6162
ea1562b3
NC
6163#ifdef OBJ_ELF
6164 case BFD_RELOC_ALPHA_BRSGP:
6165 /* If we have a BRSGP reloc to a local symbol, adjust it to BRADDR and
6166 let it get resolved at assembly time. */
6167 {
6168 symbolS *sym = f->fx_addsy;
6169 const char *name;
6170 int offset = 0;
252b5132 6171
ea1562b3
NC
6172 if (generic_force_reloc (f))
6173 return 0;
252b5132 6174
ea1562b3
NC
6175 switch (S_GET_OTHER (sym) & STO_ALPHA_STD_GPLOAD)
6176 {
6177 case STO_ALPHA_NOPV:
6178 break;
6179 case STO_ALPHA_STD_GPLOAD:
6180 offset = 8;
6181 break;
6182 default:
6183 if (S_IS_LOCAL (sym))
6184 name = "<local>";
6185 else
6186 name = S_GET_NAME (sym);
6187 as_bad_where (f->fx_file, f->fx_line,
6188 _("!samegp reloc against symbol without .prologue: %s"),
6189 name);
6190 break;
6191 }
6192 f->fx_r_type = BFD_RELOC_23_PCREL_S2;
6193 f->fx_offset += offset;
6194 return 1;
6195 }
252b5132 6196#endif
198f1251
TG
6197#ifdef OBJ_EVAX
6198 case BFD_RELOC_ALPHA_NOP:
6199 case BFD_RELOC_ALPHA_BSR:
6200 case BFD_RELOC_ALPHA_LDA:
6201 case BFD_RELOC_ALPHA_BOH:
6202 return 1;
6203#endif
d61a78a7 6204
ea1562b3
NC
6205 default:
6206 return 1;
6207 }
d61a78a7
RH
6208}
6209
ea1562b3
NC
6210/* Generate the BFD reloc to be stuck in the object file from the
6211 fixup used internally in the assembler. */
d61a78a7 6212
ea1562b3
NC
6213arelent *
6214tc_gen_reloc (asection *sec ATTRIBUTE_UNUSED,
6215 fixS *fixp)
d61a78a7 6216{
ea1562b3 6217 arelent *reloc;
d61a78a7 6218
add39d23
TS
6219 reloc = XNEW (arelent);
6220 reloc->sym_ptr_ptr = XNEW (asymbol *);
ea1562b3
NC
6221 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
6222 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
252b5132 6223
ea1562b3
NC
6224 /* Make sure none of our internal relocations make it this far.
6225 They'd better have been fully resolved by this point. */
9c2799c2 6226 gas_assert ((int) fixp->fx_r_type > 0);
252b5132 6227
ea1562b3
NC
6228 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
6229 if (reloc->howto == NULL)
252b5132 6230 {
ea1562b3
NC
6231 as_bad_where (fixp->fx_file, fixp->fx_line,
6232 _("cannot represent `%s' relocation in object file"),
6233 bfd_get_reloc_code_name (fixp->fx_r_type));
6234 return NULL;
252b5132 6235 }
252b5132 6236
ea1562b3
NC
6237 if (!fixp->fx_pcrel != !reloc->howto->pc_relative)
6238 as_fatal (_("internal error? cannot generate `%s' relocation"),
6239 bfd_get_reloc_code_name (fixp->fx_r_type));
252b5132 6240
9c2799c2 6241 gas_assert (!fixp->fx_pcrel == !reloc->howto->pc_relative);
ea1562b3 6242
bc1bc43f
RH
6243 reloc->addend = fixp->fx_offset;
6244
ea1562b3 6245#ifdef OBJ_ECOFF
bc1bc43f
RH
6246 /* Fake out bfd_perform_relocation. sigh. */
6247 /* ??? Better would be to use the special_function hook. */
ea1562b3 6248 if (fixp->fx_r_type == BFD_RELOC_ALPHA_LITERAL)
ea1562b3 6249 reloc->addend = -alpha_gp_value;
ea1562b3 6250#endif
252b5132 6251
198f1251
TG
6252#ifdef OBJ_EVAX
6253 switch (fixp->fx_r_type)
6254 {
6255 struct evax_private_udata_struct *udata;
6256 const char *pname;
6257 int pname_len;
6258
6259 case BFD_RELOC_ALPHA_LINKAGE:
51794af8 6260 /* Copy the linkage index. */
198f1251
TG
6261 reloc->addend = fixp->fx_addnumber;
6262 break;
6263
6264 case BFD_RELOC_ALPHA_NOP:
6265 case BFD_RELOC_ALPHA_BSR:
6266 case BFD_RELOC_ALPHA_LDA:
6267 case BFD_RELOC_ALPHA_BOH:
6268 pname = symbol_get_bfdsym (fixp->fx_addsy)->name;
6269
6270 /* We need the non-suffixed name of the procedure. Beware that
6271 the main symbol might be equated so look it up and take its name. */
6272 pname_len = strlen (pname);
6273 if (pname_len > 4 && strcmp (pname + pname_len - 4, "..en") == 0)
6274 {
6275 symbolS *sym;
29a2809e 6276 char *my_pname = xmemdup0 (pname, pname_len - 4);
198f1251 6277 sym = symbol_find (my_pname);
39a0d071 6278 free (my_pname);
198f1251
TG
6279 if (sym == NULL)
6280 abort ();
e1f4d6bd 6281
198f1251
TG
6282 while (symbol_equated_reloc_p (sym))
6283 {
6284 symbolS *n = symbol_get_value_expression (sym)->X_add_symbol;
6285
6286 /* We must avoid looping, as that can occur with a badly
6287 written program. */
6288 if (n == sym)
6289 break;
6290 sym = n;
6291 }
6292 pname = symbol_get_bfdsym (sym)->name;
6293 }
6294
add39d23 6295 udata = XNEW (struct evax_private_udata_struct);
198f1251
TG
6296 udata->enbsym = symbol_get_bfdsym (fixp->fx_addsy);
6297 udata->bsym = symbol_get_bfdsym (fixp->tc_fix_data.info->psym);
6298 udata->origname = (char *)pname;
6299 udata->lkindex = ((struct evax_private_udata_struct *)
6300 symbol_get_bfdsym (fixp->tc_fix_data.info->sym)->udata.p)->lkindex;
6301 reloc->sym_ptr_ptr = (void *)udata;
6302 reloc->addend = fixp->fx_addnumber;
6303
6304 default:
6305 break;
6306 }
6307#endif
6308
ea1562b3 6309 return reloc;
252b5132
RH
6310}
6311
ea1562b3
NC
6312/* Parse a register name off of the input_line and return a register
6313 number. Gets md_undefined_symbol above to do the register name
6314 matching for us.
0a9ef439 6315
ea1562b3 6316 Only called as a part of processing the ECOFF .frame directive. */
0a9ef439 6317
ea1562b3
NC
6318int
6319tc_get_register (int frame ATTRIBUTE_UNUSED)
6320{
6321 int framereg = AXP_REG_SP;
0a9ef439 6322
ea1562b3
NC
6323 SKIP_WHITESPACE ();
6324 if (*input_line_pointer == '$')
0a9ef439 6325 {
d02603dc
NC
6326 char *s;
6327 char c = get_symbol_name (&s);
ea1562b3 6328 symbolS *sym = md_undefined_symbol (s);
0a9ef439 6329
ea1562b3
NC
6330 *strchr (s, '\0') = c;
6331 if (sym && (framereg = S_GET_VALUE (sym)) <= 31)
6332 goto found;
0a9ef439 6333 }
ea1562b3 6334 as_warn (_("frame reg expected, using $%d."), framereg);
0a9ef439 6335
dc1e8a47 6336 found:
ea1562b3
NC
6337 note_gpreg (framereg);
6338 return framereg;
6339}
0a9ef439 6340
ea1562b3
NC
6341/* This is called before the symbol table is processed. In order to
6342 work with gcc when using mips-tfile, we must keep all local labels.
6343 However, in other cases, we want to discard them. If we were
6344 called with -g, but we didn't see any debugging information, it may
6345 mean that gcc is smuggling debugging information through to
6346 mips-tfile, in which case we must generate all local labels. */
6347
6348#ifdef OBJ_ECOFF
6349
6350void
6351alpha_frob_file_before_adjust (void)
6352{
6353 if (alpha_debug != 0
6354 && ! ecoff_debugging_seen)
6355 flag_keep_locals = 1;
0a9ef439
RH
6356}
6357
ea1562b3
NC
6358#endif /* OBJ_ECOFF */
6359
252b5132
RH
6360/* The Alpha has support for some VAX floating point types, as well as for
6361 IEEE floating point. We consider IEEE to be the primary floating point
6362 format, and sneak in the VAX floating point support here. */
252b5132 6363#include "config/atof-vax.c"
This page took 2.044772 seconds and 4 git commands to generate.