1991-04-05 02:19:53 +08:00
|
|
|
|
/* tc-sparc.c -- Assemble for the SPARC
|
1996-01-23 01:53:34 +08:00
|
|
|
|
Copyright (C) 1989, 90-95, 1996 Free Software Foundation, Inc.
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1991-06-21 06:47:57 +09:00
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
any later version.
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
GAS is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GAS; see the file COPYING. If not, write to
|
1995-07-07 05:18:08 +08:00
|
|
|
|
the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
|
|
#include "as.h"
|
1994-04-01 05:54:06 +08:00
|
|
|
|
#include "subsegs.h"
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* careful, this file includes data *declarations* */
|
1992-01-29 04:38:08 +08:00
|
|
|
|
#include "opcode/sparc.h"
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1993-10-22 03:50:57 +08:00
|
|
|
|
static void sparc_ip PARAMS ((char *));
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1996-01-25 19:20:06 +08:00
|
|
|
|
/* Current architecture. We don't bump up unless necessary. */
|
|
|
|
|
static enum sparc_opcode_arch_val current_architecture = SPARC_OPCODE_ARCH_V6;
|
|
|
|
|
|
|
|
|
|
/* The maximum architecture level we can bump up to.
|
|
|
|
|
In a 32 bit environment, don't allow bumping up to v9 by default.
|
|
|
|
|
The native assembler works this way. The user is required to pass
|
|
|
|
|
an explicit argument before we'll create v9 object files. However, if
|
|
|
|
|
we don't see any v9 insns, a v9 object file is not created. */
|
1996-01-23 01:53:34 +08:00
|
|
|
|
#ifdef SPARC_ARCH64
|
1996-01-25 19:20:06 +08:00
|
|
|
|
static enum sparc_opcode_arch_val max_architecture = SPARC_OPCODE_ARCH_V9;
|
1994-07-29 07:36:16 +08:00
|
|
|
|
#else
|
1996-02-19 18:43:01 +08:00
|
|
|
|
/* ??? This should be V8, but sparclite support was added by making it the
|
|
|
|
|
default. GCC now passes -Asparclite, so maybe sometime in the future
|
|
|
|
|
we can set this to V8. */
|
|
|
|
|
static enum sparc_opcode_arch_val max_architecture = SPARC_OPCODE_ARCH_SPARCLITE;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
static int architecture_requested;
|
|
|
|
|
static int warn_on_bump;
|
1991-05-22 10:18:42 +09:00
|
|
|
|
|
1996-01-25 19:20:06 +08:00
|
|
|
|
/* If warn_on_bump and the needed architecture is higher than this
|
|
|
|
|
architecture, issue a warning. */
|
|
|
|
|
static enum sparc_opcode_arch_val warn_after_architecture;
|
|
|
|
|
|
1995-08-17 04:21:49 +08:00
|
|
|
|
/* Non-zero if we are generating PIC code. */
|
|
|
|
|
int sparc_pic_code;
|
|
|
|
|
|
1993-06-25 17:51:47 +08:00
|
|
|
|
extern int target_big_endian;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
/* handle of the OPCODE hash table */
|
1994-07-29 07:36:16 +08:00
|
|
|
|
static struct hash_control *op_hash;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1993-10-22 03:50:57 +08:00
|
|
|
|
static void s_data1 PARAMS ((void));
|
|
|
|
|
static void s_seg PARAMS ((int));
|
|
|
|
|
static void s_proc PARAMS ((int));
|
|
|
|
|
static void s_reserve PARAMS ((int));
|
|
|
|
|
static void s_common PARAMS ((int));
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
const pseudo_typeS md_pseudo_table[] =
|
|
|
|
|
{
|
|
|
|
|
{"align", s_align_bytes, 0}, /* Defaulting is invalid (0) */
|
|
|
|
|
{"common", s_common, 0},
|
|
|
|
|
{"global", s_globl, 0},
|
|
|
|
|
{"half", cons, 2},
|
|
|
|
|
{"optim", s_ignore, 0},
|
|
|
|
|
{"proc", s_proc, 0},
|
|
|
|
|
{"reserve", s_reserve, 0},
|
|
|
|
|
{"seg", s_seg, 0},
|
|
|
|
|
{"skip", s_space, 0},
|
|
|
|
|
{"word", cons, 4},
|
1993-10-22 03:50:57 +08:00
|
|
|
|
{"xword", cons, 8},
|
1993-08-07 00:10:40 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
|
|
|
|
{"uaxword", cons, 8},
|
|
|
|
|
#endif
|
1993-08-05 07:10:43 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
|
|
|
|
/* these are specific to sparc/svr4 */
|
|
|
|
|
{"pushsection", obj_elf_section, 0},
|
|
|
|
|
{"popsection", obj_elf_previous, 0},
|
|
|
|
|
{"uaword", cons, 4},
|
|
|
|
|
{"uahalf", cons, 2},
|
|
|
|
|
#endif
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{NULL, 0, 0},
|
1991-04-05 02:19:53 +08:00
|
|
|
|
};
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
const int md_reloc_size = 12; /* Size of relocation record */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* This array holds the chars that always start a comment. If the
|
|
|
|
|
pre-processor is disabled, these aren't very useful */
|
1991-05-22 10:18:42 +09:00
|
|
|
|
const char comment_chars[] = "!"; /* JF removed '|' from comment_chars */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* This array holds the chars that only start a comment at the beginning of
|
|
|
|
|
a line. If the line seems to have the form '# 123 filename'
|
|
|
|
|
.line and .file directives will appear in the pre-processed output */
|
|
|
|
|
/* Note that input_file.c hand checks for '#' at the beginning of the
|
|
|
|
|
first line of the input file. This is because the compiler outputs
|
|
|
|
|
#NO_APP at the beginning of its output. */
|
1991-05-22 10:18:42 +09:00
|
|
|
|
/* Also note that comments started like this one will always
|
|
|
|
|
work if '/' isn't otherwise defined. */
|
|
|
|
|
const char line_comment_chars[] = "#";
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
const char line_separator_chars[] = "";
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
/* Chars that can be used to separate mant from exp in floating point nums */
|
1991-05-22 10:18:42 +09:00
|
|
|
|
const char EXP_CHARS[] = "eE";
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* Chars that mean this number is a floating point constant */
|
|
|
|
|
/* As in 0f12.456 */
|
|
|
|
|
/* or 0d1.2345e12 */
|
1991-05-22 10:18:42 +09:00
|
|
|
|
const char FLT_CHARS[] = "rRsSfFdDxXpP";
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
|
1993-10-26 01:45:17 +08:00
|
|
|
|
changed in read.c. Ideally it shouldn't have to know about it at all,
|
|
|
|
|
but nothing is ideal around here. */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
static unsigned char octal[256];
|
1993-09-11 00:01:07 +08:00
|
|
|
|
#define isoctal(c) octal[(unsigned char) (c)]
|
1992-11-24 04:42:33 +08:00
|
|
|
|
static unsigned char toHex[256];
|
|
|
|
|
|
|
|
|
|
struct sparc_it
|
|
|
|
|
{
|
|
|
|
|
char *error;
|
|
|
|
|
unsigned long opcode;
|
|
|
|
|
struct nlist *nlistp;
|
|
|
|
|
expressionS exp;
|
|
|
|
|
int pcrel;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
bfd_reloc_code_real_type reloc;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct sparc_it the_insn, set_insn;
|
|
|
|
|
|
1994-04-01 05:54:06 +08:00
|
|
|
|
static INLINE int
|
|
|
|
|
in_signed_range (val, max)
|
|
|
|
|
bfd_signed_vma val, max;
|
|
|
|
|
{
|
|
|
|
|
if (max <= 0)
|
|
|
|
|
abort ();
|
|
|
|
|
if (val > max)
|
|
|
|
|
return 0;
|
|
|
|
|
if (val < ~max)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
1996-02-19 18:43:01 +08:00
|
|
|
|
static int
|
|
|
|
|
sparc_ffs (mask)
|
|
|
|
|
unsigned int mask;
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (mask == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
for (i = 0; (mask & 1) == 0; ++i)
|
|
|
|
|
mask >>= 1;
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
#if 0
|
1993-02-24 19:24:14 +08:00
|
|
|
|
static void print_insn PARAMS ((struct sparc_it *insn));
|
1991-04-05 02:19:53 +08:00
|
|
|
|
#endif
|
1993-02-24 19:24:14 +08:00
|
|
|
|
static int getExpression PARAMS ((char *str));
|
1992-02-16 05:09:34 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
static char *expr_end;
|
|
|
|
|
static int special_case;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Instructions that require wierd handling because they're longer than
|
|
|
|
|
* 4 bytes.
|
|
|
|
|
*/
|
|
|
|
|
#define SPECIAL_CASE_SET 1
|
|
|
|
|
#define SPECIAL_CASE_FDIV 2
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* sort of like s_lcomm
|
|
|
|
|
*
|
|
|
|
|
*/
|
1993-09-11 00:01:07 +08:00
|
|
|
|
#ifndef OBJ_ELF
|
1992-01-29 04:38:08 +08:00
|
|
|
|
static int max_alignment = 15;
|
1993-09-11 00:01:07 +08:00
|
|
|
|
#endif
|
1992-01-29 04:38:08 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
static void
|
1993-10-22 03:50:57 +08:00
|
|
|
|
s_reserve (ignore)
|
|
|
|
|
int ignore;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
char *p;
|
|
|
|
|
char c;
|
|
|
|
|
int align;
|
|
|
|
|
int size;
|
|
|
|
|
int temp;
|
|
|
|
|
symbolS *symbolP;
|
|
|
|
|
|
|
|
|
|
name = input_line_pointer;
|
|
|
|
|
c = get_symbol_end ();
|
|
|
|
|
p = input_line_pointer;
|
|
|
|
|
*p = c;
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
|
|
|
|
|
if (*input_line_pointer != ',')
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Expected comma after name");
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
|
|
|
|
|
if ((size = get_absolute_expression ()) < 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad ("BSS length (%d.) <0! Ignored.", size);
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
} /* bad length */
|
|
|
|
|
|
|
|
|
|
*p = 0;
|
|
|
|
|
symbolP = symbol_find_or_make (name);
|
|
|
|
|
*p = c;
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
if (strncmp (input_line_pointer, ",\"bss\"", 6) != 0
|
|
|
|
|
&& strncmp (input_line_pointer, ",\".bss\"", 7) != 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1994-07-29 07:36:16 +08:00
|
|
|
|
as_bad ("bad .reserve segment -- expected BSS segment");
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return;
|
1993-10-26 01:45:17 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
if (input_line_pointer[2] == '.')
|
|
|
|
|
input_line_pointer += 7;
|
|
|
|
|
else
|
|
|
|
|
input_line_pointer += 6;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
|
|
|
|
|
if (*input_line_pointer == ',')
|
|
|
|
|
{
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer == '\n')
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Missing alignment");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
align = get_absolute_expression ();
|
1993-09-11 00:01:07 +08:00
|
|
|
|
#ifndef OBJ_ELF
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (align > max_alignment)
|
|
|
|
|
{
|
|
|
|
|
align = max_alignment;
|
|
|
|
|
as_warn ("Alignment too large: %d. assumed.", align);
|
|
|
|
|
}
|
1993-09-11 00:01:07 +08:00
|
|
|
|
#endif
|
|
|
|
|
if (align < 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
align = 0;
|
|
|
|
|
as_warn ("Alignment negative. 0 assumed.");
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
|
|
|
|
record_alignment (bss_section, align);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
/* convert to a power of 2 alignment */
|
|
|
|
|
for (temp = 0; (align & 1) == 0; align >>= 1, ++temp);;
|
|
|
|
|
|
|
|
|
|
if (align != 1)
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Alignment not a power of 2");
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
} /* not a power of two */
|
|
|
|
|
|
|
|
|
|
align = temp;
|
|
|
|
|
} /* if has optional alignment */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
else
|
|
|
|
|
align = 0;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1995-07-07 02:36:55 +08:00
|
|
|
|
if (!S_IS_DEFINED (symbolP)
|
1993-07-08 00:58:29 +08:00
|
|
|
|
#ifdef OBJ_AOUT
|
|
|
|
|
&& S_GET_OTHER (symbolP) == 0
|
1992-11-24 04:42:33 +08:00
|
|
|
|
&& S_GET_DESC (symbolP) == 0
|
1993-07-08 00:58:29 +08:00
|
|
|
|
#endif
|
|
|
|
|
)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1993-02-24 19:24:14 +08:00
|
|
|
|
if (! need_pass_2)
|
|
|
|
|
{
|
1993-10-22 03:50:57 +08:00
|
|
|
|
char *pfrag;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
segT current_seg = now_seg;
|
|
|
|
|
subsegT current_subseg = now_subseg;
|
|
|
|
|
|
|
|
|
|
subseg_set (bss_section, 1); /* switch to bss */
|
|
|
|
|
|
|
|
|
|
if (align)
|
|
|
|
|
frag_align (align, 0); /* do alignment */
|
|
|
|
|
|
|
|
|
|
/* detach from old frag */
|
|
|
|
|
if (S_GET_SEGMENT(symbolP) == bss_section)
|
|
|
|
|
symbolP->sy_frag->fr_symbol = NULL;
|
|
|
|
|
|
|
|
|
|
symbolP->sy_frag = frag_now;
|
1993-10-22 03:50:57 +08:00
|
|
|
|
pfrag = frag_var (rs_org, 1, 1, (relax_substateT)0, symbolP,
|
|
|
|
|
size, (char *)0);
|
|
|
|
|
*pfrag = 0;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
|
|
|
|
S_SET_SEGMENT (symbolP, bss_section);
|
|
|
|
|
|
|
|
|
|
subseg_set (current_seg, current_subseg);
|
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1995-07-07 02:36:55 +08:00
|
|
|
|
as_warn("Ignoring attempt to re-define symbol %s",
|
|
|
|
|
S_GET_NAME (symbolP));
|
1992-11-24 04:42:33 +08:00
|
|
|
|
} /* if not redefining */
|
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
1993-02-24 19:24:14 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
static void
|
1993-10-22 03:50:57 +08:00
|
|
|
|
s_common (ignore)
|
|
|
|
|
int ignore;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1993-06-25 17:51:47 +08:00
|
|
|
|
char *name;
|
|
|
|
|
char c;
|
|
|
|
|
char *p;
|
|
|
|
|
int temp, size;
|
|
|
|
|
symbolS *symbolP;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
name = input_line_pointer;
|
|
|
|
|
c = get_symbol_end ();
|
|
|
|
|
/* just after name is now '\0' */
|
|
|
|
|
p = input_line_pointer;
|
|
|
|
|
*p = c;
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer != ',')
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Expected comma after symbol-name");
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
input_line_pointer++; /* skip ',' */
|
|
|
|
|
if ((temp = get_absolute_expression ()) < 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad (".COMMon length (%d.) <0! Ignored.", temp);
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
1993-06-25 17:51:47 +08:00
|
|
|
|
size = temp;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
*p = 0;
|
|
|
|
|
symbolP = symbol_find_or_make (name);
|
|
|
|
|
*p = c;
|
|
|
|
|
if (S_IS_DEFINED (symbolP))
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Ignoring attempt to re-define symbol");
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (S_GET_VALUE (symbolP) != 0)
|
|
|
|
|
{
|
1993-06-25 17:51:47 +08:00
|
|
|
|
if (S_GET_VALUE (symbolP) != size)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1993-07-08 00:58:29 +08:00
|
|
|
|
as_warn ("Length of .comm \"%s\" is already %ld. Not changed to %d.",
|
|
|
|
|
S_GET_NAME (symbolP), (long) S_GET_VALUE (symbolP), size);
|
1992-08-02 07:20:55 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1993-06-25 17:51:47 +08:00
|
|
|
|
#ifndef OBJ_ELF
|
1993-10-22 03:50:57 +08:00
|
|
|
|
S_SET_VALUE (symbolP, (valueT) size);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
S_SET_EXTERNAL (symbolP);
|
1993-02-24 19:24:14 +08:00
|
|
|
|
#endif
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
know (symbolP->sy_frag == &zero_address_frag);
|
1993-02-24 19:24:14 +08:00
|
|
|
|
if (*input_line_pointer != ',')
|
|
|
|
|
{
|
1993-07-08 00:58:29 +08:00
|
|
|
|
as_bad ("Expected comma after common length");
|
1993-02-24 19:24:14 +08:00
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
input_line_pointer++;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer != '"')
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
1993-07-08 00:58:29 +08:00
|
|
|
|
temp = get_absolute_expression ();
|
1993-09-11 00:01:07 +08:00
|
|
|
|
#ifndef OBJ_ELF
|
1993-07-08 00:58:29 +08:00
|
|
|
|
if (temp > max_alignment)
|
|
|
|
|
{
|
|
|
|
|
temp = max_alignment;
|
|
|
|
|
as_warn ("Common alignment too large: %d. assumed", temp);
|
|
|
|
|
}
|
1993-09-11 00:01:07 +08:00
|
|
|
|
#endif
|
|
|
|
|
if (temp < 0)
|
1993-07-08 00:58:29 +08:00
|
|
|
|
{
|
|
|
|
|
temp = 0;
|
|
|
|
|
as_warn ("Common alignment negative; 0 assumed");
|
|
|
|
|
}
|
1993-07-09 03:09:19 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
1993-07-08 00:58:29 +08:00
|
|
|
|
if (symbolP->local)
|
|
|
|
|
{
|
1993-07-09 02:40:50 +08:00
|
|
|
|
segT old_sec;
|
|
|
|
|
int old_subsec;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
char *p;
|
1993-07-09 02:40:50 +08:00
|
|
|
|
int align;
|
1993-06-25 17:51:47 +08:00
|
|
|
|
|
1993-07-09 02:40:50 +08:00
|
|
|
|
allocate_bss:
|
|
|
|
|
old_sec = now_seg;
|
|
|
|
|
old_subsec = now_subseg;
|
|
|
|
|
align = temp;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
record_alignment (bss_section, align);
|
|
|
|
|
subseg_set (bss_section, 0);
|
|
|
|
|
if (align)
|
|
|
|
|
frag_align (align, 0);
|
|
|
|
|
if (S_GET_SEGMENT (symbolP) == bss_section)
|
|
|
|
|
symbolP->sy_frag->fr_symbol = 0;
|
|
|
|
|
symbolP->sy_frag = frag_now;
|
|
|
|
|
p = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
|
|
|
|
|
(char *) 0);
|
|
|
|
|
*p = 0;
|
|
|
|
|
S_SET_SEGMENT (symbolP, bss_section);
|
|
|
|
|
S_CLEAR_EXTERNAL (symbolP);
|
|
|
|
|
subseg_set (old_sec, old_subsec);
|
|
|
|
|
}
|
|
|
|
|
else
|
1993-07-09 03:09:19 +08:00
|
|
|
|
#endif
|
1993-07-08 00:58:29 +08:00
|
|
|
|
{
|
1993-07-09 02:40:50 +08:00
|
|
|
|
allocate_common:
|
1993-10-22 03:50:57 +08:00
|
|
|
|
S_SET_VALUE (symbolP, (valueT) size);
|
1994-07-29 07:36:16 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
|
|
|
|
S_SET_ALIGN (symbolP, temp);
|
|
|
|
|
#endif
|
1993-07-08 00:58:29 +08:00
|
|
|
|
S_SET_EXTERNAL (symbolP);
|
|
|
|
|
/* should be common, but this is how gas does it for now */
|
1994-07-29 07:36:16 +08:00
|
|
|
|
S_SET_SEGMENT (symbolP, bfd_und_section_ptr);
|
1993-07-08 00:58:29 +08:00
|
|
|
|
}
|
1993-06-25 17:51:47 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1993-07-08 00:58:29 +08:00
|
|
|
|
input_line_pointer++;
|
1993-07-09 02:40:50 +08:00
|
|
|
|
/* @@ Some use the dot, some don't. Can we get some consistency?? */
|
|
|
|
|
if (*input_line_pointer == '.')
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
/* @@ Some say data, some say bss. */
|
1993-07-08 00:58:29 +08:00
|
|
|
|
if (strncmp (input_line_pointer, "bss\"", 4)
|
1993-07-09 02:40:50 +08:00
|
|
|
|
&& strncmp (input_line_pointer, "data\"", 5))
|
1993-07-08 00:58:29 +08:00
|
|
|
|
{
|
1993-07-09 02:40:50 +08:00
|
|
|
|
while (*--input_line_pointer != '"')
|
|
|
|
|
;
|
|
|
|
|
input_line_pointer--;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
goto bad_common_segment;
|
|
|
|
|
}
|
|
|
|
|
while (*input_line_pointer++ != '"')
|
|
|
|
|
;
|
1993-07-09 02:40:50 +08:00
|
|
|
|
goto allocate_common;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
return;
|
1993-07-09 02:40:50 +08:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
bad_common_segment:
|
|
|
|
|
p = input_line_pointer;
|
|
|
|
|
while (*p && *p != '\n')
|
|
|
|
|
p++;
|
|
|
|
|
c = *p;
|
|
|
|
|
*p = '\0';
|
|
|
|
|
as_bad ("bad .common segment %s", input_line_pointer + 1);
|
|
|
|
|
*p = c;
|
|
|
|
|
input_line_pointer = p;
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
static void
|
1993-10-22 03:50:57 +08:00
|
|
|
|
s_seg (ignore)
|
|
|
|
|
int ignore;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (strncmp (input_line_pointer, "\"text\"", 6) == 0)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 6;
|
1993-10-22 03:50:57 +08:00
|
|
|
|
s_text (0);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (input_line_pointer, "\"data\"", 6) == 0)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 6;
|
1993-10-22 03:50:57 +08:00
|
|
|
|
s_data (0);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (input_line_pointer, "\"data1\"", 7) == 0)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 7;
|
|
|
|
|
s_data1 ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (input_line_pointer, "\"bss\"", 5) == 0)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 5;
|
|
|
|
|
/* We only support 2 segments -- text and data -- for now, so
|
1993-02-24 19:24:14 +08:00
|
|
|
|
things in the "bss segment" will have to go into data for now.
|
|
|
|
|
You can still allocate SEG_BSS stuff with .lcomm or .reserve. */
|
|
|
|
|
subseg_set (data_section, 255); /* FIXME-SOMEDAY */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
as_bad ("Unknown segment type");
|
|
|
|
|
demand_empty_rest_of_line ();
|
1993-12-17 05:31:22 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
s_data1 ()
|
|
|
|
|
{
|
1993-02-24 19:24:14 +08:00
|
|
|
|
subseg_set (data_section, 1);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
demand_empty_rest_of_line ();
|
1993-12-17 05:31:22 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
static void
|
1993-10-22 03:50:57 +08:00
|
|
|
|
s_proc (ignore)
|
|
|
|
|
int ignore;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1993-09-11 00:01:07 +08:00
|
|
|
|
while (!is_end_of_line[(unsigned char) *input_line_pointer])
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
}
|
|
|
|
|
++input_line_pointer;
|
1993-12-17 05:31:22 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1996-01-23 01:53:34 +08:00
|
|
|
|
/* sparc64 priviledged registers */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
struct priv_reg_entry
|
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
int regnum;
|
|
|
|
|
};
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
1992-08-02 07:20:55 +08:00
|
|
|
|
struct priv_reg_entry priv_reg_table[] =
|
|
|
|
|
{
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{"tpc", 0},
|
|
|
|
|
{"tnpc", 1},
|
|
|
|
|
{"tstate", 2},
|
|
|
|
|
{"tt", 3},
|
|
|
|
|
{"tick", 4},
|
|
|
|
|
{"tba", 5},
|
|
|
|
|
{"pstate", 6},
|
|
|
|
|
{"tl", 7},
|
|
|
|
|
{"pil", 8},
|
|
|
|
|
{"cwp", 9},
|
|
|
|
|
{"cansave", 10},
|
|
|
|
|
{"canrestore", 11},
|
|
|
|
|
{"cleanwin", 12},
|
|
|
|
|
{"otherwin", 13},
|
|
|
|
|
{"wstate", 14},
|
1993-07-08 00:58:29 +08:00
|
|
|
|
{"fq", 15},
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{"ver", 31},
|
|
|
|
|
{"", -1}, /* end marker */
|
1992-08-02 07:20:55 +08:00
|
|
|
|
};
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
static int
|
|
|
|
|
cmp_reg_entry (p, q)
|
1992-08-02 07:20:55 +08:00
|
|
|
|
struct priv_reg_entry *p, *q;
|
|
|
|
|
{
|
|
|
|
|
return strcmp (q->name, p->name);
|
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
/* This function is called once, at assembler startup time. It should
|
|
|
|
|
set up all the tables, etc. that the MD part of the assembler will need. */
|
1996-01-23 01:53:34 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
void
|
|
|
|
|
md_begin ()
|
|
|
|
|
{
|
1993-10-22 03:50:57 +08:00
|
|
|
|
register const char *retval = NULL;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
int lose = 0;
|
|
|
|
|
register unsigned int i = 0;
|
|
|
|
|
|
|
|
|
|
op_hash = hash_new ();
|
|
|
|
|
|
1996-01-25 19:20:06 +08:00
|
|
|
|
while (i < sparc_num_opcodes)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
const char *name = sparc_opcodes[i].name;
|
|
|
|
|
retval = hash_insert (op_hash, name, &sparc_opcodes[i]);
|
1993-10-22 03:50:57 +08:00
|
|
|
|
if (retval != NULL)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "internal error: can't hash `%s': %s\n",
|
|
|
|
|
sparc_opcodes[i].name, retval);
|
|
|
|
|
lose = 1;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
if (sparc_opcodes[i].match & sparc_opcodes[i].lose)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "internal error: losing opcode: `%s' \"%s\"\n",
|
|
|
|
|
sparc_opcodes[i].name, sparc_opcodes[i].args);
|
|
|
|
|
lose = 1;
|
|
|
|
|
}
|
|
|
|
|
++i;
|
|
|
|
|
}
|
1996-01-25 19:20:06 +08:00
|
|
|
|
while (i < sparc_num_opcodes
|
1992-11-24 04:42:33 +08:00
|
|
|
|
&& !strcmp (sparc_opcodes[i].name, name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lose)
|
|
|
|
|
as_fatal ("Broken assembler. No assembly attempted.");
|
|
|
|
|
|
|
|
|
|
for (i = '0'; i < '8'; ++i)
|
|
|
|
|
octal[i] = 1;
|
|
|
|
|
for (i = '0'; i <= '9'; ++i)
|
|
|
|
|
toHex[i] = i - '0';
|
|
|
|
|
for (i = 'a'; i <= 'f'; ++i)
|
|
|
|
|
toHex[i] = i + 10 - 'a';
|
|
|
|
|
for (i = 'A'; i <= 'F'; ++i)
|
|
|
|
|
toHex[i] = i + 10 - 'A';
|
|
|
|
|
|
|
|
|
|
qsort (priv_reg_table, sizeof (priv_reg_table) / sizeof (priv_reg_table[0]),
|
|
|
|
|
sizeof (priv_reg_table[0]), cmp_reg_entry);
|
1993-06-25 17:51:47 +08:00
|
|
|
|
|
|
|
|
|
target_big_endian = 1;
|
1996-01-25 19:20:06 +08:00
|
|
|
|
|
1996-02-19 18:43:01 +08:00
|
|
|
|
/* If -bump, record the architecture level at which we start issuing
|
|
|
|
|
warnings. The behaviour is different depending upon whether an
|
|
|
|
|
architecture was explicitly specified. If it wasn't, we issue warnings
|
|
|
|
|
for all upwards bumps. If it was, we don't start issuing warnings until
|
|
|
|
|
we need to bump beyond the requested architecture or when we bump between
|
|
|
|
|
conflicting architectures. */
|
|
|
|
|
|
|
|
|
|
if (warn_on_bump
|
|
|
|
|
&& architecture_requested)
|
|
|
|
|
{
|
|
|
|
|
/* `max_architecture' records the requested architecture.
|
|
|
|
|
Issue warnings if we go above it. */
|
|
|
|
|
warn_after_architecture = max_architecture;
|
|
|
|
|
|
|
|
|
|
/* Find the highest architecture level that doesn't conflict with
|
|
|
|
|
the requested one. */
|
|
|
|
|
for (max_architecture = SPARC_OPCODE_ARCH_MAX;
|
|
|
|
|
max_architecture > warn_after_architecture;
|
|
|
|
|
--max_architecture)
|
|
|
|
|
if (! SPARC_OPCODE_CONFLICT_P (max_architecture,
|
|
|
|
|
warn_after_architecture))
|
|
|
|
|
break;
|
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Called after all assembly has been done. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
sparc_md_end ()
|
|
|
|
|
{
|
1996-01-23 02:09:08 +08:00
|
|
|
|
#ifdef SPARC_ARCH64
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (current_architecture == SPARC_OPCODE_ARCH_V9A)
|
|
|
|
|
bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v9a);
|
|
|
|
|
else
|
|
|
|
|
bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v9);
|
1996-01-23 01:53:34 +08:00
|
|
|
|
#else
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (current_architecture == SPARC_OPCODE_ARCH_V9)
|
|
|
|
|
bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v8plus);
|
|
|
|
|
else if (current_architecture == SPARC_OPCODE_ARCH_V9A)
|
|
|
|
|
bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v8plusa);
|
|
|
|
|
else
|
|
|
|
|
bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc);
|
1996-01-23 01:53:34 +08:00
|
|
|
|
#endif
|
1993-10-26 01:45:17 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
void
|
|
|
|
|
md_assemble (str)
|
|
|
|
|
char *str;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-11-24 04:42:33 +08:00
|
|
|
|
char *toP;
|
|
|
|
|
int rsd;
|
|
|
|
|
|
|
|
|
|
know (str);
|
|
|
|
|
sparc_ip (str);
|
|
|
|
|
|
|
|
|
|
/* See if "set" operand is absolute and small; skip sethi if so. */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
if (special_case == SPECIAL_CASE_SET
|
* Extensive changes to permit symbols to contain any expression
type and to delay the computation of the expression until the
value is actually needed. This permits setting symbols to values
calculated based on object code size. Expressions were changed to
no longer be in a section, to stop the overloading of segment and
expression type that previously occurred.
* as.c (big_section, pass1_section, diff_section, absent_section):
Removed.
(expr_section): Added (used for dummy symbols which hold
intermediate expression values).
(perform_an_assembly_pass): Create expr_section, do not create the
sections now removed.
* as.h (segT): Removed SEG_ABSENT, SEG_PASS1, SEG_BIG, and
SEG_DIFFERENCE. Added SEG_EXPR.
(SEG_NORMAL): Corresponding changes.
* subsegs.c (seg_name, subsegs_begin): Changed accordingly.
* write.c (write_object_file): Ditto.
* config/obj-aout.c (seg_N_TYPE): Ditto.
* config/obj-bout.c (seg_N_TYPE): Ditto.
* config/obj-coff.c (seg_N_TYPE): Ditto.
* config/obj-coffbfd.c (seg_N_TYPE): Ditto.
* config/obj-vms.c (seg_N_TYPE): Ditto.
* expr.h (operatorT): Moved in from expr.c, added some values.
(expressionS): Added X_op field, removed X_seg field; renamed
X_subtract_symbol to X_op_symbol.
* expr.c: Extensive changes to assign expression types rather than
sections and to simplify the parsing.
* write.c (fix_new_internal): New static function.
(fix_new): Removed sub_symbol argument.
(fix_new_exp): New function, takes expression argument.
* write.h: Prototype changes for fix_new and fix_new_exp.
* cond.c (s_if): Changed accordingly.
* read.c (s_lsym, pseudo_set, emit_expr, parse_bitfield_cons,
parse_repeat_cons, get_segmented_expression,
get_known_segmented_expression, get_absolute_expression): Ditto.
* symbols.c (resolve_symbol_value, S_GET_VALUE, S_SET_VALUE):
Ditto.
* write.c (write_object_file): Ditto.
* config/obj-coff.c (obj_coff_def, obj_coff_val): Ditto.
* config/obj-coffbfd.c (obj_coff_def, obj_coff_val,
obj_coff_endef, yank_symbols): Ditto.
* config/obj-elf.c (obj_elf_stab_generic, obj_elf_size): Ditto.
* config/tc-a29k.c (md_assemble, parse_operand, machine_ip,
print_insn, md_operand): Ditto.
* config/tc-h8300.c (parse_exp, colonmod24, check_operand,
do_a_fix_imm, build_bytes): Ditto.
* config/tc-h8500.c (parse_exp, skip_colonthing, parse_reglist,
get_specific, check, insert, md_convert_frag): Ditto.
* config/tc-hppa.c (the_insn, fix_new_hppa, cons_fix_new_hppa,
md_assemble, pa_ip, getExpression, getAbsoluteExpression,
evaluateAbsolute, pa_build_unwind_subspace, pa_entry,
process_exit): Ditto.
* config/tc-hppa.h (STAB_FIXUP, is_DP_relative, is_PC_relative,
is_complex): Ditto.
* config/tc-i386.c (pe, md_assemble, i386_operand,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-i860.c (md_assemble, getExpression, print_insn):
Ditto.
* config/tc-i960.c (parse_expr, subs, segs, md_convert_frag,
get_cdisp, mem_fmt, parse_ldconst, relax_cobr, s_sysproc,
i960_handle_align): Ditto.
* config/tc-m68k.c (struct m68k_exp, struct m68k_it, seg, op,
subs, add_fix, isvar, m68k_ip, md_assemble, md_convert_frag_1,
md_estimate_size_before_relax, md_create_long_jump, get_num):
Ditto.
* config/tc-m88k.c (md_assemble, get_imm16, get_pcr,
md_create_short_jump, md_create_long_jump): Ditto.
* config/tc-mips.c (md_assemble, append_insn, gp_reference,
macro_build, macro, my_getExpression): Ditto. Also removed
get_optional_absolute_expression; just use get_absolute_expression
instead.
* config/tc-ns32k.c (get_addr_mode, evaluate_expr, convert_iif,
fix_new_ns32k, fix_new_ns32k_exp, cons_fix_new_ns32k): Ditto.
* config/tc-ns32k.h (fix_new_ns32k prototype): Ditto.
* config/tc-sh.c (parse_exp, check, insert, md_convert_frag):
Ditto.
* config/tc-sparc.c (md_assemble, sparc_ip, getExpression,
print_insn): Ditto.
* config/tc-tahoe.c (struct top, md_estimate_size_before_relax,
tip_op, md_assemble): Ditto.
* config/tc-vax.c (seg_of_operand, md_assemble,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-z8k.c (parse_exp, check_operand, newfix): Ditto.
1993-07-21 08:41:42 +08:00
|
|
|
|
&& the_insn.exp.X_op == O_constant)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
if (the_insn.exp.X_add_number >= -(1 << 12)
|
|
|
|
|
&& the_insn.exp.X_add_number < (1 << 12))
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = 0x80102000 /* or %g0,imm,... */
|
|
|
|
|
| (the_insn.opcode & 0x3E000000) /* dest reg */
|
|
|
|
|
| (the_insn.exp.X_add_number & 0x1FFF); /* imm */
|
|
|
|
|
special_case = 0; /* No longer special */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE; /* No longer relocated */
|
1992-08-02 07:20:55 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
toP = frag_more (4);
|
|
|
|
|
/* put out the opcode */
|
1993-07-08 00:58:29 +08:00
|
|
|
|
md_number_to_chars (toP, (valueT) the_insn.opcode, 4);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
/* put out the symbol-dependent stuff */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
if (the_insn.reloc != BFD_RELOC_NONE)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
* Extensive changes to permit symbols to contain any expression
type and to delay the computation of the expression until the
value is actually needed. This permits setting symbols to values
calculated based on object code size. Expressions were changed to
no longer be in a section, to stop the overloading of segment and
expression type that previously occurred.
* as.c (big_section, pass1_section, diff_section, absent_section):
Removed.
(expr_section): Added (used for dummy symbols which hold
intermediate expression values).
(perform_an_assembly_pass): Create expr_section, do not create the
sections now removed.
* as.h (segT): Removed SEG_ABSENT, SEG_PASS1, SEG_BIG, and
SEG_DIFFERENCE. Added SEG_EXPR.
(SEG_NORMAL): Corresponding changes.
* subsegs.c (seg_name, subsegs_begin): Changed accordingly.
* write.c (write_object_file): Ditto.
* config/obj-aout.c (seg_N_TYPE): Ditto.
* config/obj-bout.c (seg_N_TYPE): Ditto.
* config/obj-coff.c (seg_N_TYPE): Ditto.
* config/obj-coffbfd.c (seg_N_TYPE): Ditto.
* config/obj-vms.c (seg_N_TYPE): Ditto.
* expr.h (operatorT): Moved in from expr.c, added some values.
(expressionS): Added X_op field, removed X_seg field; renamed
X_subtract_symbol to X_op_symbol.
* expr.c: Extensive changes to assign expression types rather than
sections and to simplify the parsing.
* write.c (fix_new_internal): New static function.
(fix_new): Removed sub_symbol argument.
(fix_new_exp): New function, takes expression argument.
* write.h: Prototype changes for fix_new and fix_new_exp.
* cond.c (s_if): Changed accordingly.
* read.c (s_lsym, pseudo_set, emit_expr, parse_bitfield_cons,
parse_repeat_cons, get_segmented_expression,
get_known_segmented_expression, get_absolute_expression): Ditto.
* symbols.c (resolve_symbol_value, S_GET_VALUE, S_SET_VALUE):
Ditto.
* write.c (write_object_file): Ditto.
* config/obj-coff.c (obj_coff_def, obj_coff_val): Ditto.
* config/obj-coffbfd.c (obj_coff_def, obj_coff_val,
obj_coff_endef, yank_symbols): Ditto.
* config/obj-elf.c (obj_elf_stab_generic, obj_elf_size): Ditto.
* config/tc-a29k.c (md_assemble, parse_operand, machine_ip,
print_insn, md_operand): Ditto.
* config/tc-h8300.c (parse_exp, colonmod24, check_operand,
do_a_fix_imm, build_bytes): Ditto.
* config/tc-h8500.c (parse_exp, skip_colonthing, parse_reglist,
get_specific, check, insert, md_convert_frag): Ditto.
* config/tc-hppa.c (the_insn, fix_new_hppa, cons_fix_new_hppa,
md_assemble, pa_ip, getExpression, getAbsoluteExpression,
evaluateAbsolute, pa_build_unwind_subspace, pa_entry,
process_exit): Ditto.
* config/tc-hppa.h (STAB_FIXUP, is_DP_relative, is_PC_relative,
is_complex): Ditto.
* config/tc-i386.c (pe, md_assemble, i386_operand,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-i860.c (md_assemble, getExpression, print_insn):
Ditto.
* config/tc-i960.c (parse_expr, subs, segs, md_convert_frag,
get_cdisp, mem_fmt, parse_ldconst, relax_cobr, s_sysproc,
i960_handle_align): Ditto.
* config/tc-m68k.c (struct m68k_exp, struct m68k_it, seg, op,
subs, add_fix, isvar, m68k_ip, md_assemble, md_convert_frag_1,
md_estimate_size_before_relax, md_create_long_jump, get_num):
Ditto.
* config/tc-m88k.c (md_assemble, get_imm16, get_pcr,
md_create_short_jump, md_create_long_jump): Ditto.
* config/tc-mips.c (md_assemble, append_insn, gp_reference,
macro_build, macro, my_getExpression): Ditto. Also removed
get_optional_absolute_expression; just use get_absolute_expression
instead.
* config/tc-ns32k.c (get_addr_mode, evaluate_expr, convert_iif,
fix_new_ns32k, fix_new_ns32k_exp, cons_fix_new_ns32k): Ditto.
* config/tc-ns32k.h (fix_new_ns32k prototype): Ditto.
* config/tc-sh.c (parse_exp, check, insert, md_convert_frag):
Ditto.
* config/tc-sparc.c (md_assemble, sparc_ip, getExpression,
print_insn): Ditto.
* config/tc-tahoe.c (struct top, md_estimate_size_before_relax,
tip_op, md_assemble): Ditto.
* config/tc-vax.c (seg_of_operand, md_assemble,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-z8k.c (parse_exp, check_operand, newfix): Ditto.
1993-07-21 08:41:42 +08:00
|
|
|
|
fix_new_exp (frag_now, /* which frag */
|
|
|
|
|
(toP - frag_now->fr_literal), /* where */
|
|
|
|
|
4, /* size */
|
|
|
|
|
&the_insn.exp,
|
|
|
|
|
the_insn.pcrel,
|
|
|
|
|
the_insn.reloc);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
switch (special_case)
|
|
|
|
|
{
|
|
|
|
|
case SPECIAL_CASE_SET:
|
|
|
|
|
special_case = 0;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
assert (the_insn.reloc == BFD_RELOC_HI22);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
/* See if "set" operand has no low-order bits; skip OR if so. */
|
* Extensive changes to permit symbols to contain any expression
type and to delay the computation of the expression until the
value is actually needed. This permits setting symbols to values
calculated based on object code size. Expressions were changed to
no longer be in a section, to stop the overloading of segment and
expression type that previously occurred.
* as.c (big_section, pass1_section, diff_section, absent_section):
Removed.
(expr_section): Added (used for dummy symbols which hold
intermediate expression values).
(perform_an_assembly_pass): Create expr_section, do not create the
sections now removed.
* as.h (segT): Removed SEG_ABSENT, SEG_PASS1, SEG_BIG, and
SEG_DIFFERENCE. Added SEG_EXPR.
(SEG_NORMAL): Corresponding changes.
* subsegs.c (seg_name, subsegs_begin): Changed accordingly.
* write.c (write_object_file): Ditto.
* config/obj-aout.c (seg_N_TYPE): Ditto.
* config/obj-bout.c (seg_N_TYPE): Ditto.
* config/obj-coff.c (seg_N_TYPE): Ditto.
* config/obj-coffbfd.c (seg_N_TYPE): Ditto.
* config/obj-vms.c (seg_N_TYPE): Ditto.
* expr.h (operatorT): Moved in from expr.c, added some values.
(expressionS): Added X_op field, removed X_seg field; renamed
X_subtract_symbol to X_op_symbol.
* expr.c: Extensive changes to assign expression types rather than
sections and to simplify the parsing.
* write.c (fix_new_internal): New static function.
(fix_new): Removed sub_symbol argument.
(fix_new_exp): New function, takes expression argument.
* write.h: Prototype changes for fix_new and fix_new_exp.
* cond.c (s_if): Changed accordingly.
* read.c (s_lsym, pseudo_set, emit_expr, parse_bitfield_cons,
parse_repeat_cons, get_segmented_expression,
get_known_segmented_expression, get_absolute_expression): Ditto.
* symbols.c (resolve_symbol_value, S_GET_VALUE, S_SET_VALUE):
Ditto.
* write.c (write_object_file): Ditto.
* config/obj-coff.c (obj_coff_def, obj_coff_val): Ditto.
* config/obj-coffbfd.c (obj_coff_def, obj_coff_val,
obj_coff_endef, yank_symbols): Ditto.
* config/obj-elf.c (obj_elf_stab_generic, obj_elf_size): Ditto.
* config/tc-a29k.c (md_assemble, parse_operand, machine_ip,
print_insn, md_operand): Ditto.
* config/tc-h8300.c (parse_exp, colonmod24, check_operand,
do_a_fix_imm, build_bytes): Ditto.
* config/tc-h8500.c (parse_exp, skip_colonthing, parse_reglist,
get_specific, check, insert, md_convert_frag): Ditto.
* config/tc-hppa.c (the_insn, fix_new_hppa, cons_fix_new_hppa,
md_assemble, pa_ip, getExpression, getAbsoluteExpression,
evaluateAbsolute, pa_build_unwind_subspace, pa_entry,
process_exit): Ditto.
* config/tc-hppa.h (STAB_FIXUP, is_DP_relative, is_PC_relative,
is_complex): Ditto.
* config/tc-i386.c (pe, md_assemble, i386_operand,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-i860.c (md_assemble, getExpression, print_insn):
Ditto.
* config/tc-i960.c (parse_expr, subs, segs, md_convert_frag,
get_cdisp, mem_fmt, parse_ldconst, relax_cobr, s_sysproc,
i960_handle_align): Ditto.
* config/tc-m68k.c (struct m68k_exp, struct m68k_it, seg, op,
subs, add_fix, isvar, m68k_ip, md_assemble, md_convert_frag_1,
md_estimate_size_before_relax, md_create_long_jump, get_num):
Ditto.
* config/tc-m88k.c (md_assemble, get_imm16, get_pcr,
md_create_short_jump, md_create_long_jump): Ditto.
* config/tc-mips.c (md_assemble, append_insn, gp_reference,
macro_build, macro, my_getExpression): Ditto. Also removed
get_optional_absolute_expression; just use get_absolute_expression
instead.
* config/tc-ns32k.c (get_addr_mode, evaluate_expr, convert_iif,
fix_new_ns32k, fix_new_ns32k_exp, cons_fix_new_ns32k): Ditto.
* config/tc-ns32k.h (fix_new_ns32k prototype): Ditto.
* config/tc-sh.c (parse_exp, check, insert, md_convert_frag):
Ditto.
* config/tc-sparc.c (md_assemble, sparc_ip, getExpression,
print_insn): Ditto.
* config/tc-tahoe.c (struct top, md_estimate_size_before_relax,
tip_op, md_assemble): Ditto.
* config/tc-vax.c (seg_of_operand, md_assemble,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-z8k.c (parse_exp, check_operand, newfix): Ditto.
1993-07-21 08:41:42 +08:00
|
|
|
|
if (the_insn.exp.X_op == O_constant
|
1992-11-24 04:42:33 +08:00
|
|
|
|
&& ((the_insn.exp.X_add_number & 0x3FF) == 0))
|
|
|
|
|
return;
|
|
|
|
|
toP = frag_more (4);
|
|
|
|
|
rsd = (the_insn.opcode >> 25) & 0x1f;
|
|
|
|
|
the_insn.opcode = 0x80102000 | (rsd << 25) | (rsd << 14);
|
1993-07-08 00:58:29 +08:00
|
|
|
|
md_number_to_chars (toP, (valueT) the_insn.opcode, 4);
|
* Extensive changes to permit symbols to contain any expression
type and to delay the computation of the expression until the
value is actually needed. This permits setting symbols to values
calculated based on object code size. Expressions were changed to
no longer be in a section, to stop the overloading of segment and
expression type that previously occurred.
* as.c (big_section, pass1_section, diff_section, absent_section):
Removed.
(expr_section): Added (used for dummy symbols which hold
intermediate expression values).
(perform_an_assembly_pass): Create expr_section, do not create the
sections now removed.
* as.h (segT): Removed SEG_ABSENT, SEG_PASS1, SEG_BIG, and
SEG_DIFFERENCE. Added SEG_EXPR.
(SEG_NORMAL): Corresponding changes.
* subsegs.c (seg_name, subsegs_begin): Changed accordingly.
* write.c (write_object_file): Ditto.
* config/obj-aout.c (seg_N_TYPE): Ditto.
* config/obj-bout.c (seg_N_TYPE): Ditto.
* config/obj-coff.c (seg_N_TYPE): Ditto.
* config/obj-coffbfd.c (seg_N_TYPE): Ditto.
* config/obj-vms.c (seg_N_TYPE): Ditto.
* expr.h (operatorT): Moved in from expr.c, added some values.
(expressionS): Added X_op field, removed X_seg field; renamed
X_subtract_symbol to X_op_symbol.
* expr.c: Extensive changes to assign expression types rather than
sections and to simplify the parsing.
* write.c (fix_new_internal): New static function.
(fix_new): Removed sub_symbol argument.
(fix_new_exp): New function, takes expression argument.
* write.h: Prototype changes for fix_new and fix_new_exp.
* cond.c (s_if): Changed accordingly.
* read.c (s_lsym, pseudo_set, emit_expr, parse_bitfield_cons,
parse_repeat_cons, get_segmented_expression,
get_known_segmented_expression, get_absolute_expression): Ditto.
* symbols.c (resolve_symbol_value, S_GET_VALUE, S_SET_VALUE):
Ditto.
* write.c (write_object_file): Ditto.
* config/obj-coff.c (obj_coff_def, obj_coff_val): Ditto.
* config/obj-coffbfd.c (obj_coff_def, obj_coff_val,
obj_coff_endef, yank_symbols): Ditto.
* config/obj-elf.c (obj_elf_stab_generic, obj_elf_size): Ditto.
* config/tc-a29k.c (md_assemble, parse_operand, machine_ip,
print_insn, md_operand): Ditto.
* config/tc-h8300.c (parse_exp, colonmod24, check_operand,
do_a_fix_imm, build_bytes): Ditto.
* config/tc-h8500.c (parse_exp, skip_colonthing, parse_reglist,
get_specific, check, insert, md_convert_frag): Ditto.
* config/tc-hppa.c (the_insn, fix_new_hppa, cons_fix_new_hppa,
md_assemble, pa_ip, getExpression, getAbsoluteExpression,
evaluateAbsolute, pa_build_unwind_subspace, pa_entry,
process_exit): Ditto.
* config/tc-hppa.h (STAB_FIXUP, is_DP_relative, is_PC_relative,
is_complex): Ditto.
* config/tc-i386.c (pe, md_assemble, i386_operand,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-i860.c (md_assemble, getExpression, print_insn):
Ditto.
* config/tc-i960.c (parse_expr, subs, segs, md_convert_frag,
get_cdisp, mem_fmt, parse_ldconst, relax_cobr, s_sysproc,
i960_handle_align): Ditto.
* config/tc-m68k.c (struct m68k_exp, struct m68k_it, seg, op,
subs, add_fix, isvar, m68k_ip, md_assemble, md_convert_frag_1,
md_estimate_size_before_relax, md_create_long_jump, get_num):
Ditto.
* config/tc-m88k.c (md_assemble, get_imm16, get_pcr,
md_create_short_jump, md_create_long_jump): Ditto.
* config/tc-mips.c (md_assemble, append_insn, gp_reference,
macro_build, macro, my_getExpression): Ditto. Also removed
get_optional_absolute_expression; just use get_absolute_expression
instead.
* config/tc-ns32k.c (get_addr_mode, evaluate_expr, convert_iif,
fix_new_ns32k, fix_new_ns32k_exp, cons_fix_new_ns32k): Ditto.
* config/tc-ns32k.h (fix_new_ns32k prototype): Ditto.
* config/tc-sh.c (parse_exp, check, insert, md_convert_frag):
Ditto.
* config/tc-sparc.c (md_assemble, sparc_ip, getExpression,
print_insn): Ditto.
* config/tc-tahoe.c (struct top, md_estimate_size_before_relax,
tip_op, md_assemble): Ditto.
* config/tc-vax.c (seg_of_operand, md_assemble,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-z8k.c (parse_exp, check_operand, newfix): Ditto.
1993-07-21 08:41:42 +08:00
|
|
|
|
fix_new_exp (frag_now, /* which frag */
|
|
|
|
|
(toP - frag_now->fr_literal), /* where */
|
|
|
|
|
4, /* size */
|
|
|
|
|
&the_insn.exp,
|
|
|
|
|
the_insn.pcrel,
|
|
|
|
|
BFD_RELOC_LO10);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case SPECIAL_CASE_FDIV:
|
|
|
|
|
/* According to information leaked from Sun, the "fdiv" instructions
|
1992-12-15 11:46:14 +08:00
|
|
|
|
on early SPARC machines would produce incorrect results sometimes.
|
|
|
|
|
The workaround is to add an fmovs of the destination register to
|
|
|
|
|
itself just after the instruction. This was true on machines
|
|
|
|
|
with Weitek 1165 float chips, such as the Sun-4/260 and /280. */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
special_case = 0;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
assert (the_insn.reloc == BFD_RELOC_NONE);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
toP = frag_more (4);
|
|
|
|
|
rsd = (the_insn.opcode >> 25) & 0x1f;
|
|
|
|
|
the_insn.opcode = 0x81A00020 | (rsd << 25) | rsd; /* fmovs dest,dest */
|
1993-07-08 00:58:29 +08:00
|
|
|
|
md_number_to_chars (toP, (valueT) the_insn.opcode, 4);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
as_fatal ("failed sanity check.");
|
|
|
|
|
}
|
1993-10-26 01:45:17 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1994-07-29 07:36:16 +08:00
|
|
|
|
/* Implement big shift right. */
|
|
|
|
|
static bfd_vma
|
|
|
|
|
BSR (val, amount)
|
|
|
|
|
bfd_vma val;
|
|
|
|
|
int amount;
|
|
|
|
|
{
|
|
|
|
|
if (sizeof (bfd_vma) <= 4 && amount >= 32)
|
|
|
|
|
as_fatal ("Support for 64-bit arithmetic not compiled in.");
|
|
|
|
|
return val >> amount;
|
|
|
|
|
}
|
|
|
|
|
|
1996-01-23 01:53:34 +08:00
|
|
|
|
/* Parse an argument that can be expressed as a keyword.
|
1996-02-21 13:50:03 +08:00
|
|
|
|
(eg: #StoreStore or %ccfr).
|
1996-01-23 01:53:34 +08:00
|
|
|
|
The result is a boolean indicating success.
|
|
|
|
|
If successful, INPUT_POINTER is updated. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
parse_keyword_arg (lookup_fn, input_pointerP, valueP)
|
|
|
|
|
int (*lookup_fn) ();
|
|
|
|
|
char **input_pointerP;
|
|
|
|
|
int *valueP;
|
|
|
|
|
{
|
|
|
|
|
int value;
|
|
|
|
|
char c, *p, *q;
|
|
|
|
|
|
|
|
|
|
p = *input_pointerP;
|
1996-02-21 13:50:03 +08:00
|
|
|
|
for (q = p + (*p == '#' || *p == '%'); isalpha (*q) || *q == '_'; ++q)
|
1996-01-23 01:53:34 +08:00
|
|
|
|
continue;
|
|
|
|
|
c = *q;
|
|
|
|
|
*q = 0;
|
|
|
|
|
value = (*lookup_fn) (p);
|
|
|
|
|
*q = c;
|
|
|
|
|
if (value == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
*valueP = value;
|
|
|
|
|
*input_pointerP = q;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parse an argument that is a constant expression.
|
|
|
|
|
The result is a boolean indicating success. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
parse_const_expr_arg (input_pointerP, valueP)
|
|
|
|
|
char **input_pointerP;
|
|
|
|
|
int *valueP;
|
|
|
|
|
{
|
|
|
|
|
char *save = input_line_pointer;
|
|
|
|
|
expressionS exp;
|
|
|
|
|
|
|
|
|
|
input_line_pointer = *input_pointerP;
|
|
|
|
|
/* The next expression may be something other than a constant
|
|
|
|
|
(say if we're not processing the right variant of the insn).
|
|
|
|
|
Don't call expression unless we're sure it will succeed as it will
|
|
|
|
|
signal an error (which we want to defer until later). */
|
|
|
|
|
/* FIXME: It might be better to define md_operand and have it recognize
|
|
|
|
|
things like %asi, etc. but continuing that route through to the end
|
|
|
|
|
is a lot of work. */
|
|
|
|
|
if (*input_line_pointer == '%')
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer = save;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
expression (&exp);
|
|
|
|
|
*input_pointerP = input_line_pointer;
|
|
|
|
|
input_line_pointer = save;
|
|
|
|
|
if (exp.X_op != O_constant)
|
|
|
|
|
return 0;
|
|
|
|
|
*valueP = exp.X_add_number;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
static void
|
|
|
|
|
sparc_ip (str)
|
|
|
|
|
char *str;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-11-24 04:42:33 +08:00
|
|
|
|
char *error_message = "";
|
|
|
|
|
char *s;
|
|
|
|
|
const char *args;
|
|
|
|
|
char c;
|
1995-07-06 05:52:10 +08:00
|
|
|
|
const struct sparc_opcode *insn;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
char *argsStart;
|
|
|
|
|
unsigned long opcode;
|
|
|
|
|
unsigned int mask = 0;
|
|
|
|
|
int match = 0;
|
|
|
|
|
int comma = 0;
|
|
|
|
|
long immediate_max = 0;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
int v9_arg_p;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
for (s = str; islower (*s) || (*s >= '0' && *s <= '3'); ++s)
|
|
|
|
|
;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
switch (*s)
|
|
|
|
|
{
|
|
|
|
|
case '\0':
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ',':
|
|
|
|
|
comma = 1;
|
|
|
|
|
|
|
|
|
|
/*FALLTHROUGH */
|
|
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
|
*s++ = '\0';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
1995-07-06 05:52:10 +08:00
|
|
|
|
as_fatal ("Unknown opcode: `%s'", str);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
1995-07-06 05:52:10 +08:00
|
|
|
|
insn = (struct sparc_opcode *) hash_find (op_hash, str);
|
|
|
|
|
if (insn == NULL)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
as_bad ("Unknown opcode: `%s'", str);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (comma)
|
|
|
|
|
{
|
|
|
|
|
*--s = ',';
|
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
argsStart = s;
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
opcode = insn->match;
|
|
|
|
|
memset (&the_insn, '\0', sizeof (the_insn));
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
v9_arg_p = 0;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
/*
|
1992-12-15 11:46:14 +08:00
|
|
|
|
* Build the opcode, checking as we go to make
|
|
|
|
|
* sure that the operands match
|
|
|
|
|
*/
|
1992-11-24 04:42:33 +08:00
|
|
|
|
for (args = insn->args;; ++args)
|
|
|
|
|
{
|
|
|
|
|
switch (*args)
|
|
|
|
|
{
|
|
|
|
|
case 'K':
|
|
|
|
|
{
|
1993-10-22 03:50:57 +08:00
|
|
|
|
int kmask = 0;
|
1993-06-25 17:51:47 +08:00
|
|
|
|
|
|
|
|
|
/* Parse a series of masks. */
|
|
|
|
|
if (*s == '#')
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1993-06-25 17:51:47 +08:00
|
|
|
|
while (*s == '#')
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
int mask;
|
|
|
|
|
|
|
|
|
|
if (! parse_keyword_arg (sparc_encode_membar, &s,
|
|
|
|
|
&mask))
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = ": invalid membar mask name";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
kmask |= mask;
|
|
|
|
|
while (*s == ' ') { ++s; continue; }
|
|
|
|
|
if (*s == '|' || *s == '+')
|
1993-06-25 17:51:47 +08:00
|
|
|
|
++s;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
while (*s == ' ') { ++s; continue; }
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
1993-06-25 17:51:47 +08:00
|
|
|
|
}
|
1993-12-17 05:31:22 +08:00
|
|
|
|
else
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
if (! parse_const_expr_arg (&s, &kmask))
|
|
|
|
|
{
|
|
|
|
|
error_message = ": invalid membar mask expression";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (kmask < 0 || kmask > 127)
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = ": invalid membar mask number";
|
|
|
|
|
goto error;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1993-12-17 05:31:22 +08:00
|
|
|
|
|
1996-01-23 01:53:34 +08:00
|
|
|
|
opcode |= MEMBAR (kmask);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case '*':
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
int fcn = 0;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1993-06-25 17:51:47 +08:00
|
|
|
|
/* Parse a prefetch function. */
|
|
|
|
|
if (*s == '#')
|
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
if (! parse_keyword_arg (sparc_encode_prefetch, &s, &fcn))
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = ": invalid prefetch function name";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
else
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
if (! parse_const_expr_arg (&s, &fcn))
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
error_message = ": invalid prefetch function expression";
|
|
|
|
|
goto error;
|
1993-06-25 17:51:47 +08:00
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
if (fcn < 0 || fcn > 31)
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = ": invalid prefetch function number";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
opcode |= RD (fcn);
|
1993-06-25 17:51:47 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
case '!':
|
|
|
|
|
case '?':
|
1996-01-23 01:53:34 +08:00
|
|
|
|
/* Parse a sparc64 privileged register. */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (*s == '%')
|
|
|
|
|
{
|
|
|
|
|
struct priv_reg_entry *p = priv_reg_table;
|
1993-10-22 03:50:57 +08:00
|
|
|
|
unsigned int len = 9999999; /* init to make gcc happy */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
s += 1;
|
|
|
|
|
while (p->name[0] > s[0])
|
|
|
|
|
p++;
|
|
|
|
|
while (p->name[0] == s[0])
|
|
|
|
|
{
|
|
|
|
|
len = strlen (p->name);
|
|
|
|
|
if (strncmp (p->name, s, len) == 0)
|
|
|
|
|
break;
|
|
|
|
|
p++;
|
|
|
|
|
}
|
|
|
|
|
if (p->name[0] != s[0])
|
|
|
|
|
{
|
1993-06-25 17:51:47 +08:00
|
|
|
|
error_message = ": unrecognizable privileged register";
|
1992-11-24 04:42:33 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (*args == '?')
|
|
|
|
|
opcode |= (p->regnum << 14);
|
|
|
|
|
else
|
|
|
|
|
opcode |= (p->regnum << 25);
|
|
|
|
|
s += len;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1993-06-25 17:51:47 +08:00
|
|
|
|
error_message = ": unrecognizable privileged register";
|
1992-11-24 04:42:33 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
1992-08-02 07:20:55 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
case 'M':
|
|
|
|
|
case 'm':
|
|
|
|
|
if (strncmp (s, "%asr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
1992-08-02 07:20:55 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (isdigit (*s))
|
|
|
|
|
{
|
|
|
|
|
long num = 0;
|
|
|
|
|
|
|
|
|
|
while (isdigit (*s))
|
|
|
|
|
{
|
|
|
|
|
num = num * 10 + *s - '0';
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
|
1996-02-21 13:50:03 +08:00
|
|
|
|
if (current_architecture >= SPARC_OPCODE_ARCH_V9)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1996-02-21 13:50:03 +08:00
|
|
|
|
if (num < 16 || 31 < num)
|
|
|
|
|
{
|
|
|
|
|
error_message = ": asr number must be between 16 and 31";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1996-02-22 01:25:13 +08:00
|
|
|
|
if (num < 0 || 31 < num)
|
1996-02-21 13:50:03 +08:00
|
|
|
|
{
|
1996-02-22 01:25:13 +08:00
|
|
|
|
error_message = ": asr number must be between 0 and 31";
|
1996-02-21 13:50:03 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
opcode |= (*args == 'M' ? RS1 (num) : RD (num));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
error_message = ": expecting %asrN";
|
|
|
|
|
goto error;
|
1996-02-21 13:50:03 +08:00
|
|
|
|
}
|
|
|
|
|
} /* if %asr */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'I':
|
1993-07-08 00:58:29 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_11;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
immediate_max = 0x03FF;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'j':
|
1993-07-08 00:58:29 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_10;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
immediate_max = 0x01FF;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'k':
|
1993-07-08 00:58:29 +08:00
|
|
|
|
the_insn.reloc = /* RELOC_WDISP2_14 */ BFD_RELOC_SPARC_WDISP16;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'G':
|
1993-07-08 00:58:29 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_WDISP19;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'N':
|
|
|
|
|
if (*s == 'p' && s[1] == 'n')
|
|
|
|
|
{
|
|
|
|
|
s += 2;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'T':
|
|
|
|
|
if (*s == 'p' && s[1] == 't')
|
|
|
|
|
{
|
|
|
|
|
s += 2;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'z':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
1992-11-24 07:40:18 +08:00
|
|
|
|
if (strncmp (s, "%icc", 4) == 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1992-11-24 07:40:18 +08:00
|
|
|
|
s += 4;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Z':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
1992-11-24 07:40:18 +08:00
|
|
|
|
if (strncmp (s, "%xcc", 4) == 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1992-11-24 07:40:18 +08:00
|
|
|
|
s += 4;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '6':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
1992-11-24 07:40:18 +08:00
|
|
|
|
if (strncmp (s, "%fcc0", 5) == 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1992-11-24 07:40:18 +08:00
|
|
|
|
s += 5;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '7':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
1992-11-24 07:40:18 +08:00
|
|
|
|
if (strncmp (s, "%fcc1", 5) == 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1992-11-24 07:40:18 +08:00
|
|
|
|
s += 5;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '8':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
1992-11-24 07:40:18 +08:00
|
|
|
|
if (strncmp (s, "%fcc2", 5) == 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1992-11-24 07:40:18 +08:00
|
|
|
|
s += 5;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '9':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
1992-11-24 07:40:18 +08:00
|
|
|
|
if (strncmp (s, "%fcc3", 5) == 0)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1992-11-24 07:40:18 +08:00
|
|
|
|
s += 5;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'P':
|
|
|
|
|
if (strncmp (s, "%pc", 3) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 3;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'W':
|
|
|
|
|
if (strncmp (s, "%tick", 5) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 5;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '\0': /* end of args */
|
|
|
|
|
if (*s == '\0')
|
|
|
|
|
{
|
|
|
|
|
match = 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '+':
|
|
|
|
|
if (*s == '+')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (*s == '-')
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '[': /* these must match exactly */
|
|
|
|
|
case ']':
|
|
|
|
|
case ',':
|
|
|
|
|
case ' ':
|
|
|
|
|
if (*s++ == *args)
|
|
|
|
|
continue;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '#': /* must be at least one digit */
|
|
|
|
|
if (isdigit (*s++))
|
|
|
|
|
{
|
|
|
|
|
while (isdigit (*s))
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'C': /* coprocessor state register */
|
|
|
|
|
if (strncmp (s, "%csr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'b': /* next operand is a coprocessor register */
|
|
|
|
|
case 'c':
|
|
|
|
|
case 'D':
|
|
|
|
|
if (*s++ == '%' && *s++ == 'c' && isdigit (*s))
|
|
|
|
|
{
|
|
|
|
|
mask = *s++;
|
|
|
|
|
if (isdigit (*s))
|
|
|
|
|
{
|
|
|
|
|
mask = 10 * (mask - '0') + (*s++ - '0');
|
|
|
|
|
if (mask >= 32)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mask -= '0';
|
|
|
|
|
}
|
|
|
|
|
switch (*args)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
|
opcode |= mask << 14;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
|
opcode |= mask;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'D':
|
|
|
|
|
opcode |= mask << 25;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'r': /* next operand must be a register */
|
|
|
|
|
case '1':
|
|
|
|
|
case '2':
|
|
|
|
|
case 'd':
|
|
|
|
|
if (*s++ == '%')
|
|
|
|
|
{
|
|
|
|
|
switch (c = *s++)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
case 'f': /* frame pointer */
|
|
|
|
|
if (*s++ == 'p')
|
|
|
|
|
{
|
|
|
|
|
mask = 0x1e;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'g': /* global register */
|
|
|
|
|
if (isoctal (c = *s++))
|
|
|
|
|
{
|
|
|
|
|
mask = c - '0';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'i': /* in register */
|
|
|
|
|
if (isoctal (c = *s++))
|
|
|
|
|
{
|
|
|
|
|
mask = c - '0' + 24;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'l': /* local register */
|
|
|
|
|
if (isoctal (c = *s++))
|
|
|
|
|
{
|
|
|
|
|
mask = (c - '0' + 16);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'o': /* out register */
|
|
|
|
|
if (isoctal (c = *s++))
|
|
|
|
|
{
|
|
|
|
|
mask = (c - '0' + 8);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 's': /* stack pointer */
|
|
|
|
|
if (*s++ == 'p')
|
|
|
|
|
{
|
|
|
|
|
mask = 0xe;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'r': /* any register */
|
|
|
|
|
if (!isdigit (c = *s++))
|
|
|
|
|
{
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
case '0':
|
|
|
|
|
case '1':
|
|
|
|
|
case '2':
|
|
|
|
|
case '3':
|
|
|
|
|
case '4':
|
|
|
|
|
case '5':
|
|
|
|
|
case '6':
|
|
|
|
|
case '7':
|
|
|
|
|
case '8':
|
|
|
|
|
case '9':
|
|
|
|
|
if (isdigit (*s))
|
|
|
|
|
{
|
|
|
|
|
if ((c = 10 * (c - '0') + (*s++ - '0')) >= 32)
|
1992-08-02 07:20:55 +08:00
|
|
|
|
{
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
c -= '0';
|
|
|
|
|
}
|
|
|
|
|
mask = c;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
|
|
|
|
|
/* Got the register, now figure out where
|
|
|
|
|
it goes in the opcode. */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
switch (*args)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
case '1':
|
|
|
|
|
opcode |= mask << 14;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case '2':
|
|
|
|
|
opcode |= mask;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
|
opcode |= mask << 25;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
|
opcode |= (mask << 25) | (mask << 14);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'e': /* next operand is a floating point register */
|
|
|
|
|
case 'v':
|
|
|
|
|
case 'V':
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
case 'B':
|
|
|
|
|
case 'R':
|
|
|
|
|
|
|
|
|
|
case 'g':
|
|
|
|
|
case 'H':
|
|
|
|
|
case 'J':
|
|
|
|
|
{
|
|
|
|
|
char format;
|
|
|
|
|
|
|
|
|
|
if (*s++ == '%'
|
|
|
|
|
&& ((format = *s) == 'f')
|
|
|
|
|
&& isdigit (*++s))
|
|
|
|
|
{
|
|
|
|
|
for (mask = 0; isdigit (*s); ++s)
|
|
|
|
|
{
|
|
|
|
|
mask = 10 * mask + (*s - '0');
|
|
|
|
|
} /* read the number */
|
|
|
|
|
|
|
|
|
|
if ((*args == 'v'
|
|
|
|
|
|| *args == 'B'
|
|
|
|
|
|| *args == 'H')
|
|
|
|
|
&& (mask & 1))
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
} /* register must be even numbered */
|
|
|
|
|
|
|
|
|
|
if ((*args == 'V'
|
|
|
|
|
|| *args == 'R'
|
|
|
|
|
|| *args == 'J')
|
|
|
|
|
&& (mask & 3))
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
} /* register must be multiple of 4 */
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
if (mask >= 64)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (max_architecture >= SPARC_OPCODE_ARCH_V9)
|
1996-01-23 01:53:34 +08:00
|
|
|
|
error_message = ": There are only 64 f registers; [0-63]";
|
|
|
|
|
else
|
|
|
|
|
error_message = ": There are only 32 f registers; [0-31]";
|
1993-07-08 00:58:29 +08:00
|
|
|
|
goto error;
|
|
|
|
|
} /* on error */
|
1996-01-23 01:53:34 +08:00
|
|
|
|
else if (mask >= 32)
|
1993-07-08 00:58:29 +08:00
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (max_architecture >= SPARC_OPCODE_ARCH_V9)
|
1996-01-23 01:53:34 +08:00
|
|
|
|
{
|
|
|
|
|
v9_arg_p = 1;
|
|
|
|
|
mask -= 31; /* wrap high bit */
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
error_message = ": There are only 32 f registers; [0-31]";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
1993-07-08 00:58:29 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
} /* if not an 'f' register. */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
switch (*args)
|
|
|
|
|
{
|
|
|
|
|
case 'v':
|
|
|
|
|
case 'V':
|
|
|
|
|
case 'e':
|
|
|
|
|
opcode |= RS1 (mask);
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
case 'B':
|
|
|
|
|
case 'R':
|
|
|
|
|
opcode |= RS2 (mask);
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'g':
|
|
|
|
|
case 'H':
|
|
|
|
|
case 'J':
|
|
|
|
|
opcode |= RD (mask);
|
|
|
|
|
continue;
|
|
|
|
|
} /* pack it in. */
|
|
|
|
|
|
|
|
|
|
know (0);
|
|
|
|
|
break;
|
|
|
|
|
} /* float arg */
|
|
|
|
|
|
|
|
|
|
case 'F':
|
|
|
|
|
if (strncmp (s, "%fsr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'h': /* high 22 bits */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_HI22;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'l': /* 22 bit PC relative immediate */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_WDISP22;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'L': /* 30 bit immediate */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_32_PCREL_S2;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'n': /* 22 bit immediate */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC22;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'i': /* 13 bit immediate */
|
1994-04-01 05:54:06 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC13;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
immediate_max = 0x0FFF;
|
|
|
|
|
|
|
|
|
|
/*FALLTHROUGH */
|
|
|
|
|
|
|
|
|
|
immediate:
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
s++;
|
|
|
|
|
if (*s == '%')
|
|
|
|
|
{
|
|
|
|
|
if ((c = s[1]) == 'h' && s[2] == 'i')
|
|
|
|
|
{
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_HI22;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
s += 3;
|
|
|
|
|
}
|
|
|
|
|
else if (c == 'l' && s[2] == 'o')
|
|
|
|
|
{
|
1993-02-24 19:24:14 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_LO10;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
s += 3;
|
|
|
|
|
}
|
|
|
|
|
else if (c == 'u'
|
|
|
|
|
&& s[2] == 'h'
|
|
|
|
|
&& s[3] == 'i')
|
|
|
|
|
{
|
1993-07-08 00:58:29 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_HH22;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
s += 4;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
v9_arg_p = 1;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
else if (c == 'u'
|
|
|
|
|
&& s[2] == 'l'
|
|
|
|
|
&& s[3] == 'o')
|
|
|
|
|
{
|
1993-07-08 00:58:29 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_HM10;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
s += 4;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
v9_arg_p = 1;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
1993-10-26 01:45:17 +08:00
|
|
|
|
/* Note that if the getExpression() fails, we will still
|
|
|
|
|
have created U entries in the symbol table for the
|
|
|
|
|
'symbols' in the input string. Try not to create U
|
|
|
|
|
symbols for registers, etc. */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1993-10-26 01:45:17 +08:00
|
|
|
|
/* This stuff checks to see if the expression ends in
|
|
|
|
|
+%reg. If it does, it removes the register from
|
|
|
|
|
the expression, and re-sets 's' to point to the
|
|
|
|
|
right place. */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
char *s1;
|
|
|
|
|
|
|
|
|
|
for (s1 = s; *s1 && *s1 != ',' && *s1 != ']'; s1++);;
|
|
|
|
|
|
|
|
|
|
if (s1 != s && isdigit (s1[-1]))
|
|
|
|
|
{
|
|
|
|
|
if (s1[-2] == '%' && s1[-3] == '+')
|
|
|
|
|
{
|
|
|
|
|
s1 -= 3;
|
|
|
|
|
*s1 = '\0';
|
|
|
|
|
(void) getExpression (s);
|
|
|
|
|
*s1 = '+';
|
|
|
|
|
s = s1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (strchr ("goli0123456789", s1[-2]) && s1[-3] == '%' && s1[-4] == '+')
|
|
|
|
|
{
|
|
|
|
|
s1 -= 4;
|
|
|
|
|
*s1 = '\0';
|
|
|
|
|
(void) getExpression (s);
|
|
|
|
|
*s1 = '+';
|
|
|
|
|
s = s1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
(void) getExpression (s);
|
|
|
|
|
s = expr_end;
|
|
|
|
|
|
1993-10-26 01:45:17 +08:00
|
|
|
|
if (the_insn.exp.X_op == O_constant
|
|
|
|
|
&& the_insn.exp.X_add_symbol == 0
|
|
|
|
|
&& the_insn.exp.X_op_symbol == 0)
|
|
|
|
|
{
|
1994-04-01 05:54:06 +08:00
|
|
|
|
/* Handle %uhi/%ulo by moving the upper word to the lower
|
|
|
|
|
one and pretending it's %hi/%lo. We also need to watch
|
|
|
|
|
for %hi/%lo: the top word needs to be zeroed otherwise
|
|
|
|
|
fixup_segment will complain the value is too big. */
|
1993-10-26 01:45:17 +08:00
|
|
|
|
switch (the_insn.reloc)
|
|
|
|
|
{
|
|
|
|
|
case BFD_RELOC_SPARC_HH22:
|
|
|
|
|
the_insn.reloc = BFD_RELOC_HI22;
|
1994-07-29 07:36:16 +08:00
|
|
|
|
the_insn.exp.X_add_number = BSR (the_insn.exp.X_add_number, 32);
|
1993-10-26 01:45:17 +08:00
|
|
|
|
break;
|
|
|
|
|
case BFD_RELOC_SPARC_HM10:
|
|
|
|
|
the_insn.reloc = BFD_RELOC_LO10;
|
1994-07-29 07:36:16 +08:00
|
|
|
|
the_insn.exp.X_add_number = BSR (the_insn.exp.X_add_number, 32);
|
1993-10-26 01:45:17 +08:00
|
|
|
|
break;
|
1994-04-01 05:54:06 +08:00
|
|
|
|
case BFD_RELOC_HI22:
|
|
|
|
|
case BFD_RELOC_LO10:
|
|
|
|
|
the_insn.exp.X_add_number &= 0xffffffff;
|
|
|
|
|
break;
|
1996-01-23 01:53:34 +08:00
|
|
|
|
default:
|
|
|
|
|
break;
|
1993-10-26 01:45:17 +08:00
|
|
|
|
}
|
1996-01-23 01:53:34 +08:00
|
|
|
|
|
1994-04-01 05:54:06 +08:00
|
|
|
|
/* For pc-relative call instructions, we reject
|
|
|
|
|
constants to get better code. */
|
|
|
|
|
if (the_insn.pcrel
|
|
|
|
|
&& the_insn.reloc == BFD_RELOC_32_PCREL_S2
|
|
|
|
|
&& in_signed_range (the_insn.exp.X_add_number, 0x3fff)
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
error_message = ": PC-relative operand can't be a constant";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
1993-10-26 01:45:17 +08:00
|
|
|
|
/* Check for invalid constant values. Don't warn if
|
|
|
|
|
constant was inside %hi or %lo, since these
|
|
|
|
|
truncate the constant to fit. */
|
|
|
|
|
if (immediate_max != 0
|
|
|
|
|
&& the_insn.reloc != BFD_RELOC_LO10
|
|
|
|
|
&& the_insn.reloc != BFD_RELOC_HI22
|
1994-04-01 05:54:06 +08:00
|
|
|
|
&& !in_signed_range (the_insn.exp.X_add_number,
|
|
|
|
|
immediate_max)
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
if (the_insn.pcrel)
|
|
|
|
|
/* Who knows? After relocation, we may be within
|
|
|
|
|
range. Let the linker figure it out. */
|
|
|
|
|
{
|
|
|
|
|
the_insn.exp.X_op = O_symbol;
|
|
|
|
|
the_insn.exp.X_add_symbol = section_symbol (absolute_section);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Immediate value is non-pcrel, and out of
|
|
|
|
|
range. */
|
|
|
|
|
as_bad ("constant value %ld out of range (%ld .. %ld)",
|
|
|
|
|
the_insn.exp.X_add_number,
|
|
|
|
|
~immediate_max, immediate_max);
|
|
|
|
|
}
|
1993-10-26 01:45:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
/* Reset to prevent extraneous range check. */
|
|
|
|
|
immediate_max = 0;
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
|
if (*s++ == 'a')
|
|
|
|
|
{
|
|
|
|
|
opcode |= ANNUL;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'A':
|
|
|
|
|
{
|
1993-06-25 17:51:47 +08:00
|
|
|
|
int asi = 0;
|
|
|
|
|
|
|
|
|
|
/* Parse an asi. */
|
|
|
|
|
if (*s == '#')
|
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
if (! parse_keyword_arg (sparc_encode_asi, &s, &asi))
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
error_message = ": invalid ASI name";
|
1993-06-25 17:51:47 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
1995-07-06 05:52:10 +08:00
|
|
|
|
else
|
1993-06-25 17:51:47 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
if (! parse_const_expr_arg (&s, &asi))
|
1995-07-06 05:52:10 +08:00
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
error_message = ": invalid ASI expression";
|
1995-07-06 05:52:10 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
1993-06-25 17:51:47 +08:00
|
|
|
|
if (asi < 0 || asi > 255)
|
|
|
|
|
{
|
1996-01-23 01:53:34 +08:00
|
|
|
|
error_message = ": invalid ASI number";
|
1993-06-25 17:51:47 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
opcode |= ASI (asi);
|
|
|
|
|
continue;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
} /* alternate space */
|
|
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
|
if (strncmp (s, "%psr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'q': /* floating point queue */
|
|
|
|
|
if (strncmp (s, "%fq", 3) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 3;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Q': /* coprocessor queue */
|
|
|
|
|
if (strncmp (s, "%cq", 3) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 3;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
|
if (strcmp (str, "set") == 0)
|
|
|
|
|
{
|
|
|
|
|
special_case = SPECIAL_CASE_SET;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (strncmp (str, "fdiv", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
special_case = SPECIAL_CASE_FDIV;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'o':
|
|
|
|
|
if (strncmp (s, "%asi", 4) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 's':
|
|
|
|
|
if (strncmp (s, "%fprs", 5) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 5;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'E':
|
|
|
|
|
if (strncmp (s, "%ccr", 4) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
1992-08-02 07:20:55 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
case 't':
|
|
|
|
|
if (strncmp (s, "%tbr", 4) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'w':
|
|
|
|
|
if (strncmp (s, "%wim", 4) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
|
1994-07-29 07:36:16 +08:00
|
|
|
|
case 'x':
|
|
|
|
|
{
|
|
|
|
|
char *push = input_line_pointer;
|
|
|
|
|
expressionS e;
|
|
|
|
|
|
|
|
|
|
input_line_pointer = s;
|
|
|
|
|
expression (&e);
|
|
|
|
|
if (e.X_op == O_constant)
|
|
|
|
|
{
|
|
|
|
|
int n = e.X_add_number;
|
|
|
|
|
if (n != e.X_add_number || (n & ~0x1ff) != 0)
|
|
|
|
|
as_bad ("OPF immediate operand out of range (0-0x1ff)");
|
|
|
|
|
else
|
|
|
|
|
opcode |= e.X_add_number << 5;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
as_bad ("non-immediate OPF operand, ignored");
|
|
|
|
|
s = input_line_pointer;
|
|
|
|
|
input_line_pointer = push;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
case 'y':
|
|
|
|
|
if (strncmp (s, "%y", 2) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 2;
|
|
|
|
|
continue;
|
|
|
|
|
|
1996-02-21 13:50:03 +08:00
|
|
|
|
case 'u':
|
|
|
|
|
case 'U':
|
|
|
|
|
{
|
|
|
|
|
/* Parse a sparclet cpreg. */
|
|
|
|
|
int cpreg;
|
|
|
|
|
if (! parse_keyword_arg (sparc_encode_sparclet_cpreg, &s, &cpreg))
|
|
|
|
|
{
|
|
|
|
|
error_message = ": invalid cpreg name";
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
opcode |= (*args == 'U' ? RS1 (cpreg) : RD (cpreg));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
default:
|
|
|
|
|
as_fatal ("failed sanity check.");
|
|
|
|
|
} /* switch on arg code */
|
1996-01-23 01:53:34 +08:00
|
|
|
|
|
|
|
|
|
/* Break out of for() loop. */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
break;
|
|
|
|
|
} /* for each arg that we expect */
|
1996-01-23 01:53:34 +08:00
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
error:
|
|
|
|
|
if (match == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Args don't match. */
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (((unsigned) (&insn[1] - sparc_opcodes)) < sparc_num_opcodes
|
1995-07-06 05:52:10 +08:00
|
|
|
|
&& (insn->name == insn[1].name
|
|
|
|
|
|| !strcmp (insn->name, insn[1].name)))
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
++insn;
|
|
|
|
|
s = argsStart;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Illegal operands%s", error_message);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
/* We have a match. Now see if the architecture is ok. */
|
1996-02-19 18:43:01 +08:00
|
|
|
|
int needed_arch_mask = insn->architecture;
|
1996-01-25 19:20:06 +08:00
|
|
|
|
|
1996-02-19 18:43:01 +08:00
|
|
|
|
if (v9_arg_p)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1996-02-19 18:43:01 +08:00
|
|
|
|
needed_arch_mask &= ~ ((1 << SPARC_OPCODE_ARCH_V9)
|
|
|
|
|
| (1 << SPARC_OPCODE_ARCH_V9A));
|
|
|
|
|
needed_arch_mask |= (1 << SPARC_OPCODE_ARCH_V9);
|
1996-01-25 19:20:06 +08:00
|
|
|
|
}
|
1996-02-19 18:43:01 +08:00
|
|
|
|
|
|
|
|
|
if (needed_arch_mask & SPARC_OPCODE_SUPPORTED (current_architecture))
|
|
|
|
|
; /* ok */
|
|
|
|
|
/* Can we bump up the architecture? */
|
|
|
|
|
else if (needed_arch_mask & SPARC_OPCODE_SUPPORTED (max_architecture))
|
1996-01-25 19:20:06 +08:00
|
|
|
|
{
|
1996-02-19 18:43:01 +08:00
|
|
|
|
enum sparc_opcode_arch_val needed_architecture =
|
|
|
|
|
sparc_ffs (SPARC_OPCODE_SUPPORTED (max_architecture)
|
|
|
|
|
& needed_arch_mask);
|
|
|
|
|
|
|
|
|
|
assert (needed_architecture <= SPARC_OPCODE_ARCH_MAX);
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (warn_on_bump
|
|
|
|
|
&& needed_architecture > warn_after_architecture)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
as_warn ("architecture bumped from \"%s\" to \"%s\" on \"%s\"",
|
|
|
|
|
sparc_opcode_archs[current_architecture].name,
|
|
|
|
|
sparc_opcode_archs[needed_architecture].name,
|
|
|
|
|
str);
|
1996-02-19 18:43:01 +08:00
|
|
|
|
warn_after_architecture = needed_architecture;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
}
|
1996-01-25 19:20:06 +08:00
|
|
|
|
current_architecture = needed_architecture;
|
|
|
|
|
}
|
1996-02-19 18:43:01 +08:00
|
|
|
|
/* Conflict. */
|
1996-02-27 02:38:33 +08:00
|
|
|
|
/* ??? This seems to be a bit fragile. What if the next entry in
|
|
|
|
|
the opcode table is the one we want and it is supported?
|
|
|
|
|
It is possible to arrange the table today so that this can't
|
|
|
|
|
happen but what about tomorrow? */
|
1996-02-19 18:43:01 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
1996-02-27 02:38:33 +08:00
|
|
|
|
int arch,printed_one_p = 0;
|
|
|
|
|
char *p;
|
|
|
|
|
char required_archs[SPARC_OPCODE_ARCH_MAX * 16];
|
|
|
|
|
|
|
|
|
|
/* Create a list of the architectures that support the insn. */
|
|
|
|
|
needed_arch_mask &= ~ SPARC_OPCODE_SUPPORTED (max_architecture);
|
|
|
|
|
p = required_archs;
|
|
|
|
|
arch = sparc_ffs (needed_arch_mask);
|
|
|
|
|
while ((1 << arch) <= needed_arch_mask)
|
|
|
|
|
{
|
|
|
|
|
if ((1 << arch) & needed_arch_mask)
|
|
|
|
|
{
|
|
|
|
|
if (printed_one_p)
|
|
|
|
|
*p++ = '|';
|
|
|
|
|
strcpy (p, sparc_opcode_archs[arch].name);
|
|
|
|
|
p += strlen (p);
|
|
|
|
|
printed_one_p = 1;
|
|
|
|
|
}
|
|
|
|
|
++arch;
|
|
|
|
|
}
|
1996-02-19 18:43:01 +08:00
|
|
|
|
|
|
|
|
|
as_bad ("Architecture mismatch on \"%s\".", str);
|
|
|
|
|
as_tsktsk (" (Requires %s; requested architecture is %s.)",
|
1996-02-27 02:38:33 +08:00
|
|
|
|
required_archs,
|
1996-02-19 18:43:01 +08:00
|
|
|
|
sparc_opcode_archs[max_architecture].name);
|
|
|
|
|
return;
|
|
|
|
|
}
|
1996-01-25 19:20:06 +08:00
|
|
|
|
} /* if no match */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
break;
|
1996-01-25 19:20:06 +08:00
|
|
|
|
} /* forever looking for a match */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
the_insn.opcode = opcode;
|
1993-12-17 05:31:22 +08:00
|
|
|
|
}
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
getExpression (str)
|
|
|
|
|
char *str;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-11-24 04:42:33 +08:00
|
|
|
|
char *save_in;
|
|
|
|
|
segT seg;
|
|
|
|
|
|
|
|
|
|
save_in = input_line_pointer;
|
|
|
|
|
input_line_pointer = str;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
seg = expression (&the_insn.exp);
|
1993-09-11 00:01:07 +08:00
|
|
|
|
if (seg != absolute_section
|
|
|
|
|
&& seg != text_section
|
|
|
|
|
&& seg != data_section
|
|
|
|
|
&& seg != bss_section
|
|
|
|
|
&& seg != undefined_section)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
|
|
|
|
the_insn.error = "bad segment";
|
|
|
|
|
expr_end = input_line_pointer;
|
|
|
|
|
input_line_pointer = save_in;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
expr_end = input_line_pointer;
|
|
|
|
|
input_line_pointer = save_in;
|
|
|
|
|
return 0;
|
|
|
|
|
} /* getExpression() */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
This is identical to the md_atof in m68k.c. I think this is right,
|
|
|
|
|
but I'm not sure.
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
Turn a string in input_line_pointer into a floating point constant of type
|
|
|
|
|
type, and store the appropriate bytes in *litP. The number of LITTLENUMS
|
|
|
|
|
emitted is stored in *sizeP . An error message is returned, or NULL on OK.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Equal to MAX_PRECISION in atof-ieee.c */
|
|
|
|
|
#define MAX_LITTLENUMS 6
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
char *
|
|
|
|
|
md_atof (type, litP, sizeP)
|
|
|
|
|
char type;
|
|
|
|
|
char *litP;
|
|
|
|
|
int *sizeP;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-11-24 04:42:33 +08:00
|
|
|
|
int prec;
|
|
|
|
|
LITTLENUM_TYPE words[MAX_LITTLENUMS];
|
|
|
|
|
LITTLENUM_TYPE *wordP;
|
|
|
|
|
char *t;
|
|
|
|
|
char *atof_ieee ();
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
case 'F':
|
|
|
|
|
case 's':
|
|
|
|
|
case 'S':
|
|
|
|
|
prec = 2;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
|
case 'D':
|
|
|
|
|
case 'r':
|
|
|
|
|
case 'R':
|
|
|
|
|
prec = 4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'x':
|
|
|
|
|
case 'X':
|
|
|
|
|
prec = 6;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
|
case 'P':
|
|
|
|
|
prec = 6;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
*sizeP = 0;
|
|
|
|
|
return "Bad call to MD_ATOF()";
|
|
|
|
|
}
|
|
|
|
|
t = atof_ieee (input_line_pointer, type, words);
|
|
|
|
|
if (t)
|
|
|
|
|
input_line_pointer = t;
|
|
|
|
|
*sizeP = prec * sizeof (LITTLENUM_TYPE);
|
|
|
|
|
for (wordP = words; prec--;)
|
|
|
|
|
{
|
1993-07-08 00:58:29 +08:00
|
|
|
|
md_number_to_chars (litP, (valueT) (*wordP++), sizeof (LITTLENUM_TYPE));
|
1992-11-24 04:42:33 +08:00
|
|
|
|
litP += sizeof (LITTLENUM_TYPE);
|
|
|
|
|
}
|
1993-06-25 17:51:47 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Write out big-endian.
|
|
|
|
|
*/
|
1992-11-24 04:42:33 +08:00
|
|
|
|
void
|
|
|
|
|
md_number_to_chars (buf, val, n)
|
|
|
|
|
char *buf;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
valueT val;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
int n;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-12-17 05:31:22 +08:00
|
|
|
|
number_to_chars_bigendian (buf, val, n);
|
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* Apply a fixS to the frags, now that we know the value it ought to
|
|
|
|
|
hold. */
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
int
|
|
|
|
|
md_apply_fix (fixP, value)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
fixS *fixP;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
valueT *value;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-11-24 04:42:33 +08:00
|
|
|
|
char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
offsetT val;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
|
|
|
|
val = *value;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
assert (fixP->fx_r_type < BFD_RELOC_UNUSED);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
|
|
|
|
fixP->fx_addnumber = val; /* Remember value for emit_reloc */
|
|
|
|
|
|
1993-10-22 03:50:57 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
|
|
|
|
/* FIXME: SPARC ELF relocations don't use an addend in the data
|
|
|
|
|
field itself. This whole approach should be somehow combined
|
1995-07-06 05:52:10 +08:00
|
|
|
|
with the calls to bfd_perform_relocation. Also, the value passed
|
|
|
|
|
in by fixup_segment includes the value of a defined symbol. We
|
|
|
|
|
don't want to include the value of an externally visible symbol. */
|
1993-10-22 03:50:57 +08:00
|
|
|
|
if (fixP->fx_addsy != NULL)
|
1995-07-06 05:52:10 +08:00
|
|
|
|
{
|
1996-02-20 03:29:17 +08:00
|
|
|
|
if ((S_IS_EXTERNAL (fixP->fx_addsy)
|
|
|
|
|
|| S_IS_WEAK (fixP->fx_addsy)
|
1995-08-17 04:21:49 +08:00
|
|
|
|
|| (sparc_pic_code && ! fixP->fx_pcrel))
|
1995-07-06 05:52:10 +08:00
|
|
|
|
&& S_GET_SEGMENT (fixP->fx_addsy) != absolute_section
|
|
|
|
|
&& S_GET_SEGMENT (fixP->fx_addsy) != undefined_section
|
|
|
|
|
&& ! bfd_is_com_section (S_GET_SEGMENT (fixP->fx_addsy)))
|
|
|
|
|
fixP->fx_addnumber -= S_GET_VALUE (fixP->fx_addsy);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
1993-10-22 03:50:57 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
1993-12-17 05:31:22 +08:00
|
|
|
|
/* This is a hack. There should be a better way to
|
|
|
|
|
handle this. Probably in terms of howto fields, once
|
|
|
|
|
we can look at these fixups in terms of howtos. */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
if (fixP->fx_r_type == BFD_RELOC_32_PCREL_S2 && fixP->fx_addsy)
|
1993-12-17 05:31:22 +08:00
|
|
|
|
val += fixP->fx_where + fixP->fx_frag->fr_address;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1994-09-08 07:58:32 +08:00
|
|
|
|
#ifdef OBJ_AOUT
|
|
|
|
|
/* FIXME: More ridiculous gas reloc hacking. If we are going to
|
|
|
|
|
generate a reloc, then we just want to let the reloc addend set
|
|
|
|
|
the value. We do not want to also stuff the addend into the
|
|
|
|
|
object file. Including the addend in the object file works when
|
|
|
|
|
doing a static link, because the linker will ignore the object
|
|
|
|
|
file contents. However, the dynamic linker does not ignore the
|
|
|
|
|
object file contents. */
|
|
|
|
|
if (fixP->fx_addsy != NULL
|
|
|
|
|
&& fixP->fx_r_type != BFD_RELOC_32_PCREL_S2)
|
|
|
|
|
val = 0;
|
1995-08-17 04:21:49 +08:00
|
|
|
|
|
|
|
|
|
/* When generating PIC code, we do not want an addend for a reloc
|
|
|
|
|
against a local symbol. We adjust fx_addnumber to cancel out the
|
|
|
|
|
value already included in val, and to also cancel out the
|
|
|
|
|
adjustment which bfd_install_relocation will create. */
|
|
|
|
|
if (sparc_pic_code
|
|
|
|
|
&& fixP->fx_r_type != BFD_RELOC_32_PCREL_S2
|
|
|
|
|
&& fixP->fx_addsy != NULL
|
|
|
|
|
&& ! S_IS_COMMON (fixP->fx_addsy)
|
|
|
|
|
&& (fixP->fx_addsy->bsym->flags & BSF_SECTION_SYM) == 0)
|
|
|
|
|
fixP->fx_addnumber -= 2 * S_GET_VALUE (fixP->fx_addsy);
|
1994-09-08 07:58:32 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
switch (fixP->fx_r_type)
|
|
|
|
|
{
|
1993-09-11 00:01:07 +08:00
|
|
|
|
case BFD_RELOC_16:
|
|
|
|
|
buf[0] = val >> 8;
|
|
|
|
|
buf[1] = val;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_32:
|
1993-08-07 00:10:40 +08:00
|
|
|
|
buf[0] = val >> 24;
|
|
|
|
|
buf[1] = val >> 16;
|
|
|
|
|
buf[2] = val >> 8;
|
|
|
|
|
buf[3] = val;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_32_PCREL_S2:
|
1995-08-17 04:21:49 +08:00
|
|
|
|
val = (val >>= 2);
|
|
|
|
|
if (! sparc_pic_code
|
|
|
|
|
|| fixP->fx_addsy == NULL
|
|
|
|
|
|| (fixP->fx_addsy->bsym->flags & BSF_SECTION_SYM) != 0)
|
|
|
|
|
++val;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
buf[0] |= (val >> 24) & 0x3f;
|
|
|
|
|
buf[1] = (val >> 16);
|
|
|
|
|
buf[2] = val >> 8;
|
|
|
|
|
buf[3] = val;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-08-05 07:10:43 +08:00
|
|
|
|
case BFD_RELOC_64:
|
1994-07-29 07:36:16 +08:00
|
|
|
|
{
|
|
|
|
|
bfd_vma valh = BSR (val, 32);
|
|
|
|
|
buf[0] = valh >> 24;
|
|
|
|
|
buf[1] = valh >> 16;
|
|
|
|
|
buf[2] = valh >> 8;
|
|
|
|
|
buf[3] = valh;
|
|
|
|
|
buf[4] = val >> 24;
|
|
|
|
|
buf[5] = val >> 16;
|
|
|
|
|
buf[6] = val >> 8;
|
|
|
|
|
buf[7] = val;
|
|
|
|
|
}
|
1993-08-05 07:10:43 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_11:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (((val > 0) && (val & ~0x7ff))
|
|
|
|
|
|| ((val < 0) && (~(val - 1) & ~0x7ff)))
|
|
|
|
|
{
|
|
|
|
|
as_bad ("relocation overflow.");
|
|
|
|
|
} /* on overflow */
|
|
|
|
|
|
|
|
|
|
buf[2] |= (val >> 8) & 0x7;
|
|
|
|
|
buf[3] = val & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_10:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (((val > 0) && (val & ~0x3ff))
|
|
|
|
|
|| ((val < 0) && (~(val - 1) & ~0x3ff)))
|
|
|
|
|
{
|
|
|
|
|
as_bad ("relocation overflow.");
|
|
|
|
|
} /* on overflow */
|
|
|
|
|
|
|
|
|
|
buf[2] |= (val >> 8) & 0x3;
|
|
|
|
|
buf[3] = val & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP16:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (((val > 0) && (val & ~0x3fffc))
|
|
|
|
|
|| ((val < 0) && (~(val - 1) & ~0x3fffc)))
|
|
|
|
|
{
|
|
|
|
|
as_bad ("relocation overflow.");
|
|
|
|
|
} /* on overflow */
|
|
|
|
|
|
|
|
|
|
val = (val >>= 2) + 1;
|
1992-12-15 11:46:14 +08:00
|
|
|
|
buf[1] |= ((val >> 14) & 0x3) << 4;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
buf[2] |= (val >> 8) & 0x3f;
|
|
|
|
|
buf[3] = val & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP19:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (((val > 0) && (val & ~0x1ffffc))
|
|
|
|
|
|| ((val < 0) && (~(val - 1) & ~0x1ffffc)))
|
|
|
|
|
{
|
|
|
|
|
as_bad ("relocation overflow.");
|
|
|
|
|
} /* on overflow */
|
|
|
|
|
|
|
|
|
|
val = (val >>= 2) + 1;
|
|
|
|
|
buf[1] |= (val >> 16) & 0x7;
|
|
|
|
|
buf[2] = (val >> 8) & 0xff;
|
|
|
|
|
buf[3] = val & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_HH22:
|
1994-07-29 07:36:16 +08:00
|
|
|
|
val = BSR (val, 32);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
/* intentional fallthrough */
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_LM22:
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_HI22:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
buf[1] |= (val >> 26) & 0x3f;
|
|
|
|
|
buf[2] = val >> 18;
|
|
|
|
|
buf[3] = val >> 10;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
buf[2] = 0;
|
|
|
|
|
buf[3] = 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_SPARC22:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (val & ~0x003fffff)
|
|
|
|
|
{
|
|
|
|
|
as_bad ("relocation overflow");
|
|
|
|
|
} /* on overflow */
|
|
|
|
|
buf[1] |= (val >> 16) & 0x3f;
|
|
|
|
|
buf[2] = val >> 8;
|
|
|
|
|
buf[3] = val & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_HM10:
|
1994-07-29 07:36:16 +08:00
|
|
|
|
val = BSR (val, 32);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
/* intentional fallthrough */
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_LO10:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
buf[2] |= (val >> 8) & 0x03;
|
|
|
|
|
buf[3] = val;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
buf[3] = 0;
|
|
|
|
|
break;
|
1994-04-01 05:54:06 +08:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC13:
|
|
|
|
|
if (! in_signed_range (val, 0x1fff))
|
|
|
|
|
as_bad ("relocation overflow");
|
|
|
|
|
|
1992-11-24 04:42:33 +08:00
|
|
|
|
buf[2] |= (val >> 8) & 0x1f;
|
|
|
|
|
buf[3] = val;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP22:
|
1994-07-29 07:36:16 +08:00
|
|
|
|
val = (val >> 2) + 1;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
/* FALLTHROUGH */
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_SPARC_BASE22:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
buf[1] |= (val >> 16) & 0x3f;
|
|
|
|
|
buf[2] = val >> 8;
|
|
|
|
|
buf[3] = val;
|
|
|
|
|
break;
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_NONE:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
default:
|
1993-02-24 19:24:14 +08:00
|
|
|
|
as_bad ("bad or unhandled relocation type: 0x%02x", fixP->fx_r_type);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
1994-04-01 05:54:06 +08:00
|
|
|
|
/* Are we finished with this relocation now? */
|
|
|
|
|
if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
|
|
|
|
|
fixP->fx_done = 1;
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
/* Translate internal representation of relocation info to BFD target
|
|
|
|
|
format. */
|
|
|
|
|
arelent *
|
|
|
|
|
tc_gen_reloc (section, fixp)
|
|
|
|
|
asection *section;
|
|
|
|
|
fixS *fixp;
|
|
|
|
|
{
|
|
|
|
|
arelent *reloc;
|
|
|
|
|
bfd_reloc_code_real_type code;
|
|
|
|
|
|
|
|
|
|
reloc = (arelent *) bfd_alloc_by_size_t (stdoutput, sizeof (arelent));
|
|
|
|
|
assert (reloc != 0);
|
|
|
|
|
|
|
|
|
|
reloc->sym_ptr_ptr = &fixp->fx_addsy->bsym;
|
|
|
|
|
reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
|
|
|
|
|
|
|
|
|
|
switch (fixp->fx_r_type)
|
|
|
|
|
{
|
1993-09-11 00:01:07 +08:00
|
|
|
|
case BFD_RELOC_16:
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_32:
|
|
|
|
|
case BFD_RELOC_HI22:
|
|
|
|
|
case BFD_RELOC_LO10:
|
|
|
|
|
case BFD_RELOC_32_PCREL_S2:
|
1994-04-01 05:54:06 +08:00
|
|
|
|
case BFD_RELOC_SPARC13:
|
1993-02-24 19:24:14 +08:00
|
|
|
|
case BFD_RELOC_SPARC_BASE13:
|
1995-07-06 05:52:10 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP16:
|
|
|
|
|
case BFD_RELOC_SPARC_WDISP19:
|
1993-06-25 17:51:47 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP22:
|
1993-08-05 07:10:43 +08:00
|
|
|
|
case BFD_RELOC_64:
|
1993-07-08 00:58:29 +08:00
|
|
|
|
case BFD_RELOC_SPARC_10:
|
|
|
|
|
case BFD_RELOC_SPARC_11:
|
|
|
|
|
case BFD_RELOC_SPARC_HH22:
|
|
|
|
|
case BFD_RELOC_SPARC_HM10:
|
|
|
|
|
case BFD_RELOC_SPARC_LM22:
|
|
|
|
|
case BFD_RELOC_SPARC_PC_HH22:
|
|
|
|
|
case BFD_RELOC_SPARC_PC_HM10:
|
|
|
|
|
case BFD_RELOC_SPARC_PC_LM22:
|
1993-02-24 19:24:14 +08:00
|
|
|
|
code = fixp->fx_r_type;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
1995-08-17 04:21:49 +08:00
|
|
|
|
|
|
|
|
|
#if defined (OBJ_ELF) || defined (OBJ_AOUT)
|
|
|
|
|
/* If we are generating PIC code, we need to generate a different
|
|
|
|
|
set of relocs. */
|
|
|
|
|
|
|
|
|
|
#ifdef OBJ_ELF
|
|
|
|
|
#define GOT_NAME "_GLOBAL_OFFSET_TABLE_"
|
|
|
|
|
#else
|
|
|
|
|
#define GOT_NAME "__GLOBAL_OFFSET_TABLE_"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (sparc_pic_code)
|
|
|
|
|
{
|
|
|
|
|
switch (code)
|
|
|
|
|
{
|
|
|
|
|
case BFD_RELOC_32_PCREL_S2:
|
|
|
|
|
if (! S_IS_DEFINED (fixp->fx_addsy)
|
1996-02-20 03:29:17 +08:00
|
|
|
|
|| S_IS_EXTERNAL (fixp->fx_addsy)
|
|
|
|
|
|| S_IS_WEAK (fixp->fx_addsy))
|
1995-08-17 04:21:49 +08:00
|
|
|
|
code = BFD_RELOC_SPARC_WPLT30;
|
|
|
|
|
break;
|
|
|
|
|
case BFD_RELOC_HI22:
|
|
|
|
|
if (fixp->fx_addsy != NULL
|
|
|
|
|
&& strcmp (S_GET_NAME (fixp->fx_addsy), GOT_NAME) == 0)
|
|
|
|
|
code = BFD_RELOC_SPARC_PC22;
|
|
|
|
|
else
|
|
|
|
|
code = BFD_RELOC_SPARC_GOT22;
|
|
|
|
|
break;
|
|
|
|
|
case BFD_RELOC_LO10:
|
|
|
|
|
if (fixp->fx_addsy != NULL
|
|
|
|
|
&& strcmp (S_GET_NAME (fixp->fx_addsy), GOT_NAME) == 0)
|
|
|
|
|
code = BFD_RELOC_SPARC_PC10;
|
|
|
|
|
else
|
|
|
|
|
code = BFD_RELOC_SPARC_GOT10;
|
|
|
|
|
break;
|
|
|
|
|
case BFD_RELOC_SPARC13:
|
|
|
|
|
code = BFD_RELOC_SPARC_GOT13;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif /* defined (OBJ_ELF) || defined (OBJ_AOUT) */
|
|
|
|
|
|
1993-02-24 19:24:14 +08:00
|
|
|
|
reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
|
1994-04-06 02:16:37 +08:00
|
|
|
|
if (reloc->howto == 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad_where (fixp->fx_file, fixp->fx_line,
|
1994-09-08 07:58:32 +08:00
|
|
|
|
"internal error: can't export reloc type %d (`%s')",
|
|
|
|
|
fixp->fx_r_type, bfd_get_reloc_code_name (code));
|
1994-04-06 02:16:37 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
1993-12-17 05:31:22 +08:00
|
|
|
|
|
|
|
|
|
/* @@ Why fx_addnumber sometimes and fx_offset other times? */
|
1995-07-06 05:52:10 +08:00
|
|
|
|
#ifdef OBJ_AOUT
|
|
|
|
|
|
1995-08-17 04:21:49 +08:00
|
|
|
|
if (reloc->howto->pc_relative == 0
|
|
|
|
|
|| code == BFD_RELOC_SPARC_PC10
|
|
|
|
|
|| code == BFD_RELOC_SPARC_PC22)
|
1995-07-06 05:52:10 +08:00
|
|
|
|
reloc->addend = fixp->fx_addnumber;
|
|
|
|
|
else
|
|
|
|
|
reloc->addend = fixp->fx_offset - reloc->address;
|
|
|
|
|
|
|
|
|
|
#else /* elf or coff */
|
|
|
|
|
|
1995-08-17 04:21:49 +08:00
|
|
|
|
if (reloc->howto->pc_relative == 0
|
|
|
|
|
|| code == BFD_RELOC_SPARC_PC10
|
|
|
|
|
|| code == BFD_RELOC_SPARC_PC22)
|
1993-12-17 05:31:22 +08:00
|
|
|
|
reloc->addend = fixp->fx_addnumber;
|
1994-04-01 05:54:06 +08:00
|
|
|
|
else if ((fixp->fx_addsy->bsym->flags & BSF_SECTION_SYM) != 0)
|
|
|
|
|
reloc->addend = (section->vma
|
|
|
|
|
+ fixp->fx_addnumber
|
|
|
|
|
+ md_pcrel_from (fixp));
|
1993-12-17 05:31:22 +08:00
|
|
|
|
else
|
1995-07-06 05:52:10 +08:00
|
|
|
|
reloc->addend = fixp->fx_offset;
|
|
|
|
|
#endif
|
1993-02-24 19:24:14 +08:00
|
|
|
|
|
|
|
|
|
return reloc;
|
|
|
|
|
}
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
/* for debugging only */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
static void
|
|
|
|
|
print_insn (insn)
|
|
|
|
|
struct sparc_it *insn;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-12-17 05:31:22 +08:00
|
|
|
|
const char *const Reloc[] = {
|
1992-11-24 04:42:33 +08:00
|
|
|
|
"RELOC_8",
|
|
|
|
|
"RELOC_16",
|
|
|
|
|
"RELOC_32",
|
|
|
|
|
"RELOC_DISP8",
|
|
|
|
|
"RELOC_DISP16",
|
|
|
|
|
"RELOC_DISP32",
|
|
|
|
|
"RELOC_WDISP30",
|
|
|
|
|
"RELOC_WDISP22",
|
|
|
|
|
"RELOC_HI22",
|
|
|
|
|
"RELOC_22",
|
|
|
|
|
"RELOC_13",
|
|
|
|
|
"RELOC_LO10",
|
|
|
|
|
"RELOC_SFA_BASE",
|
|
|
|
|
"RELOC_SFA_OFF13",
|
|
|
|
|
"RELOC_BASE10",
|
|
|
|
|
"RELOC_BASE13",
|
|
|
|
|
"RELOC_BASE22",
|
|
|
|
|
"RELOC_PC10",
|
|
|
|
|
"RELOC_PC22",
|
|
|
|
|
"RELOC_JMP_TBL",
|
|
|
|
|
"RELOC_SEGOFF16",
|
|
|
|
|
"RELOC_GLOB_DAT",
|
|
|
|
|
"RELOC_JMP_SLOT",
|
|
|
|
|
"RELOC_RELATIVE",
|
|
|
|
|
"NO_RELOC"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (insn->error)
|
1993-12-17 05:31:22 +08:00
|
|
|
|
fprintf (stderr, "ERROR: %s\n");
|
1992-11-24 04:42:33 +08:00
|
|
|
|
fprintf (stderr, "opcode=0x%08x\n", insn->opcode);
|
|
|
|
|
fprintf (stderr, "reloc = %s\n", Reloc[insn->reloc]);
|
|
|
|
|
fprintf (stderr, "exp = {\n");
|
|
|
|
|
fprintf (stderr, "\t\tX_add_symbol = %s\n",
|
|
|
|
|
((insn->exp.X_add_symbol != NULL)
|
|
|
|
|
? ((S_GET_NAME (insn->exp.X_add_symbol) != NULL)
|
|
|
|
|
? S_GET_NAME (insn->exp.X_add_symbol)
|
|
|
|
|
: "???")
|
|
|
|
|
: "0"));
|
|
|
|
|
fprintf (stderr, "\t\tX_sub_symbol = %s\n",
|
* Extensive changes to permit symbols to contain any expression
type and to delay the computation of the expression until the
value is actually needed. This permits setting symbols to values
calculated based on object code size. Expressions were changed to
no longer be in a section, to stop the overloading of segment and
expression type that previously occurred.
* as.c (big_section, pass1_section, diff_section, absent_section):
Removed.
(expr_section): Added (used for dummy symbols which hold
intermediate expression values).
(perform_an_assembly_pass): Create expr_section, do not create the
sections now removed.
* as.h (segT): Removed SEG_ABSENT, SEG_PASS1, SEG_BIG, and
SEG_DIFFERENCE. Added SEG_EXPR.
(SEG_NORMAL): Corresponding changes.
* subsegs.c (seg_name, subsegs_begin): Changed accordingly.
* write.c (write_object_file): Ditto.
* config/obj-aout.c (seg_N_TYPE): Ditto.
* config/obj-bout.c (seg_N_TYPE): Ditto.
* config/obj-coff.c (seg_N_TYPE): Ditto.
* config/obj-coffbfd.c (seg_N_TYPE): Ditto.
* config/obj-vms.c (seg_N_TYPE): Ditto.
* expr.h (operatorT): Moved in from expr.c, added some values.
(expressionS): Added X_op field, removed X_seg field; renamed
X_subtract_symbol to X_op_symbol.
* expr.c: Extensive changes to assign expression types rather than
sections and to simplify the parsing.
* write.c (fix_new_internal): New static function.
(fix_new): Removed sub_symbol argument.
(fix_new_exp): New function, takes expression argument.
* write.h: Prototype changes for fix_new and fix_new_exp.
* cond.c (s_if): Changed accordingly.
* read.c (s_lsym, pseudo_set, emit_expr, parse_bitfield_cons,
parse_repeat_cons, get_segmented_expression,
get_known_segmented_expression, get_absolute_expression): Ditto.
* symbols.c (resolve_symbol_value, S_GET_VALUE, S_SET_VALUE):
Ditto.
* write.c (write_object_file): Ditto.
* config/obj-coff.c (obj_coff_def, obj_coff_val): Ditto.
* config/obj-coffbfd.c (obj_coff_def, obj_coff_val,
obj_coff_endef, yank_symbols): Ditto.
* config/obj-elf.c (obj_elf_stab_generic, obj_elf_size): Ditto.
* config/tc-a29k.c (md_assemble, parse_operand, machine_ip,
print_insn, md_operand): Ditto.
* config/tc-h8300.c (parse_exp, colonmod24, check_operand,
do_a_fix_imm, build_bytes): Ditto.
* config/tc-h8500.c (parse_exp, skip_colonthing, parse_reglist,
get_specific, check, insert, md_convert_frag): Ditto.
* config/tc-hppa.c (the_insn, fix_new_hppa, cons_fix_new_hppa,
md_assemble, pa_ip, getExpression, getAbsoluteExpression,
evaluateAbsolute, pa_build_unwind_subspace, pa_entry,
process_exit): Ditto.
* config/tc-hppa.h (STAB_FIXUP, is_DP_relative, is_PC_relative,
is_complex): Ditto.
* config/tc-i386.c (pe, md_assemble, i386_operand,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-i860.c (md_assemble, getExpression, print_insn):
Ditto.
* config/tc-i960.c (parse_expr, subs, segs, md_convert_frag,
get_cdisp, mem_fmt, parse_ldconst, relax_cobr, s_sysproc,
i960_handle_align): Ditto.
* config/tc-m68k.c (struct m68k_exp, struct m68k_it, seg, op,
subs, add_fix, isvar, m68k_ip, md_assemble, md_convert_frag_1,
md_estimate_size_before_relax, md_create_long_jump, get_num):
Ditto.
* config/tc-m88k.c (md_assemble, get_imm16, get_pcr,
md_create_short_jump, md_create_long_jump): Ditto.
* config/tc-mips.c (md_assemble, append_insn, gp_reference,
macro_build, macro, my_getExpression): Ditto. Also removed
get_optional_absolute_expression; just use get_absolute_expression
instead.
* config/tc-ns32k.c (get_addr_mode, evaluate_expr, convert_iif,
fix_new_ns32k, fix_new_ns32k_exp, cons_fix_new_ns32k): Ditto.
* config/tc-ns32k.h (fix_new_ns32k prototype): Ditto.
* config/tc-sh.c (parse_exp, check, insert, md_convert_frag):
Ditto.
* config/tc-sparc.c (md_assemble, sparc_ip, getExpression,
print_insn): Ditto.
* config/tc-tahoe.c (struct top, md_estimate_size_before_relax,
tip_op, md_assemble): Ditto.
* config/tc-vax.c (seg_of_operand, md_assemble,
md_estimate_size_before_relax, md_create_long_jump): Ditto.
* config/tc-z8k.c (parse_exp, check_operand, newfix): Ditto.
1993-07-21 08:41:42 +08:00
|
|
|
|
((insn->exp.X_op_symbol != NULL)
|
|
|
|
|
? (S_GET_NAME (insn->exp.X_op_symbol)
|
|
|
|
|
? S_GET_NAME (insn->exp.X_op_symbol)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
: "???")
|
|
|
|
|
: "0"));
|
|
|
|
|
fprintf (stderr, "\t\tX_add_number = %d\n",
|
|
|
|
|
insn->exp.X_add_number);
|
|
|
|
|
fprintf (stderr, "}\n");
|
1993-12-17 05:31:22 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
#endif
|
1994-06-04 01:42:27 +08:00
|
|
|
|
|
1991-05-22 10:18:42 +09:00
|
|
|
|
/*
|
|
|
|
|
* md_parse_option
|
|
|
|
|
* Invocation line includes a switch not recognized by the base assembler.
|
|
|
|
|
* See if it's a processor-specific option. These are:
|
|
|
|
|
*
|
|
|
|
|
* -bump
|
|
|
|
|
* Warn on architecture bumps. See also -A.
|
|
|
|
|
*
|
1996-01-25 19:20:06 +08:00
|
|
|
|
* -Av6, -Av7, -Av8, -Av9, -Av9a, -Asparclite
|
|
|
|
|
* -xarch=v8plus, -xarch=v8plusa
|
1991-05-22 10:18:42 +09:00
|
|
|
|
* Select the architecture. Instructions or features not
|
|
|
|
|
* supported by the selected architecture cause fatal errors.
|
|
|
|
|
*
|
|
|
|
|
* The default is to start at v6, and bump the architecture up
|
1996-01-25 19:20:06 +08:00
|
|
|
|
* whenever an instruction is seen at a higher level. If 32 bit
|
|
|
|
|
* environments, v9 is not bumped up to, the user must pass -Av9.
|
|
|
|
|
*
|
|
|
|
|
* -xarch=v8plus{,a} is for compatibility with the Sun assembler.
|
1991-05-22 10:18:42 +09:00
|
|
|
|
*
|
|
|
|
|
* If -bump is specified, a warning is printing when bumping to
|
|
|
|
|
* higher levels.
|
|
|
|
|
*
|
|
|
|
|
* If an architecture is specified, all instructions must match
|
|
|
|
|
* that architecture. Any higher level instructions are flagged
|
1996-01-25 19:20:06 +08:00
|
|
|
|
* as errors. Note that in the 32 bit environment specifying
|
|
|
|
|
* -Av9 does not automatically create a v9 object file, a v9
|
|
|
|
|
* insn must be seen.
|
1991-05-22 10:18:42 +09:00
|
|
|
|
*
|
1996-01-23 01:53:34 +08:00
|
|
|
|
* If both an architecture and -bump are specified, the
|
1991-05-22 10:18:42 +09:00
|
|
|
|
* architecture starts at the specified level, but bumps are
|
1996-01-25 19:20:06 +08:00
|
|
|
|
* warnings. Note that we can't set `current_architecture' to
|
|
|
|
|
* the requested level in this case: in the 32 bit environment,
|
|
|
|
|
* we still must avoid creating v9 object files unless v9 insns
|
|
|
|
|
* are seen.
|
1991-05-22 10:18:42 +09:00
|
|
|
|
*
|
1993-02-25 07:30:59 +08:00
|
|
|
|
* Note:
|
1992-08-02 07:20:55 +08:00
|
|
|
|
* Bumping between incompatible architectures is always an
|
|
|
|
|
* error. For example, from sparclite to v9.
|
1991-05-22 10:18:42 +09:00
|
|
|
|
*/
|
1993-02-25 07:30:59 +08:00
|
|
|
|
|
1994-06-04 01:42:27 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
1995-07-06 05:52:10 +08:00
|
|
|
|
CONST char *md_shortopts = "A:K:VQ:sq";
|
1994-06-04 01:42:27 +08:00
|
|
|
|
#else
|
1995-08-17 04:21:49 +08:00
|
|
|
|
#ifdef OBJ_AOUT
|
|
|
|
|
CONST char *md_shortopts = "A:k";
|
|
|
|
|
#else
|
1994-06-04 01:42:27 +08:00
|
|
|
|
CONST char *md_shortopts = "A:";
|
|
|
|
|
#endif
|
1995-08-17 04:21:49 +08:00
|
|
|
|
#endif
|
1994-06-04 01:42:27 +08:00
|
|
|
|
struct option md_longopts[] = {
|
|
|
|
|
#define OPTION_BUMP (OPTION_MD_BASE)
|
|
|
|
|
{"bump", no_argument, NULL, OPTION_BUMP},
|
|
|
|
|
#define OPTION_SPARC (OPTION_MD_BASE + 1)
|
|
|
|
|
{"sparc", no_argument, NULL, OPTION_SPARC},
|
1996-01-25 19:20:06 +08:00
|
|
|
|
#define OPTION_XARCH (OPTION_MD_BASE + 2)
|
|
|
|
|
{"xarch", required_argument, NULL, OPTION_XARCH},
|
1994-06-04 01:42:27 +08:00
|
|
|
|
{NULL, no_argument, NULL, 0}
|
|
|
|
|
};
|
|
|
|
|
size_t md_longopts_size = sizeof(md_longopts);
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1994-06-04 01:42:27 +08:00
|
|
|
|
int
|
|
|
|
|
md_parse_option (c, arg)
|
|
|
|
|
int c;
|
|
|
|
|
char *arg;
|
|
|
|
|
{
|
|
|
|
|
switch (c)
|
1992-11-24 04:42:33 +08:00
|
|
|
|
{
|
1994-06-04 01:42:27 +08:00
|
|
|
|
case OPTION_BUMP:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
warn_on_bump = 1;
|
1996-01-25 19:20:06 +08:00
|
|
|
|
warn_after_architecture = SPARC_OPCODE_ARCH_V6;
|
1994-06-04 01:42:27 +08:00
|
|
|
|
break;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1996-01-25 19:20:06 +08:00
|
|
|
|
case OPTION_XARCH:
|
|
|
|
|
/* ??? We could add v8plus and v8plusa to sparc_opcode_archs.
|
|
|
|
|
But we might want v8plus to mean something different than v9
|
|
|
|
|
someday, and we'd recognize more -xarch options than Sun's
|
|
|
|
|
assembler does (which may lead to a conflict someday). */
|
|
|
|
|
if (strcmp (arg, "v8plus") == 0)
|
|
|
|
|
arg = "v9";
|
|
|
|
|
else if (strcmp (arg, "v8plusa") == 0)
|
|
|
|
|
arg = "v9a";
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
as_bad ("invalid architecture -xarch=%s", arg);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* fall through */
|
|
|
|
|
|
1994-06-04 01:42:27 +08:00
|
|
|
|
case 'A':
|
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
enum sparc_opcode_arch_val new_arch = sparc_opcode_lookup_arch (arg);
|
1994-06-04 01:42:27 +08:00
|
|
|
|
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (new_arch == SPARC_OPCODE_ARCH_BAD)
|
1994-06-04 01:42:27 +08:00
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
as_bad ("invalid architecture -A%s", arg);
|
1994-06-04 01:42:27 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
max_architecture = new_arch;
|
1994-06-04 01:42:27 +08:00
|
|
|
|
architecture_requested = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_SPARC:
|
|
|
|
|
/* Ignore -sparc, used by SunOS make default .s.o rule. */
|
|
|
|
|
break;
|
1992-11-24 04:42:33 +08:00
|
|
|
|
|
1995-08-17 04:21:49 +08:00
|
|
|
|
#ifdef OBJ_AOUT
|
|
|
|
|
case 'k':
|
|
|
|
|
sparc_pic_code = 1;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
1993-06-25 17:51:47 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
1994-06-04 01:42:27 +08:00
|
|
|
|
case 'V':
|
1993-06-25 17:51:47 +08:00
|
|
|
|
print_version_id ();
|
1994-06-04 01:42:27 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Q':
|
1993-06-25 17:51:47 +08:00
|
|
|
|
/* Qy - do emit .comment
|
|
|
|
|
Qn - do not emit .comment */
|
1994-06-04 01:42:27 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 's':
|
1993-06-25 17:51:47 +08:00
|
|
|
|
/* use .stab instead of .stab.excl */
|
1994-06-04 01:42:27 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'q':
|
1994-05-28 00:58:05 +08:00
|
|
|
|
/* quick -- native assembler does fewer checks */
|
1994-06-04 01:42:27 +08:00
|
|
|
|
break;
|
1995-07-06 05:52:10 +08:00
|
|
|
|
|
|
|
|
|
case 'K':
|
|
|
|
|
if (strcmp (arg, "PIC") != 0)
|
|
|
|
|
as_warn ("Unrecognized option following -K");
|
|
|
|
|
else
|
1995-08-17 04:21:49 +08:00
|
|
|
|
sparc_pic_code = 1;
|
|
|
|
|
break;
|
1993-06-25 17:51:47 +08:00
|
|
|
|
#endif
|
1994-06-04 01:42:27 +08:00
|
|
|
|
|
|
|
|
|
default:
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1996-01-25 19:20:06 +08:00
|
|
|
|
return 1;
|
1994-06-04 01:42:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
md_show_usage (stream)
|
|
|
|
|
FILE *stream;
|
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
const struct sparc_opcode_arch *arch;
|
|
|
|
|
|
1994-07-29 07:36:16 +08:00
|
|
|
|
fprintf(stream, "SPARC options:\n");
|
1996-01-25 19:20:06 +08:00
|
|
|
|
for (arch = &sparc_opcode_archs[0]; arch->name; arch++)
|
1994-07-29 07:36:16 +08:00
|
|
|
|
{
|
1996-01-25 19:20:06 +08:00
|
|
|
|
if (arch != &sparc_opcode_archs[0])
|
1994-07-29 07:36:16 +08:00
|
|
|
|
fprintf (stream, " | ");
|
1996-01-25 19:20:06 +08:00
|
|
|
|
fprintf (stream, "-A%s", arch->name);
|
1994-07-29 07:36:16 +08:00
|
|
|
|
}
|
1996-01-25 19:20:06 +08:00
|
|
|
|
fprintf (stream, "\n-xarch=v8plus | -xarch=v8plusa\n");
|
|
|
|
|
fprintf (stream, "\
|
1994-06-04 01:42:27 +08:00
|
|
|
|
specify variant of SPARC architecture\n\
|
|
|
|
|
-bump warn when assembler switches architectures\n\
|
|
|
|
|
-sparc ignored\n");
|
1995-08-17 04:21:49 +08:00
|
|
|
|
#ifdef OBJ_AOUT
|
|
|
|
|
fprintf (stream, "\
|
|
|
|
|
-k generate PIC\n");
|
|
|
|
|
#endif
|
1994-06-04 01:42:27 +08:00
|
|
|
|
#ifdef OBJ_ELF
|
1995-08-17 04:21:49 +08:00
|
|
|
|
fprintf (stream, "\
|
|
|
|
|
-KPIC generate PIC\n\
|
1994-06-04 01:42:27 +08:00
|
|
|
|
-V print assembler version number\n\
|
|
|
|
|
-q ignored\n\
|
|
|
|
|
-Qy, -Qn ignored\n\
|
|
|
|
|
-s ignored\n");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
/* We have no need to default values of symbols. */
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
symbolS *
|
|
|
|
|
md_undefined_symbol (name)
|
|
|
|
|
char *name;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-11-24 04:42:33 +08:00
|
|
|
|
return 0;
|
|
|
|
|
} /* md_undefined_symbol() */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* Round up a section size to the appropriate boundary. */
|
1993-07-08 00:58:29 +08:00
|
|
|
|
valueT
|
1992-11-24 04:42:33 +08:00
|
|
|
|
md_section_align (segment, size)
|
|
|
|
|
segT segment;
|
1993-07-08 00:58:29 +08:00
|
|
|
|
valueT size;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1994-05-20 03:44:02 +08:00
|
|
|
|
#ifndef OBJ_ELF
|
|
|
|
|
/* This is not right for ELF; a.out wants it, and COFF will force
|
|
|
|
|
the alignment anyways. */
|
1995-07-06 05:52:10 +08:00
|
|
|
|
valueT align = ((valueT) 1
|
|
|
|
|
<< (valueT) bfd_get_section_alignment (stdoutput, segment));
|
1994-05-20 03:44:02 +08:00
|
|
|
|
valueT newsize;
|
|
|
|
|
/* turn alignment value into a mask */
|
|
|
|
|
align--;
|
|
|
|
|
newsize = (size + align) & ~align;
|
|
|
|
|
return newsize;
|
|
|
|
|
#else
|
1993-08-05 07:10:43 +08:00
|
|
|
|
return size;
|
1994-05-20 03:44:02 +08:00
|
|
|
|
#endif
|
1993-02-24 19:24:14 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* Exactly what point is a PC-relative offset relative TO?
|
|
|
|
|
On the sparc, they're relative to the address of the offset, plus
|
|
|
|
|
its size. This gets us to the following instruction.
|
|
|
|
|
(??? Is this right? FIXME-SOON) */
|
1992-11-24 04:42:33 +08:00
|
|
|
|
long
|
|
|
|
|
md_pcrel_from (fixP)
|
|
|
|
|
fixS *fixP;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1995-08-17 04:21:49 +08:00
|
|
|
|
long ret;
|
|
|
|
|
|
|
|
|
|
ret = fixP->fx_where + fixP->fx_frag->fr_address;
|
|
|
|
|
if (! sparc_pic_code
|
|
|
|
|
|| fixP->fx_addsy == NULL
|
|
|
|
|
|| (fixP->fx_addsy->bsym->flags & BSF_SECTION_SYM) != 0)
|
|
|
|
|
ret += fixP->fx_size;
|
|
|
|
|
return ret;
|
1993-02-24 19:24:14 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1992-02-13 17:13:54 +08:00
|
|
|
|
/* end of tc-sparc.c */
|