1999-05-03 15:29:11 +08:00
|
|
|
|
/* tc-sparc.c -- Assemble for the SPARC
|
2020-01-01 15:57:01 +08:00
|
|
|
|
Copyright (C) 1989-2020 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 19:01:12 +08:00
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
|
License along with GAS; see the file COPYING. If not, write
|
2005-05-05 17:13:19 +08:00
|
|
|
|
to the Free Software Foundation, 51 Franklin Street - Fifth Floor,
|
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#include "as.h"
|
2001-09-19 13:33:36 +08:00
|
|
|
|
#include "safe-ctype.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "subsegs.h"
|
|
|
|
|
|
|
|
|
|
#include "opcode/sparc.h"
|
2003-08-30 04:20:18 +08:00
|
|
|
|
#include "dw2gencfi.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
#include "elf/sparc.h"
|
2000-11-21 20:40:14 +08:00
|
|
|
|
#include "dwarf2dbg.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2002-02-11 21:24:06 +08:00
|
|
|
|
/* Some ancient Sun C compilers would not take such hex constants as
|
|
|
|
|
unsigned, and would end up sign-extending them to form an offsetT,
|
|
|
|
|
so use these constants instead. */
|
|
|
|
|
#define U0xffffffff ((((unsigned long) 1 << 16) << 16) - 1)
|
|
|
|
|
#define U0x80000000 ((((unsigned long) 1 << 16) << 15))
|
|
|
|
|
|
2008-08-13 07:39:31 +08:00
|
|
|
|
static int sparc_ip (char *, const struct sparc_opcode **);
|
2017-02-23 23:49:37 +08:00
|
|
|
|
static int parse_sparc_asi (char **, const sparc_asi **);
|
2008-08-13 07:39:31 +08:00
|
|
|
|
static int parse_keyword_arg (int (*) (const char *), char **, int *);
|
|
|
|
|
static int parse_const_expr_arg (char **, int *);
|
|
|
|
|
static int get_expression (char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Default architecture. */
|
|
|
|
|
/* ??? The default value 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. */
|
|
|
|
|
#ifndef DEFAULT_ARCH
|
|
|
|
|
#define DEFAULT_ARCH "sparclite"
|
|
|
|
|
#endif
|
2016-02-26 00:55:21 +08:00
|
|
|
|
static const char *default_arch = DEFAULT_ARCH;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Non-zero if the initial values of `max_architecture' and `sparc_arch_size'
|
|
|
|
|
have been set. */
|
|
|
|
|
static int default_init_p;
|
|
|
|
|
|
|
|
|
|
/* 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 v8plus object file is not created. */
|
|
|
|
|
static enum sparc_opcode_arch_val max_architecture;
|
|
|
|
|
|
|
|
|
|
/* Either 32 or 64, selects file format. */
|
|
|
|
|
static int sparc_arch_size;
|
|
|
|
|
/* Initial (default) value, recorded separately in case a user option
|
|
|
|
|
changes the value before md_show_usage is called. */
|
|
|
|
|
static int default_arch_size;
|
|
|
|
|
|
|
|
|
|
/* The currently selected v9 memory model. Currently only used for
|
|
|
|
|
ELF. */
|
|
|
|
|
static enum { MM_TSO, MM_PSO, MM_RMO } sparc_memory_model = MM_RMO;
|
Annotate sparc objects with cpu hardware capabilities used.
bfd/
* elfxx-sparc.c (_bfd_sparc_elf_merge_private_bfd_data): New.
* elfxx-sparc.h: Declare it.
* elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Call it.
* elf64-sparc.c (elf64_sparc_merge_private_bfd_data): Likewise.
binutils/
* readelf.c (display_sparc_hwcaps): New.
(display_sparc_gnu_attribute): New.
(process_sparc_specific): New.
(process_arch_specific): When EM_SPARC, EM_SPARC32PLUS,
or EM_SPARCV9 invoke process_sparc_specific.
gas/
* config/tc-sparc.c (hwcap_seen): New bitmask, defined when
not TE_SOLARIS.
(sparc_ip): When not TE_SOLARIS, accumulate hwcap bits from
sparc_opcode->flags of instruction into hwcap_seen.
(sparc_md_end): Create Tag_GNU_Sparc_HWCAPS attribute if
hwcap_seen is non-zero and not TE_SOLARIS.
gas/testsuite/
* gas/sparc/hpcvis3.s: Update for fixed fchksum16 mnemonic.
* gas/sparc/hpcvis3.d: Likewise.
include/elf/
* sparc.h (Tag_GNU_Sparc_HWCAPS): New object attribute.
(ELF_SPARC_HWCAP_*): New HWCAPS bitmask values.
include/opcode/
* sparc.h (struct sparc_opcode): Expand 'flags' to unsigned int.
(F_MUL32, F_DIV32, F_FSMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING): New flag bits.
opcodes/
* sparc-opc.c (sparc_opcodes): Annotate table with HWCAP flag
bits. Fix "fchksm16" mnemonic.
2011-09-22 04:49:16 +08:00
|
|
|
|
|
|
|
|
|
#ifndef TE_SOLARIS
|
|
|
|
|
/* Bitmask of instruction types seen so far, used to populate the
|
|
|
|
|
GNU attributes section with hwcap information. */
|
2014-10-09 20:16:53 +08:00
|
|
|
|
static bfd_uint64_t hwcap_seen;
|
Annotate sparc objects with cpu hardware capabilities used.
bfd/
* elfxx-sparc.c (_bfd_sparc_elf_merge_private_bfd_data): New.
* elfxx-sparc.h: Declare it.
* elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Call it.
* elf64-sparc.c (elf64_sparc_merge_private_bfd_data): Likewise.
binutils/
* readelf.c (display_sparc_hwcaps): New.
(display_sparc_gnu_attribute): New.
(process_sparc_specific): New.
(process_arch_specific): When EM_SPARC, EM_SPARC32PLUS,
or EM_SPARCV9 invoke process_sparc_specific.
gas/
* config/tc-sparc.c (hwcap_seen): New bitmask, defined when
not TE_SOLARIS.
(sparc_ip): When not TE_SOLARIS, accumulate hwcap bits from
sparc_opcode->flags of instruction into hwcap_seen.
(sparc_md_end): Create Tag_GNU_Sparc_HWCAPS attribute if
hwcap_seen is non-zero and not TE_SOLARIS.
gas/testsuite/
* gas/sparc/hpcvis3.s: Update for fixed fchksum16 mnemonic.
* gas/sparc/hpcvis3.d: Likewise.
include/elf/
* sparc.h (Tag_GNU_Sparc_HWCAPS): New object attribute.
(ELF_SPARC_HWCAP_*): New HWCAPS bitmask values.
include/opcode/
* sparc.h (struct sparc_opcode): Expand 'flags' to unsigned int.
(F_MUL32, F_DIV32, F_FSMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING): New flag bits.
opcodes/
* sparc-opc.c (sparc_opcodes): Annotate table with HWCAP flag
bits. Fix "fchksm16" mnemonic.
2011-09-22 04:49:16 +08:00
|
|
|
|
#endif
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2014-10-09 20:16:53 +08:00
|
|
|
|
static bfd_uint64_t hwcap_allowed;
|
2011-09-22 08:03:30 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
static int architecture_requested;
|
|
|
|
|
static int warn_on_bump;
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
2016-09-14 22:10:49 +08:00
|
|
|
|
/* Non-zero if the assembler should generate error if an undeclared
|
|
|
|
|
g[23] register has been used in -64. */
|
1999-07-31 05:39:53 +08:00
|
|
|
|
static int no_undeclared_regs;
|
|
|
|
|
|
2016-09-14 22:10:49 +08:00
|
|
|
|
/* Non-zero if the assembler should generate a warning if an
|
|
|
|
|
unpredictable DCTI (delayed control transfer instruction) couple is
|
|
|
|
|
found. */
|
|
|
|
|
static int dcti_couples_detect;
|
|
|
|
|
|
2000-05-26 14:45:55 +08:00
|
|
|
|
/* Non-zero if we should try to relax jumps and calls. */
|
|
|
|
|
static int sparc_relax;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Non-zero if we are generating PIC code. */
|
|
|
|
|
int sparc_pic_code;
|
|
|
|
|
|
|
|
|
|
/* Non-zero if we should give an error when misaligned data is seen. */
|
|
|
|
|
static int enforce_aligned_data;
|
|
|
|
|
|
|
|
|
|
extern int target_big_endian;
|
|
|
|
|
|
|
|
|
|
static int target_little_endian_data;
|
|
|
|
|
|
1999-07-31 05:39:53 +08:00
|
|
|
|
/* Symbols for global registers on v9. */
|
|
|
|
|
static symbolS *globals[8];
|
|
|
|
|
|
2003-08-30 04:20:18 +08:00
|
|
|
|
/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
|
|
|
|
|
int sparc_cie_data_alignment;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* V9 and 86x have big and little endian data, but instructions are always big
|
|
|
|
|
endian. The sparclet has bi-endian support but both data and insns have
|
|
|
|
|
the same endianness. Global `target_big_endian' is used for data.
|
|
|
|
|
The following macro is used for instructions. */
|
|
|
|
|
#ifndef INSN_BIG_ENDIAN
|
|
|
|
|
#define INSN_BIG_ENDIAN (target_big_endian \
|
|
|
|
|
|| default_arch_type == sparc86x \
|
|
|
|
|
|| SPARC_OPCODE_ARCH_V9_P (max_architecture))
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Handle of the OPCODE hash table. */
|
2020-08-18 16:57:21 +08:00
|
|
|
|
static htab_t op_hash;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2008-08-13 07:39:31 +08:00
|
|
|
|
static void s_data1 (void);
|
|
|
|
|
static void s_seg (int);
|
|
|
|
|
static void s_proc (int);
|
|
|
|
|
static void s_reserve (int);
|
|
|
|
|
static void s_common (int);
|
|
|
|
|
static void s_empty (int);
|
|
|
|
|
static void s_uacons (int);
|
|
|
|
|
static void s_ncons (int);
|
|
|
|
|
static void s_register (int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
const pseudo_typeS md_pseudo_table[] =
|
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
{"align", s_align_bytes, 0}, /* Defaulting is invalid (0). */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"common", s_common, 0},
|
|
|
|
|
{"empty", s_empty, 0},
|
|
|
|
|
{"global", s_globl, 0},
|
|
|
|
|
{"half", cons, 2},
|
1999-06-07 20:40:36 +08:00
|
|
|
|
{"nword", s_ncons, 0},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"optim", s_ignore, 0},
|
|
|
|
|
{"proc", s_proc, 0},
|
|
|
|
|
{"reserve", s_reserve, 0},
|
|
|
|
|
{"seg", s_seg, 0},
|
|
|
|
|
{"skip", s_space, 0},
|
|
|
|
|
{"word", cons, 4},
|
|
|
|
|
{"xword", cons, 8},
|
|
|
|
|
{"uahalf", s_uacons, 2},
|
|
|
|
|
{"uaword", s_uacons, 4},
|
|
|
|
|
{"uaxword", s_uacons, 8},
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* These are specific to sparc/svr4. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"2byte", s_uacons, 2},
|
|
|
|
|
{"4byte", s_uacons, 4},
|
|
|
|
|
{"8byte", s_uacons, 8},
|
1999-07-31 05:39:53 +08:00
|
|
|
|
{"register", s_register, 0},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{NULL, 0, 0},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* This array holds the chars that always start a comment. If the
|
2000-07-27 12:05:05 +08:00
|
|
|
|
pre-processor is disabled, these aren't very useful. */
|
|
|
|
|
const char comment_chars[] = "!"; /* JF removed '|' from
|
|
|
|
|
comment_chars. */
|
1999-05-03 15:29:11 +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'
|
2000-07-27 12:05:05 +08:00
|
|
|
|
.line and .file directives will appear in the pre-processed output. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* 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
|
2000-07-27 12:05:05 +08:00
|
|
|
|
#NO_APP at the beginning of its output. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Also note that comments started like this one will always
|
2000-07-27 12:05:05 +08:00
|
|
|
|
work if '/' isn't otherwise defined. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
const char line_comment_chars[] = "#";
|
|
|
|
|
|
2000-06-09 08:00:04 +08:00
|
|
|
|
const char line_separator_chars[] = ";";
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Chars that can be used to separate mant from exp in floating point
|
|
|
|
|
nums. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
const char EXP_CHARS[] = "eE";
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Chars that mean this number is a floating point constant.
|
|
|
|
|
As in 0f12.456
|
|
|
|
|
or 0d1.2345e12 */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
const char FLT_CHARS[] = "rRsSfFdDxXpP";
|
|
|
|
|
|
|
|
|
|
/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
|
|
|
|
|
changed in read.c. Ideally it shouldn't have to know about it at all,
|
|
|
|
|
but nothing is ideal around here. */
|
|
|
|
|
|
2005-11-09 00:37:56 +08:00
|
|
|
|
#define isoctal(c) ((unsigned) ((c) - '0') < 8)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
struct sparc_it
|
|
|
|
|
{
|
2016-04-01 20:07:50 +08:00
|
|
|
|
const char *error;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
unsigned long opcode;
|
|
|
|
|
struct nlist *nlistp;
|
|
|
|
|
expressionS exp;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
expressionS exp2;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
int pcrel;
|
|
|
|
|
bfd_reloc_code_real_type reloc;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct sparc_it the_insn, set_insn;
|
|
|
|
|
|
2008-08-13 07:39:31 +08:00
|
|
|
|
static void output_insn (const struct sparc_opcode *, struct sparc_it *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Table of arguments to -A.
|
|
|
|
|
The sparc_opcode_arch table in sparc-opc.c is insufficient and incorrect
|
|
|
|
|
for this use. That table is for opcodes only. This table is for opcodes
|
|
|
|
|
and file formats. */
|
|
|
|
|
|
2013-08-06 00:11:07 +08:00
|
|
|
|
enum sparc_arch_types {v6, v7, v8, leon, sparclet, sparclite, sparc86x, v8plus,
|
2000-10-20 18:38:47 +08:00
|
|
|
|
v8plusa, v9, v9a, v9b, v9_64};
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
static struct sparc_arch {
|
2016-02-26 00:55:21 +08:00
|
|
|
|
const char *name;
|
|
|
|
|
const char *opcode_arch;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
enum sparc_arch_types arch_type;
|
|
|
|
|
/* Default word size, as specified during configuration.
|
|
|
|
|
A value of zero means can't be used to specify default architecture. */
|
|
|
|
|
int default_arch_size;
|
|
|
|
|
/* Allowable arg to -A? */
|
|
|
|
|
int user_option_p;
|
gas,opcodes: fix hardware capabilities bumping in the sparc assembler.
When the assembler finds an instruction which is part of a higher
opcode architecture it bumps the current opcode architecture. For
example:
$ echo "mwait" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
However, when two instructions pertaining to the same opcode
architecture but associated to different SPARC hardware capabilities
are found in the input stream, and no GAS architecture is specified in
the command line, the assembler bangs:
$ echo "mwait; wr %g0,%g1,%mcdper" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
{standard input}:1: Error: Hardware capability "sparc5" not enabled for "wr".
... and it should'nt, as WRMCDPER pertains to the same architecture
level than MWAIT.
This patch fixes this by extending the definition of sparc opcode
architectures to contain a set of hardware capabilities and making the
assembler to take these capabilities into account when updating the
set of allowed hwcaps when an architecture bump is triggered by some
instruction.
This way, hwcaps associated to architecture levels are maintained in
opcodes, while the assembler keeps the flexibiity of defining GAS
architectures including additional hwcaps (like -Asparcfmaf or the
v8plus* variants).
A test covering this failure case is included.
gas/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c: Move HWS_* and HWS2_* definitions to
opcodes/sparc-opc.c.
(sparc_arch): Clarify the new role of the hwcap_allowed and
hwcap2_allowed fields.
(sparc_arch_table): Remove HWS_* and HWS2_* instances from
hwcap_allowed and hwcap2_allowed respectively.
(md_parse_option): Include the opcode arch hwcaps when processing
-A.
(sparc_ip): Use the current opcode arch hwcaps to update
hwcap_allowed, as well of the hwcaps of the instruction triggering
the bump.
* testsuite/gas/sparc/hwcaps-bump.s: New file.
* testsuite/gas/sparc/hwcaps-bump.l: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run tests in
hwcaps-bump.
include/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and
hwcaps2.
opcodes/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (HWS_V8): Definition moved from
gas/config/tc-sparc.c.
(HWS_V9): Likewise.
(HWS_VA): Likewise.
(HWS_VB): Likewise.
(HWS_VC): Likewise.
(HWS_VD): Likewise.
(HWS_VE): Likewise.
(HWS_VV): Likewise.
(HWS_VM): Likewise.
(HWS2_VM): Likewise.
(sparc_opcode_archs): Initialize hwcaps and hwcaps2 fields of
existing entries.
2016-11-22 20:40:37 +08:00
|
|
|
|
/* Extra hardware capabilities allowed. These are added to the
|
|
|
|
|
hardware capabilities associated with the opcode
|
|
|
|
|
architecture. */
|
2011-09-22 08:03:30 +08:00
|
|
|
|
int hwcap_allowed;
|
2014-10-09 20:16:53 +08:00
|
|
|
|
int hwcap2_allowed;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
} sparc_arch_table[] = {
|
2014-10-09 20:16:53 +08:00
|
|
|
|
{ "v6", "v6", v6, 0, 1, 0, 0 },
|
|
|
|
|
{ "v7", "v7", v7, 0, 1, 0, 0 },
|
gas,opcodes: fix hardware capabilities bumping in the sparc assembler.
When the assembler finds an instruction which is part of a higher
opcode architecture it bumps the current opcode architecture. For
example:
$ echo "mwait" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
However, when two instructions pertaining to the same opcode
architecture but associated to different SPARC hardware capabilities
are found in the input stream, and no GAS architecture is specified in
the command line, the assembler bangs:
$ echo "mwait; wr %g0,%g1,%mcdper" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
{standard input}:1: Error: Hardware capability "sparc5" not enabled for "wr".
... and it should'nt, as WRMCDPER pertains to the same architecture
level than MWAIT.
This patch fixes this by extending the definition of sparc opcode
architectures to contain a set of hardware capabilities and making the
assembler to take these capabilities into account when updating the
set of allowed hwcaps when an architecture bump is triggered by some
instruction.
This way, hwcaps associated to architecture levels are maintained in
opcodes, while the assembler keeps the flexibiity of defining GAS
architectures including additional hwcaps (like -Asparcfmaf or the
v8plus* variants).
A test covering this failure case is included.
gas/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c: Move HWS_* and HWS2_* definitions to
opcodes/sparc-opc.c.
(sparc_arch): Clarify the new role of the hwcap_allowed and
hwcap2_allowed fields.
(sparc_arch_table): Remove HWS_* and HWS2_* instances from
hwcap_allowed and hwcap2_allowed respectively.
(md_parse_option): Include the opcode arch hwcaps when processing
-A.
(sparc_ip): Use the current opcode arch hwcaps to update
hwcap_allowed, as well of the hwcaps of the instruction triggering
the bump.
* testsuite/gas/sparc/hwcaps-bump.s: New file.
* testsuite/gas/sparc/hwcaps-bump.l: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run tests in
hwcaps-bump.
include/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and
hwcaps2.
opcodes/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (HWS_V8): Definition moved from
gas/config/tc-sparc.c.
(HWS_V9): Likewise.
(HWS_VA): Likewise.
(HWS_VB): Likewise.
(HWS_VC): Likewise.
(HWS_VD): Likewise.
(HWS_VE): Likewise.
(HWS_VV): Likewise.
(HWS_VM): Likewise.
(HWS2_VM): Likewise.
(sparc_opcode_archs): Initialize hwcaps and hwcaps2 fields of
existing entries.
2016-11-22 20:40:37 +08:00
|
|
|
|
{ "v8", "v8", v8, 32, 1, 0, 0 },
|
|
|
|
|
{ "v8a", "v8", v8, 32, 1, 0, 0 },
|
|
|
|
|
{ "sparc", "v9", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "sparcvis", "v9a", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "sparcvis2", "v9b", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "sparcfmaf", "v9b", v9, 0, 1, HWCAP_FMAF, 0 },
|
|
|
|
|
{ "sparcima", "v9b", v9, 0, 1, HWCAP_FMAF|HWCAP_IMA, 0 },
|
|
|
|
|
{ "sparcvis3", "v9b", v9, 0, 1, HWCAP_FMAF|HWCAP_VIS3|HWCAP_HPC, 0 },
|
|
|
|
|
{ "sparcvis3r", "v9b", v9, 0, 1, HWCAP_FMAF|HWCAP_VIS3|HWCAP_HPC|HWCAP_FJFMAU, 0 },
|
|
|
|
|
|
|
|
|
|
{ "sparc4", "v9v", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "sparc5", "v9m", v9, 0, 1, 0, 0 },
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
{ "sparc6", "m8", v9, 0, 1, 0, 0 },
|
gas,opcodes: fix hardware capabilities bumping in the sparc assembler.
When the assembler finds an instruction which is part of a higher
opcode architecture it bumps the current opcode architecture. For
example:
$ echo "mwait" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
However, when two instructions pertaining to the same opcode
architecture but associated to different SPARC hardware capabilities
are found in the input stream, and no GAS architecture is specified in
the command line, the assembler bangs:
$ echo "mwait; wr %g0,%g1,%mcdper" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
{standard input}:1: Error: Hardware capability "sparc5" not enabled for "wr".
... and it should'nt, as WRMCDPER pertains to the same architecture
level than MWAIT.
This patch fixes this by extending the definition of sparc opcode
architectures to contain a set of hardware capabilities and making the
assembler to take these capabilities into account when updating the
set of allowed hwcaps when an architecture bump is triggered by some
instruction.
This way, hwcaps associated to architecture levels are maintained in
opcodes, while the assembler keeps the flexibiity of defining GAS
architectures including additional hwcaps (like -Asparcfmaf or the
v8plus* variants).
A test covering this failure case is included.
gas/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c: Move HWS_* and HWS2_* definitions to
opcodes/sparc-opc.c.
(sparc_arch): Clarify the new role of the hwcap_allowed and
hwcap2_allowed fields.
(sparc_arch_table): Remove HWS_* and HWS2_* instances from
hwcap_allowed and hwcap2_allowed respectively.
(md_parse_option): Include the opcode arch hwcaps when processing
-A.
(sparc_ip): Use the current opcode arch hwcaps to update
hwcap_allowed, as well of the hwcaps of the instruction triggering
the bump.
* testsuite/gas/sparc/hwcaps-bump.s: New file.
* testsuite/gas/sparc/hwcaps-bump.l: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run tests in
hwcaps-bump.
include/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and
hwcaps2.
opcodes/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (HWS_V8): Definition moved from
gas/config/tc-sparc.c.
(HWS_V9): Likewise.
(HWS_VA): Likewise.
(HWS_VB): Likewise.
(HWS_VC): Likewise.
(HWS_VD): Likewise.
(HWS_VE): Likewise.
(HWS_VV): Likewise.
(HWS_VM): Likewise.
(HWS2_VM): Likewise.
(sparc_opcode_archs): Initialize hwcaps and hwcaps2 fields of
existing entries.
2016-11-22 20:40:37 +08:00
|
|
|
|
|
|
|
|
|
{ "leon", "leon", leon, 32, 1, 0, 0 },
|
|
|
|
|
{ "sparclet", "sparclet", sparclet, 32, 1, 0, 0 },
|
|
|
|
|
{ "sparclite", "sparclite", sparclite, 32, 1, 0, 0 },
|
|
|
|
|
{ "sparc86x", "sparclite", sparc86x, 32, 1, 0, 0 },
|
|
|
|
|
|
|
|
|
|
{ "v8plus", "v9", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "v8plusa", "v9a", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "v8plusb", "v9b", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "v8plusc", "v9c", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "v8plusd", "v9d", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "v8pluse", "v9e", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "v8plusv", "v9v", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
{ "v8plusm", "v9m", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
{ "v8plusm8", "m8", v9, 0, 1, HWCAP_V8PLUS, 0 },
|
|
|
|
|
|
gas,opcodes: fix hardware capabilities bumping in the sparc assembler.
When the assembler finds an instruction which is part of a higher
opcode architecture it bumps the current opcode architecture. For
example:
$ echo "mwait" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
However, when two instructions pertaining to the same opcode
architecture but associated to different SPARC hardware capabilities
are found in the input stream, and no GAS architecture is specified in
the command line, the assembler bangs:
$ echo "mwait; wr %g0,%g1,%mcdper" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
{standard input}:1: Error: Hardware capability "sparc5" not enabled for "wr".
... and it should'nt, as WRMCDPER pertains to the same architecture
level than MWAIT.
This patch fixes this by extending the definition of sparc opcode
architectures to contain a set of hardware capabilities and making the
assembler to take these capabilities into account when updating the
set of allowed hwcaps when an architecture bump is triggered by some
instruction.
This way, hwcaps associated to architecture levels are maintained in
opcodes, while the assembler keeps the flexibiity of defining GAS
architectures including additional hwcaps (like -Asparcfmaf or the
v8plus* variants).
A test covering this failure case is included.
gas/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c: Move HWS_* and HWS2_* definitions to
opcodes/sparc-opc.c.
(sparc_arch): Clarify the new role of the hwcap_allowed and
hwcap2_allowed fields.
(sparc_arch_table): Remove HWS_* and HWS2_* instances from
hwcap_allowed and hwcap2_allowed respectively.
(md_parse_option): Include the opcode arch hwcaps when processing
-A.
(sparc_ip): Use the current opcode arch hwcaps to update
hwcap_allowed, as well of the hwcaps of the instruction triggering
the bump.
* testsuite/gas/sparc/hwcaps-bump.s: New file.
* testsuite/gas/sparc/hwcaps-bump.l: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run tests in
hwcaps-bump.
include/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and
hwcaps2.
opcodes/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (HWS_V8): Definition moved from
gas/config/tc-sparc.c.
(HWS_V9): Likewise.
(HWS_VA): Likewise.
(HWS_VB): Likewise.
(HWS_VC): Likewise.
(HWS_VD): Likewise.
(HWS_VE): Likewise.
(HWS_VV): Likewise.
(HWS_VM): Likewise.
(HWS2_VM): Likewise.
(sparc_opcode_archs): Initialize hwcaps and hwcaps2 fields of
existing entries.
2016-11-22 20:40:37 +08:00
|
|
|
|
{ "v9", "v9", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "v9a", "v9a", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "v9b", "v9b", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "v9c", "v9c", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "v9d", "v9d", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "v9e", "v9e", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "v9v", "v9v", v9, 0, 1, 0, 0 },
|
|
|
|
|
{ "v9m", "v9m", v9, 0, 1, 0, 0 },
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
{ "v9m8", "m8", v9, 0, 1, 0, 0 },
|
2014-10-09 20:16:53 +08:00
|
|
|
|
|
2014-07-04 13:36:40 +08:00
|
|
|
|
/* This exists to allow configure.tgt to pass one
|
1999-05-03 15:29:11 +08:00
|
|
|
|
value to specify both the default machine and default word size. */
|
gas,opcodes: fix hardware capabilities bumping in the sparc assembler.
When the assembler finds an instruction which is part of a higher
opcode architecture it bumps the current opcode architecture. For
example:
$ echo "mwait" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
However, when two instructions pertaining to the same opcode
architecture but associated to different SPARC hardware capabilities
are found in the input stream, and no GAS architecture is specified in
the command line, the assembler bangs:
$ echo "mwait; wr %g0,%g1,%mcdper" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
{standard input}:1: Error: Hardware capability "sparc5" not enabled for "wr".
... and it should'nt, as WRMCDPER pertains to the same architecture
level than MWAIT.
This patch fixes this by extending the definition of sparc opcode
architectures to contain a set of hardware capabilities and making the
assembler to take these capabilities into account when updating the
set of allowed hwcaps when an architecture bump is triggered by some
instruction.
This way, hwcaps associated to architecture levels are maintained in
opcodes, while the assembler keeps the flexibiity of defining GAS
architectures including additional hwcaps (like -Asparcfmaf or the
v8plus* variants).
A test covering this failure case is included.
gas/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c: Move HWS_* and HWS2_* definitions to
opcodes/sparc-opc.c.
(sparc_arch): Clarify the new role of the hwcap_allowed and
hwcap2_allowed fields.
(sparc_arch_table): Remove HWS_* and HWS2_* instances from
hwcap_allowed and hwcap2_allowed respectively.
(md_parse_option): Include the opcode arch hwcaps when processing
-A.
(sparc_ip): Use the current opcode arch hwcaps to update
hwcap_allowed, as well of the hwcaps of the instruction triggering
the bump.
* testsuite/gas/sparc/hwcaps-bump.s: New file.
* testsuite/gas/sparc/hwcaps-bump.l: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run tests in
hwcaps-bump.
include/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and
hwcaps2.
opcodes/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (HWS_V8): Definition moved from
gas/config/tc-sparc.c.
(HWS_V9): Likewise.
(HWS_VA): Likewise.
(HWS_VB): Likewise.
(HWS_VC): Likewise.
(HWS_VD): Likewise.
(HWS_VE): Likewise.
(HWS_VV): Likewise.
(HWS_VM): Likewise.
(HWS2_VM): Likewise.
(sparc_opcode_archs): Initialize hwcaps and hwcaps2 fields of
existing entries.
2016-11-22 20:40:37 +08:00
|
|
|
|
{ "v9-64", "v9", v9, 64, 0, 0, 0 },
|
2014-10-09 20:16:53 +08:00
|
|
|
|
{ NULL, NULL, v8, 0, 0, 0, 0 }
|
1999-05-03 15:29:11 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Variant of default_arch */
|
|
|
|
|
static enum sparc_arch_types default_arch_type;
|
|
|
|
|
|
|
|
|
|
static struct sparc_arch *
|
2016-02-26 00:55:21 +08:00
|
|
|
|
lookup_arch (const char *name)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
struct sparc_arch *sa;
|
|
|
|
|
|
|
|
|
|
for (sa = &sparc_arch_table[0]; sa->name != NULL; sa++)
|
|
|
|
|
if (strcmp (sa->name, name) == 0)
|
|
|
|
|
break;
|
|
|
|
|
if (sa->name == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
return sa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize the default opcode arch and word size from the default
|
|
|
|
|
architecture name. */
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
init_default_arch (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
struct sparc_arch *sa = lookup_arch (default_arch);
|
|
|
|
|
|
|
|
|
|
if (sa == NULL
|
|
|
|
|
|| sa->default_arch_size == 0)
|
|
|
|
|
as_fatal (_("Invalid default architecture, broken assembler."));
|
|
|
|
|
|
|
|
|
|
max_architecture = sparc_opcode_lookup_arch (sa->opcode_arch);
|
|
|
|
|
if (max_architecture == SPARC_OPCODE_ARCH_BAD)
|
|
|
|
|
as_fatal (_("Bad opcode table, broken assembler."));
|
|
|
|
|
default_arch_size = sparc_arch_size = sa->default_arch_size;
|
|
|
|
|
default_init_p = 1;
|
|
|
|
|
default_arch_type = sa->arch_type;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-30 07:13:51 +08:00
|
|
|
|
/* Called by TARGET_MACH. */
|
|
|
|
|
|
|
|
|
|
unsigned long
|
|
|
|
|
sparc_mach (void)
|
|
|
|
|
{
|
|
|
|
|
/* We don't get a chance to initialize anything before we're called,
|
|
|
|
|
so handle that now. */
|
|
|
|
|
if (! default_init_p)
|
|
|
|
|
init_default_arch ();
|
|
|
|
|
|
|
|
|
|
return sparc_arch_size == 64 ? bfd_mach_sparc_v9 : bfd_mach_sparc;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Called by TARGET_FORMAT. */
|
|
|
|
|
|
|
|
|
|
const char *
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_target_format (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
/* We don't get a chance to initialize anything before we're called,
|
|
|
|
|
so handle that now. */
|
|
|
|
|
if (! default_init_p)
|
|
|
|
|
init_default_arch ();
|
|
|
|
|
|
bfd/
* config.bfd (sparc-*-vxworks*): New stanza.
* configure.in (bfd_elf32_sparc_vxworks_vec): New stanza.
(bfd_elf32_sparc_vec, bfd_elf64_sparc_vec): Add elf-vxworks.lo.
* configure: Regenerate.
* elf32-sparc.c: Include elf-vxworks.h.
(elf32_sparc_vxworks_link_hash_table_create: New.
(elf32_sparc_vxworks_final_write_processing): New.
(TARGET_BIG_SYM): Override for VxWorks.
(TARGET_BIG_NAME, ELF_MINPAGESIZE): Likewise.
(bfd_elf32_bfd_link_hash_table_create): Likewise.
(elf_backend_want_got_plt, elf_backend_plt_readonly): Likewise.
(elf_backend_got_header_size, elf_backend_add_symbol_hook): Likewise.
(elf_backend_link_output_symbol_hook): Likewise.
(elf_backend_emit_relocs): Likewise.
(elf_backend_final_write_processing, elf32_bed): Likewise.
* elfxx-sparc.c: Include libiberty.h and elf-vxworks.h.
(sparc_vxworks_exec_plt0_entry, sparc_vxworks_exec_plt_entry): New.
(sparc_vxworks_shared_plt0_entry, sparc_vxworks_shared_plt_entry): New.
(_bfd_sparc_elf_link_hash_table_create): Don't initialize
build_plt_entry here.
(create_got_section): Initialize sgotplt for VxWorks.
(_bfd_sparc_elf_create_dynamic_sections): Initialize build_plt_entry,
plt_header_size and plt_entry_size, with new VxWorks-specific settings.
Call elf_vxworks_create_dynamic_sections for VxWorks.
(allocate_dynrelocs): Use plt_header_size and plt_entry_size.
Allocate room for .got.plt and .rela.plt.unloaded entries on VxWorks.
(_bfd_sparc_elf_size_dynamic_sections): Don't allocate a nop in .plt
for VxWorks. Check for the .got.plt section.
(sparc_vxworks_build_plt_entry): New function.
(_bfd_sparc_elf_finish_dynamic_symbol): Add handling of VxWorks PLTs.
Don't make _GLOBAL_OFFSET_TABLE_ and _PROCEDURE_LINKAGE_TABLE_
absolute on VxWorks.
(sparc32_finish_dyn): Add special handling for DT_RELASZ
and DT_PLTGOT on VxWorks.
(sparc_vxworks_finish_exec_plt): New.
(sparc_vxworks_finish_shared_plt): New.
(_bfd_sparc_elf_finish_dynamic_sections): Call them.
Use plt_header_size and plt_entry_size.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table): Add is_vxworks,
srelplt2, sgotplt, plt_header_size and plt_entry_size fields.
* Makefile.am (elfxx-sparc.lo): Depend on elf-vxworks.h.
(elf32-sparc.lo): Likewise.
* Makefile.in: Regenerate.
* targets.c (bfd_elf32_sparc_vxworks_vec): Declare.
(_bfd_target_vector): Add a pointer to it.
gas/
* config/tc-sparc.c (sparc_target_format): Handle TE_VXWORKS.
(GOTT_BASE, GOTT_INDEX): New.
(tc_gen_reloc): Don't alter relocations against GOTT_BASE and
GOTT_INDEX when generating VxWorks PIC.
* configure.tgt (sparc*-*-vxworks*): Remove this special case;
use the generic *-*-vxworks* stanza instead.
gas/testsuite/
* gas/sparc/vxworks-pic.s, gas/sparc/vxworks-pic.d: New test.
* gas/sparc/sparc.exp: Run it. Remove sparc*-*-vxworks* XFAILs.
ld/
* configure.tgt (sparc*-*-vxworks*): New stanza.
* emulparams/elf32_sparc_vxworks.sh: New file.
* Makefile.am (ALL_EMULATIONS): Add eelf32_sparc_vxworks.o.
(eelf32_sparc_vxworks.c): New rule.
* Makefile.in: Regenerate.
ld/testsuite/
* ld-sparc/vxworks1.dd, ld-sparc/vxworks1.ld, ld-sparc/vxworks1-lib.dd,
* ld-sparc/vxworks1-lib.nd, ld-sparc/vxworks1-lib.rd,
* ld-sparc/vxworks1-lib.s, ld-sparc/vxworks1.rd, ld-sparc/vxworks1.s,
* ld-sparc/vxworks1-static.d, ld-sparc/vxworks2.s,
* ld-sparc/vxworks2.sd, ld-sparc/vxworks2-static.sd: New tests.
* ld-sparc/sparc.exp: Run them.
2006-04-05 20:41:59 +08:00
|
|
|
|
#ifdef TE_VXWORKS
|
|
|
|
|
return "elf32-sparc-vxworks";
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-10-19 07:58:52 +08:00
|
|
|
|
return sparc_arch_size == 64 ? ELF64_TARGET_FORMAT : ELF_TARGET_FORMAT;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* md_parse_option
|
1999-05-03 15:29:11 +08:00
|
|
|
|
* 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.
|
|
|
|
|
*
|
2013-08-06 00:11:07 +08:00
|
|
|
|
* -Av6, -Av7, -Av8, -Aleon, -Asparclite, -Asparclet
|
1999-05-03 15:29:11 +08:00
|
|
|
|
* Standard 32 bit architectures.
|
2000-10-20 18:38:47 +08:00
|
|
|
|
* -Av9, -Av9a, -Av9b
|
1999-05-03 15:29:11 +08:00
|
|
|
|
* Sparc64 in either a 32 or 64 bit world (-32/-64 says which).
|
|
|
|
|
* This used to only mean 64 bits, but properly specifying it
|
|
|
|
|
* complicated gcc's ASM_SPECs, so now opcode selection is
|
|
|
|
|
* specified orthogonally to word size (except when specifying
|
|
|
|
|
* the default, but that is an internal implementation detail).
|
2000-10-20 18:38:47 +08:00
|
|
|
|
* -Av8plus, -Av8plusa, -Av8plusb
|
|
|
|
|
* Same as -Av9{,a,b}.
|
|
|
|
|
* -xarch=v8plus, -xarch=v8plusa, -xarch=v8plusb
|
|
|
|
|
* Same as -Av8plus{,a,b} -32, for compatibility with Sun's
|
|
|
|
|
* assembler.
|
|
|
|
|
* -xarch=v9, -xarch=v9a, -xarch=v9b
|
|
|
|
|
* Same as -Av9{,a,b} -64, for compatibility with Sun's
|
2000-08-17 01:52:37 +08:00
|
|
|
|
* assembler.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
*
|
|
|
|
|
* Select the architecture and possibly the file format.
|
|
|
|
|
* Instructions or features not supported by the selected
|
|
|
|
|
* architecture cause fatal errors.
|
|
|
|
|
*
|
|
|
|
|
* The default is to start at v6, and bump the architecture up
|
|
|
|
|
* whenever an instruction is seen at a higher level. In 32 bit
|
|
|
|
|
* environments, v9 is not bumped up to, the user must pass
|
2000-10-20 18:38:47 +08:00
|
|
|
|
* -Av8plus{,a,b}.
|
1999-05-03 15:29:11 +08: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
|
|
|
|
|
* as errors. Note that in the 32 bit environment specifying
|
|
|
|
|
* -Av8plus does not automatically create a v8plus object file, a
|
|
|
|
|
* v9 insn must be seen.
|
|
|
|
|
*
|
|
|
|
|
* If both an architecture and -bump are specified, the
|
|
|
|
|
* architecture starts at the specified level, but bumps are
|
|
|
|
|
* 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 v8plus object files unless v9
|
|
|
|
|
* insns are seen.
|
|
|
|
|
*
|
|
|
|
|
* Note:
|
|
|
|
|
* Bumping between incompatible architectures is always an
|
|
|
|
|
* error. For example, from sparclite to v9.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-06-08 15:37:16 +08:00
|
|
|
|
const char *md_shortopts = "A:K:VQ:sq";
|
1999-05-03 15:29:11 +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},
|
|
|
|
|
#define OPTION_XARCH (OPTION_MD_BASE + 2)
|
|
|
|
|
{"xarch", required_argument, NULL, OPTION_XARCH},
|
|
|
|
|
#define OPTION_32 (OPTION_MD_BASE + 3)
|
|
|
|
|
{"32", no_argument, NULL, OPTION_32},
|
|
|
|
|
#define OPTION_64 (OPTION_MD_BASE + 4)
|
|
|
|
|
{"64", no_argument, NULL, OPTION_64},
|
|
|
|
|
#define OPTION_TSO (OPTION_MD_BASE + 5)
|
|
|
|
|
{"TSO", no_argument, NULL, OPTION_TSO},
|
|
|
|
|
#define OPTION_PSO (OPTION_MD_BASE + 6)
|
|
|
|
|
{"PSO", no_argument, NULL, OPTION_PSO},
|
|
|
|
|
#define OPTION_RMO (OPTION_MD_BASE + 7)
|
|
|
|
|
{"RMO", no_argument, NULL, OPTION_RMO},
|
|
|
|
|
#ifdef SPARC_BIENDIAN
|
|
|
|
|
#define OPTION_LITTLE_ENDIAN (OPTION_MD_BASE + 8)
|
|
|
|
|
{"EL", no_argument, NULL, OPTION_LITTLE_ENDIAN},
|
|
|
|
|
#define OPTION_BIG_ENDIAN (OPTION_MD_BASE + 9)
|
|
|
|
|
{"EB", no_argument, NULL, OPTION_BIG_ENDIAN},
|
|
|
|
|
#endif
|
|
|
|
|
#define OPTION_ENFORCE_ALIGNED_DATA (OPTION_MD_BASE + 10)
|
|
|
|
|
{"enforce-aligned-data", no_argument, NULL, OPTION_ENFORCE_ALIGNED_DATA},
|
|
|
|
|
#define OPTION_LITTLE_ENDIAN_DATA (OPTION_MD_BASE + 11)
|
|
|
|
|
{"little-endian-data", no_argument, NULL, OPTION_LITTLE_ENDIAN_DATA},
|
1999-07-31 05:39:53 +08:00
|
|
|
|
#define OPTION_NO_UNDECLARED_REGS (OPTION_MD_BASE + 12)
|
|
|
|
|
{"no-undeclared-regs", no_argument, NULL, OPTION_NO_UNDECLARED_REGS},
|
2000-02-28 11:51:32 +08:00
|
|
|
|
#define OPTION_UNDECLARED_REGS (OPTION_MD_BASE + 13)
|
|
|
|
|
{"undeclared-regs", no_argument, NULL, OPTION_UNDECLARED_REGS},
|
2000-05-26 14:45:55 +08:00
|
|
|
|
#define OPTION_RELAX (OPTION_MD_BASE + 14)
|
|
|
|
|
{"relax", no_argument, NULL, OPTION_RELAX},
|
|
|
|
|
#define OPTION_NO_RELAX (OPTION_MD_BASE + 15)
|
|
|
|
|
{"no-relax", no_argument, NULL, OPTION_NO_RELAX},
|
2016-09-14 22:10:49 +08:00
|
|
|
|
#define OPTION_DCTI_COUPLES_DETECT (OPTION_MD_BASE + 16)
|
|
|
|
|
{"dcti-couples-detect", no_argument, NULL, OPTION_DCTI_COUPLES_DETECT},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{NULL, no_argument, NULL, 0}
|
|
|
|
|
};
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
|
|
|
|
size_t md_longopts_size = sizeof (md_longopts);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
int
|
2016-02-27 22:35:32 +08:00
|
|
|
|
md_parse_option (int c, const char *arg)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
/* We don't get a chance to initialize anything before we're called,
|
|
|
|
|
so handle that now. */
|
|
|
|
|
if (! default_init_p)
|
|
|
|
|
init_default_arch ();
|
|
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case OPTION_BUMP:
|
|
|
|
|
warn_on_bump = 1;
|
|
|
|
|
warn_after_architecture = SPARC_OPCODE_ARCH_V6;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_XARCH:
|
2012-11-20 16:37:52 +08:00
|
|
|
|
if (!strncmp (arg, "v9", 2))
|
2000-08-17 01:52:37 +08:00
|
|
|
|
md_parse_option (OPTION_64, NULL);
|
2012-11-20 16:37:52 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!strncmp (arg, "v8", 2)
|
|
|
|
|
|| !strncmp (arg, "v7", 2)
|
|
|
|
|
|| !strncmp (arg, "v6", 2)
|
|
|
|
|
|| !strcmp (arg, "sparclet")
|
|
|
|
|
|| !strcmp (arg, "sparclite")
|
|
|
|
|
|| !strcmp (arg, "sparc86x"))
|
|
|
|
|
md_parse_option (OPTION_32, NULL);
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
case 'A':
|
|
|
|
|
{
|
|
|
|
|
struct sparc_arch *sa;
|
|
|
|
|
enum sparc_opcode_arch_val opcode_arch;
|
|
|
|
|
|
|
|
|
|
sa = lookup_arch (arg);
|
|
|
|
|
if (sa == NULL
|
|
|
|
|
|| ! sa->user_option_p)
|
|
|
|
|
{
|
2000-08-17 01:52:37 +08:00
|
|
|
|
if (c == OPTION_XARCH)
|
|
|
|
|
as_bad (_("invalid architecture -xarch=%s"), arg);
|
|
|
|
|
else
|
|
|
|
|
as_bad (_("invalid architecture -A%s"), arg);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opcode_arch = sparc_opcode_lookup_arch (sa->opcode_arch);
|
|
|
|
|
if (opcode_arch == SPARC_OPCODE_ARCH_BAD)
|
|
|
|
|
as_fatal (_("Bad opcode table, broken assembler."));
|
|
|
|
|
|
2011-09-22 08:03:30 +08:00
|
|
|
|
if (!architecture_requested
|
|
|
|
|
|| opcode_arch > max_architecture)
|
|
|
|
|
max_architecture = opcode_arch;
|
gas,opcodes: fix hardware capabilities bumping in the sparc assembler.
When the assembler finds an instruction which is part of a higher
opcode architecture it bumps the current opcode architecture. For
example:
$ echo "mwait" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
However, when two instructions pertaining to the same opcode
architecture but associated to different SPARC hardware capabilities
are found in the input stream, and no GAS architecture is specified in
the command line, the assembler bangs:
$ echo "mwait; wr %g0,%g1,%mcdper" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
{standard input}:1: Error: Hardware capability "sparc5" not enabled for "wr".
... and it should'nt, as WRMCDPER pertains to the same architecture
level than MWAIT.
This patch fixes this by extending the definition of sparc opcode
architectures to contain a set of hardware capabilities and making the
assembler to take these capabilities into account when updating the
set of allowed hwcaps when an architecture bump is triggered by some
instruction.
This way, hwcaps associated to architecture levels are maintained in
opcodes, while the assembler keeps the flexibiity of defining GAS
architectures including additional hwcaps (like -Asparcfmaf or the
v8plus* variants).
A test covering this failure case is included.
gas/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c: Move HWS_* and HWS2_* definitions to
opcodes/sparc-opc.c.
(sparc_arch): Clarify the new role of the hwcap_allowed and
hwcap2_allowed fields.
(sparc_arch_table): Remove HWS_* and HWS2_* instances from
hwcap_allowed and hwcap2_allowed respectively.
(md_parse_option): Include the opcode arch hwcaps when processing
-A.
(sparc_ip): Use the current opcode arch hwcaps to update
hwcap_allowed, as well of the hwcaps of the instruction triggering
the bump.
* testsuite/gas/sparc/hwcaps-bump.s: New file.
* testsuite/gas/sparc/hwcaps-bump.l: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run tests in
hwcaps-bump.
include/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and
hwcaps2.
opcodes/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (HWS_V8): Definition moved from
gas/config/tc-sparc.c.
(HWS_V9): Likewise.
(HWS_VA): Likewise.
(HWS_VB): Likewise.
(HWS_VC): Likewise.
(HWS_VD): Likewise.
(HWS_VE): Likewise.
(HWS_VV): Likewise.
(HWS_VM): Likewise.
(HWS2_VM): Likewise.
(sparc_opcode_archs): Initialize hwcaps and hwcaps2 fields of
existing entries.
2016-11-22 20:40:37 +08:00
|
|
|
|
|
|
|
|
|
/* The allowed hardware capabilities are the implied by the
|
|
|
|
|
opcodes arch plus any extra capabilities defined in the GAS
|
|
|
|
|
arch. */
|
|
|
|
|
hwcap_allowed
|
|
|
|
|
= (hwcap_allowed
|
|
|
|
|
| (((bfd_uint64_t) sparc_opcode_archs[opcode_arch].hwcaps2) << 32)
|
|
|
|
|
| (((bfd_uint64_t) sa->hwcap2_allowed) << 32)
|
|
|
|
|
| sparc_opcode_archs[opcode_arch].hwcaps
|
|
|
|
|
| sa->hwcap_allowed);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
architecture_requested = 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_SPARC:
|
|
|
|
|
/* Ignore -sparc, used by SunOS make default .s.o rule. */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_ENFORCE_ALIGNED_DATA:
|
|
|
|
|
enforce_aligned_data = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef SPARC_BIENDIAN
|
|
|
|
|
case OPTION_LITTLE_ENDIAN:
|
|
|
|
|
target_big_endian = 0;
|
|
|
|
|
if (default_arch_type != sparclet)
|
|
|
|
|
as_fatal ("This target does not support -EL");
|
|
|
|
|
break;
|
|
|
|
|
case OPTION_LITTLE_ENDIAN_DATA:
|
|
|
|
|
target_little_endian_data = 1;
|
|
|
|
|
target_big_endian = 0;
|
|
|
|
|
if (default_arch_type != sparc86x
|
|
|
|
|
&& default_arch_type != v9)
|
|
|
|
|
as_fatal ("This target does not support --little-endian-data");
|
|
|
|
|
break;
|
|
|
|
|
case OPTION_BIG_ENDIAN:
|
|
|
|
|
target_big_endian = 1;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
case OPTION_32:
|
|
|
|
|
case OPTION_64:
|
|
|
|
|
{
|
|
|
|
|
const char **list, **l;
|
|
|
|
|
|
|
|
|
|
sparc_arch_size = c == OPTION_32 ? 32 : 64;
|
|
|
|
|
list = bfd_target_list ();
|
|
|
|
|
for (l = list; *l != NULL; l++)
|
|
|
|
|
{
|
|
|
|
|
if (sparc_arch_size == 32)
|
|
|
|
|
{
|
2006-10-19 07:58:52 +08:00
|
|
|
|
if (CONST_STRNEQ (*l, "elf32-sparc"))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2006-10-19 07:58:52 +08:00
|
|
|
|
if (CONST_STRNEQ (*l, "elf64-sparc"))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (*l == NULL)
|
|
|
|
|
as_fatal (_("No compiled in support for %d bit object file format"),
|
|
|
|
|
sparc_arch_size);
|
|
|
|
|
free (list);
|
2009-03-19 18:41:46 +08:00
|
|
|
|
|
|
|
|
|
if (sparc_arch_size == 64
|
|
|
|
|
&& max_architecture < SPARC_OPCODE_ARCH_V9)
|
|
|
|
|
max_architecture = SPARC_OPCODE_ARCH_V9;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_TSO:
|
|
|
|
|
sparc_memory_model = MM_TSO;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_PSO:
|
|
|
|
|
sparc_memory_model = MM_PSO;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_RMO:
|
|
|
|
|
sparc_memory_model = MM_RMO;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'V':
|
|
|
|
|
print_version_id ();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Q':
|
|
|
|
|
/* Qy - do emit .comment
|
2000-07-27 12:05:05 +08:00
|
|
|
|
Qn - do not emit .comment. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 's':
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Use .stab instead of .stab.excl. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'q':
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* quick -- Native assembler does fewer checks. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'K':
|
|
|
|
|
if (strcmp (arg, "PIC") != 0)
|
|
|
|
|
as_warn (_("Unrecognized option following -K"));
|
|
|
|
|
else
|
|
|
|
|
sparc_pic_code = 1;
|
|
|
|
|
break;
|
1999-07-31 05:39:53 +08:00
|
|
|
|
|
|
|
|
|
case OPTION_NO_UNDECLARED_REGS:
|
|
|
|
|
no_undeclared_regs = 1;
|
|
|
|
|
break;
|
2000-02-28 11:51:32 +08:00
|
|
|
|
|
|
|
|
|
case OPTION_UNDECLARED_REGS:
|
|
|
|
|
no_undeclared_regs = 0;
|
|
|
|
|
break;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-05-26 14:45:55 +08:00
|
|
|
|
case OPTION_RELAX:
|
|
|
|
|
sparc_relax = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_NO_RELAX:
|
|
|
|
|
sparc_relax = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
2016-09-14 22:10:49 +08:00
|
|
|
|
case OPTION_DCTI_COUPLES_DETECT:
|
|
|
|
|
dcti_couples_detect = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_show_usage (FILE *stream)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
const struct sparc_arch *arch;
|
2000-08-17 01:52:37 +08:00
|
|
|
|
int column;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* We don't get a chance to initialize anything before we're called,
|
|
|
|
|
so handle that now. */
|
|
|
|
|
if (! default_init_p)
|
|
|
|
|
init_default_arch ();
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
fprintf (stream, _("SPARC options:\n"));
|
2000-08-17 01:52:37 +08:00
|
|
|
|
column = 0;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
for (arch = &sparc_arch_table[0]; arch->name; arch++)
|
|
|
|
|
{
|
2000-08-17 01:52:37 +08:00
|
|
|
|
if (!arch->user_option_p)
|
|
|
|
|
continue;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (arch != &sparc_arch_table[0])
|
|
|
|
|
fprintf (stream, " | ");
|
2001-07-23 22:02:13 +08:00
|
|
|
|
if (column + strlen (arch->name) > 70)
|
2000-08-17 01:52:37 +08:00
|
|
|
|
{
|
|
|
|
|
column = 0;
|
|
|
|
|
fputc ('\n', stream);
|
|
|
|
|
}
|
2001-07-23 22:02:13 +08:00
|
|
|
|
column += 5 + 2 + strlen (arch->name);
|
2000-08-17 01:52:37 +08:00
|
|
|
|
fprintf (stream, "-A%s", arch->name);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
2000-08-17 01:52:37 +08:00
|
|
|
|
for (arch = &sparc_arch_table[0]; arch->name; arch++)
|
|
|
|
|
{
|
|
|
|
|
if (!arch->user_option_p)
|
|
|
|
|
continue;
|
|
|
|
|
fprintf (stream, " | ");
|
2001-07-23 22:02:13 +08:00
|
|
|
|
if (column + strlen (arch->name) > 65)
|
2000-08-17 01:52:37 +08:00
|
|
|
|
{
|
|
|
|
|
column = 0;
|
|
|
|
|
fputc ('\n', stream);
|
|
|
|
|
}
|
2001-07-23 22:02:13 +08:00
|
|
|
|
column += 5 + 7 + strlen (arch->name);
|
2000-08-17 01:52:37 +08:00
|
|
|
|
fprintf (stream, "-xarch=%s", arch->name);
|
|
|
|
|
}
|
|
|
|
|
fprintf (stream, _("\n\
|
1999-05-03 15:29:11 +08:00
|
|
|
|
specify variant of SPARC architecture\n\
|
|
|
|
|
-bump warn when assembler switches architectures\n\
|
|
|
|
|
-sparc ignored\n\
|
2000-05-26 14:45:55 +08:00
|
|
|
|
--enforce-aligned-data force .long, etc., to be aligned correctly\n\
|
|
|
|
|
-relax relax jumps and branches (default)\n\
|
|
|
|
|
-no-relax avoid changing any jumps and branches\n"));
|
1999-05-03 15:29:11 +08:00
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-32 create 32 bit object file\n\
|
|
|
|
|
-64 create 64 bit object file\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
[default is %d]\n"), default_arch_size);
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-TSO use Total Store Ordering\n\
|
|
|
|
|
-PSO use Partial Store Ordering\n\
|
|
|
|
|
-RMO use Relaxed Memory Ordering\n"));
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
[default is %s]\n"), (default_arch_size == 64) ? "RMO" : "TSO");
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-KPIC generate PIC\n\
|
|
|
|
|
-V print assembler version number\n\
|
2000-02-28 11:51:32 +08:00
|
|
|
|
-undeclared-regs ignore application global register usage without\n\
|
|
|
|
|
appropriate .register directive (default)\n\
|
|
|
|
|
-no-undeclared-regs force error on application global register usage\n\
|
|
|
|
|
without appropriate .register directive\n\
|
2016-09-14 22:10:49 +08:00
|
|
|
|
--dcti-couples-detect warn when an unpredictable DCTI couple is found\n\
|
1999-05-03 15:29:11 +08:00
|
|
|
|
-q ignored\n\
|
|
|
|
|
-Qy, -Qn ignored\n\
|
|
|
|
|
-s ignored\n"));
|
|
|
|
|
#ifdef SPARC_BIENDIAN
|
|
|
|
|
fprintf (stream, _("\
|
|
|
|
|
-EL generate code for a little endian machine\n\
|
|
|
|
|
-EB generate code for a big endian machine\n\
|
|
|
|
|
--little-endian-data generate code for a machine having big endian\n\
|
2000-04-03 22:10:05 +08:00
|
|
|
|
instructions and little endian data.\n"));
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Native operand size opcode translation. */
|
2016-04-13 16:15:10 +08:00
|
|
|
|
static struct
|
1999-06-07 20:40:36 +08:00
|
|
|
|
{
|
2016-02-26 00:55:21 +08:00
|
|
|
|
const char *name;
|
|
|
|
|
const char *name32;
|
|
|
|
|
const char *name64;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
} native_op_table[] =
|
|
|
|
|
{
|
|
|
|
|
{"ldn", "ld", "ldx"},
|
|
|
|
|
{"ldna", "lda", "ldxa"},
|
|
|
|
|
{"stn", "st", "stx"},
|
|
|
|
|
{"stna", "sta", "stxa"},
|
|
|
|
|
{"slln", "sll", "sllx"},
|
|
|
|
|
{"srln", "srl", "srlx"},
|
|
|
|
|
{"sran", "sra", "srax"},
|
|
|
|
|
{"casn", "cas", "casx"},
|
|
|
|
|
{"casna", "casa", "casxa"},
|
|
|
|
|
{"clrn", "clr", "clrx"},
|
|
|
|
|
{NULL, NULL, NULL},
|
|
|
|
|
};
|
|
|
|
|
|
2006-02-25 09:34:09 +08:00
|
|
|
|
/* sparc64 privileged and hyperprivileged registers. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
struct priv_reg_entry
|
2000-08-04 09:01:32 +08:00
|
|
|
|
{
|
2016-02-26 00:55:21 +08:00
|
|
|
|
const char *name;
|
2000-08-04 09:01:32 +08:00
|
|
|
|
int regnum;
|
|
|
|
|
};
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
struct priv_reg_entry priv_reg_table[] =
|
|
|
|
|
{
|
|
|
|
|
{"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},
|
|
|
|
|
{"fq", 15},
|
2006-02-25 09:34:09 +08:00
|
|
|
|
{"gl", 16},
|
2015-08-25 23:16:34 +08:00
|
|
|
|
{"pmcdper", 23},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"ver", 31},
|
2016-06-17 17:13:30 +08:00
|
|
|
|
{NULL, -1}, /* End marker. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
};
|
|
|
|
|
|
2006-02-25 09:34:09 +08:00
|
|
|
|
struct priv_reg_entry hpriv_reg_table[] =
|
|
|
|
|
{
|
|
|
|
|
{"hpstate", 0},
|
|
|
|
|
{"htstate", 1},
|
|
|
|
|
{"hintp", 3},
|
|
|
|
|
{"htba", 5},
|
|
|
|
|
{"hver", 6},
|
opcodes,gas: sparc: fix rdasr,wrasr,rdpr,wrpr,rdhpr,wrhpr insns.
This patch fixes and expands the definition of the read/write
instructions for ancillary-state, privileged and hyperprivileged
registers in opcodes.
It also adds support for three new v9m hyperprivileged registers:
%hmcdper, %hmcddfr and %hva_mask_nz.
Finally, the patch expands existing tests (and adds several new ones) in
order to cover all the read/write instructions in all its variants.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (rdasr): New macro.
(wrasr): Likewise.
(rdpr): Likewise.
(wrpr): Likewise.
(rdhpr): Likewise.
(wrhpr): Likewise.
(sparc_opcodes): Use the macros above to fix and expand the
definition of read/write instructions from/to
asr/privileged/hyperprivileged instructions.
* sparc-dis.c (v9_hpriv_reg_names): Add %hmcdper, %hmcddfr and
%hva_mask_nz. Prefer softint_set and softint_clear over
set_softint and clear_softint.
(print_insn_sparc): Support %ver in Rd.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (hpriv_reg_table): Add registers %hmcdper,
%hmcddfr and %hva_mask_nz.
(sparc_ip): New handling of asr/privileged/hyperprivileged
registers, adapted to the new form of the sparc opcodes table.
* testsuite/gas/sparc/rdasr.s: New file.
* testsuite/gas/sparc/rdasr.d: Likewise.
* testsuite/gas/sparc/wrasr.s: Likewise.
* testsuite/gas/sparc/wrasr.d: Likewise.
* testsuite/gas/sparc/sparc.exp (sparc_elf_setup): Add rdasr and
wrasr tests.
* testsuite/gas/sparc/rdpr.d: Use -Av9m, as some privileged
registers require it.
* testsuite/gas/sparc/wrpr.s: Complete to cover all privileged
registers and write instruction modalities.
* testsuite/gas/sparc/wrpr.d: Likewise.
* testsuite/gas/sparc/rdhpr.s: Likewise for hyperprivileged
registers.
* testsuite/gas/sparc/rdhpr.d: Likewise.
* testsuite/gas/sparc/wrhpr.s: Likewise.
* testsuite/gas/sparc/wrhpr.d: Likewise.
2016-06-17 17:15:43 +08:00
|
|
|
|
{"hmcdper", 23},
|
|
|
|
|
{"hmcddfr", 24},
|
|
|
|
|
{"hva_mask_nz", 27},
|
2014-03-20 00:43:41 +08:00
|
|
|
|
{"hstick_offset", 28},
|
|
|
|
|
{"hstick_enable", 29},
|
2006-02-25 09:34:09 +08:00
|
|
|
|
{"hstick_cmpr", 31},
|
2016-06-17 17:13:30 +08:00
|
|
|
|
{NULL, -1}, /* End marker. */
|
2006-02-25 09:34:09 +08:00
|
|
|
|
};
|
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
/* v9a or later specific ancillary state registers. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
struct priv_reg_entry v9a_asr_table[] =
|
|
|
|
|
{
|
|
|
|
|
{"tick_cmpr", 23},
|
2000-10-20 18:38:47 +08:00
|
|
|
|
{"sys_tick_cmpr", 25},
|
|
|
|
|
{"sys_tick", 24},
|
2008-04-23 15:49:33 +08:00
|
|
|
|
{"stick_cmpr", 25},
|
|
|
|
|
{"stick", 24},
|
2008-04-26 03:58:03 +08:00
|
|
|
|
{"softint_clear", 21},
|
|
|
|
|
{"softint_set", 20},
|
2008-04-30 11:50:39 +08:00
|
|
|
|
{"softint", 22},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"set_softint", 20},
|
2012-04-28 02:04:00 +08:00
|
|
|
|
{"pause", 27},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"pic", 17},
|
|
|
|
|
{"pcr", 16},
|
2014-10-09 20:16:53 +08:00
|
|
|
|
{"mwait", 28},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"gsr", 19},
|
|
|
|
|
{"dcr", 18},
|
2012-04-28 04:43:35 +08:00
|
|
|
|
{"cfr", 26},
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{"clear_softint", 21},
|
2016-06-17 17:13:30 +08:00
|
|
|
|
{NULL, -1}, /* End marker. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
2008-08-13 07:39:31 +08:00
|
|
|
|
cmp_reg_entry (const void *parg, const void *qarg)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
const struct priv_reg_entry *p = (const struct priv_reg_entry *) parg;
|
|
|
|
|
const struct priv_reg_entry *q = (const struct priv_reg_entry *) qarg;
|
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
if (p->name == q->name)
|
|
|
|
|
return 0;
|
|
|
|
|
else if (p->name == NULL)
|
|
|
|
|
return 1;
|
|
|
|
|
else if (q->name == NULL)
|
|
|
|
|
return -1;
|
|
|
|
|
else
|
|
|
|
|
return strcmp (q->name, p->name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* sparc %-pseudo-operations. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define F_POP_V9 0x1 /* The pseudo-op is for v9 only. */
|
|
|
|
|
#define F_POP_PCREL 0x2 /* The pseudo-op can be used in pc-relative
|
|
|
|
|
contexts. */
|
|
|
|
|
#define F_POP_TLS_CALL 0x4 /* The pseudo-op marks a tls call. */
|
|
|
|
|
#define F_POP_POSTFIX 0x8 /* The pseudo-op should appear after the
|
|
|
|
|
last operand of an
|
|
|
|
|
instruction. (Generally they can appear
|
|
|
|
|
anywhere an immediate operand is
|
|
|
|
|
expected. */
|
|
|
|
|
struct pop_entry
|
|
|
|
|
{
|
|
|
|
|
/* The name as it appears in assembler. */
|
|
|
|
|
const char *name;
|
|
|
|
|
/* The reloc this pseudo-op translates to. */
|
2016-06-27 19:38:33 +08:00
|
|
|
|
bfd_reloc_code_real_type reloc;
|
2016-06-17 17:13:30 +08:00
|
|
|
|
/* Flags. See F_POP_* above. */
|
|
|
|
|
int flags;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct pop_entry pop_table[] =
|
|
|
|
|
{
|
|
|
|
|
{ "hix", BFD_RELOC_SPARC_HIX22, F_POP_V9 },
|
|
|
|
|
{ "lox", BFD_RELOC_SPARC_LOX10, F_POP_V9 },
|
|
|
|
|
{ "hi", BFD_RELOC_HI22, F_POP_PCREL },
|
|
|
|
|
{ "lo", BFD_RELOC_LO10, F_POP_PCREL },
|
|
|
|
|
{ "pc22", BFD_RELOC_SPARC_PC22, F_POP_PCREL },
|
|
|
|
|
{ "pc10", BFD_RELOC_SPARC_PC10, F_POP_PCREL },
|
|
|
|
|
{ "hh", BFD_RELOC_SPARC_HH22, F_POP_V9|F_POP_PCREL },
|
|
|
|
|
{ "hm", BFD_RELOC_SPARC_HM10, F_POP_V9|F_POP_PCREL },
|
|
|
|
|
{ "lm", BFD_RELOC_SPARC_LM22, F_POP_V9|F_POP_PCREL },
|
|
|
|
|
{ "h34", BFD_RELOC_SPARC_H34, F_POP_V9 },
|
|
|
|
|
{ "l34", BFD_RELOC_SPARC_L44, F_POP_V9 },
|
|
|
|
|
{ "h44", BFD_RELOC_SPARC_H44, F_POP_V9 },
|
|
|
|
|
{ "m44", BFD_RELOC_SPARC_M44, F_POP_V9 },
|
|
|
|
|
{ "l44", BFD_RELOC_SPARC_L44, F_POP_V9 },
|
|
|
|
|
{ "uhi", BFD_RELOC_SPARC_HH22, F_POP_V9 },
|
|
|
|
|
{ "ulo", BFD_RELOC_SPARC_HM10, F_POP_V9 },
|
|
|
|
|
{ "tgd_hi22", BFD_RELOC_SPARC_TLS_GD_HI22, 0 },
|
|
|
|
|
{ "tgd_lo10", BFD_RELOC_SPARC_TLS_GD_LO10, 0 },
|
|
|
|
|
{ "tldm_hi22", BFD_RELOC_SPARC_TLS_LDM_HI22, 0 },
|
|
|
|
|
{ "tldm_lo10", BFD_RELOC_SPARC_TLS_LDM_LO10, 0 },
|
|
|
|
|
{ "tldo_hix22", BFD_RELOC_SPARC_TLS_LDO_HIX22, 0 },
|
|
|
|
|
{ "tldo_lox10", BFD_RELOC_SPARC_TLS_LDO_LOX10, 0 },
|
|
|
|
|
{ "tie_hi22", BFD_RELOC_SPARC_TLS_IE_HI22, 0 },
|
|
|
|
|
{ "tie_lo10", BFD_RELOC_SPARC_TLS_IE_LO10, 0 },
|
|
|
|
|
{ "tle_hix22", BFD_RELOC_SPARC_TLS_LE_HIX22, 0 },
|
|
|
|
|
{ "tle_lox10", BFD_RELOC_SPARC_TLS_LE_LOX10, 0 },
|
|
|
|
|
{ "gdop_hix22", BFD_RELOC_SPARC_GOTDATA_OP_HIX22, 0 },
|
|
|
|
|
{ "gdop_lox10", BFD_RELOC_SPARC_GOTDATA_OP_LOX10, 0 },
|
|
|
|
|
{ "tgd_add", BFD_RELOC_SPARC_TLS_GD_ADD, F_POP_POSTFIX },
|
|
|
|
|
{ "tgd_call", BFD_RELOC_SPARC_TLS_GD_CALL, F_POP_POSTFIX|F_POP_TLS_CALL },
|
|
|
|
|
{ "tldm_add", BFD_RELOC_SPARC_TLS_LDM_ADD, F_POP_POSTFIX },
|
|
|
|
|
{ "tldm_call", BFD_RELOC_SPARC_TLS_LDM_CALL, F_POP_POSTFIX|F_POP_TLS_CALL },
|
|
|
|
|
{ "tldo_add", BFD_RELOC_SPARC_TLS_LDO_ADD, F_POP_POSTFIX },
|
|
|
|
|
{ "tie_ldx", BFD_RELOC_SPARC_TLS_IE_LDX, F_POP_POSTFIX },
|
|
|
|
|
{ "tie_ld", BFD_RELOC_SPARC_TLS_IE_LD, F_POP_POSTFIX },
|
|
|
|
|
{ "tie_add", BFD_RELOC_SPARC_TLS_IE_ADD, F_POP_POSTFIX },
|
2016-06-27 19:38:14 +08:00
|
|
|
|
{ "gdop", BFD_RELOC_SPARC_GOTDATA_OP, F_POP_POSTFIX }
|
2016-06-17 17:13:30 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Table of %-names that can appear in a sparc assembly program. This
|
|
|
|
|
table is initialized in md_begin and contains entries for each
|
|
|
|
|
privileged/hyperprivileged/alternate register and %-pseudo-op. */
|
|
|
|
|
|
|
|
|
|
enum perc_entry_type
|
|
|
|
|
{
|
|
|
|
|
perc_entry_none = 0,
|
|
|
|
|
perc_entry_reg,
|
|
|
|
|
perc_entry_post_pop,
|
|
|
|
|
perc_entry_imm_pop
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct perc_entry
|
|
|
|
|
{
|
|
|
|
|
/* Entry type. */
|
|
|
|
|
enum perc_entry_type type;
|
|
|
|
|
/* Name of the %-entity. */
|
|
|
|
|
const char *name;
|
|
|
|
|
/* strlen (name). */
|
|
|
|
|
int len;
|
|
|
|
|
/* Value. Either a pop or a reg depending on type.*/
|
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
struct pop_entry *pop;
|
|
|
|
|
struct priv_reg_entry *reg;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define NUM_PERC_ENTRIES \
|
|
|
|
|
(((sizeof (priv_reg_table) / sizeof (priv_reg_table[0])) - 1) \
|
|
|
|
|
+ ((sizeof (hpriv_reg_table) / sizeof (hpriv_reg_table[0])) - 1) \
|
|
|
|
|
+ ((sizeof (v9a_asr_table) / sizeof (v9a_asr_table[0])) - 1) \
|
2016-06-27 19:38:14 +08:00
|
|
|
|
+ ARRAY_SIZE (pop_table) \
|
2016-06-17 17:13:30 +08:00
|
|
|
|
+ 1)
|
|
|
|
|
|
|
|
|
|
struct perc_entry perc_table[NUM_PERC_ENTRIES];
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
cmp_perc_entry (const void *parg, const void *qarg)
|
|
|
|
|
{
|
|
|
|
|
const struct perc_entry *p = (const struct perc_entry *) parg;
|
|
|
|
|
const struct perc_entry *q = (const struct perc_entry *) qarg;
|
|
|
|
|
|
|
|
|
|
if (p->name == q->name)
|
|
|
|
|
return 0;
|
|
|
|
|
else if (p->name == NULL)
|
|
|
|
|
return 1;
|
|
|
|
|
else if (q->name == NULL)
|
|
|
|
|
return -1;
|
|
|
|
|
else
|
|
|
|
|
return strcmp (q->name, p->name);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This function is called once, at assembler startup time. It should
|
2000-07-27 12:05:05 +08:00
|
|
|
|
set up all the tables, etc. that the MD part of the assembler will
|
|
|
|
|
need. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_begin (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
int lose = 0;
|
Don't use register keyword
* expr.c (expr_symbol_where): Don't use register keyword.
* app.c (app_push, app_pop, do_scrub_chars): Likewise.
* ecoff.c (add_string, add_ecoff_symbol, add_aux_sym_symint,
add_aux_sym_rndx, add_aux_sym_tir, add_procedure, add_file,
ecoff_build_lineno, ecoff_setup_ext, allocate_cluster.
allocate_scope, allocate_vlinks, allocate_shash,
allocate_thash, allocate_tag, allocate_forward, allocate_thead,
allocate_lineno_list): Likewise.
* frags.c (frag_more, frag_var, frag_variant, frag_wane): Likewise.
* input-file.c (input_file_push, input_file_pop): Likewise.
* input-scrub.c (input_scrub_push, input_scrub_next_buffer): Likewise.
* subsegs.c (subseg_change): Likewise.
* symbols.c (colon, symbol_table_insert, symbol_find_or_make)
(dollar_label_name, fb_label_name): Likewise.
* write.c (relax_align): Likewise.
* config/tc-alpha.c (s_alpha_pdesc): Likewise.
* config/tc-bfin.c (bfin_s_bss): Likewise.
* config/tc-i860.c (md_estimate_size_before_relax): Likewise.
* config/tc-m68hc11.c (md_convert_frag): Likewise.
* config/tc-m68k.c (m68k_ip, crack_operand): Likewise.
(md_convert_frag_1, s_even): Likewise.
* config/tc-mips.c (mips_clear_insn_labels): Likewise.
* config/tc-mn10200.c (md_begin): Likewise.
* config/tc-s390.c (s390_setup_opcodes, md_begin): Likewise.
* config/tc-sh.c (sh_elf_cons): Likewise.
* config/tc-tic4x.c (tic4x_cons, tic4x_stringer): Likewise.
* config/m68k-parse.y (m68k_reg_parse): Likewise. Convert from K&R.
(yylex, m68k_ip_op, yyerror): Convert from K&R.
2014-11-04 13:01:09 +08:00
|
|
|
|
unsigned int i = 0;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* We don't get a chance to initialize anything before md_parse_option
|
|
|
|
|
is called, and it may not be called, so handle default initialization
|
|
|
|
|
now if not already done. */
|
|
|
|
|
if (! default_init_p)
|
|
|
|
|
init_default_arch ();
|
|
|
|
|
|
2003-08-30 04:20:18 +08:00
|
|
|
|
sparc_cie_data_alignment = sparc_arch_size == 64 ? -8 : -4;
|
2020-08-18 16:57:21 +08:00
|
|
|
|
op_hash = str_htab_create ();
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
while (i < (unsigned int) sparc_num_opcodes)
|
|
|
|
|
{
|
|
|
|
|
const char *name = sparc_opcodes[i].name;
|
PR26513, 629310abec breaks assembling PowerPC Linux kernels
Inserting with replacement is wrong for some gas hash table uses.
This patch implements an htab_insert that conditionally replaces, and
similarly for str_hash_insert. str_hash_insert with replace=0 is
roughly equivalent to the older hash_insert, and str_hash_insert with
replace=1 to the older hash_jam, but return values are different. I
found it useful to know whether the slot was occupied prior to
inserting/replacing. I've also reinstated the fatal errors on messing
up opcode tables with duplicates.
PR 26513
* hash.h (htab_insert): Update prototype and comment.
(struct string_tuple): Make "value" a const void*.
(string_tuple_alloc): Likewise.
(str_hash_find, str_hash_find_n): Cast returned value.
(str_hash_insert): Add "replace" parameter, and return slot pointer.
Free alloc'd element when not inserted.
* hash.c (htab_insert): Likewise. Return slot when element exists,
otherwise return NULL.
* read.c (pop_insert): Insert into hash table without first searching.
* config/tc-avr.c (md_begin): Likewise.
* config/tc-msp430.c (md_begin): Likewise.
* config/tc-nds32.c (nds32_init_nds32_pseudo_opcodes): Likewise.
* config/tc-v850.c (md_begin): Likewise.
* macro.c (do_formals, define_macro, macro_expand_body): Likewise.
(delete_macro): Delete from hash table.
* config/tc-tic54x.c (subsym_create_or_replace): Correct logic.
* symbols.c (local_symbol_make, symbol_table_insert): Allow
replacement of hash table entries.
* config/obj-coff-seh.c (seh_hash_insert): Likewise.
* config/obj-coff.c (tag_insert): Likewise.
* config/tc-iq2000.c (iq2000_add_macro): Likewise.
* config/tc-m68k.c (md_begin): Likewise for aliases.
* config/tc-tic4x.c (tic4x_asg): Likewise.
* config/tc-tic6x.c (md_begin): Likewise.
* dw2gencfi.c (dwcfi_hash_find_or_make): Disallow replacement of
hash table entries.
* ecoff.c (add_string, get_tag): Likewise.
* macro.c (expand_irp): Likewise.
* config/obj-elf.c (build_additional_section_info): Likewise.
* config/tc-aarch64.c (insert_reg_alias): Likewise.
(checked_hash_insert): Likewise.
* config/tc-alpha.c (get_alpha_reloc_tag, md_begin): Likewise.
* config/tc-arc.c (arc_insert_opcode, declare_register): Likewise.
(declare_addrtype, md_begin, arc_extcorereg): Likewise.
* config/tc-arm.c (insert_reg_alias): Likewise.
(arm_tc_equal_in_insn, md_begin): Likewise.
* config/tc-cr16.c (initialise_reg_hash_table, md_begin): Likewise.
* config/tc-cris.c (md_begin): Likewise.
* config/tc-crx.c (md_begin): Likewise.
* config/tc-csky.c (md_begin): Likewise.
* config/tc-d10v.c (md_begin): Likewise.
* config/tc-dlx.c (md_begin): Likewise.
* config/tc-ft32.c (md_begin): Likewise.
* config/tc-h8300.c (md_begin): Likewise.
* config/tc-hppa.c (md_begin): Likewise.
* config/tc-i386.c (md_begin): Likewise.
* config/tc-ia64.c (dot_rot, dot_entry, declare_register): Likewise.
(md_begin, dot_alias): Likewise.
* config/tc-m68hc11.c (md_begin): Likewise.
* config/tc-m68k.c (md_begin): Likewise.
* config/tc-mcore.c (md_begin): Likewise.
* config/tc-microblaze.c (md_begin): Likewise.
* config/tc-mips.c (md_begin): Likewise.
* config/tc-mmix.c (md_begin): Likewise.
* config/tc-mn10200.c (md_begin): Likewise.
* config/tc-mn10300.c (md_begin): Likewise.
* config/tc-moxie.c (md_begin): Likewise.
* config/tc-nds32.c (nds32_relax_hint, md_begin): Likewise.
* config/tc-nios2.c (md_begin): Likewise.
* config/tc-ns32k.c (md_begin): Likewise.
* config/tc-pdp11.c (md_begin): Likewise.
* config/tc-pj.c (fake_opcode, md_begin): Likewise.
* config/tc-ppc.c (ppc_setup_opcodes): Likewise.
* config/tc-pru.c (md_begin): Likewise.
* config/tc-riscv.c (init_ext_version_hash): Likewise.
(init_opcode_names_hash, hash_reg_name, init_opcode_hash): Likewise.
(riscv_init_csr_hash): Likewise.
* config/tc-s390.c (s390_setup_opcodes, md_begin): Likewise.
* config/tc-score.c (s3_insert_reg): Likewise.
(s3_build_score_ops_hsh, s3_build_dependency_insn_hsh): Likewise.
* config/tc-score7.c (s7_build_score_ops_hsh): Likewise.
(s7_build_dependency_insn_hsh, s7_insert_reg): Likewise.
* config/tc-sh.c (md_begin): Likewise.
* config/tc-sparc.c (md_begin): Likewise.
* config/tc-spu.c (md_begin): Likewise.
* config/tc-tic30.c (md_begin): Likewise.
* config/tc-tic4x.c (tic4x_inst_insert): Likewise.
* config/tc-tic54x.c (stag_add_field_symbols, md_begin): Likewise.
(tic54x_endstruct, tic54x_var, tic54x_macro_info): Likewise.
(subsym_substitute): Likewise.
* config/tc-tilegx.c (md_begin): Likewise.
* config/tc-tilepro.c (md_begin): Likewise.
* config/tc-vax.c (vip_begin): Likewise.
* config/tc-wasm32.c (md_begin): Likewise.
* config/tc-xgate.c (md_begin): Likewise.
* config/tc-z8k.c (md_begin): Likewise.
* testsuite/gas/ppc/dcbt.d,
* testsuite/gas/ppc/dcbt.s: New test.
* testsuite/gas/ppc/ppc.exp: Run it.
* ecoff.c (add_string): Report fatal error on duplicates.
* config/tc-alpha.c (md_begin): Likewise.
* config/tc-arc.c (arc_insert_opcode, declare_register): Likewise.
(declare_addrtype, md_begin, arc_extcorereg): Likewise.
* config/tc-cr16.c (initialise_reg_hash_table, md_begin): Likewise.
* config/tc-cris.c (md_begin): Likewise.
* config/tc-crx.c (md_begin): Likewise.
* config/tc-dlx.c (md_begin): Likewise.
* config/tc-hppa.c (md_begin): Likewise.
* config/tc-i386.c (md_begin): Likewise.
* config/tc-ia64.c (dot_rot, dot_entry, declare_register): Likewise.
(md_begin): Likewise.
* config/tc-m68k.c (md_begin): Likewise.
* config/tc-mips.c (md_begin): Likewise.
* config/tc-nios2.c (md_begin): Likewise.
* config/tc-ns32k.c (md_begin): Likewise.
* config/tc-ppc.c (ppc_setup_opcodes): Likewise.
* config/tc-pru.c (md_begin): Likewise.
* config/tc-riscv.c (init_ext_version_hash): Likewise.
(init_opcode_names_hash, hash_reg_name, init_opcode_hash): Likewise.
* config/tc-s390.c (s390_setup_opcodes, md_begin): Likewise.
* config/tc-sparc.c (md_begin): Likewise.
* config/tc-tic30.c (md_begin): Likewise.
* config/tc-tic4x.c (tic4x_inst_insert): Likewise.
* config/tc-tilegx.c (md_begin): Likewise.
* config/tc-tilepro.c (md_begin): Likewise.
* config/tc-vax.c (vip_begin): Likewise.
* config/tc-alpha.c,
* config/tc-arm.c,
* config/tc-avr.c,
* config/tc-cr16.c,
* config/tc-csky.c,
* config/tc-i386.c,
* config/tc-m68hc11.c,
* config/tc-m68k.c,
* config/tc-microblaze.c,
* config/tc-ns32k.c,
* config/tc-pj.c,
* config/tc-ppc.c,
* config/tc-score.c,
* config/tc-score7.c,
* config/tc-tic4x.c,
* config/tc-tic54x.c,
* config/tc-tilegx.c,
* config/tc-tilepro.c,
* config/tc-xgate.c: Formatting.
2020-08-22 16:29:57 +08:00
|
|
|
|
if (str_hash_insert (op_hash, name, &sparc_opcodes[i], 0) != NULL)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("duplicate %s"), name);
|
|
|
|
|
lose = 1;
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
if (sparc_opcodes[i].match & sparc_opcodes[i].lose)
|
|
|
|
|
{
|
1999-06-07 20:40:36 +08:00
|
|
|
|
as_bad (_("Internal error: losing opcode: `%s' \"%s\"\n"),
|
|
|
|
|
sparc_opcodes[i].name, sparc_opcodes[i].args);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
lose = 1;
|
|
|
|
|
}
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
while (i < (unsigned int) sparc_num_opcodes
|
|
|
|
|
&& !strcmp (sparc_opcodes[i].name, name));
|
|
|
|
|
}
|
|
|
|
|
|
1999-06-07 20:40:36 +08:00
|
|
|
|
for (i = 0; native_op_table[i].name; i++)
|
|
|
|
|
{
|
|
|
|
|
const struct sparc_opcode *insn;
|
2016-02-26 00:55:21 +08:00
|
|
|
|
const char *name = ((sparc_arch_size == 32)
|
2000-08-05 06:23:32 +08:00
|
|
|
|
? native_op_table[i].name32
|
|
|
|
|
: native_op_table[i].name64);
|
2020-08-18 16:57:21 +08:00
|
|
|
|
insn = (struct sparc_opcode *) str_hash_find (op_hash, name);
|
1999-06-07 20:40:36 +08:00
|
|
|
|
if (insn == NULL)
|
2000-07-27 12:05:05 +08:00
|
|
|
|
{
|
|
|
|
|
as_bad (_("Internal error: can't find opcode `%s' for `%s'\n"),
|
|
|
|
|
name, native_op_table[i].name);
|
|
|
|
|
lose = 1;
|
|
|
|
|
}
|
PR26513, 629310abec breaks assembling PowerPC Linux kernels
Inserting with replacement is wrong for some gas hash table uses.
This patch implements an htab_insert that conditionally replaces, and
similarly for str_hash_insert. str_hash_insert with replace=0 is
roughly equivalent to the older hash_insert, and str_hash_insert with
replace=1 to the older hash_jam, but return values are different. I
found it useful to know whether the slot was occupied prior to
inserting/replacing. I've also reinstated the fatal errors on messing
up opcode tables with duplicates.
PR 26513
* hash.h (htab_insert): Update prototype and comment.
(struct string_tuple): Make "value" a const void*.
(string_tuple_alloc): Likewise.
(str_hash_find, str_hash_find_n): Cast returned value.
(str_hash_insert): Add "replace" parameter, and return slot pointer.
Free alloc'd element when not inserted.
* hash.c (htab_insert): Likewise. Return slot when element exists,
otherwise return NULL.
* read.c (pop_insert): Insert into hash table without first searching.
* config/tc-avr.c (md_begin): Likewise.
* config/tc-msp430.c (md_begin): Likewise.
* config/tc-nds32.c (nds32_init_nds32_pseudo_opcodes): Likewise.
* config/tc-v850.c (md_begin): Likewise.
* macro.c (do_formals, define_macro, macro_expand_body): Likewise.
(delete_macro): Delete from hash table.
* config/tc-tic54x.c (subsym_create_or_replace): Correct logic.
* symbols.c (local_symbol_make, symbol_table_insert): Allow
replacement of hash table entries.
* config/obj-coff-seh.c (seh_hash_insert): Likewise.
* config/obj-coff.c (tag_insert): Likewise.
* config/tc-iq2000.c (iq2000_add_macro): Likewise.
* config/tc-m68k.c (md_begin): Likewise for aliases.
* config/tc-tic4x.c (tic4x_asg): Likewise.
* config/tc-tic6x.c (md_begin): Likewise.
* dw2gencfi.c (dwcfi_hash_find_or_make): Disallow replacement of
hash table entries.
* ecoff.c (add_string, get_tag): Likewise.
* macro.c (expand_irp): Likewise.
* config/obj-elf.c (build_additional_section_info): Likewise.
* config/tc-aarch64.c (insert_reg_alias): Likewise.
(checked_hash_insert): Likewise.
* config/tc-alpha.c (get_alpha_reloc_tag, md_begin): Likewise.
* config/tc-arc.c (arc_insert_opcode, declare_register): Likewise.
(declare_addrtype, md_begin, arc_extcorereg): Likewise.
* config/tc-arm.c (insert_reg_alias): Likewise.
(arm_tc_equal_in_insn, md_begin): Likewise.
* config/tc-cr16.c (initialise_reg_hash_table, md_begin): Likewise.
* config/tc-cris.c (md_begin): Likewise.
* config/tc-crx.c (md_begin): Likewise.
* config/tc-csky.c (md_begin): Likewise.
* config/tc-d10v.c (md_begin): Likewise.
* config/tc-dlx.c (md_begin): Likewise.
* config/tc-ft32.c (md_begin): Likewise.
* config/tc-h8300.c (md_begin): Likewise.
* config/tc-hppa.c (md_begin): Likewise.
* config/tc-i386.c (md_begin): Likewise.
* config/tc-ia64.c (dot_rot, dot_entry, declare_register): Likewise.
(md_begin, dot_alias): Likewise.
* config/tc-m68hc11.c (md_begin): Likewise.
* config/tc-m68k.c (md_begin): Likewise.
* config/tc-mcore.c (md_begin): Likewise.
* config/tc-microblaze.c (md_begin): Likewise.
* config/tc-mips.c (md_begin): Likewise.
* config/tc-mmix.c (md_begin): Likewise.
* config/tc-mn10200.c (md_begin): Likewise.
* config/tc-mn10300.c (md_begin): Likewise.
* config/tc-moxie.c (md_begin): Likewise.
* config/tc-nds32.c (nds32_relax_hint, md_begin): Likewise.
* config/tc-nios2.c (md_begin): Likewise.
* config/tc-ns32k.c (md_begin): Likewise.
* config/tc-pdp11.c (md_begin): Likewise.
* config/tc-pj.c (fake_opcode, md_begin): Likewise.
* config/tc-ppc.c (ppc_setup_opcodes): Likewise.
* config/tc-pru.c (md_begin): Likewise.
* config/tc-riscv.c (init_ext_version_hash): Likewise.
(init_opcode_names_hash, hash_reg_name, init_opcode_hash): Likewise.
(riscv_init_csr_hash): Likewise.
* config/tc-s390.c (s390_setup_opcodes, md_begin): Likewise.
* config/tc-score.c (s3_insert_reg): Likewise.
(s3_build_score_ops_hsh, s3_build_dependency_insn_hsh): Likewise.
* config/tc-score7.c (s7_build_score_ops_hsh): Likewise.
(s7_build_dependency_insn_hsh, s7_insert_reg): Likewise.
* config/tc-sh.c (md_begin): Likewise.
* config/tc-sparc.c (md_begin): Likewise.
* config/tc-spu.c (md_begin): Likewise.
* config/tc-tic30.c (md_begin): Likewise.
* config/tc-tic4x.c (tic4x_inst_insert): Likewise.
* config/tc-tic54x.c (stag_add_field_symbols, md_begin): Likewise.
(tic54x_endstruct, tic54x_var, tic54x_macro_info): Likewise.
(subsym_substitute): Likewise.
* config/tc-tilegx.c (md_begin): Likewise.
* config/tc-tilepro.c (md_begin): Likewise.
* config/tc-vax.c (vip_begin): Likewise.
* config/tc-wasm32.c (md_begin): Likewise.
* config/tc-xgate.c (md_begin): Likewise.
* config/tc-z8k.c (md_begin): Likewise.
* testsuite/gas/ppc/dcbt.d,
* testsuite/gas/ppc/dcbt.s: New test.
* testsuite/gas/ppc/ppc.exp: Run it.
* ecoff.c (add_string): Report fatal error on duplicates.
* config/tc-alpha.c (md_begin): Likewise.
* config/tc-arc.c (arc_insert_opcode, declare_register): Likewise.
(declare_addrtype, md_begin, arc_extcorereg): Likewise.
* config/tc-cr16.c (initialise_reg_hash_table, md_begin): Likewise.
* config/tc-cris.c (md_begin): Likewise.
* config/tc-crx.c (md_begin): Likewise.
* config/tc-dlx.c (md_begin): Likewise.
* config/tc-hppa.c (md_begin): Likewise.
* config/tc-i386.c (md_begin): Likewise.
* config/tc-ia64.c (dot_rot, dot_entry, declare_register): Likewise.
(md_begin): Likewise.
* config/tc-m68k.c (md_begin): Likewise.
* config/tc-mips.c (md_begin): Likewise.
* config/tc-nios2.c (md_begin): Likewise.
* config/tc-ns32k.c (md_begin): Likewise.
* config/tc-ppc.c (ppc_setup_opcodes): Likewise.
* config/tc-pru.c (md_begin): Likewise.
* config/tc-riscv.c (init_ext_version_hash): Likewise.
(init_opcode_names_hash, hash_reg_name, init_opcode_hash): Likewise.
* config/tc-s390.c (s390_setup_opcodes, md_begin): Likewise.
* config/tc-sparc.c (md_begin): Likewise.
* config/tc-tic30.c (md_begin): Likewise.
* config/tc-tic4x.c (tic4x_inst_insert): Likewise.
* config/tc-tilegx.c (md_begin): Likewise.
* config/tc-tilepro.c (md_begin): Likewise.
* config/tc-vax.c (vip_begin): Likewise.
* config/tc-alpha.c,
* config/tc-arm.c,
* config/tc-avr.c,
* config/tc-cr16.c,
* config/tc-csky.c,
* config/tc-i386.c,
* config/tc-m68hc11.c,
* config/tc-m68k.c,
* config/tc-microblaze.c,
* config/tc-ns32k.c,
* config/tc-pj.c,
* config/tc-ppc.c,
* config/tc-score.c,
* config/tc-score7.c,
* config/tc-tic4x.c,
* config/tc-tic54x.c,
* config/tc-tilegx.c,
* config/tc-tilepro.c,
* config/tc-xgate.c: Formatting.
2020-08-22 16:29:57 +08:00
|
|
|
|
else if (str_hash_insert (op_hash, native_op_table[i].name, insn, 0))
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("duplicate %s"), native_op_table[i].name);
|
|
|
|
|
lose = 1;
|
|
|
|
|
}
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (lose)
|
|
|
|
|
as_fatal (_("Broken assembler. No assembly attempted."));
|
|
|
|
|
|
|
|
|
|
qsort (priv_reg_table, sizeof (priv_reg_table) / sizeof (priv_reg_table[0]),
|
|
|
|
|
sizeof (priv_reg_table[0]), cmp_reg_entry);
|
2016-06-17 17:13:30 +08:00
|
|
|
|
qsort (hpriv_reg_table, sizeof (hpriv_reg_table) / sizeof (hpriv_reg_table[0]),
|
|
|
|
|
sizeof (hpriv_reg_table[0]), cmp_reg_entry);
|
|
|
|
|
qsort (v9a_asr_table, sizeof (v9a_asr_table) / sizeof (v9a_asr_table[0]),
|
|
|
|
|
sizeof (v9a_asr_table[0]), cmp_reg_entry);
|
|
|
|
|
|
1999-05-03 15:29:11 +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;
|
|
|
|
|
}
|
2014-09-12 21:38:21 +08:00
|
|
|
|
|
|
|
|
|
/* Find the highest architecture level that doesn't conflict with
|
|
|
|
|
the requested one. */
|
|
|
|
|
|
|
|
|
|
if (warn_on_bump
|
|
|
|
|
|| !architecture_requested)
|
|
|
|
|
{
|
|
|
|
|
enum sparc_opcode_arch_val current_max_architecture
|
|
|
|
|
= max_architecture;
|
|
|
|
|
|
|
|
|
|
for (max_architecture = SPARC_OPCODE_ARCH_MAX;
|
|
|
|
|
max_architecture > warn_after_architecture;
|
|
|
|
|
--max_architecture)
|
|
|
|
|
if (! SPARC_OPCODE_CONFLICT_P (max_architecture,
|
|
|
|
|
current_max_architecture))
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-06-17 17:13:30 +08:00
|
|
|
|
|
|
|
|
|
/* Prepare the tables of %-pseudo-ops. */
|
|
|
|
|
{
|
|
|
|
|
struct priv_reg_entry *reg_tables[]
|
|
|
|
|
= {priv_reg_table, hpriv_reg_table, v9a_asr_table, NULL};
|
|
|
|
|
struct priv_reg_entry **reg_table;
|
|
|
|
|
int entry = 0;
|
|
|
|
|
|
|
|
|
|
/* Add registers. */
|
|
|
|
|
for (reg_table = reg_tables; reg_table[0]; reg_table++)
|
|
|
|
|
{
|
|
|
|
|
struct priv_reg_entry *reg;
|
|
|
|
|
for (reg = *reg_table; reg->name; reg++)
|
|
|
|
|
{
|
|
|
|
|
struct perc_entry *p = &perc_table[entry++];
|
|
|
|
|
p->type = perc_entry_reg;
|
|
|
|
|
p->name = reg->name;
|
|
|
|
|
p->len = strlen (reg->name);
|
|
|
|
|
p->reg = reg;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add %-pseudo-ops. */
|
2016-06-27 19:38:14 +08:00
|
|
|
|
for (i = 0; i < ARRAY_SIZE (pop_table); i++)
|
|
|
|
|
{
|
|
|
|
|
struct perc_entry *p = &perc_table[entry++];
|
|
|
|
|
p->type = (pop_table[i].flags & F_POP_POSTFIX
|
|
|
|
|
? perc_entry_post_pop : perc_entry_imm_pop);
|
|
|
|
|
p->name = pop_table[i].name;
|
|
|
|
|
p->len = strlen (pop_table[i].name);
|
|
|
|
|
p->pop = &pop_table[i];
|
|
|
|
|
}
|
2016-06-17 17:13:30 +08:00
|
|
|
|
|
2017-01-23 23:23:07 +08:00
|
|
|
|
/* Last entry is the sentinel. */
|
2016-06-17 17:13:30 +08:00
|
|
|
|
perc_table[entry].type = perc_entry_none;
|
|
|
|
|
|
|
|
|
|
qsort (perc_table, sizeof (perc_table) / sizeof (perc_table[0]),
|
|
|
|
|
sizeof (perc_table[0]), cmp_perc_entry);
|
|
|
|
|
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Called after all assembly has been done. */
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_md_end (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2018-01-30 07:13:51 +08:00
|
|
|
|
unsigned long mach;
|
2018-04-16 14:03:26 +08:00
|
|
|
|
#ifndef TE_SOLARIS
|
2014-10-09 20:16:53 +08:00
|
|
|
|
int hwcaps, hwcaps2;
|
2014-10-13 20:27:58 +08:00
|
|
|
|
#endif
|
2000-10-20 18:38:47 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (sparc_arch_size == 64)
|
2000-10-20 18:38:47 +08:00
|
|
|
|
switch (current_architecture)
|
|
|
|
|
{
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9A: mach = bfd_mach_sparc_v9a; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9B: mach = bfd_mach_sparc_v9b; break;
|
opcodes,gas: adjust sparc insns and make GAS aware of it
This patch marks the SPARC instructions in the opcodes table with their
proper opcode architectures, and makes the assembler aware of them.
This allows the assembler to properly realize when a new instruction
needs a higher architecture (after v9b) and to react accordingly
emitting an error message or bumping the architecture.
It also expands architecture mismatch tests to cover architectures
higher than v9b, and fixes a couple of minor bugs in the GAS testsuite.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (sparc_opcodes): Adjust instructions opcode
architecture according to the hardware capabilities they require.
(sparc_priv_regs): New table.
(sparc_hpriv_regs): Likewise.
(sparc_asr_regs): Likewise.
(v9anotv9m): Define.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): adjust the GAS
architectures to use the right opcode architecture.
(sparc_md_end): Handle v9{c,d,e,v,m}.
(sparc_ip): Fix some comments.
* testsuite/gas/sparc/ldx_efsr.d: Fix the architecture of this
instruction, which is v9d.
* testsuite/gas/sparc/mwait.s: Remove the `rd %mwait,%g1'
instruction from the test, as %mwait is not readable.
* testsuite/gas/sparc/mwait.d: Likewise.
* testsuite/gas/sparc/mism-1.s: Expand to check v9b and v9e
mismatch architecture errors.
* testsuite/gas/sparc/mism-2.s: New file.
2016-06-17 17:14:18 +08:00
|
|
|
|
case SPARC_OPCODE_ARCH_V9C: mach = bfd_mach_sparc_v9c; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9D: mach = bfd_mach_sparc_v9d; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9E: mach = bfd_mach_sparc_v9e; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9V: mach = bfd_mach_sparc_v9v; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9M: mach = bfd_mach_sparc_v9m; break;
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case SPARC_OPCODE_ARCH_M8: mach = bfd_mach_sparc_v9m8; break;
|
2000-10-20 18:38:47 +08:00
|
|
|
|
default: mach = bfd_mach_sparc_v9; break;
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
else
|
2000-10-20 18:38:47 +08:00
|
|
|
|
switch (current_architecture)
|
|
|
|
|
{
|
|
|
|
|
case SPARC_OPCODE_ARCH_SPARCLET: mach = bfd_mach_sparc_sparclet; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9: mach = bfd_mach_sparc_v8plus; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9A: mach = bfd_mach_sparc_v8plusa; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9B: mach = bfd_mach_sparc_v8plusb; break;
|
opcodes,gas: adjust sparc insns and make GAS aware of it
This patch marks the SPARC instructions in the opcodes table with their
proper opcode architectures, and makes the assembler aware of them.
This allows the assembler to properly realize when a new instruction
needs a higher architecture (after v9b) and to react accordingly
emitting an error message or bumping the architecture.
It also expands architecture mismatch tests to cover architectures
higher than v9b, and fixes a couple of minor bugs in the GAS testsuite.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (sparc_opcodes): Adjust instructions opcode
architecture according to the hardware capabilities they require.
(sparc_priv_regs): New table.
(sparc_hpriv_regs): Likewise.
(sparc_asr_regs): Likewise.
(v9anotv9m): Define.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): adjust the GAS
architectures to use the right opcode architecture.
(sparc_md_end): Handle v9{c,d,e,v,m}.
(sparc_ip): Fix some comments.
* testsuite/gas/sparc/ldx_efsr.d: Fix the architecture of this
instruction, which is v9d.
* testsuite/gas/sparc/mwait.s: Remove the `rd %mwait,%g1'
instruction from the test, as %mwait is not readable.
* testsuite/gas/sparc/mwait.d: Likewise.
* testsuite/gas/sparc/mism-1.s: Expand to check v9b and v9e
mismatch architecture errors.
* testsuite/gas/sparc/mism-2.s: New file.
2016-06-17 17:14:18 +08:00
|
|
|
|
case SPARC_OPCODE_ARCH_V9C: mach = bfd_mach_sparc_v8plusc; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9D: mach = bfd_mach_sparc_v8plusd; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9E: mach = bfd_mach_sparc_v8pluse; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9V: mach = bfd_mach_sparc_v8plusv; break;
|
|
|
|
|
case SPARC_OPCODE_ARCH_V9M: mach = bfd_mach_sparc_v8plusm; break;
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case SPARC_OPCODE_ARCH_M8: mach = bfd_mach_sparc_v8plusm8; break;
|
2000-10-20 18:38:47 +08:00
|
|
|
|
/* The sparclite is treated like a normal sparc. Perhaps it shouldn't
|
|
|
|
|
be but for now it is (since that's the way it's always been
|
|
|
|
|
treated). */
|
2018-01-30 07:13:51 +08:00
|
|
|
|
default: mach = bfd_mach_sparc; break;
|
2000-10-20 18:38:47 +08:00
|
|
|
|
}
|
|
|
|
|
bfd_set_arch_mach (stdoutput, bfd_arch_sparc, mach);
|
Annotate sparc objects with cpu hardware capabilities used.
bfd/
* elfxx-sparc.c (_bfd_sparc_elf_merge_private_bfd_data): New.
* elfxx-sparc.h: Declare it.
* elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Call it.
* elf64-sparc.c (elf64_sparc_merge_private_bfd_data): Likewise.
binutils/
* readelf.c (display_sparc_hwcaps): New.
(display_sparc_gnu_attribute): New.
(process_sparc_specific): New.
(process_arch_specific): When EM_SPARC, EM_SPARC32PLUS,
or EM_SPARCV9 invoke process_sparc_specific.
gas/
* config/tc-sparc.c (hwcap_seen): New bitmask, defined when
not TE_SOLARIS.
(sparc_ip): When not TE_SOLARIS, accumulate hwcap bits from
sparc_opcode->flags of instruction into hwcap_seen.
(sparc_md_end): Create Tag_GNU_Sparc_HWCAPS attribute if
hwcap_seen is non-zero and not TE_SOLARIS.
gas/testsuite/
* gas/sparc/hpcvis3.s: Update for fixed fchksum16 mnemonic.
* gas/sparc/hpcvis3.d: Likewise.
include/elf/
* sparc.h (Tag_GNU_Sparc_HWCAPS): New object attribute.
(ELF_SPARC_HWCAP_*): New HWCAPS bitmask values.
include/opcode/
* sparc.h (struct sparc_opcode): Expand 'flags' to unsigned int.
(F_MUL32, F_DIV32, F_FSMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING): New flag bits.
opcodes/
* sparc-opc.c (sparc_opcodes): Annotate table with HWCAP flag
bits. Fix "fchksm16" mnemonic.
2011-09-22 04:49:16 +08:00
|
|
|
|
|
2018-04-16 14:03:26 +08:00
|
|
|
|
#ifndef TE_SOLARIS
|
2014-10-09 20:16:53 +08:00
|
|
|
|
hwcaps = hwcap_seen & U0xffffffff;
|
|
|
|
|
hwcaps2 = hwcap_seen >> 32;
|
|
|
|
|
|
|
|
|
|
if (hwcaps)
|
|
|
|
|
bfd_elf_add_obj_attr_int (stdoutput, OBJ_ATTR_GNU, Tag_GNU_Sparc_HWCAPS, hwcaps);
|
|
|
|
|
if (hwcaps2)
|
|
|
|
|
bfd_elf_add_obj_attr_int (stdoutput, OBJ_ATTR_GNU, Tag_GNU_Sparc_HWCAPS2, hwcaps2);
|
Annotate sparc objects with cpu hardware capabilities used.
bfd/
* elfxx-sparc.c (_bfd_sparc_elf_merge_private_bfd_data): New.
* elfxx-sparc.h: Declare it.
* elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Call it.
* elf64-sparc.c (elf64_sparc_merge_private_bfd_data): Likewise.
binutils/
* readelf.c (display_sparc_hwcaps): New.
(display_sparc_gnu_attribute): New.
(process_sparc_specific): New.
(process_arch_specific): When EM_SPARC, EM_SPARC32PLUS,
or EM_SPARCV9 invoke process_sparc_specific.
gas/
* config/tc-sparc.c (hwcap_seen): New bitmask, defined when
not TE_SOLARIS.
(sparc_ip): When not TE_SOLARIS, accumulate hwcap bits from
sparc_opcode->flags of instruction into hwcap_seen.
(sparc_md_end): Create Tag_GNU_Sparc_HWCAPS attribute if
hwcap_seen is non-zero and not TE_SOLARIS.
gas/testsuite/
* gas/sparc/hpcvis3.s: Update for fixed fchksum16 mnemonic.
* gas/sparc/hpcvis3.d: Likewise.
include/elf/
* sparc.h (Tag_GNU_Sparc_HWCAPS): New object attribute.
(ELF_SPARC_HWCAP_*): New HWCAPS bitmask values.
include/opcode/
* sparc.h (struct sparc_opcode): Expand 'flags' to unsigned int.
(F_MUL32, F_DIV32, F_FSMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING): New flag bits.
opcodes/
* sparc-opc.c (sparc_opcodes): Annotate table with HWCAP flag
bits. Fix "fchksm16" mnemonic.
2011-09-22 04:49:16 +08:00
|
|
|
|
#endif
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return non-zero if VAL is in the range -(MAX+1) to MAX. */
|
|
|
|
|
|
2008-08-13 07:39:31 +08:00
|
|
|
|
static inline int
|
|
|
|
|
in_signed_range (bfd_signed_vma val, bfd_signed_vma max)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (max <= 0)
|
|
|
|
|
abort ();
|
|
|
|
|
/* Sign-extend the value from the architecture word size, so that
|
|
|
|
|
0xffffffff is always considered -1 on sparc32. */
|
|
|
|
|
if (sparc_arch_size == 32)
|
|
|
|
|
{
|
2020-09-02 08:54:31 +08:00
|
|
|
|
bfd_vma sign = (bfd_vma) 1 << 31;
|
2002-02-11 21:24:06 +08:00
|
|
|
|
val = ((val & U0xffffffff) ^ sign) - sign;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
if (val > max)
|
|
|
|
|
return 0;
|
|
|
|
|
if (val < ~max)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return non-zero if VAL is in the range 0 to MAX. */
|
|
|
|
|
|
2008-08-13 07:39:31 +08:00
|
|
|
|
static inline int
|
|
|
|
|
in_unsigned_range (bfd_vma val, bfd_vma max)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (val > max)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return non-zero if VAL is in the range -(MAX/2+1) to MAX.
|
|
|
|
|
(e.g. -15 to +31). */
|
|
|
|
|
|
2008-08-13 07:39:31 +08:00
|
|
|
|
static inline int
|
|
|
|
|
in_bitfield_range (bfd_signed_vma val, bfd_signed_vma max)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (max <= 0)
|
|
|
|
|
abort ();
|
|
|
|
|
if (val > max)
|
|
|
|
|
return 0;
|
|
|
|
|
if (val < ~(max >> 1))
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_ffs (unsigned int mask)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (mask == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
for (i = 0; (mask & 1) == 0; ++i)
|
|
|
|
|
mask >>= 1;
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implement big shift right. */
|
|
|
|
|
static bfd_vma
|
2008-08-13 07:39:31 +08:00
|
|
|
|
BSR (bfd_vma val, int amount)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (sizeof (bfd_vma) <= 4 && amount >= 32)
|
|
|
|
|
as_fatal (_("Support for 64-bit arithmetic not compiled in."));
|
|
|
|
|
return val >> amount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For communication between sparc_ip and get_expression. */
|
|
|
|
|
static char *expr_end;
|
|
|
|
|
|
|
|
|
|
/* Values for `special_case'.
|
2016-11-26 04:01:41 +08:00
|
|
|
|
Instructions that require weird handling because they're longer than
|
1999-05-03 15:29:11 +08:00
|
|
|
|
4 bytes. */
|
|
|
|
|
#define SPECIAL_CASE_NONE 0
|
|
|
|
|
#define SPECIAL_CASE_SET 1
|
|
|
|
|
#define SPECIAL_CASE_SETSW 2
|
|
|
|
|
#define SPECIAL_CASE_SETX 3
|
|
|
|
|
/* FIXME: sparc-opc.c doesn't have necessary "S" trigger to enable this. */
|
|
|
|
|
#define SPECIAL_CASE_FDIV 4
|
|
|
|
|
|
|
|
|
|
/* Bit masks of various insns. */
|
|
|
|
|
#define NOP_INSN 0x01000000
|
|
|
|
|
#define OR_INSN 0x80100000
|
1999-06-07 20:53:56 +08:00
|
|
|
|
#define XOR_INSN 0x80180000
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#define FMOVS_INSN 0x81A00020
|
|
|
|
|
#define SETHI_INSN 0x01000000
|
|
|
|
|
#define SLLX_INSN 0x81281000
|
|
|
|
|
#define SRA_INSN 0x81380000
|
|
|
|
|
|
|
|
|
|
/* The last instruction to be assembled. */
|
|
|
|
|
static const struct sparc_opcode *last_insn;
|
|
|
|
|
/* The assembled opcode of `last_insn'. */
|
|
|
|
|
static unsigned long last_opcode;
|
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* Handle the set and setuw synthetic instructions. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
synthetize_setuw (const struct sparc_opcode *insn)
|
1999-06-11 05:11:39 +08:00
|
|
|
|
{
|
|
|
|
|
int need_hi22_p = 0;
|
|
|
|
|
int rd = (the_insn.opcode & RD (~0)) >> 25;
|
|
|
|
|
|
|
|
|
|
if (the_insn.exp.X_op == O_constant)
|
|
|
|
|
{
|
|
|
|
|
if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
|
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if (sizeof (offsetT) > 4
|
1999-06-11 05:11:39 +08:00
|
|
|
|
&& (the_insn.exp.X_add_number < 0
|
2002-02-11 21:24:06 +08:00
|
|
|
|
|| the_insn.exp.X_add_number > (offsetT) U0xffffffff))
|
1999-06-11 05:11:39 +08:00
|
|
|
|
as_warn (_("set: number not in 0..4294967295 range"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if (sizeof (offsetT) > 4
|
2002-02-11 21:24:06 +08:00
|
|
|
|
&& (the_insn.exp.X_add_number < -(offsetT) U0x80000000
|
|
|
|
|
|| the_insn.exp.X_add_number > (offsetT) U0xffffffff))
|
1999-06-11 05:11:39 +08:00
|
|
|
|
as_warn (_("set: number not in -2147483648..4294967295 range"));
|
2000-07-27 12:05:05 +08:00
|
|
|
|
the_insn.exp.X_add_number = (int) the_insn.exp.X_add_number;
|
1999-06-11 05:11:39 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* See if operand is absolute and small; skip sethi if so. */
|
|
|
|
|
if (the_insn.exp.X_op != O_constant
|
|
|
|
|
|| the_insn.exp.X_add_number >= (1 << 12)
|
|
|
|
|
|| the_insn.exp.X_add_number < -(1 << 12))
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (SETHI_INSN | RD (rd)
|
|
|
|
|
| ((the_insn.exp.X_add_number >> 10)
|
2000-08-04 09:01:32 +08:00
|
|
|
|
& (the_insn.exp.X_op == O_constant
|
|
|
|
|
? 0x3fffff : 0)));
|
1999-06-11 05:11:39 +08:00
|
|
|
|
the_insn.reloc = (the_insn.exp.X_op != O_constant
|
2000-08-04 09:01:32 +08:00
|
|
|
|
? BFD_RELOC_HI22 : BFD_RELOC_NONE);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
need_hi22_p = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* See if operand has no low-order bits; skip OR if so. */
|
|
|
|
|
if (the_insn.exp.X_op != O_constant
|
|
|
|
|
|| (need_hi22_p && (the_insn.exp.X_add_number & 0x3FF) != 0)
|
|
|
|
|
|| ! need_hi22_p)
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (OR_INSN | (need_hi22_p ? RS1 (rd) : 0)
|
|
|
|
|
| RD (rd) | IMMED
|
|
|
|
|
| (the_insn.exp.X_add_number
|
2000-08-04 09:01:32 +08:00
|
|
|
|
& (the_insn.exp.X_op != O_constant
|
|
|
|
|
? 0 : need_hi22_p ? 0x3ff : 0x1fff)));
|
1999-06-11 05:11:39 +08:00
|
|
|
|
the_insn.reloc = (the_insn.exp.X_op != O_constant
|
2000-08-04 09:01:32 +08:00
|
|
|
|
? BFD_RELOC_LO10 : BFD_RELOC_NONE);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* Handle the setsw synthetic instruction. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
synthetize_setsw (const struct sparc_opcode *insn)
|
1999-06-11 05:11:39 +08:00
|
|
|
|
{
|
|
|
|
|
int low32, rd, opc;
|
|
|
|
|
|
|
|
|
|
rd = (the_insn.opcode & RD (~0)) >> 25;
|
|
|
|
|
|
|
|
|
|
if (the_insn.exp.X_op != O_constant)
|
|
|
|
|
{
|
|
|
|
|
synthetize_setuw (insn);
|
|
|
|
|
|
|
|
|
|
/* Need to sign extend it. */
|
|
|
|
|
the_insn.opcode = (SRA_INSN | RS1 (rd) | RD (rd));
|
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if (sizeof (offsetT) > 4
|
2002-02-11 21:24:06 +08:00
|
|
|
|
&& (the_insn.exp.X_add_number < -(offsetT) U0x80000000
|
|
|
|
|
|| the_insn.exp.X_add_number > (offsetT) U0xffffffff))
|
1999-06-11 05:11:39 +08:00
|
|
|
|
as_warn (_("setsw: number not in -2147483648..4294967295 range"));
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
low32 = the_insn.exp.X_add_number;
|
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
if (low32 >= 0)
|
|
|
|
|
{
|
|
|
|
|
synthetize_setuw (insn);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opc = OR_INSN;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
|
|
|
|
/* See if operand is absolute and small; skip sethi if so. */
|
|
|
|
|
if (low32 < -(1 << 12))
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (SETHI_INSN | RD (rd)
|
|
|
|
|
| (((~the_insn.exp.X_add_number) >> 10) & 0x3fffff));
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
low32 = 0x1c00 | (low32 & 0x3ff);
|
|
|
|
|
opc = RS1 (rd) | XOR_INSN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
the_insn.opcode = (opc | RD (rd) | IMMED
|
|
|
|
|
| (low32 & 0x1fff));
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-02 01:16:59 +08:00
|
|
|
|
/* Handle the setx synthetic instruction. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
synthetize_setx (const struct sparc_opcode *insn)
|
1999-06-11 05:11:39 +08:00
|
|
|
|
{
|
|
|
|
|
int upper32, lower32;
|
|
|
|
|
int tmpreg = (the_insn.opcode & RS1 (~0)) >> 14;
|
|
|
|
|
int dstreg = (the_insn.opcode & RD (~0)) >> 25;
|
|
|
|
|
int upper_dstreg;
|
|
|
|
|
int need_hh22_p = 0, need_hm10_p = 0, need_hi22_p = 0, need_lo10_p = 0;
|
|
|
|
|
int need_xor10_p = 0;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
2002-02-11 21:24:06 +08:00
|
|
|
|
#define SIGNEXT32(x) ((((x) & U0xffffffff) ^ U0x80000000) - U0x80000000)
|
1999-06-11 05:11:39 +08:00
|
|
|
|
lower32 = SIGNEXT32 (the_insn.exp.X_add_number);
|
|
|
|
|
upper32 = SIGNEXT32 (BSR (the_insn.exp.X_add_number, 32));
|
|
|
|
|
#undef SIGNEXT32
|
|
|
|
|
|
|
|
|
|
upper_dstreg = tmpreg;
|
|
|
|
|
/* The tmp reg should not be the dst reg. */
|
|
|
|
|
if (tmpreg == dstreg)
|
|
|
|
|
as_warn (_("setx: temporary register same as destination register"));
|
|
|
|
|
|
|
|
|
|
/* ??? Obviously there are other optimizations we can do
|
|
|
|
|
(e.g. sethi+shift for 0x1f0000000) and perhaps we shouldn't be
|
|
|
|
|
doing some of these. Later. If you do change things, try to
|
|
|
|
|
change all of this to be table driven as well. */
|
|
|
|
|
/* What to output depends on the number if it's constant.
|
|
|
|
|
Compute that first, then output what we've decided upon. */
|
|
|
|
|
if (the_insn.exp.X_op != O_constant)
|
|
|
|
|
{
|
|
|
|
|
if (sparc_arch_size == 32)
|
|
|
|
|
{
|
|
|
|
|
/* When arch size is 32, we want setx to be equivalent
|
|
|
|
|
to setuw for anything but constants. */
|
|
|
|
|
the_insn.exp.X_add_number &= 0xffffffff;
|
|
|
|
|
synthetize_setuw (insn);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
need_hh22_p = need_hm10_p = need_hi22_p = need_lo10_p = 1;
|
2000-08-04 09:01:32 +08:00
|
|
|
|
lower32 = 0;
|
|
|
|
|
upper32 = 0;
|
1999-06-11 05:11:39 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Reset X_add_number, we've extracted it as upper32/lower32.
|
|
|
|
|
Otherwise fixup_segment will complain about not being able to
|
|
|
|
|
write an 8 byte number in a 4 byte field. */
|
|
|
|
|
the_insn.exp.X_add_number = 0;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* Only need hh22 if `or' insn can't handle constant. */
|
|
|
|
|
if (upper32 < -(1 << 12) || upper32 >= (1 << 12))
|
|
|
|
|
need_hh22_p = 1;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* Does bottom part (after sethi) have bits? */
|
|
|
|
|
if ((need_hh22_p && (upper32 & 0x3ff) != 0)
|
|
|
|
|
/* No hh22, but does upper32 still have bits we can't set
|
|
|
|
|
from lower32? */
|
|
|
|
|
|| (! need_hh22_p && upper32 != 0 && upper32 != -1))
|
|
|
|
|
need_hm10_p = 1;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* If the lower half is all zero, we build the upper half directly
|
|
|
|
|
into the dst reg. */
|
|
|
|
|
if (lower32 != 0
|
|
|
|
|
/* Need lower half if number is zero or 0xffffffff00000000. */
|
|
|
|
|
|| (! need_hh22_p && ! need_hm10_p))
|
|
|
|
|
{
|
|
|
|
|
/* No need for sethi if `or' insn can handle constant. */
|
|
|
|
|
if (lower32 < -(1 << 12) || lower32 >= (1 << 12)
|
|
|
|
|
/* Note that we can't use a negative constant in the `or'
|
|
|
|
|
insn unless the upper 32 bits are all ones. */
|
|
|
|
|
|| (lower32 < 0 && upper32 != -1)
|
|
|
|
|
|| (lower32 >= 0 && upper32 == -1))
|
|
|
|
|
need_hi22_p = 1;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
if (need_hi22_p && upper32 == -1)
|
|
|
|
|
need_xor10_p = 1;
|
|
|
|
|
|
|
|
|
|
/* Does bottom part (after sethi) have bits? */
|
|
|
|
|
else if ((need_hi22_p && (lower32 & 0x3ff) != 0)
|
|
|
|
|
/* No sethi. */
|
|
|
|
|
|| (! need_hi22_p && (lower32 & 0x1fff) != 0)
|
|
|
|
|
/* Need `or' if we didn't set anything else. */
|
|
|
|
|
|| (! need_hi22_p && ! need_hh22_p && ! need_hm10_p))
|
|
|
|
|
need_lo10_p = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Output directly to dst reg if lower 32 bits are all zero. */
|
|
|
|
|
upper_dstreg = dstreg;
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
if (!upper_dstreg && dstreg)
|
|
|
|
|
as_warn (_("setx: illegal temporary register g0"));
|
|
|
|
|
|
|
|
|
|
if (need_hh22_p)
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (SETHI_INSN | RD (upper_dstreg)
|
|
|
|
|
| ((upper32 >> 10) & 0x3fffff));
|
|
|
|
|
the_insn.reloc = (the_insn.exp.X_op != O_constant
|
|
|
|
|
? BFD_RELOC_SPARC_HH22 : BFD_RELOC_NONE);
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
if (need_hi22_p)
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (SETHI_INSN | RD (dstreg)
|
|
|
|
|
| (((need_xor10_p ? ~lower32 : lower32)
|
2000-08-04 09:01:32 +08:00
|
|
|
|
>> 10) & 0x3fffff));
|
1999-06-11 05:11:39 +08:00
|
|
|
|
the_insn.reloc = (the_insn.exp.X_op != O_constant
|
|
|
|
|
? BFD_RELOC_SPARC_LM22 : BFD_RELOC_NONE);
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (need_hm10_p)
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (OR_INSN
|
|
|
|
|
| (need_hh22_p ? RS1 (upper_dstreg) : 0)
|
|
|
|
|
| RD (upper_dstreg)
|
|
|
|
|
| IMMED
|
|
|
|
|
| (upper32 & (need_hh22_p ? 0x3ff : 0x1fff)));
|
|
|
|
|
the_insn.reloc = (the_insn.exp.X_op != O_constant
|
|
|
|
|
? BFD_RELOC_SPARC_HM10 : BFD_RELOC_NONE);
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
if (need_lo10_p)
|
|
|
|
|
{
|
|
|
|
|
/* FIXME: One nice optimization to do here is to OR the low part
|
|
|
|
|
with the highpart if hi22 isn't needed and the low part is
|
|
|
|
|
positive. */
|
|
|
|
|
the_insn.opcode = (OR_INSN | (need_hi22_p ? RS1 (dstreg) : 0)
|
|
|
|
|
| RD (dstreg)
|
|
|
|
|
| IMMED
|
|
|
|
|
| (lower32 & (need_hi22_p ? 0x3ff : 0x1fff)));
|
|
|
|
|
the_insn.reloc = (the_insn.exp.X_op != O_constant
|
|
|
|
|
? BFD_RELOC_LO10 : BFD_RELOC_NONE);
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* If we needed to build the upper part, shift it into place. */
|
|
|
|
|
if (need_hh22_p || need_hm10_p)
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (SLLX_INSN | RS1 (upper_dstreg) | RD (upper_dstreg)
|
|
|
|
|
| IMMED | 32);
|
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* To get -1 in upper32, we do sethi %hi(~x), r; xor r, -0x400 | x, r. */
|
|
|
|
|
if (need_xor10_p)
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (XOR_INSN | RS1 (dstreg) | RD (dstreg) | IMMED
|
|
|
|
|
| 0x1c00 | (lower32 & 0x3ff));
|
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we needed to build both upper and lower parts, OR them together. */
|
|
|
|
|
else if ((need_hh22_p || need_hm10_p) && (need_hi22_p || need_lo10_p))
|
|
|
|
|
{
|
|
|
|
|
the_insn.opcode = (OR_INSN | RS1 (dstreg) | RS2 (upper_dstreg)
|
|
|
|
|
| RD (dstreg));
|
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Main entry point to assemble one instruction. */
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_assemble (char *str)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
const struct sparc_opcode *insn;
|
1999-06-11 05:11:39 +08:00
|
|
|
|
int special_case;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
know (str);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
special_case = sparc_ip (str, &insn);
|
2005-04-20 03:45:10 +08:00
|
|
|
|
if (insn == NULL)
|
|
|
|
|
return;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2016-09-14 22:10:49 +08:00
|
|
|
|
/* Certain instructions may not appear on delay slots. Check for
|
|
|
|
|
these situations. */
|
2005-04-20 03:45:10 +08:00
|
|
|
|
if (last_insn != NULL
|
2016-09-14 22:10:49 +08:00
|
|
|
|
&& (last_insn->flags & F_DELAYED) != 0)
|
|
|
|
|
{
|
|
|
|
|
/* Before SPARC V9 the effect of having a delayed branch
|
|
|
|
|
instruction in the delay slot of a conditional delayed branch
|
|
|
|
|
was undefined.
|
|
|
|
|
|
|
|
|
|
In SPARC V9 DCTI couples are well defined.
|
|
|
|
|
|
|
|
|
|
However, starting with the UltraSPARC Architecture 2005, DCTI
|
|
|
|
|
couples (of all kind) are deprecated and should not be used,
|
|
|
|
|
as they may be slow or behave differently to what the
|
|
|
|
|
programmer expects. */
|
|
|
|
|
if (dcti_couples_detect
|
|
|
|
|
&& (insn->flags & F_DELAYED) != 0
|
|
|
|
|
&& ((max_architecture < SPARC_OPCODE_ARCH_V9
|
|
|
|
|
&& (last_insn->flags & F_CONDBR) != 0)
|
|
|
|
|
|| max_architecture >= SPARC_OPCODE_ARCH_V9C))
|
|
|
|
|
as_warn (_("unpredictable DCTI couple"));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* We warn about attempts to put a floating point branch in a
|
|
|
|
|
delay slot, unless the delay slot has been annulled. */
|
|
|
|
|
if ((insn->flags & F_FBR) != 0
|
|
|
|
|
/* ??? This test isn't completely accurate. We assume anything with
|
|
|
|
|
F_{UNBR,CONDBR,FBR} set is annullable. */
|
|
|
|
|
&& ((last_insn->flags & (F_UNBR | F_CONDBR | F_FBR)) == 0
|
|
|
|
|
|| (last_opcode & ANNUL) == 0))
|
|
|
|
|
as_warn (_("FP branch in delay slot"));
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2018-09-04 21:25:52 +08:00
|
|
|
|
/* SPARC before v9 does not allow a floating point compare
|
|
|
|
|
directly before a floating point branch. Insert a nop
|
|
|
|
|
instruction if needed, with a warning. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (max_architecture < SPARC_OPCODE_ARCH_V9
|
|
|
|
|
&& last_insn != NULL
|
|
|
|
|
&& (insn->flags & F_FBR) != 0
|
2018-09-04 21:25:52 +08:00
|
|
|
|
&& (last_insn->flags & F_FLOAT) != 0
|
|
|
|
|
&& (last_insn->match & OP3 (0x35)) == OP3 (0x35))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
struct sparc_it nop_insn;
|
|
|
|
|
|
|
|
|
|
nop_insn.opcode = NOP_INSN;
|
|
|
|
|
nop_insn.reloc = BFD_RELOC_NONE;
|
|
|
|
|
output_insn (insn, &nop_insn);
|
2018-09-04 21:25:52 +08:00
|
|
|
|
as_warn (_("FP branch preceded by FP compare; NOP inserted"));
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
switch (special_case)
|
|
|
|
|
{
|
|
|
|
|
case SPECIAL_CASE_NONE:
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Normal insn. */
|
1999-06-11 05:11:39 +08:00
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
break;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
case SPECIAL_CASE_SETSW:
|
|
|
|
|
synthetize_setsw (insn);
|
|
|
|
|
break;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
case SPECIAL_CASE_SET:
|
|
|
|
|
synthetize_setuw (insn);
|
|
|
|
|
break;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
case SPECIAL_CASE_SETX:
|
|
|
|
|
synthetize_setx (insn);
|
|
|
|
|
break;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
case SPECIAL_CASE_FDIV:
|
|
|
|
|
{
|
|
|
|
|
int rd = (the_insn.opcode >> 25) & 0x1f;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
output_insn (insn, &the_insn);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
/* According to information leaked from Sun, the "fdiv" instructions
|
|
|
|
|
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
|
2000-07-27 12:05:05 +08:00
|
|
|
|
with Weitek 1165 float chips, such as the Sun-4/260 and /280. */
|
* gas/app, gas/as.c, gas/as.h, gas/atof-generic.c, gas/cgen.c,
gas/config/atof-ieee.c, gas/config/obj-aout.c,
gas/config/obj-coff.c, gas/config/obj-ecoff.c,
gas/config/obj-elf.c, gas/config/obj-som.c, gas/config/tc-alpha.c,
gas/config/tc-arc.c, gas/config/tc-arm.c, gas/config/tc-cr16.c,
gas/config/tc-cris.c, gas/config/tc-crx.c, gas/config/tc-d30v.c,
gas/config/tc-dlx.c, gas/config/tc-hppa.c, gas/config/tc-i370.c,
gas/config/tc-i386-intel.c, gas/config/tc-i386.c,
gas/config/tc-i860.c, gas/config/tc-i960.c, gas/config/tc-ia64.c,
gas/config/tc-iq2000.c, gas/config/tc-m32c.c,
gas/config/tc-m32r.c, gas/config/tc-m68hc11.c,
gas/config/tc-m68k.c, gas/config/tc-maxq.c, gas/config/tc-mcore.c,
gas/config/tc-mep.c, gas/config/tc-mips.c, gas/config/tc-mmix.c,
gas/config/tc-mn10300.c, gas/config/tc-moxie.c,
gas/config/tc-ns32k.c, gas/config/tc-pj.c, gas/config/tc-ppc.c,
gas/config/tc-s390.c, gas/config/tc-score.c,
gas/config/tc-score7.c, gas/config/tc-sh.c, gas/config/tc-sparc.c,
gas/config/tc-spu.c, gas/config/tc-tic30.c, gas/config/tc-vax.c,
gas/config/tc-xtensa.c, gas/config/xtensa-relax.c,
gas/dw2gencfi.c, gas/dwarf2dbg.c, gas/ehopt.c, gas/expr.c,
gas/frags.c, gas/input-file.c, gas/read.c, gas/sb.c,
gas/subsegs.c, gas/symbols.c, gas/write.c: Change the name of the
gas macro `assert' to `gas_assert'.
2009-06-23 01:56:02 +08:00
|
|
|
|
gas_assert (the_insn.reloc == BFD_RELOC_NONE);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
the_insn.opcode = FMOVS_INSN | rd | RD (rd);
|
|
|
|
|
output_insn (insn, &the_insn);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
default:
|
|
|
|
|
as_fatal (_("failed special case insn sanity check"));
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-22 08:03:30 +08:00
|
|
|
|
static const char *
|
2014-10-09 20:16:53 +08:00
|
|
|
|
get_hwcap_name (bfd_uint64_t mask)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
{
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_MUL32)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "mul32";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_DIV32)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "div32";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_FSMULD)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "fsmuld";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_V8PLUS)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "v8plus";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_POPC)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "popc";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_VIS)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "vis";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_VIS2)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "vis2";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_ASI_BLK_INIT)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "ASIBlkInit";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_FMAF)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "fmaf";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_VIS3)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "vis3";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_HPC)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "hpc";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_RANDOM)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "random";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_TRANS)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "trans";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_FJFMAU)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "fjfmau";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_IMA)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "ima";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_ASI_CACHE_SPARING)
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "cspare";
|
Move sparc opcode hwcaps out of sparc_opcode flags field.
include/opcode/
* sparc.h (struct sparc_opcode): New field 'hwcaps'.
F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete.
(HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC,
HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF,
HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU,
HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES,
HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1,
HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE,
HWCAP_CBCOND, HWCAP_CRC32): New defines.
opcodes/
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
gas/
* config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_*
masks.
(sparc_md_end): No longer need to translate hwcap_seen values into
ELF hwcap bits, they now match exactly.
(get_hwcap_name): Use HWCAP_* and handle new values.
(sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
2012-04-28 02:01:35 +08:00
|
|
|
|
if (mask & HWCAP_AES)
|
|
|
|
|
return "aes";
|
|
|
|
|
if (mask & HWCAP_DES)
|
|
|
|
|
return "des";
|
|
|
|
|
if (mask & HWCAP_KASUMI)
|
|
|
|
|
return "kasumi";
|
|
|
|
|
if (mask & HWCAP_CAMELLIA)
|
|
|
|
|
return "camellia";
|
|
|
|
|
if (mask & HWCAP_MD5)
|
|
|
|
|
return "md5";
|
|
|
|
|
if (mask & HWCAP_SHA1)
|
|
|
|
|
return "sha1";
|
|
|
|
|
if (mask & HWCAP_SHA256)
|
|
|
|
|
return "sha256";
|
|
|
|
|
if (mask & HWCAP_SHA512)
|
|
|
|
|
return "sha512";
|
|
|
|
|
if (mask & HWCAP_MPMUL)
|
|
|
|
|
return "mpmul";
|
|
|
|
|
if (mask & HWCAP_MONT)
|
|
|
|
|
return "mont";
|
|
|
|
|
if (mask & HWCAP_PAUSE)
|
|
|
|
|
return "pause";
|
|
|
|
|
if (mask & HWCAP_CBCOND)
|
|
|
|
|
return "cbcond";
|
|
|
|
|
if (mask & HWCAP_CRC32C)
|
|
|
|
|
return "crc32c";
|
2014-10-09 20:16:53 +08:00
|
|
|
|
|
|
|
|
|
mask = mask >> 32;
|
|
|
|
|
if (mask & HWCAP2_FJATHPLUS)
|
|
|
|
|
return "fjathplus";
|
|
|
|
|
if (mask & HWCAP2_VIS3B)
|
|
|
|
|
return "vis3b";
|
|
|
|
|
if (mask & HWCAP2_ADP)
|
|
|
|
|
return "adp";
|
|
|
|
|
if (mask & HWCAP2_SPARC5)
|
|
|
|
|
return "sparc5";
|
|
|
|
|
if (mask & HWCAP2_MWAIT)
|
|
|
|
|
return "mwait";
|
|
|
|
|
if (mask & HWCAP2_XMPMUL)
|
|
|
|
|
return "xmpmul";
|
|
|
|
|
if (mask & HWCAP2_XMONT)
|
|
|
|
|
return "xmont";
|
|
|
|
|
if (mask & HWCAP2_NSEC)
|
|
|
|
|
return "nsec";
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
if (mask & HWCAP2_SPARC6)
|
|
|
|
|
return "sparc6";
|
|
|
|
|
if (mask & HWCAP2_ONADDSUB)
|
|
|
|
|
return "onaddsub";
|
|
|
|
|
if (mask & HWCAP2_ONMUL)
|
|
|
|
|
return "onmul";
|
|
|
|
|
if (mask & HWCAP2_ONDIV)
|
|
|
|
|
return "ondiv";
|
|
|
|
|
if (mask & HWCAP2_DICTUNP)
|
|
|
|
|
return "dictunp";
|
|
|
|
|
if (mask & HWCAP2_FPCMPSHL)
|
|
|
|
|
return "fpcmpshl";
|
|
|
|
|
if (mask & HWCAP2_RLE)
|
|
|
|
|
return "rle";
|
|
|
|
|
if (mask & HWCAP2_SHA3)
|
|
|
|
|
return "sha3";
|
2014-10-09 20:16:53 +08:00
|
|
|
|
|
2011-09-22 08:03:30 +08:00
|
|
|
|
return "UNKNOWN";
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Subroutine of md_assemble to do the actual parsing. */
|
|
|
|
|
|
1999-06-11 05:11:39 +08:00
|
|
|
|
static int
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_ip (char *str, const struct sparc_opcode **pinsn)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2016-02-26 00:55:21 +08:00
|
|
|
|
const char *error_message = "";
|
1999-05-03 15:29:11 +08:00
|
|
|
|
char *s;
|
|
|
|
|
const char *args;
|
|
|
|
|
char c;
|
|
|
|
|
const struct sparc_opcode *insn;
|
|
|
|
|
char *argsStart;
|
|
|
|
|
unsigned long opcode;
|
|
|
|
|
unsigned int mask = 0;
|
|
|
|
|
int match = 0;
|
|
|
|
|
int comma = 0;
|
|
|
|
|
int v9_arg_p;
|
1999-06-11 05:11:39 +08:00
|
|
|
|
int special_case = SPECIAL_CASE_NONE;
|
2017-02-23 23:49:37 +08:00
|
|
|
|
const sparc_asi *sasi = NULL;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
s = str;
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (ISLOWER (*s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
do
|
|
|
|
|
++s;
|
2012-04-28 02:02:35 +08:00
|
|
|
|
while (ISLOWER (*s) || ISDIGIT (*s) || *s == '_');
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (*s)
|
|
|
|
|
{
|
|
|
|
|
case '\0':
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ',':
|
|
|
|
|
comma = 1;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
|
*s++ = '\0';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2005-04-20 03:45:10 +08:00
|
|
|
|
as_bad (_("Unknown opcode: `%s'"), str);
|
|
|
|
|
*pinsn = NULL;
|
|
|
|
|
return special_case;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
2020-08-18 16:57:21 +08:00
|
|
|
|
insn = (struct sparc_opcode *) str_hash_find (op_hash, str);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
*pinsn = insn;
|
|
|
|
|
if (insn == NULL)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Unknown opcode: `%s'"), str);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
if (comma)
|
|
|
|
|
{
|
|
|
|
|
*--s = ',';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
argsStart = s;
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
opcode = insn->match;
|
|
|
|
|
memset (&the_insn, '\0', sizeof (the_insn));
|
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
|
|
|
|
v9_arg_p = 0;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Build the opcode, checking as we go to make sure that the
|
|
|
|
|
operands match. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
for (args = insn->args;; ++args)
|
|
|
|
|
{
|
|
|
|
|
switch (*args)
|
|
|
|
|
{
|
|
|
|
|
case 'K':
|
|
|
|
|
{
|
|
|
|
|
int kmask = 0;
|
|
|
|
|
|
|
|
|
|
/* Parse a series of masks. */
|
|
|
|
|
if (*s == '#')
|
|
|
|
|
{
|
|
|
|
|
while (*s == '#')
|
|
|
|
|
{
|
2009-12-11 21:42:17 +08:00
|
|
|
|
int jmask;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
if (! parse_keyword_arg (sparc_encode_membar, &s,
|
2009-12-11 21:42:17 +08:00
|
|
|
|
&jmask))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid membar mask name");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2009-12-11 21:42:17 +08:00
|
|
|
|
kmask |= jmask;
|
2000-08-05 02:43:45 +08:00
|
|
|
|
while (*s == ' ')
|
|
|
|
|
++s;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (*s == '|' || *s == '+')
|
|
|
|
|
++s;
|
2000-08-05 02:43:45 +08:00
|
|
|
|
while (*s == ' ')
|
|
|
|
|
++s;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (! parse_const_expr_arg (&s, &kmask))
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid membar mask expression");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (kmask < 0 || kmask > 127)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid membar mask number");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opcode |= MEMBAR (kmask);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-20 18:38:47 +08:00
|
|
|
|
case '3':
|
|
|
|
|
{
|
|
|
|
|
int smask = 0;
|
|
|
|
|
|
|
|
|
|
if (! parse_const_expr_arg (&s, &smask))
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid siam mode expression");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (smask < 0 || smask > 7)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid siam mode number");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
opcode |= smask;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case '*':
|
|
|
|
|
{
|
|
|
|
|
int fcn = 0;
|
|
|
|
|
|
|
|
|
|
/* Parse a prefetch function. */
|
|
|
|
|
if (*s == '#')
|
|
|
|
|
{
|
|
|
|
|
if (! parse_keyword_arg (sparc_encode_prefetch, &s, &fcn))
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid prefetch function name");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (! parse_const_expr_arg (&s, &fcn))
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid prefetch function expression");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (fcn < 0 || fcn > 31)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid prefetch function number");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
opcode |= RD (fcn);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case '!':
|
|
|
|
|
case '?':
|
|
|
|
|
/* Parse a sparc64 privileged register. */
|
|
|
|
|
if (*s == '%')
|
|
|
|
|
{
|
2016-06-17 17:13:30 +08:00
|
|
|
|
struct priv_reg_entry *p;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
unsigned int len = 9999999; /* Init to make gcc happy. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
s += 1;
|
2016-06-17 17:13:30 +08:00
|
|
|
|
for (p = priv_reg_table; p->name; p++)
|
|
|
|
|
if (p->name[0] == s[0])
|
|
|
|
|
{
|
|
|
|
|
len = strlen (p->name);
|
|
|
|
|
if (strncmp (p->name, s, len) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!p->name)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = _(": unrecognizable privileged register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
opcodes,gas: sparc: fix rdasr,wrasr,rdpr,wrpr,rdhpr,wrhpr insns.
This patch fixes and expands the definition of the read/write
instructions for ancillary-state, privileged and hyperprivileged
registers in opcodes.
It also adds support for three new v9m hyperprivileged registers:
%hmcdper, %hmcddfr and %hva_mask_nz.
Finally, the patch expands existing tests (and adds several new ones) in
order to cover all the read/write instructions in all its variants.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (rdasr): New macro.
(wrasr): Likewise.
(rdpr): Likewise.
(wrpr): Likewise.
(rdhpr): Likewise.
(wrhpr): Likewise.
(sparc_opcodes): Use the macros above to fix and expand the
definition of read/write instructions from/to
asr/privileged/hyperprivileged instructions.
* sparc-dis.c (v9_hpriv_reg_names): Add %hmcdper, %hmcddfr and
%hva_mask_nz. Prefer softint_set and softint_clear over
set_softint and clear_softint.
(print_insn_sparc): Support %ver in Rd.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (hpriv_reg_table): Add registers %hmcdper,
%hmcddfr and %hva_mask_nz.
(sparc_ip): New handling of asr/privileged/hyperprivileged
registers, adapted to the new form of the sparc opcodes table.
* testsuite/gas/sparc/rdasr.s: New file.
* testsuite/gas/sparc/rdasr.d: Likewise.
* testsuite/gas/sparc/wrasr.s: Likewise.
* testsuite/gas/sparc/wrasr.d: Likewise.
* testsuite/gas/sparc/sparc.exp (sparc_elf_setup): Add rdasr and
wrasr tests.
* testsuite/gas/sparc/rdpr.d: Use -Av9m, as some privileged
registers require it.
* testsuite/gas/sparc/wrpr.s: Complete to cover all privileged
registers and write instruction modalities.
* testsuite/gas/sparc/wrpr.d: Likewise.
* testsuite/gas/sparc/rdhpr.s: Likewise for hyperprivileged
registers.
* testsuite/gas/sparc/rdhpr.d: Likewise.
* testsuite/gas/sparc/wrhpr.s: Likewise.
* testsuite/gas/sparc/wrhpr.d: Likewise.
2016-06-17 17:15:43 +08:00
|
|
|
|
|
|
|
|
|
if (((opcode >> (*args == '?' ? 14 : 25)) & 0x1f) != (unsigned) p->regnum)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": unrecognizable privileged register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
s += len;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": unrecognizable privileged register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-25 09:34:09 +08:00
|
|
|
|
case '$':
|
|
|
|
|
case '%':
|
|
|
|
|
/* Parse a sparc64 hyperprivileged register. */
|
|
|
|
|
if (*s == '%')
|
|
|
|
|
{
|
2016-06-17 17:13:30 +08:00
|
|
|
|
struct priv_reg_entry *p;
|
2006-02-25 09:34:09 +08:00
|
|
|
|
unsigned int len = 9999999; /* Init to make gcc happy. */
|
|
|
|
|
|
|
|
|
|
s += 1;
|
2016-06-17 17:13:30 +08:00
|
|
|
|
for (p = hpriv_reg_table; p->name; p++)
|
|
|
|
|
if (p->name[0] == s[0])
|
|
|
|
|
{
|
|
|
|
|
len = strlen (p->name);
|
|
|
|
|
if (strncmp (p->name, s, len) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!p->name)
|
2006-02-25 09:34:09 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = _(": unrecognizable hyperprivileged register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
opcodes,gas: sparc: fix rdasr,wrasr,rdpr,wrpr,rdhpr,wrhpr insns.
This patch fixes and expands the definition of the read/write
instructions for ancillary-state, privileged and hyperprivileged
registers in opcodes.
It also adds support for three new v9m hyperprivileged registers:
%hmcdper, %hmcddfr and %hva_mask_nz.
Finally, the patch expands existing tests (and adds several new ones) in
order to cover all the read/write instructions in all its variants.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (rdasr): New macro.
(wrasr): Likewise.
(rdpr): Likewise.
(wrpr): Likewise.
(rdhpr): Likewise.
(wrhpr): Likewise.
(sparc_opcodes): Use the macros above to fix and expand the
definition of read/write instructions from/to
asr/privileged/hyperprivileged instructions.
* sparc-dis.c (v9_hpriv_reg_names): Add %hmcdper, %hmcddfr and
%hva_mask_nz. Prefer softint_set and softint_clear over
set_softint and clear_softint.
(print_insn_sparc): Support %ver in Rd.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (hpriv_reg_table): Add registers %hmcdper,
%hmcddfr and %hva_mask_nz.
(sparc_ip): New handling of asr/privileged/hyperprivileged
registers, adapted to the new form of the sparc opcodes table.
* testsuite/gas/sparc/rdasr.s: New file.
* testsuite/gas/sparc/rdasr.d: Likewise.
* testsuite/gas/sparc/wrasr.s: Likewise.
* testsuite/gas/sparc/wrasr.d: Likewise.
* testsuite/gas/sparc/sparc.exp (sparc_elf_setup): Add rdasr and
wrasr tests.
* testsuite/gas/sparc/rdpr.d: Use -Av9m, as some privileged
registers require it.
* testsuite/gas/sparc/wrpr.s: Complete to cover all privileged
registers and write instruction modalities.
* testsuite/gas/sparc/wrpr.d: Likewise.
* testsuite/gas/sparc/rdhpr.s: Likewise for hyperprivileged
registers.
* testsuite/gas/sparc/rdhpr.d: Likewise.
* testsuite/gas/sparc/wrhpr.s: Likewise.
* testsuite/gas/sparc/wrhpr.d: Likewise.
2016-06-17 17:15:43 +08:00
|
|
|
|
|
|
|
|
|
if (((opcode >> (*args == '$' ? 14 : 25)) & 0x1f) != (unsigned) p->regnum)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": unrecognizable hyperprivileged register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s += len;
|
2006-02-25 09:34:09 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": unrecognizable hyperprivileged register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case '_':
|
|
|
|
|
case '/':
|
opcodes,gas: adjust sparc insns and make GAS aware of it
This patch marks the SPARC instructions in the opcodes table with their
proper opcode architectures, and makes the assembler aware of them.
This allows the assembler to properly realize when a new instruction
needs a higher architecture (after v9b) and to react accordingly
emitting an error message or bumping the architecture.
It also expands architecture mismatch tests to cover architectures
higher than v9b, and fixes a couple of minor bugs in the GAS testsuite.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (sparc_opcodes): Adjust instructions opcode
architecture according to the hardware capabilities they require.
(sparc_priv_regs): New table.
(sparc_hpriv_regs): Likewise.
(sparc_asr_regs): Likewise.
(v9anotv9m): Define.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): adjust the GAS
architectures to use the right opcode architecture.
(sparc_md_end): Handle v9{c,d,e,v,m}.
(sparc_ip): Fix some comments.
* testsuite/gas/sparc/ldx_efsr.d: Fix the architecture of this
instruction, which is v9d.
* testsuite/gas/sparc/mwait.s: Remove the `rd %mwait,%g1'
instruction from the test, as %mwait is not readable.
* testsuite/gas/sparc/mwait.d: Likewise.
* testsuite/gas/sparc/mism-1.s: Expand to check v9b and v9e
mismatch architecture errors.
* testsuite/gas/sparc/mism-2.s: New file.
2016-06-17 17:14:18 +08:00
|
|
|
|
/* Parse a v9a or later ancillary state register. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (*s == '%')
|
|
|
|
|
{
|
2016-06-17 17:13:30 +08:00
|
|
|
|
struct priv_reg_entry *p;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
unsigned int len = 9999999; /* Init to make gcc happy. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
s += 1;
|
2016-06-17 17:13:30 +08:00
|
|
|
|
for (p = v9a_asr_table; p->name; p++)
|
|
|
|
|
if (p->name[0] == s[0])
|
|
|
|
|
{
|
|
|
|
|
len = strlen (p->name);
|
|
|
|
|
if (strncmp (p->name, s, len) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!p->name)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
opcodes,gas: adjust sparc insns and make GAS aware of it
This patch marks the SPARC instructions in the opcodes table with their
proper opcode architectures, and makes the assembler aware of them.
This allows the assembler to properly realize when a new instruction
needs a higher architecture (after v9b) and to react accordingly
emitting an error message or bumping the architecture.
It also expands architecture mismatch tests to cover architectures
higher than v9b, and fixes a couple of minor bugs in the GAS testsuite.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (sparc_opcodes): Adjust instructions opcode
architecture according to the hardware capabilities they require.
(sparc_priv_regs): New table.
(sparc_hpriv_regs): Likewise.
(sparc_asr_regs): Likewise.
(v9anotv9m): Define.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): adjust the GAS
architectures to use the right opcode architecture.
(sparc_md_end): Handle v9{c,d,e,v,m}.
(sparc_ip): Fix some comments.
* testsuite/gas/sparc/ldx_efsr.d: Fix the architecture of this
instruction, which is v9d.
* testsuite/gas/sparc/mwait.s: Remove the `rd %mwait,%g1'
instruction from the test, as %mwait is not readable.
* testsuite/gas/sparc/mwait.d: Likewise.
* testsuite/gas/sparc/mism-1.s: Expand to check v9b and v9e
mismatch architecture errors.
* testsuite/gas/sparc/mism-2.s: New file.
2016-06-17 17:14:18 +08:00
|
|
|
|
error_message = _(": unrecognizable ancillary state register");
|
1999-05-03 15:29:11 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
opcodes,gas: sparc: fix rdasr,wrasr,rdpr,wrpr,rdhpr,wrhpr insns.
This patch fixes and expands the definition of the read/write
instructions for ancillary-state, privileged and hyperprivileged
registers in opcodes.
It also adds support for three new v9m hyperprivileged registers:
%hmcdper, %hmcddfr and %hva_mask_nz.
Finally, the patch expands existing tests (and adds several new ones) in
order to cover all the read/write instructions in all its variants.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (rdasr): New macro.
(wrasr): Likewise.
(rdpr): Likewise.
(wrpr): Likewise.
(rdhpr): Likewise.
(wrhpr): Likewise.
(sparc_opcodes): Use the macros above to fix and expand the
definition of read/write instructions from/to
asr/privileged/hyperprivileged instructions.
* sparc-dis.c (v9_hpriv_reg_names): Add %hmcdper, %hmcddfr and
%hva_mask_nz. Prefer softint_set and softint_clear over
set_softint and clear_softint.
(print_insn_sparc): Support %ver in Rd.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (hpriv_reg_table): Add registers %hmcdper,
%hmcddfr and %hva_mask_nz.
(sparc_ip): New handling of asr/privileged/hyperprivileged
registers, adapted to the new form of the sparc opcodes table.
* testsuite/gas/sparc/rdasr.s: New file.
* testsuite/gas/sparc/rdasr.d: Likewise.
* testsuite/gas/sparc/wrasr.s: Likewise.
* testsuite/gas/sparc/wrasr.d: Likewise.
* testsuite/gas/sparc/sparc.exp (sparc_elf_setup): Add rdasr and
wrasr tests.
* testsuite/gas/sparc/rdpr.d: Use -Av9m, as some privileged
registers require it.
* testsuite/gas/sparc/wrpr.s: Complete to cover all privileged
registers and write instruction modalities.
* testsuite/gas/sparc/wrpr.d: Likewise.
* testsuite/gas/sparc/rdhpr.s: Likewise for hyperprivileged
registers.
* testsuite/gas/sparc/rdhpr.d: Likewise.
* testsuite/gas/sparc/wrhpr.s: Likewise.
* testsuite/gas/sparc/wrhpr.d: Likewise.
2016-06-17 17:15:43 +08:00
|
|
|
|
|
|
|
|
|
if (((opcode >> (*args == '/' ? 14 : 25)) & 0x1f) != (unsigned) p->regnum)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": unrecognizable ancillary state register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
s += len;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
opcodes,gas: adjust sparc insns and make GAS aware of it
This patch marks the SPARC instructions in the opcodes table with their
proper opcode architectures, and makes the assembler aware of them.
This allows the assembler to properly realize when a new instruction
needs a higher architecture (after v9b) and to react accordingly
emitting an error message or bumping the architecture.
It also expands architecture mismatch tests to cover architectures
higher than v9b, and fixes a couple of minor bugs in the GAS testsuite.
opcodes/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (sparc_opcodes): Adjust instructions opcode
architecture according to the hardware capabilities they require.
(sparc_priv_regs): New table.
(sparc_hpriv_regs): Likewise.
(sparc_asr_regs): Likewise.
(v9anotv9m): Define.
gas/ChangeLog:
2016-06-17 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): adjust the GAS
architectures to use the right opcode architecture.
(sparc_md_end): Handle v9{c,d,e,v,m}.
(sparc_ip): Fix some comments.
* testsuite/gas/sparc/ldx_efsr.d: Fix the architecture of this
instruction, which is v9d.
* testsuite/gas/sparc/mwait.s: Remove the `rd %mwait,%g1'
instruction from the test, as %mwait is not readable.
* testsuite/gas/sparc/mwait.d: Likewise.
* testsuite/gas/sparc/mism-1.s: Expand to check v9b and v9e
mismatch architecture errors.
* testsuite/gas/sparc/mism-2.s: New file.
2016-06-17 17:14:18 +08:00
|
|
|
|
error_message = _(": unrecognizable ancillary state register");
|
1999-05-03 15:29:11 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case 'M':
|
|
|
|
|
case 'm':
|
|
|
|
|
if (strncmp (s, "%asr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (ISDIGIT (*s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
long num = 0;
|
|
|
|
|
|
2001-09-19 13:33:36 +08:00
|
|
|
|
while (ISDIGIT (*s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
num = num * 10 + *s - '0';
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-25 01:28:41 +08:00
|
|
|
|
/* We used to check here for the asr number to
|
|
|
|
|
be between 16 and 31 in V9 and later, as
|
|
|
|
|
mandated by the section C.1.1 "Register
|
|
|
|
|
Names" in the SPARC spec. However, we
|
|
|
|
|
decided to remove this restriction as a) it
|
|
|
|
|
introduces problems when new V9 asr registers
|
|
|
|
|
are introduced, b) the Solaris assembler
|
|
|
|
|
doesn't implement this restriction and c) the
|
|
|
|
|
restriction will go away in future revisions
|
|
|
|
|
of the Oracle SPARC Architecture. */
|
|
|
|
|
|
|
|
|
|
if (num < 0 || 31 < num)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": asr number must be between 0 and 31");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
opcode |= (*args == 'M' ? RS1 (num) : RD (num));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": expecting %asrN");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
} /* if %asr */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'I':
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_11;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'j':
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_10;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
2012-04-28 02:02:35 +08:00
|
|
|
|
case ')':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
s++;
|
|
|
|
|
if ((s[0] == '0' && s[1] == 'x' && ISXDIGIT (s[2]))
|
|
|
|
|
|| ISDIGIT (*s))
|
|
|
|
|
{
|
|
|
|
|
long num = 0;
|
|
|
|
|
|
|
|
|
|
if (s[0] == '0' && s[1] == 'x')
|
|
|
|
|
{
|
|
|
|
|
s += 2;
|
|
|
|
|
while (ISXDIGIT (*s))
|
|
|
|
|
{
|
|
|
|
|
num <<= 4;
|
|
|
|
|
num |= hex_value (*s);
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
while (ISDIGIT (*s))
|
|
|
|
|
{
|
|
|
|
|
num = num * 10 + *s - '0';
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (num < 0 || num > 31)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": crypto immediate must be between 0 and 31");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opcode |= RS3 (num);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": expecting crypto immediate");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case 'X':
|
|
|
|
|
/* V8 systems don't understand BFD_RELOC_SPARC_5. */
|
|
|
|
|
if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_5;
|
|
|
|
|
else
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC13;
|
|
|
|
|
/* These fields are unsigned, but for upward compatibility,
|
|
|
|
|
allow negative values as well. */
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'Y':
|
|
|
|
|
/* V8 systems don't understand BFD_RELOC_SPARC_6. */
|
|
|
|
|
if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_6;
|
|
|
|
|
else
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC13;
|
|
|
|
|
/* These fields are unsigned, but for upward compatibility,
|
|
|
|
|
allow negative values as well. */
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
|
|
|
|
case 'k':
|
|
|
|
|
the_insn.reloc = /* RELOC_WDISP2_14 */ BFD_RELOC_SPARC_WDISP16;
|
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
2012-04-13 00:26:06 +08:00
|
|
|
|
case '=':
|
|
|
|
|
the_insn.reloc = /* RELOC_WDISP2_8 */ BFD_RELOC_SPARC_WDISP10;
|
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case 'G':
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_WDISP19;
|
|
|
|
|
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;
|
|
|
|
|
}
|
2015-05-01 08:17:20 +08:00
|
|
|
|
if ((strncmp (s, "%icc", 4) == 0)
|
|
|
|
|
|| (sparc_arch_size == 32 && strncmp (s, "%ncc", 4) == 0))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Z':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
2015-05-01 08:17:20 +08:00
|
|
|
|
if ((strncmp (s, "%xcc", 4) == 0)
|
|
|
|
|
|| (sparc_arch_size == 64 && strncmp (s, "%ncc", 4) == 0))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '6':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (s, "%fcc0", 5) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 5;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '7':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (s, "%fcc1", 5) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 5;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '8':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (s, "%fcc2", 5) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 5;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '9':
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (s, "%fcc3", 5) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 5;
|
|
|
|
|
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;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
case '\0': /* End of args. */
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
if (s[0] == ',' && s[1] == '%')
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
char *s1;
|
|
|
|
|
int npar = 0;
|
2016-06-17 17:13:30 +08:00
|
|
|
|
const struct perc_entry *p;
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
for (p = perc_table; p->type != perc_entry_none; p++)
|
|
|
|
|
if ((p->type == perc_entry_post_pop || p->type == perc_entry_reg)
|
|
|
|
|
&& strncmp (s + 2, p->name, p->len) == 0)
|
|
|
|
|
break;
|
|
|
|
|
if (p->type == perc_entry_none || p->type == perc_entry_reg)
|
|
|
|
|
break;
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
if (s[p->len + 2] != '(')
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
{
|
2016-06-17 17:13:30 +08:00
|
|
|
|
as_bad (_("Illegal operands: %%%s requires arguments in ()"), p->name);
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
return special_case;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
if (! (p->pop->flags & F_POP_TLS_CALL)
|
|
|
|
|
&& the_insn.reloc != BFD_RELOC_NONE)
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: %%%s cannot be used together with other relocs in the insn ()"),
|
2016-06-17 17:13:30 +08:00
|
|
|
|
p->name);
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
return special_case;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
if ((p->pop->flags & F_POP_TLS_CALL)
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
&& (the_insn.reloc != BFD_RELOC_32_PCREL_S2
|
|
|
|
|
|| the_insn.exp.X_add_number != 0
|
|
|
|
|
|| the_insn.exp.X_add_symbol
|
|
|
|
|
!= symbol_find_or_make ("__tls_get_addr")))
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: %%%s can be only used with call __tls_get_addr"),
|
2016-06-17 17:13:30 +08:00
|
|
|
|
p->name);
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
return special_case;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
the_insn.reloc = p->pop->reloc;
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
memset (&the_insn.exp, 0, sizeof (the_insn.exp));
|
2016-06-17 17:13:30 +08:00
|
|
|
|
s += p->len + 3;
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
|
|
|
|
|
for (s1 = s; *s1 && *s1 != ',' && *s1 != ']'; s1++)
|
|
|
|
|
if (*s1 == '(')
|
|
|
|
|
npar++;
|
|
|
|
|
else if (*s1 == ')')
|
|
|
|
|
{
|
|
|
|
|
if (!npar)
|
|
|
|
|
break;
|
|
|
|
|
npar--;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*s1 != ')')
|
|
|
|
|
{
|
2016-06-17 17:13:30 +08:00
|
|
|
|
as_bad (_("Illegal operands: %%%s requires arguments in ()"), p->name);
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
return special_case;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*s1 = '\0';
|
|
|
|
|
(void) get_expression (s);
|
|
|
|
|
*s1 = ')';
|
|
|
|
|
s = s1 + 1;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
if (*s == '\0')
|
|
|
|
|
match = 1;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '+':
|
|
|
|
|
if (*s == '+')
|
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (*s == '-')
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
case '[': /* These must match exactly. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case ']':
|
|
|
|
|
case ',':
|
|
|
|
|
case ' ':
|
|
|
|
|
if (*s++ == *args)
|
|
|
|
|
continue;
|
|
|
|
|
break;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
case '#': /* Must be at least one digit. */
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (ISDIGIT (*s++))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2001-09-19 13:33:36 +08:00
|
|
|
|
while (ISDIGIT (*s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
++s;
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
case 'C': /* Coprocessor state register. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (strncmp (s, "%csr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
case 'b': /* Next operand is a coprocessor register. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case 'c':
|
|
|
|
|
case 'D':
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (*s++ == '%' && *s++ == 'c' && ISDIGIT (*s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
mask = *s++;
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (ISDIGIT (*s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
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 'O':
|
|
|
|
|
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 */
|
1999-06-11 05:11:39 +08:00
|
|
|
|
c = *s++;
|
|
|
|
|
if (isoctal (c))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
mask = c - '0';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'i': /* in register */
|
1999-06-11 05:11:39 +08:00
|
|
|
|
c = *s++;
|
|
|
|
|
if (isoctal (c))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
mask = c - '0' + 24;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'l': /* local register */
|
1999-06-11 05:11:39 +08:00
|
|
|
|
c = *s++;
|
|
|
|
|
if (isoctal (c))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
mask = (c - '0' + 16);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'o': /* out register */
|
1999-06-11 05:11:39 +08:00
|
|
|
|
c = *s++;
|
|
|
|
|
if (isoctal (c))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
mask = (c - '0' + 8);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 's': /* stack pointer */
|
|
|
|
|
if (*s++ == 'p')
|
|
|
|
|
{
|
|
|
|
|
mask = 0xe;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case 'r': /* any register */
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (!ISDIGIT ((c = *s++)))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
case '0':
|
|
|
|
|
case '1':
|
|
|
|
|
case '2':
|
|
|
|
|
case '3':
|
|
|
|
|
case '4':
|
|
|
|
|
case '5':
|
|
|
|
|
case '6':
|
|
|
|
|
case '7':
|
|
|
|
|
case '8':
|
|
|
|
|
case '9':
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (ISDIGIT (*s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if ((c = 10 * (c - '0') + (*s++ - '0')) >= 32)
|
|
|
|
|
{
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
c -= '0';
|
|
|
|
|
}
|
|
|
|
|
mask = c;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-31 05:39:53 +08:00
|
|
|
|
if ((mask & ~1) == 2 && sparc_arch_size == 64
|
2000-07-27 12:05:05 +08:00
|
|
|
|
&& no_undeclared_regs && ! globals[mask])
|
2000-04-05 17:38:43 +08:00
|
|
|
|
as_bad (_("detected global register use not covered by .register pseudo-op"));
|
1999-07-31 05:39:53 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Got the register, now figure out where
|
|
|
|
|
it goes in the opcode. */
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
case 'O':
|
|
|
|
|
opcode |= (mask << 25) | (mask << 0);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'e': /* next operand is a floating point register */
|
|
|
|
|
case 'v':
|
|
|
|
|
case 'V':
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case ';':
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
case 'B':
|
|
|
|
|
case 'R':
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case ':':
|
|
|
|
|
case '\'':
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2011-08-06 00:52:50 +08:00
|
|
|
|
case '4':
|
|
|
|
|
case '5':
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case 'g':
|
|
|
|
|
case 'H':
|
|
|
|
|
case 'J':
|
2014-10-09 20:16:53 +08:00
|
|
|
|
case '}':
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case '^':
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
char format;
|
|
|
|
|
|
|
|
|
|
if (*s++ == '%'
|
2015-12-09 20:32:52 +08:00
|
|
|
|
&& ((format = *s) == 'f'
|
|
|
|
|
|| format == 'd'
|
|
|
|
|
|| format == 'q')
|
2001-09-19 13:33:36 +08:00
|
|
|
|
&& ISDIGIT (*++s))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2001-09-19 13:33:36 +08:00
|
|
|
|
for (mask = 0; ISDIGIT (*s); ++s)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
mask = 10 * mask + (*s - '0');
|
|
|
|
|
} /* read the number */
|
|
|
|
|
|
|
|
|
|
if ((*args == 'v'
|
|
|
|
|
|| *args == 'B'
|
2011-08-06 00:52:50 +08:00
|
|
|
|
|| *args == '5'
|
2015-12-09 20:32:52 +08:00
|
|
|
|
|| *args == 'H'
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
|| *args == '\''
|
2015-12-09 20:32:52 +08:00
|
|
|
|
|| format == 'd')
|
1999-05-03 15:29:11 +08:00
|
|
|
|
&& (mask & 1))
|
|
|
|
|
{
|
2015-12-09 20:32:52 +08:00
|
|
|
|
/* register must be even numbered */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
2015-12-09 20:32:52 +08:00
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
if ((*args == 'V'
|
|
|
|
|
|| *args == 'R'
|
2015-12-09 20:32:52 +08:00
|
|
|
|
|| *args == 'J'
|
|
|
|
|
|| format == 'q')
|
1999-05-03 15:29:11 +08:00
|
|
|
|
&& (mask & 3))
|
|
|
|
|
{
|
2015-12-09 20:32:52 +08:00
|
|
|
|
/* register must be multiple of 4 */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
2015-12-09 20:32:52 +08:00
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
if ((*args == ':'
|
|
|
|
|
|| *args == ';'
|
|
|
|
|
|| *args == '^')
|
|
|
|
|
&& (mask & 7))
|
|
|
|
|
{
|
|
|
|
|
/* register must be multiple of 8 */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*args == '\'' && mask < 48)
|
|
|
|
|
{
|
|
|
|
|
/* register must be higher or equal than %f48 */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (mask >= 64)
|
|
|
|
|
{
|
|
|
|
|
if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
|
|
|
|
|
error_message = _(": There are only 64 f registers; [0-63]");
|
|
|
|
|
else
|
|
|
|
|
error_message = _(": There are only 32 f registers; [0-31]");
|
|
|
|
|
goto error;
|
|
|
|
|
} /* on error */
|
|
|
|
|
else if (mask >= 32)
|
|
|
|
|
{
|
|
|
|
|
if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
|
|
|
|
|
{
|
2004-01-19 07:47:03 +08:00
|
|
|
|
if (*args == 'e' || *args == 'f' || *args == 'g')
|
|
|
|
|
{
|
|
|
|
|
error_message
|
|
|
|
|
= _(": There are only 32 single precision f registers; [0-31]");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
v9_arg_p = 1;
|
|
|
|
|
mask -= 31; /* wrap high bit */
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": There are only 32 f registers; [0-31]");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
break;
|
2000-08-04 09:01:32 +08:00
|
|
|
|
} /* if not an 'f' register. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2014-10-09 20:16:53 +08:00
|
|
|
|
if (*args == '}' && mask != RS2 (opcode))
|
|
|
|
|
{
|
|
|
|
|
error_message
|
|
|
|
|
= _(": Instruction requires frs2 and frsd must be the same register");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
switch (*args)
|
|
|
|
|
{
|
|
|
|
|
case 'v':
|
|
|
|
|
case 'V':
|
|
|
|
|
case 'e':
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case ';':
|
1999-05-03 15:29:11 +08:00
|
|
|
|
opcode |= RS1 (mask);
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
case 'B':
|
|
|
|
|
case 'R':
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case ':':
|
1999-05-03 15:29:11 +08:00
|
|
|
|
opcode |= RS2 (mask);
|
|
|
|
|
continue;
|
|
|
|
|
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case '\'':
|
|
|
|
|
opcode |= RS2 (mask & 0xe);
|
|
|
|
|
continue;
|
|
|
|
|
|
2011-08-06 00:52:50 +08:00
|
|
|
|
case '4':
|
|
|
|
|
case '5':
|
|
|
|
|
opcode |= RS3 (mask);
|
|
|
|
|
continue;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case 'g':
|
|
|
|
|
case 'H':
|
|
|
|
|
case 'J':
|
2014-10-09 20:16:53 +08:00
|
|
|
|
case '}':
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case '^':
|
1999-05-03 15:29:11 +08:00
|
|
|
|
opcode |= RD (mask);
|
|
|
|
|
continue;
|
2000-08-04 09:01:32 +08:00
|
|
|
|
} /* Pack it in. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
know (0);
|
|
|
|
|
break;
|
2000-08-04 09:01:32 +08:00
|
|
|
|
} /* float arg */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
case 'F':
|
|
|
|
|
if (strncmp (s, "%fsr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2011-08-06 00:52:50 +08:00
|
|
|
|
case '(':
|
|
|
|
|
if (strncmp (s, "%efsr", 5) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 5;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-08-04 09:01:32 +08:00
|
|
|
|
case '0': /* 64 bit immediate (set, setsw, setx insn) */
|
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE; /* reloc handled elsewhere */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
goto immediate;
|
|
|
|
|
|
2000-08-04 09:01:32 +08:00
|
|
|
|
case 'l': /* 22 bit PC relative immediate */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_WDISP22;
|
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
2000-08-04 09:01:32 +08:00
|
|
|
|
case 'L': /* 30 bit immediate */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_32_PCREL_S2;
|
|
|
|
|
the_insn.pcrel = 1;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
1999-06-07 20:53:56 +08:00
|
|
|
|
case 'h':
|
2000-08-04 09:01:32 +08:00
|
|
|
|
case 'n': /* 22 bit immediate */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC22;
|
|
|
|
|
goto immediate;
|
|
|
|
|
|
2000-08-04 09:01:32 +08:00
|
|
|
|
case 'i': /* 13 bit immediate */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC13;
|
|
|
|
|
|
|
|
|
|
/* fallthrough */
|
|
|
|
|
|
|
|
|
|
immediate:
|
|
|
|
|
if (*s == ' ')
|
|
|
|
|
s++;
|
|
|
|
|
|
1999-06-07 20:40:36 +08:00
|
|
|
|
{
|
|
|
|
|
char *s1;
|
2016-02-26 00:55:21 +08:00
|
|
|
|
const char *op_arg = NULL;
|
2005-02-18 08:49:03 +08:00
|
|
|
|
static expressionS op_exp;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
bfd_reloc_code_real_type old_reloc = the_insn.reloc;
|
|
|
|
|
|
|
|
|
|
/* Check for %hi, etc. */
|
|
|
|
|
if (*s == '%')
|
|
|
|
|
{
|
2016-06-17 17:13:30 +08:00
|
|
|
|
const struct perc_entry *p;
|
|
|
|
|
|
|
|
|
|
for (p = perc_table; p->type != perc_entry_none; p++)
|
|
|
|
|
if ((p->type == perc_entry_imm_pop || p->type == perc_entry_reg)
|
|
|
|
|
&& strncmp (s + 1, p->name, p->len) == 0)
|
|
|
|
|
break;
|
|
|
|
|
if (p->type == perc_entry_none || p->type == perc_entry_reg)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (s[p->len + 1] != '(')
|
1999-06-07 20:40:36 +08:00
|
|
|
|
{
|
2016-06-17 17:13:30 +08:00
|
|
|
|
as_bad (_("Illegal operands: %%%s requires arguments in ()"), p->name);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2016-06-17 17:13:30 +08:00
|
|
|
|
op_arg = p->name;
|
|
|
|
|
the_insn.reloc = p->pop->reloc;
|
|
|
|
|
s += p->len + 2;
|
|
|
|
|
v9_arg_p = p->pop->flags & F_POP_V9;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Note that if the get_expression() 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. */
|
1999-05-03 15:29:11 +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. */
|
|
|
|
|
|
1999-06-07 20:40:36 +08:00
|
|
|
|
if (op_arg)
|
|
|
|
|
{
|
|
|
|
|
int npar = 0;
|
|
|
|
|
|
|
|
|
|
for (s1 = s; *s1 && *s1 != ',' && *s1 != ']'; s1++)
|
|
|
|
|
if (*s1 == '(')
|
|
|
|
|
npar++;
|
|
|
|
|
else if (*s1 == ')')
|
|
|
|
|
{
|
|
|
|
|
if (!npar)
|
|
|
|
|
break;
|
|
|
|
|
npar--;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*s1 != ')')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: %%%s requires arguments in ()"), op_arg);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-06-07 20:40:36 +08:00
|
|
|
|
*s1 = '\0';
|
|
|
|
|
(void) get_expression (s);
|
|
|
|
|
*s1 = ')';
|
2016-04-07 19:34:06 +08:00
|
|
|
|
if (expr_end != s1)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Expression inside %%%s could not be parsed"), op_arg);
|
|
|
|
|
return special_case;
|
|
|
|
|
}
|
1999-06-07 20:40:36 +08:00
|
|
|
|
s = s1 + 1;
|
|
|
|
|
if (*s == ',' || *s == ']' || !*s)
|
|
|
|
|
continue;
|
|
|
|
|
if (*s != '+' && *s != '-')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: Can't do arithmetics other than + and - involving %%%s()"), op_arg);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
|
|
|
|
*s1 = '0';
|
|
|
|
|
s = s1;
|
|
|
|
|
op_exp = the_insn.exp;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
memset (&the_insn.exp, 0, sizeof (the_insn.exp));
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
for (s1 = s; *s1 && *s1 != ',' && *s1 != ']'; s1++)
|
|
|
|
|
;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2001-09-19 13:33:36 +08:00
|
|
|
|
if (s1 != s && ISDIGIT (s1[-1]))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (s1[-2] == '%' && s1[-3] == '+')
|
1999-06-07 20:40:36 +08:00
|
|
|
|
s1 -= 3;
|
2011-09-09 00:56:10 +08:00
|
|
|
|
else if (strchr ("golir0123456789", s1[-2]) && s1[-3] == '%' && s1[-4] == '+')
|
1999-06-07 20:40:36 +08:00
|
|
|
|
s1 -= 4;
|
2011-09-09 00:56:10 +08:00
|
|
|
|
else if (s1[-3] == 'r' && s1[-4] == '%' && s1[-5] == '+')
|
|
|
|
|
s1 -= 5;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
else
|
|
|
|
|
s1 = NULL;
|
|
|
|
|
if (s1)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
*s1 = '\0';
|
1999-08-09 01:27:23 +08:00
|
|
|
|
if (op_arg && s1 == s + 1)
|
|
|
|
|
the_insn.exp.X_op = O_absent;
|
|
|
|
|
else
|
|
|
|
|
(void) get_expression (s);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
*s1 = '+';
|
1999-06-07 20:40:36 +08:00
|
|
|
|
if (op_arg)
|
|
|
|
|
*s = ')';
|
1999-05-03 15:29:11 +08:00
|
|
|
|
s = s1;
|
|
|
|
|
}
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
s1 = NULL;
|
|
|
|
|
|
|
|
|
|
if (!s1)
|
|
|
|
|
{
|
|
|
|
|
(void) get_expression (s);
|
|
|
|
|
if (op_arg)
|
|
|
|
|
*s = ')';
|
|
|
|
|
s = expr_end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (op_arg)
|
|
|
|
|
{
|
|
|
|
|
the_insn.exp2 = the_insn.exp;
|
|
|
|
|
the_insn.exp = op_exp;
|
|
|
|
|
if (the_insn.exp2.X_op == O_absent)
|
|
|
|
|
the_insn.exp2.X_op = O_illegal;
|
|
|
|
|
else if (the_insn.exp.X_op == O_absent)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
1999-06-07 20:40:36 +08:00
|
|
|
|
the_insn.exp = the_insn.exp2;
|
|
|
|
|
the_insn.exp2.X_op = O_illegal;
|
|
|
|
|
}
|
|
|
|
|
else if (the_insn.exp.X_op == O_constant)
|
|
|
|
|
{
|
|
|
|
|
valueT val = the_insn.exp.X_add_number;
|
|
|
|
|
switch (the_insn.reloc)
|
|
|
|
|
{
|
1999-06-11 05:43:24 +08:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
|
1999-06-07 20:40:36 +08:00
|
|
|
|
case BFD_RELOC_SPARC_HH22:
|
|
|
|
|
val = BSR (val, 32);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-06-07 20:40:36 +08:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_LM22:
|
|
|
|
|
case BFD_RELOC_HI22:
|
|
|
|
|
val = (val >> 10) & 0x3fffff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_HM10:
|
|
|
|
|
val = BSR (val, 32);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-06-07 20:40:36 +08:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_LO10:
|
|
|
|
|
val &= 0x3ff;
|
|
|
|
|
break;
|
|
|
|
|
|
2012-04-13 00:26:06 +08:00
|
|
|
|
case BFD_RELOC_SPARC_H34:
|
|
|
|
|
val >>= 12;
|
|
|
|
|
val &= 0x3fffff;
|
|
|
|
|
break;
|
|
|
|
|
|
1999-06-07 20:40:36 +08:00
|
|
|
|
case BFD_RELOC_SPARC_H44:
|
|
|
|
|
val >>= 22;
|
|
|
|
|
val &= 0x3fffff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_M44:
|
|
|
|
|
val >>= 12;
|
|
|
|
|
val &= 0x3ff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_L44:
|
|
|
|
|
val &= 0xfff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_HIX22:
|
2000-08-04 09:01:32 +08:00
|
|
|
|
val = ~val;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
val = (val >> 10) & 0x3fffff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_LOX10:
|
|
|
|
|
val = (val & 0x3ff) | 0x1c00;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
the_insn.exp = the_insn.exp2;
|
|
|
|
|
the_insn.exp.X_add_number += val;
|
|
|
|
|
the_insn.exp2.X_op = O_illegal;
|
|
|
|
|
the_insn.reloc = old_reloc;
|
|
|
|
|
}
|
|
|
|
|
else if (the_insn.exp2.X_op != O_constant)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: Can't add non-constant expression to %%%s()"), op_arg);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-17 05:30:35 +08:00
|
|
|
|
if (old_reloc != BFD_RELOC_SPARC13
|
1999-06-07 20:40:36 +08:00
|
|
|
|
|| the_insn.reloc != BFD_RELOC_LO10
|
|
|
|
|
|| sparc_arch_size != 64
|
|
|
|
|
|| sparc_pic_code)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: Can't do arithmetics involving %%%s() of a relocatable symbol"), op_arg);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-06-07 20:40:36 +08:00
|
|
|
|
}
|
|
|
|
|
the_insn.reloc = BFD_RELOC_SPARC_OLO10;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* Check for constants that don't require emitting a reloc. */
|
|
|
|
|
if (the_insn.exp.X_op == O_constant
|
|
|
|
|
&& the_insn.exp.X_add_symbol == 0
|
|
|
|
|
&& the_insn.exp.X_op_symbol == 0)
|
|
|
|
|
{
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
if (the_insn.reloc >= BFD_RELOC_SPARC_TLS_GD_HI22
|
|
|
|
|
&& the_insn.reloc <= BFD_RELOC_SPARC_TLS_TPOFF64)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": TLS operand can't be a constant");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
gas:
* cgen.c, cgen.h, tc.h, write.c, config/obj-coff.c
* config/tc-a29k.c, config/tc-alpha.c, config/tc-alpha.h
* config/tc-arc.c, config/tc-arc.h, config/tc-arm.c
* config/tc-arm.h, config/tc-avr.c, config/tc-avr.h
* config/tc-cris.c, config/tc-crx.c, config/tc-d10v.c
* config/tc-d10v.h, config/tc-d30v.c, config/tc-d30v.h
* config/tc-dlx.c, config/tc-dlx.h, config/tc-fr30.h
* config/tc-frv.c, config/tc-frv.h, config/tc-h8300.c
* config/tc-h8500.c, config/tc-hppa.c, config/tc-hppa.h
* config/tc-i370.c, config/tc-i370.h, config/tc-i386.c
* config/tc-i386.h, config/tc-i860.c, config/tc-i860.h
* config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c
* config/tc-ip2k.c, config/tc-ip2k.h, config/tc-iq2000.c
* config/tc-iq2000.h, config/tc-m32r.c, config/tc-m32r.h
* config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c
* config/tc-m68k.h, config/tc-m88k.c, config/tc-maxq.c
* config/tc-mcore.c, config/tc-mcore.h, config/tc-mips.c
* config/tc-mips.h, config/tc-mmix.c, config/tc-mn10200.c
* config/tc-mn10300.c, config/tc-msp430.c, config/tc-ns32k.c
* config/tc-openrisc.h, config/tc-or32.c, config/tc-or32.h
* config/tc-pdp11.c, config/tc-pj.c, config/tc-pj.h
* config/tc-ppc.c, config/tc-ppc.h, config/tc-s390.c
* config/tc-s390.h, config/tc-sh64.c, config/tc-sh.c
* config/tc-sh.h, config/tc-sparc.c, config/tc-sparc.h
* config/tc-tahoe.c, config/tc-tic30.c, config/tc-tic4x.c
* config/tc-tic54x.c, config/tc-tic80.c, config/tc-v850.c
* config/tc-v850.h, config/tc-vax.c, config/tc-vax.h
* config/tc-w65.c, config/tc-xstormy16.c, config/tc-xstormy16.h
* config/tc-xtensa.c, config/tc-z8k.c:
Replace all instances of the string "_apply_fix3" with
"_apply_fix".
* po/POTFILES.in, po/gas.pot: Regenerate.
bfd:
* coff-i386.c: Change md_apply_fix3 to md_apply_fix in comment.
cgen:
* doc/porting.texi: Change all mention of md_apply_fix3 and
gas_cgen_md_apply_fix3 to md_apply_fix and gas_cgen_md_apply_fix
respectively.
2005-06-08 01:54:22 +08:00
|
|
|
|
/* Constants that won't fit are checked in md_apply_fix
|
1999-05-03 15:29:11 +08:00
|
|
|
|
and bfd_install_relocation.
|
|
|
|
|
??? It would be preferable to install the constants
|
|
|
|
|
into the insn here and save having to create a fixS
|
|
|
|
|
for each one. There already exists code to handle
|
gas:
* cgen.c, cgen.h, tc.h, write.c, config/obj-coff.c
* config/tc-a29k.c, config/tc-alpha.c, config/tc-alpha.h
* config/tc-arc.c, config/tc-arc.h, config/tc-arm.c
* config/tc-arm.h, config/tc-avr.c, config/tc-avr.h
* config/tc-cris.c, config/tc-crx.c, config/tc-d10v.c
* config/tc-d10v.h, config/tc-d30v.c, config/tc-d30v.h
* config/tc-dlx.c, config/tc-dlx.h, config/tc-fr30.h
* config/tc-frv.c, config/tc-frv.h, config/tc-h8300.c
* config/tc-h8500.c, config/tc-hppa.c, config/tc-hppa.h
* config/tc-i370.c, config/tc-i370.h, config/tc-i386.c
* config/tc-i386.h, config/tc-i860.c, config/tc-i860.h
* config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c
* config/tc-ip2k.c, config/tc-ip2k.h, config/tc-iq2000.c
* config/tc-iq2000.h, config/tc-m32r.c, config/tc-m32r.h
* config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c
* config/tc-m68k.h, config/tc-m88k.c, config/tc-maxq.c
* config/tc-mcore.c, config/tc-mcore.h, config/tc-mips.c
* config/tc-mips.h, config/tc-mmix.c, config/tc-mn10200.c
* config/tc-mn10300.c, config/tc-msp430.c, config/tc-ns32k.c
* config/tc-openrisc.h, config/tc-or32.c, config/tc-or32.h
* config/tc-pdp11.c, config/tc-pj.c, config/tc-pj.h
* config/tc-ppc.c, config/tc-ppc.h, config/tc-s390.c
* config/tc-s390.h, config/tc-sh64.c, config/tc-sh.c
* config/tc-sh.h, config/tc-sparc.c, config/tc-sparc.h
* config/tc-tahoe.c, config/tc-tic30.c, config/tc-tic4x.c
* config/tc-tic54x.c, config/tc-tic80.c, config/tc-v850.c
* config/tc-v850.h, config/tc-vax.c, config/tc-vax.h
* config/tc-w65.c, config/tc-xstormy16.c, config/tc-xstormy16.h
* config/tc-xtensa.c, config/tc-z8k.c:
Replace all instances of the string "_apply_fix3" with
"_apply_fix".
* po/POTFILES.in, po/gas.pot: Regenerate.
bfd:
* coff-i386.c: Change md_apply_fix3 to md_apply_fix in comment.
cgen:
* doc/porting.texi: Change all mention of md_apply_fix3 and
gas_cgen_md_apply_fix3 to md_apply_fix and gas_cgen_md_apply_fix
respectively.
2005-06-08 01:54:22 +08:00
|
|
|
|
all the various cases (e.g. in md_apply_fix and
|
1999-05-03 15:29:11 +08:00
|
|
|
|
bfd_install_relocation) so duplicating all that code
|
|
|
|
|
here isn't right. */
|
2012-04-28 02:03:13 +08:00
|
|
|
|
|
|
|
|
|
/* This is a special case to handle cbcond instructions
|
|
|
|
|
properly, which can need two relocations. The first
|
|
|
|
|
one is for the 5-bit immediate field and the latter
|
|
|
|
|
is going to be for the WDISP10 branch part. We
|
|
|
|
|
handle the R_SPARC_5 immediate directly here so that
|
|
|
|
|
we don't need to add support for multiple relocations
|
|
|
|
|
in one instruction just yet. */
|
2016-11-25 19:40:15 +08:00
|
|
|
|
if (the_insn.reloc == BFD_RELOC_SPARC_5
|
|
|
|
|
&& ((insn->match & OP(0x3)) == 0))
|
2012-04-28 02:03:13 +08:00
|
|
|
|
{
|
|
|
|
|
valueT val = the_insn.exp.X_add_number;
|
|
|
|
|
|
2016-11-25 19:40:15 +08:00
|
|
|
|
the_insn.reloc = BFD_RELOC_NONE;
|
2012-04-28 02:03:13 +08:00
|
|
|
|
if (! in_bitfield_range (val, 0x1f))
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": Immediate value in cbcond is out of range.");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
opcode |= val & 0x1f;
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
|
if (*s++ == 'a')
|
|
|
|
|
{
|
|
|
|
|
opcode |= ANNUL;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'A':
|
|
|
|
|
{
|
|
|
|
|
int asi = 0;
|
|
|
|
|
|
|
|
|
|
/* Parse an asi. */
|
|
|
|
|
if (*s == '#')
|
|
|
|
|
{
|
2017-02-23 23:49:37 +08:00
|
|
|
|
if (! parse_sparc_asi (&s, &sasi))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid ASI name");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2017-02-23 23:49:37 +08:00
|
|
|
|
asi = sasi->value;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (! parse_const_expr_arg (&s, &asi))
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid ASI expression");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (asi < 0 || asi > 255)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": invalid ASI number");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
opcode |= ASI (asi);
|
|
|
|
|
continue;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
} /* Alternate space. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
|
if (strncmp (s, "%psr", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
case 'q': /* Floating point queue. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (strncmp (s, "%fq", 3) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 3;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
case 'Q': /* Coprocessor queue. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (strncmp (s, "%cq", 3) == 0)
|
|
|
|
|
{
|
|
|
|
|
s += 3;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
|
if (strcmp (str, "set") == 0
|
|
|
|
|
|| strcmp (str, "setuw") == 0)
|
|
|
|
|
{
|
|
|
|
|
special_case = SPECIAL_CASE_SET;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (str, "setsw") == 0)
|
|
|
|
|
{
|
|
|
|
|
special_case = SPECIAL_CASE_SETSW;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (str, "setx") == 0)
|
|
|
|
|
{
|
|
|
|
|
special_case = SPECIAL_CASE_SETX;
|
|
|
|
|
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;
|
|
|
|
|
|
2014-10-09 20:16:53 +08:00
|
|
|
|
case '{':
|
|
|
|
|
if (strncmp (s, "%mcdper",7) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 7;
|
|
|
|
|
continue;
|
|
|
|
|
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case '&':
|
|
|
|
|
if (strncmp (s, "%entropy", 8) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 8;
|
|
|
|
|
continue;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case 'E':
|
|
|
|
|
if (strncmp (s, "%ccr", 4) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 't':
|
|
|
|
|
if (strncmp (s, "%tbr", 4) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
case 'w':
|
|
|
|
|
if (strncmp (s, "%wim", 4) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 4;
|
|
|
|
|
continue;
|
|
|
|
|
|
binutils: support for the SPARC M8 processor
This patch adds support for the new SPARC M8 processor (implementing OSA
2017) to binutils.
New instructions:
- Dictionary Unpack
+ dictunpack
- Partitioned Compare with shifted result
+ Signed variants: fpcmp{le,gt,eq,ne}{8,16,32}shl
+ Unsigned variants: fpcmpu{le,gt}{8,16,32}shl
- Partitioned Dual-Equal compared, with shifted result
+ fpcmpde{8,16,32}shl
- Partitioned Unsigned Range Compare, with shifted result
+ fpcmpur{8,16,32}shl
- 64-bit shifts on Floating-Point registers
+ fps{ll,ra,rl}64x
- Misaligned loads and stores
+ ldm{sh,uh,sw,uw,x,ux}
+ ldm{sh,uh,sw,uw,x,ux}a
+ ldmf{s,d}
+ ldmf{s,d}a
+ stm{h,w,x}
+ stm{h,w,x}a
+ stmf{s,d}
+ stmf{s,d}a
- Oracle Numbers
+ on{add,sub,mul,div}
- Reverse Bytes/Bits
+ revbitsb
+ revbytes{h,w,x}
- Run-Length instructions
+ rle_burst
+ rle_length
- New crypto instructions
+ sha3
- Instruction to read the new register %entropy
+ rd %entropy
New Alternate Address Identifiers:
- 0x24, #ASI_CORE_COMMIT_COUNT
- 0x24, #ASI_CORE_SELECT_COUNT
- 0x48, #ASI_ARF_ECC_REG
- 0x53, #ASI_ITLB_PROBE
- 0x58, #ASI_DSFAR
- 0x5a, #ASI_DTLB_PROBE_PRIMARY
- 0x5b, #ASI_DTLB_PROBE_REAL
- 0x64, #ASI_CORE_SELECT_COMMIT_NHT
The new assembler command-line options for selecting the M8 architecture
are:
-Av9m8 or -Asparc6 for 64-bit binaries.
-Av8plusm8 for 32-bit (v8+) binaries.
The corresponding disassembler command-line options are:
-msparc:v9m8 for 64-bit binaries.
-msparc:v8plusm8 for 32-bit (v8+) binaries.
Tested for regressions in the following targets:
sparc-aout sparc-linux sparc-vxworks sparc64-linux
bfd/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* archures.c (bfd_mach_sparc_v9m8): Define.
(bfd_mach_sparc_v8plusm8): Likewise.
(bfd_mach_sparc_v9_p): Adjust to M8.
(bfd_mach_sparc_64bit_p): Likewise.
* aoutx.h (machine_type): Handle bfd_mach_sparc_v9m8 and
bfd_mach_sparc_v8plusm8.
* bfd-in2.h: Regenerated.
* cpu-sparc.c (arch_info_struct): Entries for sparc:v9m8 and
sparc:v8plusm8.
* elfxx-sparc.c (_bfd_sparc_elf_object_p): Handle
bfd_mach_sparc_v8plusm8 and bfd_mach_sparc_v9m8 using the new hw
capabilities ONADDSUB, ONMUL, ONDIV, DICTUNP, FPCPSHL, RLE and
SHA3.
* elf32-sparc.c (elf32_sparc_final_write_processing): Handle
bfd_mach_sparc_v8plusm8.
binutils/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* NEWS: Mention the SPARC M8 support.
gas/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
`v9m8' and `v8plusm8'.
(sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
(get_hwcap_name): Support the M8 hardware capabilities.
(sparc_ip): Handle new operand types.
* doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
-Asparc6, and the corresponding -xarch aliases.
* testsuite/gas/sparc/sparc6.s: New file.
* testsuite/gas/sparc/sparc6.d: Likewise.
* testsuite/gas/sparc/sparc6-diag.s: Likewise.
* testsuite/gas/sparc/sparc6-diag.l: Likewise.
* testsuite/gas/sparc/fpcmpshl.s: Likewise.
* testsuite/gas/sparc/fpcmpshl.d: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
* testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
* testsuite/gas/sparc/ldm-stm.s: Likewise.
* testsuite/gas/sparc/ldm-stm.d: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
* testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
* testsuite/gas/sparc/ldmf-stmf.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf.d: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
* testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
* testsuite/gas/sparc/on.s: Likewise.
* testsuite/gas/sparc/on.d: Likewise.
* testsuite/gas/sparc/on-diag.s: Likewise.
* testsuite/gas/sparc/on-diag.l: Likewise.
* testsuite/gas/sparc/rle.s: Likewise.
* testsuite/gas/sparc/rle.d: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
* testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
* testsuite/gas/sparc/rdasr.d: Likewise.
include/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* elf/sparc.h (ELF_SPARC_HWCAP2_SPARC6): Define.
(ELF_SPARC_HWCAP2_ONADDSUB): Likewise.
(ELF_SPARC_HWCAP2_ONMUL): Likewise.
(ELF_SPARC_HWCAP2_ONDIV): Likewise.
(ELF_SPARC_HWCAP2_DICTUNP): Likewise.
(ELF_SPARC_HWCAP2_FPCMPSHL): Likewise.
(ELF_SPARC_HWCAP2_RLE): Likewise.
(ELF_SPARC_HWCAP2_SHA3): Likewise.
* opcode/sparc.h (sparc_opcode_arch_val): Add SPARC_OPCODE_ARCH_M8
and adjust SPARC_OPCODE_ARCH_MAX.
(HWCAP2_SPARC6): Define.
(HWCAP2_ONADDSUB): Likewise.
(HWCAP2_ONMUL): Likewise.
(HWCAP2_ONDIV): Likewise.
(HWCAP2_DICTUNP): Likewise.
(HWCAP2_FPCMPSHL): Likewise.
(HWCAP2_RLE): Likewise.
(HWCAP2_SHA3): Likewise.
(OPM): Likewise.
(OPMI): Likewise.
(ONFCN): Likewise.
(REVFCN): Likewise.
(SIMM10): Likewise.
opcodes/ChangeLog:
2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
(X_IMM2): Define.
(compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
bfd_mach_sparc_v9m8.
(print_insn_sparc): Handle new operand types.
* sparc-opc.c (MASK_M8): Define.
(v6): Add MASK_M8.
(v6notlet): Likewise.
(v7): Likewise.
(v8): Likewise.
(v9): Likewise.
(v9a): Likewise.
(v9b): Likewise.
(v9c): Likewise.
(v9d): Likewise.
(v9e): Likewise.
(v9v): Likewise.
(v9m): Likewise.
(v9andleon): Likewise.
(m8): Define.
(HWS_VM8): Define.
(HWS2_VM8): Likewise.
(sparc_opcode_archs): Add entry for "m8".
(sparc_opcodes): Add OSA2017 and M8 instructions
dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
fpx{ll,ra,rl}64x,
ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
(asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
ASI_CORE_SELECT_COMMIT_NHT.
2017-05-20 00:27:08 +08:00
|
|
|
|
case '|':
|
|
|
|
|
{
|
|
|
|
|
int imm2 = 0;
|
|
|
|
|
|
|
|
|
|
/* Parse a 2-bit immediate. */
|
|
|
|
|
if (! parse_const_expr_arg (&s, &imm2))
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": non-immdiate imm2 operand");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if ((imm2 & ~0x3) != 0)
|
|
|
|
|
{
|
|
|
|
|
error_message = _(": imm2 immediate operand out of range (0-3)");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opcode |= ((imm2 & 0x2) << 3) | (imm2 & 0x1);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case 'y':
|
|
|
|
|
if (strncmp (s, "%y", 2) != 0)
|
|
|
|
|
break;
|
|
|
|
|
s += 2;
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
as_fatal (_("failed sanity check."));
|
2000-07-27 12:05:05 +08:00
|
|
|
|
} /* switch on arg code. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Break out of for() loop. */
|
|
|
|
|
break;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
} /* For each arg that we expect. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
if (match == 0)
|
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Args don't match. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (&insn[1] - sparc_opcodes < sparc_num_opcodes
|
|
|
|
|
&& (insn->name == insn[1].name
|
|
|
|
|
|| !strcmp (insn->name, insn[1].name)))
|
|
|
|
|
{
|
|
|
|
|
++insn;
|
|
|
|
|
s = argsStart;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands%s"), error_message);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* We have a match. Now see if the architecture is OK. */
|
2017-02-23 23:49:37 +08:00
|
|
|
|
/* String to use in case of architecture warning. */
|
|
|
|
|
const char *msg_str = str;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
int needed_arch_mask = insn->architecture;
|
2017-02-23 23:49:37 +08:00
|
|
|
|
|
|
|
|
|
/* Include the ASI architecture needed as well */
|
|
|
|
|
if (sasi && needed_arch_mask > sasi->architecture)
|
|
|
|
|
{
|
|
|
|
|
needed_arch_mask = sasi->architecture;
|
|
|
|
|
msg_str = sasi->name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bfd_uint64_t hwcaps
|
2014-10-09 20:16:53 +08:00
|
|
|
|
= (((bfd_uint64_t) insn->hwcaps2) << 32) | insn->hwcaps;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2018-04-16 14:03:26 +08:00
|
|
|
|
#ifndef TE_SOLARIS
|
Annotate sparc objects with cpu hardware capabilities used.
bfd/
* elfxx-sparc.c (_bfd_sparc_elf_merge_private_bfd_data): New.
* elfxx-sparc.h: Declare it.
* elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Call it.
* elf64-sparc.c (elf64_sparc_merge_private_bfd_data): Likewise.
binutils/
* readelf.c (display_sparc_hwcaps): New.
(display_sparc_gnu_attribute): New.
(process_sparc_specific): New.
(process_arch_specific): When EM_SPARC, EM_SPARC32PLUS,
or EM_SPARCV9 invoke process_sparc_specific.
gas/
* config/tc-sparc.c (hwcap_seen): New bitmask, defined when
not TE_SOLARIS.
(sparc_ip): When not TE_SOLARIS, accumulate hwcap bits from
sparc_opcode->flags of instruction into hwcap_seen.
(sparc_md_end): Create Tag_GNU_Sparc_HWCAPS attribute if
hwcap_seen is non-zero and not TE_SOLARIS.
gas/testsuite/
* gas/sparc/hpcvis3.s: Update for fixed fchksum16 mnemonic.
* gas/sparc/hpcvis3.d: Likewise.
include/elf/
* sparc.h (Tag_GNU_Sparc_HWCAPS): New object attribute.
(ELF_SPARC_HWCAP_*): New HWCAPS bitmask values.
include/opcode/
* sparc.h (struct sparc_opcode): Expand 'flags' to unsigned int.
(F_MUL32, F_DIV32, F_FSMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2,
F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS,
F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING): New flag bits.
opcodes/
* sparc-opc.c (sparc_opcodes): Annotate table with HWCAP flag
bits. Fix "fchksm16" mnemonic.
2011-09-22 04:49:16 +08:00
|
|
|
|
if (hwcaps)
|
|
|
|
|
hwcap_seen |= hwcaps;
|
|
|
|
|
#endif
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (v9_arg_p)
|
|
|
|
|
{
|
2000-10-20 18:38:47 +08:00
|
|
|
|
needed_arch_mask &=
|
|
|
|
|
~(SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9) - 1);
|
|
|
|
|
if (! needed_arch_mask)
|
|
|
|
|
needed_arch_mask =
|
|
|
|
|
SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if (needed_arch_mask
|
|
|
|
|
& SPARC_OPCODE_SUPPORTED (current_architecture))
|
|
|
|
|
/* OK. */
|
|
|
|
|
;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Can we bump up the architecture? */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
else if (needed_arch_mask
|
|
|
|
|
& SPARC_OPCODE_SUPPORTED (max_architecture))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
enum sparc_opcode_arch_val needed_architecture =
|
|
|
|
|
sparc_ffs (SPARC_OPCODE_SUPPORTED (max_architecture)
|
|
|
|
|
& needed_arch_mask);
|
|
|
|
|
|
* gas/app, gas/as.c, gas/as.h, gas/atof-generic.c, gas/cgen.c,
gas/config/atof-ieee.c, gas/config/obj-aout.c,
gas/config/obj-coff.c, gas/config/obj-ecoff.c,
gas/config/obj-elf.c, gas/config/obj-som.c, gas/config/tc-alpha.c,
gas/config/tc-arc.c, gas/config/tc-arm.c, gas/config/tc-cr16.c,
gas/config/tc-cris.c, gas/config/tc-crx.c, gas/config/tc-d30v.c,
gas/config/tc-dlx.c, gas/config/tc-hppa.c, gas/config/tc-i370.c,
gas/config/tc-i386-intel.c, gas/config/tc-i386.c,
gas/config/tc-i860.c, gas/config/tc-i960.c, gas/config/tc-ia64.c,
gas/config/tc-iq2000.c, gas/config/tc-m32c.c,
gas/config/tc-m32r.c, gas/config/tc-m68hc11.c,
gas/config/tc-m68k.c, gas/config/tc-maxq.c, gas/config/tc-mcore.c,
gas/config/tc-mep.c, gas/config/tc-mips.c, gas/config/tc-mmix.c,
gas/config/tc-mn10300.c, gas/config/tc-moxie.c,
gas/config/tc-ns32k.c, gas/config/tc-pj.c, gas/config/tc-ppc.c,
gas/config/tc-s390.c, gas/config/tc-score.c,
gas/config/tc-score7.c, gas/config/tc-sh.c, gas/config/tc-sparc.c,
gas/config/tc-spu.c, gas/config/tc-tic30.c, gas/config/tc-vax.c,
gas/config/tc-xtensa.c, gas/config/xtensa-relax.c,
gas/dw2gencfi.c, gas/dwarf2dbg.c, gas/ehopt.c, gas/expr.c,
gas/frags.c, gas/input-file.c, gas/read.c, gas/sb.c,
gas/subsegs.c, gas/symbols.c, gas/write.c: Change the name of the
gas macro `assert' to `gas_assert'.
2009-06-23 01:56:02 +08:00
|
|
|
|
gas_assert (needed_architecture <= SPARC_OPCODE_ARCH_MAX);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (warn_on_bump
|
|
|
|
|
&& needed_architecture > warn_after_architecture)
|
|
|
|
|
{
|
|
|
|
|
as_warn (_("architecture bumped from \"%s\" to \"%s\" on \"%s\""),
|
|
|
|
|
sparc_opcode_archs[current_architecture].name,
|
|
|
|
|
sparc_opcode_archs[needed_architecture].name,
|
2017-02-23 23:49:37 +08:00
|
|
|
|
msg_str);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
warn_after_architecture = needed_architecture;
|
|
|
|
|
}
|
|
|
|
|
current_architecture = needed_architecture;
|
gas,opcodes: fix hardware capabilities bumping in the sparc assembler.
When the assembler finds an instruction which is part of a higher
opcode architecture it bumps the current opcode architecture. For
example:
$ echo "mwait" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
However, when two instructions pertaining to the same opcode
architecture but associated to different SPARC hardware capabilities
are found in the input stream, and no GAS architecture is specified in
the command line, the assembler bangs:
$ echo "mwait; wr %g0,%g1,%mcdper" | as -bump
{standard input}: Assembler messages:
{standard input}:1: Warning: architecture bumped from "v6" to "v9m" on "mwait"
{standard input}:1: Error: Hardware capability "sparc5" not enabled for "wr".
... and it should'nt, as WRMCDPER pertains to the same architecture
level than MWAIT.
This patch fixes this by extending the definition of sparc opcode
architectures to contain a set of hardware capabilities and making the
assembler to take these capabilities into account when updating the
set of allowed hwcaps when an architecture bump is triggered by some
instruction.
This way, hwcaps associated to architecture levels are maintained in
opcodes, while the assembler keeps the flexibiity of defining GAS
architectures including additional hwcaps (like -Asparcfmaf or the
v8plus* variants).
A test covering this failure case is included.
gas/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* config/tc-sparc.c: Move HWS_* and HWS2_* definitions to
opcodes/sparc-opc.c.
(sparc_arch): Clarify the new role of the hwcap_allowed and
hwcap2_allowed fields.
(sparc_arch_table): Remove HWS_* and HWS2_* instances from
hwcap_allowed and hwcap2_allowed respectively.
(md_parse_option): Include the opcode arch hwcaps when processing
-A.
(sparc_ip): Use the current opcode arch hwcaps to update
hwcap_allowed, as well of the hwcaps of the instruction triggering
the bump.
* testsuite/gas/sparc/hwcaps-bump.s: New file.
* testsuite/gas/sparc/hwcaps-bump.l: Likewise.
* testsuite/gas/sparc/sparc.exp (gas_64_check): Run tests in
hwcaps-bump.
include/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and
hwcaps2.
opcodes/ChangeLog:
2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (HWS_V8): Definition moved from
gas/config/tc-sparc.c.
(HWS_V9): Likewise.
(HWS_VA): Likewise.
(HWS_VB): Likewise.
(HWS_VC): Likewise.
(HWS_VD): Likewise.
(HWS_VE): Likewise.
(HWS_VV): Likewise.
(HWS_VM): Likewise.
(HWS2_VM): Likewise.
(sparc_opcode_archs): Initialize hwcaps and hwcaps2 fields of
existing entries.
2016-11-22 20:40:37 +08:00
|
|
|
|
hwcap_allowed
|
|
|
|
|
= (hwcap_allowed
|
|
|
|
|
| hwcaps
|
|
|
|
|
| (((bfd_uint64_t) sparc_opcode_archs[current_architecture].hwcaps2) << 32)
|
|
|
|
|
| sparc_opcode_archs[current_architecture].hwcaps);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
/* Conflict. */
|
|
|
|
|
/* ??? 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? */
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
int arch, printed_one_p = 0;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
char *p;
|
|
|
|
|
char required_archs[SPARC_OPCODE_ARCH_MAX * 16];
|
|
|
|
|
|
|
|
|
|
/* Create a list of the architectures that support the insn. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
needed_arch_mask &= ~SPARC_OPCODE_SUPPORTED (max_architecture);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-14 22:15:24 +08:00
|
|
|
|
as_bad (_("Architecture mismatch on \"%s %s\"."), str, argsStart);
|
2017-01-23 23:23:07 +08:00
|
|
|
|
as_tsktsk (_("(Requires %s; requested architecture is %s.)"),
|
1999-05-03 15:29:11 +08:00
|
|
|
|
required_archs,
|
|
|
|
|
sparc_opcode_archs[max_architecture].name);
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
2011-09-22 08:03:30 +08:00
|
|
|
|
|
2013-08-23 15:54:19 +08:00
|
|
|
|
/* Make sure the hwcaps used by the instruction are
|
2011-09-22 08:03:30 +08:00
|
|
|
|
currently enabled. */
|
|
|
|
|
if (hwcaps & ~hwcap_allowed)
|
|
|
|
|
{
|
|
|
|
|
const char *hwcap_name = get_hwcap_name(hwcaps & ~hwcap_allowed);
|
|
|
|
|
|
|
|
|
|
as_bad (_("Hardware capability \"%s\" not enabled for \"%s\"."),
|
|
|
|
|
hwcap_name, str);
|
|
|
|
|
return special_case;
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
} /* If no match. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
break;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
} /* Forever looking for a match. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
the_insn.opcode = opcode;
|
1999-06-11 05:11:39 +08:00
|
|
|
|
return special_case;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 23:49:37 +08:00
|
|
|
|
static char *
|
|
|
|
|
skip_over_keyword (char *q)
|
|
|
|
|
{
|
|
|
|
|
for (q = q + (*q == '#' || *q == '%');
|
|
|
|
|
ISALNUM (*q) || *q == '_';
|
|
|
|
|
++q)
|
|
|
|
|
continue;
|
|
|
|
|
return q;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
parse_sparc_asi (char **input_pointer_p, const sparc_asi **value_p)
|
|
|
|
|
{
|
|
|
|
|
const sparc_asi *value;
|
|
|
|
|
char c, *p, *q;
|
|
|
|
|
|
|
|
|
|
p = *input_pointer_p;
|
|
|
|
|
q = skip_over_keyword(p);
|
|
|
|
|
c = *q;
|
|
|
|
|
*q = 0;
|
|
|
|
|
value = sparc_encode_asi (p);
|
|
|
|
|
*q = c;
|
|
|
|
|
if (value == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
*value_p = value;
|
|
|
|
|
*input_pointer_p = q;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Parse an argument that can be expressed as a keyword.
|
|
|
|
|
(eg: #StoreStore or %ccfr).
|
|
|
|
|
The result is a boolean indicating success.
|
|
|
|
|
If successful, INPUT_POINTER is updated. */
|
|
|
|
|
|
|
|
|
|
static int
|
2008-08-13 07:39:31 +08:00
|
|
|
|
parse_keyword_arg (int (*lookup_fn) (const char *),
|
|
|
|
|
char **input_pointerP,
|
|
|
|
|
int *valueP)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
int value;
|
|
|
|
|
char c, *p, *q;
|
|
|
|
|
|
|
|
|
|
p = *input_pointerP;
|
2017-02-23 23:49:37 +08:00
|
|
|
|
q = skip_over_keyword(p);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
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
|
2008-08-13 07:39:31 +08:00
|
|
|
|
parse_const_expr_arg (char **input_pointerP, int *valueP)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Subroutine of sparc_ip to parse an expression. */
|
|
|
|
|
|
|
|
|
|
static int
|
2008-08-13 07:39:31 +08:00
|
|
|
|
get_expression (char *str)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
char *save_in;
|
|
|
|
|
segT seg;
|
|
|
|
|
|
|
|
|
|
save_in = input_line_pointer;
|
|
|
|
|
input_line_pointer = str;
|
|
|
|
|
seg = expression (&the_insn.exp);
|
|
|
|
|
if (seg != absolute_section
|
|
|
|
|
&& seg != text_section
|
|
|
|
|
&& seg != data_section
|
|
|
|
|
&& seg != bss_section
|
|
|
|
|
&& seg != undefined_section)
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Subroutine of md_assemble to output one insn. */
|
|
|
|
|
|
|
|
|
|
static void
|
2009-12-11 21:42:17 +08:00
|
|
|
|
output_insn (const struct sparc_opcode *insn, struct sparc_it *theinsn)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
char *toP = frag_more (4);
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Put out the opcode. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (INSN_BIG_ENDIAN)
|
2009-12-11 21:42:17 +08:00
|
|
|
|
number_to_chars_bigendian (toP, (valueT) theinsn->opcode, 4);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
else
|
2009-12-11 21:42:17 +08:00
|
|
|
|
number_to_chars_littleendian (toP, (valueT) theinsn->opcode, 4);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Put out the symbol-dependent stuff. */
|
2009-12-11 21:42:17 +08:00
|
|
|
|
if (theinsn->reloc != BFD_RELOC_NONE)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
fixS *fixP = fix_new_exp (frag_now, /* Which frag. */
|
|
|
|
|
(toP - frag_now->fr_literal), /* Where. */
|
|
|
|
|
4, /* Size. */
|
2009-12-11 21:42:17 +08:00
|
|
|
|
&theinsn->exp,
|
|
|
|
|
theinsn->pcrel,
|
|
|
|
|
theinsn->reloc);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* Turn off overflow checking in fixup_segment. We'll do our
|
gas:
* cgen.c, cgen.h, tc.h, write.c, config/obj-coff.c
* config/tc-a29k.c, config/tc-alpha.c, config/tc-alpha.h
* config/tc-arc.c, config/tc-arc.h, config/tc-arm.c
* config/tc-arm.h, config/tc-avr.c, config/tc-avr.h
* config/tc-cris.c, config/tc-crx.c, config/tc-d10v.c
* config/tc-d10v.h, config/tc-d30v.c, config/tc-d30v.h
* config/tc-dlx.c, config/tc-dlx.h, config/tc-fr30.h
* config/tc-frv.c, config/tc-frv.h, config/tc-h8300.c
* config/tc-h8500.c, config/tc-hppa.c, config/tc-hppa.h
* config/tc-i370.c, config/tc-i370.h, config/tc-i386.c
* config/tc-i386.h, config/tc-i860.c, config/tc-i860.h
* config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c
* config/tc-ip2k.c, config/tc-ip2k.h, config/tc-iq2000.c
* config/tc-iq2000.h, config/tc-m32r.c, config/tc-m32r.h
* config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c
* config/tc-m68k.h, config/tc-m88k.c, config/tc-maxq.c
* config/tc-mcore.c, config/tc-mcore.h, config/tc-mips.c
* config/tc-mips.h, config/tc-mmix.c, config/tc-mn10200.c
* config/tc-mn10300.c, config/tc-msp430.c, config/tc-ns32k.c
* config/tc-openrisc.h, config/tc-or32.c, config/tc-or32.h
* config/tc-pdp11.c, config/tc-pj.c, config/tc-pj.h
* config/tc-ppc.c, config/tc-ppc.h, config/tc-s390.c
* config/tc-s390.h, config/tc-sh64.c, config/tc-sh.c
* config/tc-sh.h, config/tc-sparc.c, config/tc-sparc.h
* config/tc-tahoe.c, config/tc-tic30.c, config/tc-tic4x.c
* config/tc-tic54x.c, config/tc-tic80.c, config/tc-v850.c
* config/tc-v850.h, config/tc-vax.c, config/tc-vax.h
* config/tc-w65.c, config/tc-xstormy16.c, config/tc-xstormy16.h
* config/tc-xtensa.c, config/tc-z8k.c:
Replace all instances of the string "_apply_fix3" with
"_apply_fix".
* po/POTFILES.in, po/gas.pot: Regenerate.
bfd:
* coff-i386.c: Change md_apply_fix3 to md_apply_fix in comment.
cgen:
* doc/porting.texi: Change all mention of md_apply_fix3 and
gas_cgen_md_apply_fix3 to md_apply_fix and gas_cgen_md_apply_fix
respectively.
2005-06-08 01:54:22 +08:00
|
|
|
|
own overflow checking in md_apply_fix. This is necessary because
|
1999-05-03 15:29:11 +08:00
|
|
|
|
the insn size is 4 and fixup_segment will signal an overflow for
|
|
|
|
|
large 8 byte quantities. */
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
2009-12-11 21:42:17 +08:00
|
|
|
|
if (theinsn->reloc == BFD_RELOC_SPARC_OLO10)
|
|
|
|
|
fixP->tc_fix_data = theinsn->exp2.X_add_number;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
last_insn = insn;
|
2009-12-11 21:42:17 +08:00
|
|
|
|
last_opcode = theinsn->opcode;
|
2000-11-21 20:40:14 +08:00
|
|
|
|
|
|
|
|
|
dwarf2_emit_insn (4);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-01 20:07:50 +08:00
|
|
|
|
const char *
|
2007-10-18 00:45:56 +08:00
|
|
|
|
md_atof (int type, char *litP, int *sizeP)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2007-10-18 00:45:56 +08:00
|
|
|
|
return ieee_md_atof (type, litP, sizeP, target_big_endian);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write a value out to the object file, using the appropriate
|
|
|
|
|
endianness. */
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_number_to_chars (char *buf, valueT val, int n)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (target_big_endian)
|
|
|
|
|
number_to_chars_bigendian (buf, val, n);
|
|
|
|
|
else if (target_little_endian_data
|
|
|
|
|
&& ((n == 4 || n == 2) && ~now_seg->flags & SEC_ALLOC))
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Output debug words, which are not in allocated sections, as big
|
|
|
|
|
endian. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
number_to_chars_bigendian (buf, val, n);
|
|
|
|
|
else if (target_little_endian_data || ! target_big_endian)
|
|
|
|
|
number_to_chars_littleendian (buf, val, n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Apply a fixS to the frags, now that we know the value it ought to
|
2000-09-26 15:09:19 +08:00
|
|
|
|
hold. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2001-11-16 05:29:00 +08:00
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_apply_fix (fixS *fixP, valueT *valP, segT segment ATTRIBUTE_UNUSED)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
|
2001-11-16 05:29:00 +08:00
|
|
|
|
offsetT val = * (offsetT *) valP;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
long insn;
|
|
|
|
|
|
* gas/app, gas/as.c, gas/as.h, gas/atof-generic.c, gas/cgen.c,
gas/config/atof-ieee.c, gas/config/obj-aout.c,
gas/config/obj-coff.c, gas/config/obj-ecoff.c,
gas/config/obj-elf.c, gas/config/obj-som.c, gas/config/tc-alpha.c,
gas/config/tc-arc.c, gas/config/tc-arm.c, gas/config/tc-cr16.c,
gas/config/tc-cris.c, gas/config/tc-crx.c, gas/config/tc-d30v.c,
gas/config/tc-dlx.c, gas/config/tc-hppa.c, gas/config/tc-i370.c,
gas/config/tc-i386-intel.c, gas/config/tc-i386.c,
gas/config/tc-i860.c, gas/config/tc-i960.c, gas/config/tc-ia64.c,
gas/config/tc-iq2000.c, gas/config/tc-m32c.c,
gas/config/tc-m32r.c, gas/config/tc-m68hc11.c,
gas/config/tc-m68k.c, gas/config/tc-maxq.c, gas/config/tc-mcore.c,
gas/config/tc-mep.c, gas/config/tc-mips.c, gas/config/tc-mmix.c,
gas/config/tc-mn10300.c, gas/config/tc-moxie.c,
gas/config/tc-ns32k.c, gas/config/tc-pj.c, gas/config/tc-ppc.c,
gas/config/tc-s390.c, gas/config/tc-score.c,
gas/config/tc-score7.c, gas/config/tc-sh.c, gas/config/tc-sparc.c,
gas/config/tc-spu.c, gas/config/tc-tic30.c, gas/config/tc-vax.c,
gas/config/tc-xtensa.c, gas/config/xtensa-relax.c,
gas/dw2gencfi.c, gas/dwarf2dbg.c, gas/ehopt.c, gas/expr.c,
gas/frags.c, gas/input-file.c, gas/read.c, gas/sb.c,
gas/subsegs.c, gas/symbols.c, gas/write.c: Change the name of the
gas macro `assert' to `gas_assert'.
2009-06-23 01:56:02 +08:00
|
|
|
|
gas_assert (fixP->fx_r_type < BFD_RELOC_UNUSED);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
fixP->fx_addnumber = val; /* Remember value for emit_reloc. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
|
/* SPARC ELF relocations don't use an addend in the data field. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (fixP->fx_addsy != NULL)
|
2004-10-02 08:18:31 +08:00
|
|
|
|
{
|
|
|
|
|
switch (fixP->fx_r_type)
|
|
|
|
|
{
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_HI22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_LO10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_CALL:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_HI22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_LO10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_CALL:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDO_HIX22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDO_LOX10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDO_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_HI22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_LO10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_LD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_LDX:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LE_HIX22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LE_LOX10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_DTPMOD32:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_DTPMOD64:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_DTPOFF32:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_DTPOFF64:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_TPOFF32:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_TPOFF64:
|
|
|
|
|
S_SET_THREAD_LOCAL (fixP->fx_addsy);
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-05-03 15:29:11 +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. */
|
|
|
|
|
if (fixP->fx_r_type == BFD_RELOC_32_PCREL_S2 && fixP->fx_addsy)
|
|
|
|
|
val += fixP->fx_where + fixP->fx_frag->fr_address;
|
|
|
|
|
|
|
|
|
|
/* If this is a data relocation, just output VAL. */
|
|
|
|
|
|
2011-11-17 12:24:56 +08:00
|
|
|
|
if (fixP->fx_r_type == BFD_RELOC_8)
|
|
|
|
|
{
|
|
|
|
|
md_number_to_chars (buf, val, 1);
|
|
|
|
|
}
|
|
|
|
|
else if (fixP->fx_r_type == BFD_RELOC_16
|
|
|
|
|
|| fixP->fx_r_type == BFD_RELOC_SPARC_UA16)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
md_number_to_chars (buf, val, 2);
|
|
|
|
|
}
|
|
|
|
|
else if (fixP->fx_r_type == BFD_RELOC_32
|
2001-05-28 17:23:54 +08:00
|
|
|
|
|| fixP->fx_r_type == BFD_RELOC_SPARC_UA32
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|| fixP->fx_r_type == BFD_RELOC_SPARC_REV32)
|
|
|
|
|
{
|
|
|
|
|
md_number_to_chars (buf, val, 4);
|
|
|
|
|
}
|
2001-05-28 17:23:54 +08:00
|
|
|
|
else if (fixP->fx_r_type == BFD_RELOC_64
|
|
|
|
|
|| fixP->fx_r_type == BFD_RELOC_SPARC_UA64)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
md_number_to_chars (buf, val, 8);
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
else if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|| fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_done = 0;
|
2001-11-16 05:29:00 +08:00
|
|
|
|
return;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* It's a relocation against an instruction. */
|
|
|
|
|
|
|
|
|
|
if (INSN_BIG_ENDIAN)
|
|
|
|
|
insn = bfd_getb32 ((unsigned char *) buf);
|
|
|
|
|
else
|
|
|
|
|
insn = bfd_getl32 ((unsigned char *) buf);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
switch (fixP->fx_r_type)
|
|
|
|
|
{
|
|
|
|
|
case BFD_RELOC_32_PCREL_S2:
|
|
|
|
|
val = val >> 2;
|
|
|
|
|
/* FIXME: This increment-by-one deserves a comment of why it's
|
|
|
|
|
being done! */
|
|
|
|
|
if (! sparc_pic_code
|
|
|
|
|
|| fixP->fx_addsy == NULL
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
|| symbol_section_p (fixP->fx_addsy))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
++val;
|
2000-05-26 14:45:55 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
insn |= val & 0x3fffffff;
|
2000-05-26 14:45:55 +08:00
|
|
|
|
|
2017-04-25 17:40:43 +08:00
|
|
|
|
/* See if we have a delay slot. In that case we attempt to
|
|
|
|
|
optimize several cases transforming CALL instructions
|
|
|
|
|
into branches. But we can only do that if the relocation
|
|
|
|
|
can be completely resolved here, i.e. if no undefined
|
|
|
|
|
symbol is associated with it. */
|
|
|
|
|
if (sparc_relax && fixP->fx_addsy == NULL
|
2019-04-16 09:40:44 +08:00
|
|
|
|
&& fixP->fx_where + 8 <= fixP->fx_frag->fr_fix)
|
2000-05-26 14:45:55 +08:00
|
|
|
|
{
|
|
|
|
|
#define G0 0
|
|
|
|
|
#define O7 15
|
|
|
|
|
#define XCC (2 << 20)
|
|
|
|
|
#define COND(x) (((x)&0xf)<<25)
|
|
|
|
|
#define CONDA COND(0x8)
|
|
|
|
|
#define INSN_BPA (F2(0,1) | CONDA | BPRED | XCC)
|
|
|
|
|
#define INSN_BA (F2(0,2) | CONDA)
|
|
|
|
|
#define INSN_OR F3(2, 0x2, 0)
|
|
|
|
|
#define INSN_NOP F2(0,4)
|
|
|
|
|
|
|
|
|
|
long delay;
|
|
|
|
|
|
|
|
|
|
/* If the instruction is a call with either:
|
|
|
|
|
restore
|
|
|
|
|
arithmetic instruction with rd == %o7
|
|
|
|
|
where rs1 != %o7 and rs2 if it is register != %o7
|
|
|
|
|
then we can optimize if the call destination is near
|
|
|
|
|
by changing the call into a branch always. */
|
|
|
|
|
if (INSN_BIG_ENDIAN)
|
|
|
|
|
delay = bfd_getb32 ((unsigned char *) buf + 4);
|
|
|
|
|
else
|
|
|
|
|
delay = bfd_getl32 ((unsigned char *) buf + 4);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if ((insn & OP (~0)) != OP (1) || (delay & OP (~0)) != OP (2))
|
2000-05-26 14:45:55 +08:00
|
|
|
|
break;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if ((delay & OP3 (~0)) != OP3 (0x3d) /* Restore. */
|
|
|
|
|
&& ((delay & OP3 (0x28)) != 0 /* Arithmetic. */
|
|
|
|
|
|| ((delay & RD (~0)) != RD (O7))))
|
2000-05-26 14:45:55 +08:00
|
|
|
|
break;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if ((delay & RS1 (~0)) == RS1 (O7)
|
|
|
|
|
|| ((delay & F3I (~0)) == 0
|
|
|
|
|
&& (delay & RS2 (~0)) == RS2 (O7)))
|
2000-05-26 14:45:55 +08:00
|
|
|
|
break;
|
|
|
|
|
/* Ensure the branch will fit into simm22. */
|
|
|
|
|
if ((val & 0x3fe00000)
|
|
|
|
|
&& (val & 0x3fe00000) != 0x3fe00000)
|
|
|
|
|
break;
|
|
|
|
|
/* Check if the arch is v9 and branch will fit
|
|
|
|
|
into simm19. */
|
|
|
|
|
if (((val & 0x3c0000) == 0
|
|
|
|
|
|| (val & 0x3c0000) == 0x3c0000)
|
|
|
|
|
&& (sparc_arch_size == 64
|
|
|
|
|
|| current_architecture >= SPARC_OPCODE_ARCH_V9))
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* ba,pt %xcc */
|
2000-05-26 14:45:55 +08:00
|
|
|
|
insn = INSN_BPA | (val & 0x7ffff);
|
|
|
|
|
else
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* ba */
|
2000-05-26 14:45:55 +08:00
|
|
|
|
insn = INSN_BA | (val & 0x3fffff);
|
|
|
|
|
if (fixP->fx_where >= 4
|
2000-07-27 12:05:05 +08:00
|
|
|
|
&& ((delay & (0xffffffff ^ RS1 (~0)))
|
|
|
|
|
== (INSN_OR | RD (O7) | RS2 (G0))))
|
2000-05-26 14:45:55 +08:00
|
|
|
|
{
|
|
|
|
|
long setter;
|
|
|
|
|
int reg;
|
|
|
|
|
|
|
|
|
|
if (INSN_BIG_ENDIAN)
|
|
|
|
|
setter = bfd_getb32 ((unsigned char *) buf - 4);
|
|
|
|
|
else
|
|
|
|
|
setter = bfd_getl32 ((unsigned char *) buf - 4);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if ((setter & (0xffffffff ^ RD (~0)))
|
2000-08-04 09:01:32 +08:00
|
|
|
|
!= (INSN_OR | RS1 (O7) | RS2 (G0)))
|
2000-05-26 14:45:55 +08:00
|
|
|
|
break;
|
|
|
|
|
/* The sequence was
|
|
|
|
|
or %o7, %g0, %rN
|
|
|
|
|
call foo
|
|
|
|
|
or %rN, %g0, %o7
|
|
|
|
|
|
|
|
|
|
If call foo was replaced with ba, replace
|
|
|
|
|
or %rN, %g0, %o7 with nop. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
reg = (delay & RS1 (~0)) >> 14;
|
|
|
|
|
if (reg != ((setter & RD (~0)) >> 25)
|
2000-05-26 14:45:55 +08:00
|
|
|
|
|| reg == G0 || reg == O7)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (INSN_BIG_ENDIAN)
|
|
|
|
|
bfd_putb32 (INSN_NOP, (unsigned char *) buf + 4);
|
|
|
|
|
else
|
|
|
|
|
bfd_putl32 (INSN_NOP, (unsigned char *) buf + 4);
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_11:
|
|
|
|
|
if (! in_signed_range (val, 0x7ff))
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
insn |= val & 0x7ff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_10:
|
|
|
|
|
if (! in_signed_range (val, 0x3ff))
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
insn |= val & 0x3ff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_7:
|
|
|
|
|
if (! in_bitfield_range (val, 0x7f))
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
insn |= val & 0x7f;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_6:
|
|
|
|
|
if (! in_bitfield_range (val, 0x3f))
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
insn |= val & 0x3f;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_5:
|
|
|
|
|
if (! in_bitfield_range (val, 0x1f))
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
insn |= val & 0x1f;
|
|
|
|
|
break;
|
|
|
|
|
|
2012-04-13 00:26:06 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP10:
|
|
|
|
|
if ((val & 3)
|
|
|
|
|
|| val >= 0x007fc
|
|
|
|
|
|| val <= -(offsetT) 0x808)
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
/* FIXME: The +1 deserves a comment. */
|
|
|
|
|
val = (val >> 2) + 1;
|
|
|
|
|
insn |= ((val & 0x300) << 11)
|
|
|
|
|
| ((val & 0xff) << 5);
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP16:
|
2007-05-29 21:18:59 +08:00
|
|
|
|
if ((val & 3)
|
|
|
|
|
|| val >= 0x1fffc
|
|
|
|
|
|| val <= -(offsetT) 0x20008)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
/* FIXME: The +1 deserves a comment. */
|
|
|
|
|
val = (val >> 2) + 1;
|
|
|
|
|
insn |= ((val & 0xc000) << 6) | (val & 0x3fff);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_WDISP19:
|
2007-05-29 21:18:59 +08:00
|
|
|
|
if ((val & 3)
|
|
|
|
|
|| val >= 0xffffc
|
|
|
|
|
|| val <= -(offsetT) 0x100008)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
/* FIXME: The +1 deserves a comment. */
|
|
|
|
|
val = (val >> 2) + 1;
|
|
|
|
|
insn |= val & 0x7ffff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_HH22:
|
|
|
|
|
val = BSR (val, 32);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_LM22:
|
|
|
|
|
case BFD_RELOC_HI22:
|
|
|
|
|
if (!fixP->fx_addsy)
|
2001-11-16 05:29:00 +08:00
|
|
|
|
insn |= (val >> 10) & 0x3fffff;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
else
|
2001-11-16 05:29:00 +08:00
|
|
|
|
/* FIXME: Need comment explaining why we do this. */
|
|
|
|
|
insn &= ~0xffff;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC22:
|
|
|
|
|
if (val & ~0x003fffff)
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
insn |= (val & 0x3fffff);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_HM10:
|
|
|
|
|
val = BSR (val, 32);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_LO10:
|
|
|
|
|
if (!fixP->fx_addsy)
|
2001-11-16 05:29:00 +08:00
|
|
|
|
insn |= val & 0x3ff;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
else
|
2001-11-16 05:29:00 +08:00
|
|
|
|
/* FIXME: Need comment explaining why we do this. */
|
|
|
|
|
insn &= ~0xff;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1999-07-17 05:30:35 +08:00
|
|
|
|
case BFD_RELOC_SPARC_OLO10:
|
|
|
|
|
val &= 0x3ff;
|
|
|
|
|
val += fixP->tc_fix_data;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-07-17 05:30:35 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_SPARC13:
|
|
|
|
|
if (! in_signed_range (val, 0x1fff))
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relocation overflow"));
|
|
|
|
|
insn |= val & 0x1fff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_WDISP22:
|
|
|
|
|
val = (val >> 2) + 1;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Fall through. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_SPARC_BASE22:
|
|
|
|
|
insn |= val & 0x3fffff;
|
|
|
|
|
break;
|
|
|
|
|
|
2012-04-13 00:26:06 +08:00
|
|
|
|
case BFD_RELOC_SPARC_H34:
|
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma tval = val;
|
|
|
|
|
tval >>= 12;
|
|
|
|
|
insn |= tval & 0x3fffff;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_SPARC_H44:
|
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma tval = val;
|
|
|
|
|
tval >>= 22;
|
|
|
|
|
insn |= tval & 0x3fffff;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_M44:
|
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
insn |= (val >> 12) & 0x3ff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_L44:
|
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
insn |= val & 0xfff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_HIX22:
|
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
{
|
2000-08-04 09:01:32 +08:00
|
|
|
|
val ^= ~(offsetT) 0;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
insn |= (val >> 10) & 0x3fffff;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_SPARC_LOX10:
|
|
|
|
|
if (!fixP->fx_addsy)
|
|
|
|
|
insn |= 0x1c00 | (val & 0x3ff);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_NONE:
|
|
|
|
|
default:
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("bad or unhandled relocation type: 0x%02x"),
|
|
|
|
|
fixP->fx_r_type);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (INSN_BIG_ENDIAN)
|
|
|
|
|
bfd_putb32 (insn, (unsigned char *) buf);
|
|
|
|
|
else
|
|
|
|
|
bfd_putl32 (insn, (unsigned char *) buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Are we finished with this relocation now? */
|
|
|
|
|
if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
|
|
|
|
|
fixP->fx_done = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Translate internal representation of relocation info to BFD target
|
|
|
|
|
format. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-07-17 05:30:35 +08:00
|
|
|
|
arelent **
|
2008-08-13 07:39:31 +08:00
|
|
|
|
tc_gen_reloc (asection *section, fixS *fixp)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
1999-07-17 05:30:35 +08:00
|
|
|
|
static arelent *relocs[3];
|
1999-05-03 15:29:11 +08:00
|
|
|
|
arelent *reloc;
|
|
|
|
|
bfd_reloc_code_real_type code;
|
|
|
|
|
|
2016-04-07 04:26:46 +08:00
|
|
|
|
relocs[0] = reloc = XNEW (arelent);
|
1999-07-17 05:30:35 +08:00
|
|
|
|
relocs[1] = NULL;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2016-04-07 04:26:46 +08:00
|
|
|
|
reloc->sym_ptr_ptr = XNEW (asymbol *);
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
*reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
|
|
|
|
|
|
|
|
|
|
switch (fixp->fx_r_type)
|
|
|
|
|
{
|
2017-08-23 20:46:45 +08:00
|
|
|
|
case BFD_RELOC_8:
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_16:
|
|
|
|
|
case BFD_RELOC_32:
|
2017-08-23 20:46:45 +08:00
|
|
|
|
case BFD_RELOC_64:
|
|
|
|
|
if (fixp->fx_pcrel)
|
|
|
|
|
{
|
|
|
|
|
switch (fixp->fx_size)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
as_bad_where (fixp->fx_file, fixp->fx_line,
|
|
|
|
|
_("can not do %d byte pc-relative relocation"),
|
|
|
|
|
fixp->fx_size);
|
|
|
|
|
code = fixp->fx_r_type;
|
|
|
|
|
fixp->fx_pcrel = 0;
|
|
|
|
|
break;
|
|
|
|
|
case 1: code = BFD_RELOC_8_PCREL; break;
|
|
|
|
|
case 2: code = BFD_RELOC_16_PCREL; break;
|
|
|
|
|
case 4: code = BFD_RELOC_32_PCREL; break;
|
|
|
|
|
#ifdef BFD64
|
|
|
|
|
case 8: code = BFD_RELOC_64_PCREL; break;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
if (fixp->fx_pcrel)
|
|
|
|
|
fixp->fx_addnumber = fixp->fx_offset;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
/* Fall through. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_HI22:
|
|
|
|
|
case BFD_RELOC_LO10:
|
|
|
|
|
case BFD_RELOC_32_PCREL_S2:
|
|
|
|
|
case BFD_RELOC_SPARC13:
|
1999-06-07 20:53:56 +08:00
|
|
|
|
case BFD_RELOC_SPARC22:
|
2008-04-23 15:49:33 +08:00
|
|
|
|
case BFD_RELOC_SPARC_PC22:
|
|
|
|
|
case BFD_RELOC_SPARC_PC10:
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_SPARC_BASE13:
|
2012-04-13 00:26:06 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP10:
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_SPARC_WDISP16:
|
|
|
|
|
case BFD_RELOC_SPARC_WDISP19:
|
|
|
|
|
case BFD_RELOC_SPARC_WDISP22:
|
|
|
|
|
case BFD_RELOC_SPARC_5:
|
|
|
|
|
case BFD_RELOC_SPARC_6:
|
|
|
|
|
case BFD_RELOC_SPARC_7:
|
|
|
|
|
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:
|
2012-04-13 00:26:06 +08:00
|
|
|
|
case BFD_RELOC_SPARC_H34:
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_SPARC_H44:
|
|
|
|
|
case BFD_RELOC_SPARC_M44:
|
|
|
|
|
case BFD_RELOC_SPARC_L44:
|
|
|
|
|
case BFD_RELOC_SPARC_HIX22:
|
|
|
|
|
case BFD_RELOC_SPARC_LOX10:
|
|
|
|
|
case BFD_RELOC_SPARC_REV32:
|
1999-07-17 05:30:35 +08:00
|
|
|
|
case BFD_RELOC_SPARC_OLO10:
|
2001-05-28 17:23:54 +08:00
|
|
|
|
case BFD_RELOC_SPARC_UA16:
|
|
|
|
|
case BFD_RELOC_SPARC_UA32:
|
|
|
|
|
case BFD_RELOC_SPARC_UA64:
|
2001-12-22 06:35:24 +08:00
|
|
|
|
case BFD_RELOC_8_PCREL:
|
|
|
|
|
case BFD_RELOC_16_PCREL:
|
|
|
|
|
case BFD_RELOC_32_PCREL:
|
|
|
|
|
case BFD_RELOC_64_PCREL:
|
|
|
|
|
case BFD_RELOC_SPARC_PLT32:
|
|
|
|
|
case BFD_RELOC_SPARC_PLT64:
|
1999-05-03 15:29:11 +08:00
|
|
|
|
case BFD_RELOC_VTABLE_ENTRY:
|
|
|
|
|
case BFD_RELOC_VTABLE_INHERIT:
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_HI22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_LO10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_GD_CALL:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_HI22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_LO10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDM_CALL:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDO_HIX22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDO_LOX10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LDO_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_HI22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_LO10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_LD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_LDX:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_IE_ADD:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LE_HIX22:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_LE_LOX10:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_DTPOFF32:
|
|
|
|
|
case BFD_RELOC_SPARC_TLS_DTPOFF64:
|
2008-04-16 16:51:18 +08:00
|
|
|
|
case BFD_RELOC_SPARC_GOTDATA_OP_HIX22:
|
|
|
|
|
case BFD_RELOC_SPARC_GOTDATA_OP_LOX10:
|
|
|
|
|
case BFD_RELOC_SPARC_GOTDATA_OP:
|
1999-05-03 15:29:11 +08:00
|
|
|
|
code = fixp->fx_r_type;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we are generating PIC code, we need to generate a different
|
|
|
|
|
set of relocs. */
|
|
|
|
|
|
|
|
|
|
#define GOT_NAME "_GLOBAL_OFFSET_TABLE_"
|
bfd/
* config.bfd (sparc-*-vxworks*): New stanza.
* configure.in (bfd_elf32_sparc_vxworks_vec): New stanza.
(bfd_elf32_sparc_vec, bfd_elf64_sparc_vec): Add elf-vxworks.lo.
* configure: Regenerate.
* elf32-sparc.c: Include elf-vxworks.h.
(elf32_sparc_vxworks_link_hash_table_create: New.
(elf32_sparc_vxworks_final_write_processing): New.
(TARGET_BIG_SYM): Override for VxWorks.
(TARGET_BIG_NAME, ELF_MINPAGESIZE): Likewise.
(bfd_elf32_bfd_link_hash_table_create): Likewise.
(elf_backend_want_got_plt, elf_backend_plt_readonly): Likewise.
(elf_backend_got_header_size, elf_backend_add_symbol_hook): Likewise.
(elf_backend_link_output_symbol_hook): Likewise.
(elf_backend_emit_relocs): Likewise.
(elf_backend_final_write_processing, elf32_bed): Likewise.
* elfxx-sparc.c: Include libiberty.h and elf-vxworks.h.
(sparc_vxworks_exec_plt0_entry, sparc_vxworks_exec_plt_entry): New.
(sparc_vxworks_shared_plt0_entry, sparc_vxworks_shared_plt_entry): New.
(_bfd_sparc_elf_link_hash_table_create): Don't initialize
build_plt_entry here.
(create_got_section): Initialize sgotplt for VxWorks.
(_bfd_sparc_elf_create_dynamic_sections): Initialize build_plt_entry,
plt_header_size and plt_entry_size, with new VxWorks-specific settings.
Call elf_vxworks_create_dynamic_sections for VxWorks.
(allocate_dynrelocs): Use plt_header_size and plt_entry_size.
Allocate room for .got.plt and .rela.plt.unloaded entries on VxWorks.
(_bfd_sparc_elf_size_dynamic_sections): Don't allocate a nop in .plt
for VxWorks. Check for the .got.plt section.
(sparc_vxworks_build_plt_entry): New function.
(_bfd_sparc_elf_finish_dynamic_symbol): Add handling of VxWorks PLTs.
Don't make _GLOBAL_OFFSET_TABLE_ and _PROCEDURE_LINKAGE_TABLE_
absolute on VxWorks.
(sparc32_finish_dyn): Add special handling for DT_RELASZ
and DT_PLTGOT on VxWorks.
(sparc_vxworks_finish_exec_plt): New.
(sparc_vxworks_finish_shared_plt): New.
(_bfd_sparc_elf_finish_dynamic_sections): Call them.
Use plt_header_size and plt_entry_size.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table): Add is_vxworks,
srelplt2, sgotplt, plt_header_size and plt_entry_size fields.
* Makefile.am (elfxx-sparc.lo): Depend on elf-vxworks.h.
(elf32-sparc.lo): Likewise.
* Makefile.in: Regenerate.
* targets.c (bfd_elf32_sparc_vxworks_vec): Declare.
(_bfd_target_vector): Add a pointer to it.
gas/
* config/tc-sparc.c (sparc_target_format): Handle TE_VXWORKS.
(GOTT_BASE, GOTT_INDEX): New.
(tc_gen_reloc): Don't alter relocations against GOTT_BASE and
GOTT_INDEX when generating VxWorks PIC.
* configure.tgt (sparc*-*-vxworks*): Remove this special case;
use the generic *-*-vxworks* stanza instead.
gas/testsuite/
* gas/sparc/vxworks-pic.s, gas/sparc/vxworks-pic.d: New test.
* gas/sparc/sparc.exp: Run it. Remove sparc*-*-vxworks* XFAILs.
ld/
* configure.tgt (sparc*-*-vxworks*): New stanza.
* emulparams/elf32_sparc_vxworks.sh: New file.
* Makefile.am (ALL_EMULATIONS): Add eelf32_sparc_vxworks.o.
(eelf32_sparc_vxworks.c): New rule.
* Makefile.in: Regenerate.
ld/testsuite/
* ld-sparc/vxworks1.dd, ld-sparc/vxworks1.ld, ld-sparc/vxworks1-lib.dd,
* ld-sparc/vxworks1-lib.nd, ld-sparc/vxworks1-lib.rd,
* ld-sparc/vxworks1-lib.s, ld-sparc/vxworks1.rd, ld-sparc/vxworks1.s,
* ld-sparc/vxworks1-static.d, ld-sparc/vxworks2.s,
* ld-sparc/vxworks2.sd, ld-sparc/vxworks2-static.sd: New tests.
* ld-sparc/sparc.exp: Run them.
2006-04-05 20:41:59 +08:00
|
|
|
|
#ifdef TE_VXWORKS
|
|
|
|
|
#define GOTT_BASE "__GOTT_BASE__"
|
|
|
|
|
#define GOTT_INDEX "__GOTT_INDEX__"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2018-04-16 14:03:26 +08:00
|
|
|
|
/* This code must be parallel to tc_fix_adjustable. */
|
1999-08-09 00:04:36 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (sparc_pic_code)
|
|
|
|
|
{
|
|
|
|
|
switch (code)
|
|
|
|
|
{
|
|
|
|
|
case BFD_RELOC_32_PCREL_S2:
|
2003-01-23 20:51:05 +08:00
|
|
|
|
if (generic_force_reloc (fixp))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
code = BFD_RELOC_SPARC_WPLT30;
|
|
|
|
|
break;
|
|
|
|
|
case BFD_RELOC_HI22:
|
bfd/
* config.bfd (sparc-*-vxworks*): New stanza.
* configure.in (bfd_elf32_sparc_vxworks_vec): New stanza.
(bfd_elf32_sparc_vec, bfd_elf64_sparc_vec): Add elf-vxworks.lo.
* configure: Regenerate.
* elf32-sparc.c: Include elf-vxworks.h.
(elf32_sparc_vxworks_link_hash_table_create: New.
(elf32_sparc_vxworks_final_write_processing): New.
(TARGET_BIG_SYM): Override for VxWorks.
(TARGET_BIG_NAME, ELF_MINPAGESIZE): Likewise.
(bfd_elf32_bfd_link_hash_table_create): Likewise.
(elf_backend_want_got_plt, elf_backend_plt_readonly): Likewise.
(elf_backend_got_header_size, elf_backend_add_symbol_hook): Likewise.
(elf_backend_link_output_symbol_hook): Likewise.
(elf_backend_emit_relocs): Likewise.
(elf_backend_final_write_processing, elf32_bed): Likewise.
* elfxx-sparc.c: Include libiberty.h and elf-vxworks.h.
(sparc_vxworks_exec_plt0_entry, sparc_vxworks_exec_plt_entry): New.
(sparc_vxworks_shared_plt0_entry, sparc_vxworks_shared_plt_entry): New.
(_bfd_sparc_elf_link_hash_table_create): Don't initialize
build_plt_entry here.
(create_got_section): Initialize sgotplt for VxWorks.
(_bfd_sparc_elf_create_dynamic_sections): Initialize build_plt_entry,
plt_header_size and plt_entry_size, with new VxWorks-specific settings.
Call elf_vxworks_create_dynamic_sections for VxWorks.
(allocate_dynrelocs): Use plt_header_size and plt_entry_size.
Allocate room for .got.plt and .rela.plt.unloaded entries on VxWorks.
(_bfd_sparc_elf_size_dynamic_sections): Don't allocate a nop in .plt
for VxWorks. Check for the .got.plt section.
(sparc_vxworks_build_plt_entry): New function.
(_bfd_sparc_elf_finish_dynamic_symbol): Add handling of VxWorks PLTs.
Don't make _GLOBAL_OFFSET_TABLE_ and _PROCEDURE_LINKAGE_TABLE_
absolute on VxWorks.
(sparc32_finish_dyn): Add special handling for DT_RELASZ
and DT_PLTGOT on VxWorks.
(sparc_vxworks_finish_exec_plt): New.
(sparc_vxworks_finish_shared_plt): New.
(_bfd_sparc_elf_finish_dynamic_sections): Call them.
Use plt_header_size and plt_entry_size.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table): Add is_vxworks,
srelplt2, sgotplt, plt_header_size and plt_entry_size fields.
* Makefile.am (elfxx-sparc.lo): Depend on elf-vxworks.h.
(elf32-sparc.lo): Likewise.
* Makefile.in: Regenerate.
* targets.c (bfd_elf32_sparc_vxworks_vec): Declare.
(_bfd_target_vector): Add a pointer to it.
gas/
* config/tc-sparc.c (sparc_target_format): Handle TE_VXWORKS.
(GOTT_BASE, GOTT_INDEX): New.
(tc_gen_reloc): Don't alter relocations against GOTT_BASE and
GOTT_INDEX when generating VxWorks PIC.
* configure.tgt (sparc*-*-vxworks*): Remove this special case;
use the generic *-*-vxworks* stanza instead.
gas/testsuite/
* gas/sparc/vxworks-pic.s, gas/sparc/vxworks-pic.d: New test.
* gas/sparc/sparc.exp: Run it. Remove sparc*-*-vxworks* XFAILs.
ld/
* configure.tgt (sparc*-*-vxworks*): New stanza.
* emulparams/elf32_sparc_vxworks.sh: New file.
* Makefile.am (ALL_EMULATIONS): Add eelf32_sparc_vxworks.o.
(eelf32_sparc_vxworks.c): New rule.
* Makefile.in: Regenerate.
ld/testsuite/
* ld-sparc/vxworks1.dd, ld-sparc/vxworks1.ld, ld-sparc/vxworks1-lib.dd,
* ld-sparc/vxworks1-lib.nd, ld-sparc/vxworks1-lib.rd,
* ld-sparc/vxworks1-lib.s, ld-sparc/vxworks1.rd, ld-sparc/vxworks1.s,
* ld-sparc/vxworks1-static.d, ld-sparc/vxworks2.s,
* ld-sparc/vxworks2.sd, ld-sparc/vxworks2-static.sd: New tests.
* ld-sparc/sparc.exp: Run them.
2006-04-05 20:41:59 +08:00
|
|
|
|
code = BFD_RELOC_SPARC_GOT22;
|
|
|
|
|
if (fixp->fx_addsy != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (S_GET_NAME (fixp->fx_addsy), GOT_NAME) == 0)
|
|
|
|
|
code = BFD_RELOC_SPARC_PC22;
|
|
|
|
|
#ifdef TE_VXWORKS
|
|
|
|
|
if (strcmp (S_GET_NAME (fixp->fx_addsy), GOTT_BASE) == 0
|
|
|
|
|
|| strcmp (S_GET_NAME (fixp->fx_addsy), GOTT_INDEX) == 0)
|
|
|
|
|
code = BFD_RELOC_HI22; /* Unchanged. */
|
|
|
|
|
#endif
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
case BFD_RELOC_LO10:
|
bfd/
* config.bfd (sparc-*-vxworks*): New stanza.
* configure.in (bfd_elf32_sparc_vxworks_vec): New stanza.
(bfd_elf32_sparc_vec, bfd_elf64_sparc_vec): Add elf-vxworks.lo.
* configure: Regenerate.
* elf32-sparc.c: Include elf-vxworks.h.
(elf32_sparc_vxworks_link_hash_table_create: New.
(elf32_sparc_vxworks_final_write_processing): New.
(TARGET_BIG_SYM): Override for VxWorks.
(TARGET_BIG_NAME, ELF_MINPAGESIZE): Likewise.
(bfd_elf32_bfd_link_hash_table_create): Likewise.
(elf_backend_want_got_plt, elf_backend_plt_readonly): Likewise.
(elf_backend_got_header_size, elf_backend_add_symbol_hook): Likewise.
(elf_backend_link_output_symbol_hook): Likewise.
(elf_backend_emit_relocs): Likewise.
(elf_backend_final_write_processing, elf32_bed): Likewise.
* elfxx-sparc.c: Include libiberty.h and elf-vxworks.h.
(sparc_vxworks_exec_plt0_entry, sparc_vxworks_exec_plt_entry): New.
(sparc_vxworks_shared_plt0_entry, sparc_vxworks_shared_plt_entry): New.
(_bfd_sparc_elf_link_hash_table_create): Don't initialize
build_plt_entry here.
(create_got_section): Initialize sgotplt for VxWorks.
(_bfd_sparc_elf_create_dynamic_sections): Initialize build_plt_entry,
plt_header_size and plt_entry_size, with new VxWorks-specific settings.
Call elf_vxworks_create_dynamic_sections for VxWorks.
(allocate_dynrelocs): Use plt_header_size and plt_entry_size.
Allocate room for .got.plt and .rela.plt.unloaded entries on VxWorks.
(_bfd_sparc_elf_size_dynamic_sections): Don't allocate a nop in .plt
for VxWorks. Check for the .got.plt section.
(sparc_vxworks_build_plt_entry): New function.
(_bfd_sparc_elf_finish_dynamic_symbol): Add handling of VxWorks PLTs.
Don't make _GLOBAL_OFFSET_TABLE_ and _PROCEDURE_LINKAGE_TABLE_
absolute on VxWorks.
(sparc32_finish_dyn): Add special handling for DT_RELASZ
and DT_PLTGOT on VxWorks.
(sparc_vxworks_finish_exec_plt): New.
(sparc_vxworks_finish_shared_plt): New.
(_bfd_sparc_elf_finish_dynamic_sections): Call them.
Use plt_header_size and plt_entry_size.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table): Add is_vxworks,
srelplt2, sgotplt, plt_header_size and plt_entry_size fields.
* Makefile.am (elfxx-sparc.lo): Depend on elf-vxworks.h.
(elf32-sparc.lo): Likewise.
* Makefile.in: Regenerate.
* targets.c (bfd_elf32_sparc_vxworks_vec): Declare.
(_bfd_target_vector): Add a pointer to it.
gas/
* config/tc-sparc.c (sparc_target_format): Handle TE_VXWORKS.
(GOTT_BASE, GOTT_INDEX): New.
(tc_gen_reloc): Don't alter relocations against GOTT_BASE and
GOTT_INDEX when generating VxWorks PIC.
* configure.tgt (sparc*-*-vxworks*): Remove this special case;
use the generic *-*-vxworks* stanza instead.
gas/testsuite/
* gas/sparc/vxworks-pic.s, gas/sparc/vxworks-pic.d: New test.
* gas/sparc/sparc.exp: Run it. Remove sparc*-*-vxworks* XFAILs.
ld/
* configure.tgt (sparc*-*-vxworks*): New stanza.
* emulparams/elf32_sparc_vxworks.sh: New file.
* Makefile.am (ALL_EMULATIONS): Add eelf32_sparc_vxworks.o.
(eelf32_sparc_vxworks.c): New rule.
* Makefile.in: Regenerate.
ld/testsuite/
* ld-sparc/vxworks1.dd, ld-sparc/vxworks1.ld, ld-sparc/vxworks1-lib.dd,
* ld-sparc/vxworks1-lib.nd, ld-sparc/vxworks1-lib.rd,
* ld-sparc/vxworks1-lib.s, ld-sparc/vxworks1.rd, ld-sparc/vxworks1.s,
* ld-sparc/vxworks1-static.d, ld-sparc/vxworks2.s,
* ld-sparc/vxworks2.sd, ld-sparc/vxworks2-static.sd: New tests.
* ld-sparc/sparc.exp: Run them.
2006-04-05 20:41:59 +08:00
|
|
|
|
code = BFD_RELOC_SPARC_GOT10;
|
|
|
|
|
if (fixp->fx_addsy != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (S_GET_NAME (fixp->fx_addsy), GOT_NAME) == 0)
|
|
|
|
|
code = BFD_RELOC_SPARC_PC10;
|
|
|
|
|
#ifdef TE_VXWORKS
|
|
|
|
|
if (strcmp (S_GET_NAME (fixp->fx_addsy), GOTT_BASE) == 0
|
|
|
|
|
|| strcmp (S_GET_NAME (fixp->fx_addsy), GOTT_INDEX) == 0)
|
|
|
|
|
code = BFD_RELOC_LO10; /* Unchanged. */
|
|
|
|
|
#endif
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
break;
|
|
|
|
|
case BFD_RELOC_SPARC13:
|
|
|
|
|
code = BFD_RELOC_SPARC_GOT13;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-27 19:25:27 +08:00
|
|
|
|
/* Nothing is aligned in DWARF debugging sections. */
|
bfd_section_* macros
This large patch removes the unnecessary bfd parameter from various
bfd section macros and functions. The bfd is hardly ever used and if
needed for the bfd_set_section_* or bfd_rename_section functions can
be found via section->owner except for the com, und, abs, and ind
std_section special sections. Those sections shouldn't be modified
anyway.
The patch also removes various bfd_get_section_<field> macros,
replacing their use with bfd_section_<field>, and adds
bfd_set_section_lma. I've also fixed a minor bug in gas where
compressed section renaming was done directly rather than calling
bfd_rename_section. This would have broken bfd_get_section_by_name
and similar functions, but that hardly mattered at such a late stage
in gas processing.
bfd/
* bfd-in.h (bfd_get_section_name, bfd_get_section_vma),
(bfd_get_section_lma, bfd_get_section_alignment),
(bfd_get_section_size, bfd_get_section_flags),
(bfd_get_section_userdata): Delete.
(bfd_section_name, bfd_section_size, bfd_section_vma),
(bfd_section_lma, bfd_section_alignment): Lose bfd parameter.
(bfd_section_flags, bfd_section_userdata): New.
(bfd_is_com_section): Rename parameter.
* section.c (bfd_set_section_userdata, bfd_set_section_vma),
(bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section),
(bfd_set_section_size): Delete bfd parameter, rename section parameter.
(bfd_set_section_lma): New.
* bfd-in2.h: Regenerate.
* mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param,
update callers.
* aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c,
* coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h,
* elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c,
* elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c,
* elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c,
* elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c,
* elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c,
* elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c,
* elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c,
* elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c,
* elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c,
* elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c,
* mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c,
* peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c,
* xcofflink.c: Update throughout for bfd section macro and function
changes.
binutils/
* addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
* objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
* od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
* resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
throughout for bfd section macro and function changes.
gas/
* as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c,
* read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c,
* config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c,
* config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c,
* config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c,
* config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c,
* config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c,
* config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c,
* config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c,
* config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c,
* config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c,
* config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c,
* config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c,
* config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c,
* config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c,
* config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c,
* config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c,
* config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for
bfd section macro and function changes.
* write.c (compress_debug): Use bfd_rename_section.
gdb/
* aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
* coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
* dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
* exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
* hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
* i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
* maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
* mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
* objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
* ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
* rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
* s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
* solib-spu.c, * solib-svr4.c, * solib-target.c,
* spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
* symmisc.c, * symtab.c, * target.c, * windows-nat.c,
* xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
* mi/mi-interp.c: Update throughout for bfd section macro and
function changes.
* gcore (gcore_create_callback): Use bfd_set_section_lma.
* spu-tdep.c (spu_overlay_new_objfile): Likewise.
gprof/
* corefile.c, * symtab.c: Update throughout for bfd section
macro and function changes.
ld/
* ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c,
* emultempl/aarch64elf.em, * emultempl/aix.em,
* emultempl/armcoff.em, * emultempl/armelf.em,
* emultempl/cr16elf.em, * emultempl/cskyelf.em,
* emultempl/m68hc1xelf.em, * emultempl/m68kelf.em,
* emultempl/mipself.em, * emultempl/mmix-elfnmmo.em,
* emultempl/mmo.em, * emultempl/msp430.em,
* emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em,
* emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update
throughout for bfd section macro and function changes.
libctf/
* ctf-open-bfd.c: Update throughout for bfd section macro changes.
opcodes/
* arc-ext.c: Update throughout for bfd section macro changes.
sim/
* common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c,
* erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c,
* m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c,
* rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c,
* rx/trace.c: Update throughout for bfd section macro changes.
2019-09-16 18:55:17 +08:00
|
|
|
|
if (bfd_section_flags (section) & SEC_DEBUGGING)
|
2006-11-27 19:25:27 +08:00
|
|
|
|
switch (code)
|
|
|
|
|
{
|
|
|
|
|
case BFD_RELOC_16: code = BFD_RELOC_SPARC_UA16; break;
|
|
|
|
|
case BFD_RELOC_32: code = BFD_RELOC_SPARC_UA32; break;
|
|
|
|
|
case BFD_RELOC_64: code = BFD_RELOC_SPARC_UA64; break;
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-17 05:30:35 +08:00
|
|
|
|
if (code == BFD_RELOC_SPARC_OLO10)
|
|
|
|
|
reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_LO10);
|
|
|
|
|
else
|
|
|
|
|
reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (reloc->howto == 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad_where (fixp->fx_file, fixp->fx_line,
|
|
|
|
|
_("internal error: can't export reloc type %d (`%s')"),
|
|
|
|
|
fixp->fx_r_type, bfd_get_reloc_code_name (code));
|
1999-07-17 05:30:35 +08:00
|
|
|
|
xfree (reloc);
|
|
|
|
|
relocs[0] = NULL;
|
|
|
|
|
return relocs;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* @@ Why fx_addnumber sometimes and fx_offset other times? */
|
2001-12-22 06:35:24 +08:00
|
|
|
|
if (code != BFD_RELOC_32_PCREL_S2
|
|
|
|
|
&& code != BFD_RELOC_SPARC_WDISP22
|
|
|
|
|
&& code != BFD_RELOC_SPARC_WDISP16
|
|
|
|
|
&& code != BFD_RELOC_SPARC_WDISP19
|
2012-04-13 00:26:06 +08:00
|
|
|
|
&& code != BFD_RELOC_SPARC_WDISP10
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
&& code != BFD_RELOC_SPARC_WPLT30
|
|
|
|
|
&& code != BFD_RELOC_SPARC_TLS_GD_CALL
|
|
|
|
|
&& code != BFD_RELOC_SPARC_TLS_LDM_CALL)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
reloc->addend = fixp->fx_addnumber;
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
else if (symbol_section_p (fixp->fx_addsy))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
reloc->addend = (section->vma
|
|
|
|
|
+ fixp->fx_addnumber
|
|
|
|
|
+ md_pcrel_from (fixp));
|
|
|
|
|
else
|
|
|
|
|
reloc->addend = fixp->fx_offset;
|
|
|
|
|
|
1999-07-17 05:30:35 +08:00
|
|
|
|
/* We expand R_SPARC_OLO10 to R_SPARC_LO10 and R_SPARC_13
|
|
|
|
|
on the same location. */
|
|
|
|
|
if (code == BFD_RELOC_SPARC_OLO10)
|
|
|
|
|
{
|
2016-04-07 04:26:46 +08:00
|
|
|
|
relocs[1] = reloc = XNEW (arelent);
|
1999-07-17 05:30:35 +08:00
|
|
|
|
relocs[2] = NULL;
|
|
|
|
|
|
2016-04-07 04:26:46 +08:00
|
|
|
|
reloc->sym_ptr_ptr = XNEW (asymbol *);
|
2000-08-04 09:01:32 +08:00
|
|
|
|
*reloc->sym_ptr_ptr
|
|
|
|
|
= symbol_get_bfdsym (section_symbol (absolute_section));
|
1999-07-17 05:30:35 +08:00
|
|
|
|
reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
|
|
|
|
|
reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_SPARC13);
|
|
|
|
|
reloc->addend = fixp->tc_fix_data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return relocs;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* We have no need to default values of symbols. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
symbolS *
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Round up a section size to the appropriate boundary. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
valueT
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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.
|
2000-07-27 12:05:05 +08:00
|
|
|
|
(??? Is this right? FIXME-SOON) */
|
|
|
|
|
long
|
2008-08-13 07:39:31 +08:00
|
|
|
|
md_pcrel_from (fixS *fixP)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
long ret;
|
|
|
|
|
|
|
|
|
|
ret = fixP->fx_where + fixP->fx_frag->fr_address;
|
|
|
|
|
if (! sparc_pic_code
|
|
|
|
|
|| fixP->fx_addsy == NULL
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
|| symbol_section_p (fixP->fx_addsy))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
ret += fixP->fx_size;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return log2 (VALUE), or -1 if VALUE is not an exact positive power
|
|
|
|
|
of two. */
|
|
|
|
|
|
|
|
|
|
static int
|
2008-08-13 07:39:31 +08:00
|
|
|
|
mylog2 (int value)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
int shift;
|
|
|
|
|
|
|
|
|
|
if (value <= 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
for (shift = 0; (value & 1) == 0; value >>= 1)
|
|
|
|
|
++shift;
|
|
|
|
|
|
|
|
|
|
return (value == 1) ? shift : -1;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Sort of like s_lcomm. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_reserve (int ignore ATTRIBUTE_UNUSED)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
char *p;
|
|
|
|
|
char c;
|
|
|
|
|
int align;
|
|
|
|
|
int size;
|
|
|
|
|
int temp;
|
|
|
|
|
symbolS *symbolP;
|
|
|
|
|
|
2015-08-21 23:42:14 +08:00
|
|
|
|
c = get_symbol_name (&name);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
p = input_line_pointer;
|
|
|
|
|
*p = c;
|
2015-08-21 23:42:14 +08:00
|
|
|
|
SKIP_WHITESPACE_AFTER_NAME ();
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
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;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
} /* Bad length. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
*p = 0;
|
|
|
|
|
symbolP = symbol_find_or_make (name);
|
|
|
|
|
*p = c;
|
|
|
|
|
|
|
|
|
|
if (strncmp (input_line_pointer, ",\"bss\"", 6) != 0
|
|
|
|
|
&& strncmp (input_line_pointer, ",\".bss\"", 7) != 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("bad .reserve segment -- expected BSS segment"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (input_line_pointer[2] == '.')
|
|
|
|
|
input_line_pointer += 7;
|
|
|
|
|
else
|
|
|
|
|
input_line_pointer += 6;
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
|
|
|
|
|
if (*input_line_pointer == ',')
|
|
|
|
|
{
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer == '\n')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("missing alignment"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
align = (int) get_absolute_expression ();
|
|
|
|
|
|
|
|
|
|
if (align < 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("negative alignment"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (align != 0)
|
|
|
|
|
{
|
2005-02-17 21:46:05 +08:00
|
|
|
|
temp = mylog2 (align);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (temp < 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("alignment not a power of 2"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
align = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
record_alignment (bss_section, align);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
align = 0;
|
|
|
|
|
|
2018-04-16 14:03:26 +08:00
|
|
|
|
if (!S_IS_DEFINED (symbolP))
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (! need_pass_2)
|
|
|
|
|
{
|
|
|
|
|
char *pfrag;
|
|
|
|
|
segT current_seg = now_seg;
|
|
|
|
|
subsegT current_subseg = now_subseg;
|
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Switch to bss. */
|
|
|
|
|
subseg_set (bss_section, 1);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
if (align)
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Do alignment. */
|
|
|
|
|
frag_align (align, 0, 0);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Detach from old frag. */
|
2000-08-04 09:01:32 +08:00
|
|
|
|
if (S_GET_SEGMENT (symbolP) == bss_section)
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
symbol_get_frag (symbolP)->fr_symbol = NULL;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
symbol_set_frag (symbolP, frag_now);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP,
|
|
|
|
|
(offsetT) size, (char *) 0);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
*pfrag = 0;
|
|
|
|
|
|
|
|
|
|
S_SET_SEGMENT (symbolP, bss_section);
|
|
|
|
|
|
|
|
|
|
subseg_set (current_seg, current_subseg);
|
|
|
|
|
|
|
|
|
|
S_SET_SIZE (symbolP, size);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2009-07-24 19:45:01 +08:00
|
|
|
|
as_warn (_("Ignoring attempt to re-define symbol %s"),
|
2000-08-04 09:01:32 +08:00
|
|
|
|
S_GET_NAME (symbolP));
|
2009-07-24 19:45:01 +08:00
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_common (int ignore ATTRIBUTE_UNUSED)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
char c;
|
|
|
|
|
char *p;
|
2003-06-24 19:10:47 +08:00
|
|
|
|
offsetT temp, size;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
symbolS *symbolP;
|
|
|
|
|
|
2015-08-21 23:42:14 +08:00
|
|
|
|
c = get_symbol_name (&name);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
/* Just after name is now '\0'. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
p = input_line_pointer;
|
|
|
|
|
*p = c;
|
2015-08-21 23:42:14 +08:00
|
|
|
|
SKIP_WHITESPACE_AFTER_NAME ();
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (*input_line_pointer != ',')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Expected comma after symbol-name"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
|
|
|
|
/* Skip ','. */
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if ((temp = get_absolute_expression ()) < 0)
|
|
|
|
|
{
|
2003-06-24 19:10:47 +08:00
|
|
|
|
as_bad (_(".COMMon length (%lu) out of range ignored"),
|
|
|
|
|
(unsigned long) temp);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
size = temp;
|
|
|
|
|
*p = 0;
|
|
|
|
|
symbolP = symbol_find_or_make (name);
|
|
|
|
|
*p = c;
|
|
|
|
|
if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Ignoring attempt to re-define symbol"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (S_GET_VALUE (symbolP) != 0)
|
|
|
|
|
{
|
|
|
|
|
if (S_GET_VALUE (symbolP) != (valueT) size)
|
|
|
|
|
{
|
2003-08-30 04:20:18 +08:00
|
|
|
|
as_warn (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
|
|
|
|
|
S_GET_NAME (symbolP), (long) S_GET_VALUE (symbolP), (long) size);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1999-06-22 22:53:01 +08:00
|
|
|
|
know (symbol_get_frag (symbolP) == &zero_address_frag);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (*input_line_pointer != ',')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Expected comma after common length"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer != '"')
|
|
|
|
|
{
|
|
|
|
|
temp = get_absolute_expression ();
|
|
|
|
|
|
|
|
|
|
if (temp < 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("negative alignment"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
if (symbol_get_obj (symbolP)->local)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
segT old_sec;
|
|
|
|
|
int old_subsec;
|
|
|
|
|
int align;
|
|
|
|
|
|
|
|
|
|
old_sec = now_seg;
|
|
|
|
|
old_subsec = now_subseg;
|
|
|
|
|
|
|
|
|
|
if (temp == 0)
|
|
|
|
|
align = 0;
|
|
|
|
|
else
|
2005-02-17 21:46:05 +08:00
|
|
|
|
align = mylog2 (temp);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
if (align < 0)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("alignment not a power of 2"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
record_alignment (bss_section, align);
|
|
|
|
|
subseg_set (bss_section, 0);
|
|
|
|
|
if (align)
|
|
|
|
|
frag_align (align, 0, 0);
|
|
|
|
|
if (S_GET_SEGMENT (symbolP) == bss_section)
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
symbol_get_frag (symbolP)->fr_symbol = 0;
|
|
|
|
|
symbol_set_frag (symbolP, frag_now);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
p = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP,
|
|
|
|
|
(offsetT) size, (char *) 0);
|
|
|
|
|
*p = 0;
|
|
|
|
|
S_SET_SEGMENT (symbolP, bss_section);
|
|
|
|
|
S_CLEAR_EXTERNAL (symbolP);
|
|
|
|
|
S_SET_SIZE (symbolP, size);
|
|
|
|
|
subseg_set (old_sec, old_subsec);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
allocate_common:
|
|
|
|
|
S_SET_VALUE (symbolP, (valueT) size);
|
|
|
|
|
S_SET_ALIGN (symbolP, temp);
|
|
|
|
|
S_SET_SIZE (symbolP, size);
|
|
|
|
|
S_SET_EXTERNAL (symbolP);
|
|
|
|
|
S_SET_SEGMENT (symbolP, bfd_com_section_ptr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
/* @@ 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. */
|
|
|
|
|
if (strncmp (input_line_pointer, "bss\"", 4)
|
|
|
|
|
&& strncmp (input_line_pointer, "data\"", 5))
|
|
|
|
|
{
|
|
|
|
|
while (*--input_line_pointer != '"')
|
|
|
|
|
;
|
|
|
|
|
input_line_pointer--;
|
|
|
|
|
goto bad_common_segment;
|
|
|
|
|
}
|
|
|
|
|
while (*input_line_pointer++ != '"')
|
|
|
|
|
;
|
|
|
|
|
goto allocate_common;
|
|
|
|
|
}
|
|
|
|
|
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 08:29:48 +08:00
|
|
|
|
symbol_get_bfdsym (symbolP)->flags |= BSF_OBJECT;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-22 10:35:31 +08:00
|
|
|
|
/* Handle the .empty pseudo-op. This suppresses the warnings about
|
1999-05-03 15:29:11 +08:00
|
|
|
|
invalid delay slot usage. */
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_empty (int ignore ATTRIBUTE_UNUSED)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
/* The easy way to implement is to just forget about the last
|
|
|
|
|
instruction. */
|
|
|
|
|
last_insn = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_seg (int ignore ATTRIBUTE_UNUSED)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (strncmp (input_line_pointer, "\"text\"", 6) == 0)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 6;
|
|
|
|
|
s_text (0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strncmp (input_line_pointer, "\"data\"", 6) == 0)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 6;
|
|
|
|
|
s_data (0);
|
|
|
|
|
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
|
|
|
|
|
things in the "bss segment" will have to go into data for now.
|
2000-07-27 12:05:05 +08:00
|
|
|
|
You can still allocate SEG_BSS stuff with .lcomm or .reserve. */
|
|
|
|
|
subseg_set (data_section, 255); /* FIXME-SOMEDAY. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
as_bad (_("Unknown segment type"));
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_data1 (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
subseg_set (data_section, 1);
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_proc (int ignore ATTRIBUTE_UNUSED)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
while (!is_end_of_line[(unsigned char) *input_line_pointer])
|
|
|
|
|
{
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
}
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This static variable is set by s_uacons to tell sparc_cons_align
|
2003-11-22 10:35:31 +08:00
|
|
|
|
that the expression does not need to be aligned. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
static int sparc_no_align_cons = 0;
|
|
|
|
|
|
|
|
|
|
/* This handles the unaligned space allocation pseudo-ops, such as
|
|
|
|
|
.uaword. .uaword is just like .word, but the value does not need
|
|
|
|
|
to be aligned. */
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_uacons (int bytes)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
/* Tell sparc_cons_align not to align this value. */
|
|
|
|
|
sparc_no_align_cons = 1;
|
|
|
|
|
cons (bytes);
|
2001-08-12 16:47:02 +08:00
|
|
|
|
sparc_no_align_cons = 0;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
1999-06-07 20:40:36 +08:00
|
|
|
|
/* This handles the native word allocation pseudo-op .nword.
|
|
|
|
|
For sparc_arch_size 32 it is equivalent to .word, for
|
|
|
|
|
sparc_arch_size 64 it is equivalent to .xword. */
|
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_ncons (int bytes ATTRIBUTE_UNUSED)
|
1999-06-07 20:40:36 +08:00
|
|
|
|
{
|
|
|
|
|
cons (sparc_arch_size == 32 ? 4 : 8);
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-31 05:39:53 +08:00
|
|
|
|
/* Handle the SPARC ELF .register pseudo-op. This sets the binding of a
|
|
|
|
|
global register.
|
|
|
|
|
The syntax is:
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-07-31 05:39:53 +08:00
|
|
|
|
.register %g[2367],{#scratch|symbolname|#ignore}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
*/
|
1999-07-31 05:39:53 +08:00
|
|
|
|
|
|
|
|
|
static void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
s_register (int ignore ATTRIBUTE_UNUSED)
|
1999-07-31 05:39:53 +08:00
|
|
|
|
{
|
|
|
|
|
char c;
|
|
|
|
|
int reg;
|
|
|
|
|
int flags;
|
2015-08-21 23:42:14 +08:00
|
|
|
|
char *regname;
|
1999-07-31 05:39:53 +08:00
|
|
|
|
|
|
|
|
|
if (input_line_pointer[0] != '%'
|
|
|
|
|
|| input_line_pointer[1] != 'g'
|
|
|
|
|
|| ((input_line_pointer[2] & ~1) != '2'
|
|
|
|
|
&& (input_line_pointer[2] & ~1) != '6')
|
|
|
|
|
|| input_line_pointer[3] != ',')
|
|
|
|
|
as_bad (_("register syntax is .register %%g[2367],{#scratch|symbolname|#ignore}"));
|
|
|
|
|
reg = input_line_pointer[2] - '0';
|
|
|
|
|
input_line_pointer += 4;
|
|
|
|
|
|
|
|
|
|
if (*input_line_pointer == '#')
|
|
|
|
|
{
|
|
|
|
|
++input_line_pointer;
|
2015-08-21 23:42:14 +08:00
|
|
|
|
c = get_symbol_name (®name);
|
1999-07-31 05:39:53 +08:00
|
|
|
|
if (strcmp (regname, "scratch") && strcmp (regname, "ignore"))
|
|
|
|
|
as_bad (_("register syntax is .register %%g[2367],{#scratch|symbolname|#ignore}"));
|
2000-08-04 09:01:32 +08:00
|
|
|
|
if (regname[0] == 'i')
|
1999-07-31 05:39:53 +08:00
|
|
|
|
regname = NULL;
|
|
|
|
|
else
|
2016-02-29 06:21:12 +08:00
|
|
|
|
regname = (char *) "";
|
1999-07-31 05:39:53 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-08-21 23:42:14 +08:00
|
|
|
|
c = get_symbol_name (®name);
|
1999-07-31 05:39:53 +08:00
|
|
|
|
}
|
2015-08-21 23:42:14 +08:00
|
|
|
|
|
1999-07-31 05:39:53 +08:00
|
|
|
|
if (sparc_arch_size == 64)
|
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if (globals[reg])
|
1999-07-31 05:39:53 +08:00
|
|
|
|
{
|
2000-07-27 12:05:05 +08:00
|
|
|
|
if ((regname && globals[reg] != (symbolS *) 1
|
|
|
|
|
&& strcmp (S_GET_NAME (globals[reg]), regname))
|
|
|
|
|
|| ((regname != NULL) ^ (globals[reg] != (symbolS *) 1)))
|
1999-07-31 05:39:53 +08:00
|
|
|
|
as_bad (_("redefinition of global register"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (regname == NULL)
|
2000-07-27 12:05:05 +08:00
|
|
|
|
globals[reg] = (symbolS *) 1;
|
1999-07-31 05:39:53 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (*regname)
|
|
|
|
|
{
|
|
|
|
|
if (symbol_find (regname))
|
|
|
|
|
as_bad (_("Register symbol %s already defined."),
|
|
|
|
|
regname);
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
globals[reg] = symbol_make (regname);
|
|
|
|
|
flags = symbol_get_bfdsym (globals[reg])->flags;
|
1999-07-31 05:39:53 +08:00
|
|
|
|
if (! *regname)
|
|
|
|
|
flags = flags & ~(BSF_GLOBAL|BSF_LOCAL|BSF_WEAK);
|
|
|
|
|
if (! (flags & (BSF_GLOBAL|BSF_LOCAL|BSF_WEAK)))
|
|
|
|
|
flags |= BSF_GLOBAL;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
symbol_get_bfdsym (globals[reg])->flags = flags;
|
|
|
|
|
S_SET_VALUE (globals[reg], (valueT) reg);
|
|
|
|
|
S_SET_ALIGN (globals[reg], reg);
|
|
|
|
|
S_SET_SIZE (globals[reg], 0);
|
1999-07-31 05:39:53 +08:00
|
|
|
|
/* Although we actually want undefined_section here,
|
|
|
|
|
we have to use absolute_section, because otherwise
|
|
|
|
|
generic as code will make it a COM section.
|
|
|
|
|
We fix this up in sparc_adjust_symtab. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
S_SET_SEGMENT (globals[reg], absolute_section);
|
|
|
|
|
S_SET_OTHER (globals[reg], 0);
|
|
|
|
|
elf_symbol (symbol_get_bfdsym (globals[reg]))
|
1999-07-31 05:39:53 +08:00
|
|
|
|
->internal_elf_sym.st_info =
|
|
|
|
|
ELF_ST_INFO(STB_GLOBAL, STT_REGISTER);
|
2000-07-27 12:05:05 +08:00
|
|
|
|
elf_symbol (symbol_get_bfdsym (globals[reg]))
|
1999-07-31 05:39:53 +08:00
|
|
|
|
->internal_elf_sym.st_shndx = SHN_UNDEF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-21 23:42:14 +08:00
|
|
|
|
(void) restore_line_pointer (c);
|
1999-07-31 05:39:53 +08:00
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Adjust the symbol table. We set undefined sections for STT_REGISTER
|
|
|
|
|
symbols which need it. */
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-07-31 05:39:53 +08:00
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_adjust_symtab (void)
|
1999-07-31 05:39:53 +08:00
|
|
|
|
{
|
|
|
|
|
symbolS *sym;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
1999-07-31 05:39:53 +08:00
|
|
|
|
for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
|
|
|
|
|
{
|
|
|
|
|
if (ELF_ST_TYPE (elf_symbol (symbol_get_bfdsym (sym))
|
|
|
|
|
->internal_elf_sym.st_info) != STT_REGISTER)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (ELF_ST_TYPE (elf_symbol (symbol_get_bfdsym (sym))
|
|
|
|
|
->internal_elf_sym.st_shndx != SHN_UNDEF))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
S_SET_SEGMENT (sym, undefined_section);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* If the --enforce-aligned-data option is used, we require .word,
|
|
|
|
|
et. al., to be aligned correctly. We do it by setting up an
|
|
|
|
|
rs_align_code frag, and checking in HANDLE_ALIGN to make sure that
|
|
|
|
|
no unexpected alignment was introduced.
|
|
|
|
|
|
|
|
|
|
The SunOS and Solaris native assemblers enforce aligned data by
|
|
|
|
|
default. We don't want to do that, because gcc can deliberately
|
|
|
|
|
generate misaligned data if the packed attribute is used. Instead,
|
|
|
|
|
we permit misaligned data by default, and permit the user to set an
|
|
|
|
|
option to check for it. */
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_cons_align (int nbytes)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
int nalign;
|
|
|
|
|
|
|
|
|
|
/* Only do this if we are enforcing aligned data. */
|
|
|
|
|
if (! enforce_aligned_data)
|
|
|
|
|
return;
|
|
|
|
|
|
2001-05-28 17:23:54 +08:00
|
|
|
|
/* Don't align if this is an unaligned pseudo-op. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (sparc_no_align_cons)
|
2001-05-28 17:23:54 +08:00
|
|
|
|
return;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2005-02-17 21:46:05 +08:00
|
|
|
|
nalign = mylog2 (nbytes);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (nalign == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
* gas/app, gas/as.c, gas/as.h, gas/atof-generic.c, gas/cgen.c,
gas/config/atof-ieee.c, gas/config/obj-aout.c,
gas/config/obj-coff.c, gas/config/obj-ecoff.c,
gas/config/obj-elf.c, gas/config/obj-som.c, gas/config/tc-alpha.c,
gas/config/tc-arc.c, gas/config/tc-arm.c, gas/config/tc-cr16.c,
gas/config/tc-cris.c, gas/config/tc-crx.c, gas/config/tc-d30v.c,
gas/config/tc-dlx.c, gas/config/tc-hppa.c, gas/config/tc-i370.c,
gas/config/tc-i386-intel.c, gas/config/tc-i386.c,
gas/config/tc-i860.c, gas/config/tc-i960.c, gas/config/tc-ia64.c,
gas/config/tc-iq2000.c, gas/config/tc-m32c.c,
gas/config/tc-m32r.c, gas/config/tc-m68hc11.c,
gas/config/tc-m68k.c, gas/config/tc-maxq.c, gas/config/tc-mcore.c,
gas/config/tc-mep.c, gas/config/tc-mips.c, gas/config/tc-mmix.c,
gas/config/tc-mn10300.c, gas/config/tc-moxie.c,
gas/config/tc-ns32k.c, gas/config/tc-pj.c, gas/config/tc-ppc.c,
gas/config/tc-s390.c, gas/config/tc-score.c,
gas/config/tc-score7.c, gas/config/tc-sh.c, gas/config/tc-sparc.c,
gas/config/tc-spu.c, gas/config/tc-tic30.c, gas/config/tc-vax.c,
gas/config/tc-xtensa.c, gas/config/xtensa-relax.c,
gas/dw2gencfi.c, gas/dwarf2dbg.c, gas/ehopt.c, gas/expr.c,
gas/frags.c, gas/input-file.c, gas/read.c, gas/sb.c,
gas/subsegs.c, gas/symbols.c, gas/write.c: Change the name of the
gas macro `assert' to `gas_assert'.
2009-06-23 01:56:02 +08:00
|
|
|
|
gas_assert (nalign > 0);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
if (now_seg == absolute_section)
|
|
|
|
|
{
|
|
|
|
|
if ((abs_section_offset & ((1 << nalign) - 1)) != 0)
|
|
|
|
|
as_bad (_("misaligned data"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
* config/obj-evax.h (S_SET_OTHER, S_SET_TYPE, S_SET_DESC): Don't define.
* config/tc-crx.c (gettrap): Constify arg.
(handle_LoadStor, get_cinv_parameters): Likewise.
(getreg_image): Fix enum warning
(md_assemble): Restore input line char.
* config/tc-hppa.c (tc_gen_reloc): Fix enum warning.
* config/tc-i960.c (mem_fmt): Rename var to fix shadow warning.
* config/tc-sh.c (sh_fdpic): Only define when OBJ_ELF.
(build_Mytes): Fix build failure for non-elf targets.
* config/tc-tic4x.c (tic4x_eval): Restore terminator char.
* config/tc-xtensa.c (xtensa_end_directive): Fix switch enum warning.
* cgen.c (gas_cgen_md_apply_fix): Avoid set but unused warning.
* ecoff.c (add_ecoff_symbol): Likewise.
* itbl-ops.c (append_insns_as_macros): Likewise.
* listing.c (debugging_pseudo): Likewise.
* read.c (s_mri_common, stringer): Likewise.
* config/obj-coff.c (coff_frob_section): Likewise.
* config/tc-alpha.c (emit_ldgp, s_alpha_proc): Likewise.
* config/tc-arm.c (my_get_expression): Likewise.
* config/tc-hppa.c (process_exit, pa_type_args): Likewise.
* config/tc-m32c.c (md_assemble): Likewise.
* config/tc-microblaze.c (md_convert_frag): Likewise.
* config/tc-mips.c (s_change_section): Likewise.
* config/tc-mt.c (mt_fix_adjustable): Likewise.
* config/tc-xtensa.c (xtensa_literal_pseudo): Likewise.
* config/obj-aout.c (obj_aout_frob_symbol): Delete set but otherwise
unused vars.
* config/tc-alpha.c (load_expression): Likewise.
(s_alpha_rdata, s_alpha_section, s_alpha_prologue): Likewise.
* config/tc-arm.c (parse_neon_el_struct_list): Likewise.
* config/tc-avr.c (extract_word): Likewise.
* config/tc-cris.c (cris_get_expression): Likewise.
* config/tc-d30v.c (build_insn, find_format): Likewise.
* config/tc-dlx.c (machine_ip): Likewise.
* config/tc-hppa.c (pa_get_absolute_expression): Likewise.
* config/tc-i370.c (md_assemble): Likewise.
* config/tc-i960.c (brtab_emit): Likewise.
* config/tc-iq2000.c (s_iq2000_ent): Likewise.
* config/tc-m32c.c (md_convert_frag): Likewise.
* config/tc-m68hc11.c (fixup24, build_jump_insn): Likewise.
(md_estimate_size_before_relax, md_apply_fix): Likewise.
* config/tc-m68k.c (md_show_usage): Likewise.
* config/tc-microblaze.c (microblaze_s_lcomm): Likewise.
* config/tc-mips.c (s_mips_end): Likewise.
* config/tc-mmix.c (mmix_byte, mmix_cons): Likewise.
* config/tc-mn10300.c (md_assemble): Likewise.
* config/tc-msp430.c (extract_word): Likewise.
* config/tc-mt.c (md_assemble): Likewise.
* config/tc-or32.c (machine_ip): Likewise.
* config/tc-pj.c (md_apply_fix): Likewise.
* config/tc-s390.c (md_gather_operands): Likewise.
* config/tc-sh.c (sh_cons_align): Likewise.
* config/tc-sparc.c (sparc_cons_align): Likewise.
* config/tc-tic4x.c (tic4x_sect): Likewise.
* config/tc-tic54x.c (tic54x_stringer): Likewise.
* config/tc-vax.c (vip_op): Likewise.
* config/tc-xstormy16.c (xstormy16_cons_fix_new): Likewise.
* config/tc-xtensa.c (md_assemble): Likewise.
(xtensa_fix_short_loop_frags, convert_frag_immed): Likewise.
(xtensa_move_literals): Likewise.
2010-06-28 22:06:57 +08:00
|
|
|
|
frag_var (rs_align_test, 1, 1, (relax_substateT) 0,
|
|
|
|
|
(symbolS *) NULL, (offsetT) nalign, (char *) NULL);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
record_alignment (now_seg, nalign);
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-28 18:07:56 +08:00
|
|
|
|
/* This is called from HANDLE_ALIGN in tc-sparc.h. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_handle_align (fragS *fragp)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2000-12-28 18:07:56 +08:00
|
|
|
|
int count, fix;
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
count = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
|
2001-01-15 02:54:06 +08:00
|
|
|
|
|
2000-12-28 18:07:56 +08:00
|
|
|
|
switch (fragp->fr_type)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2000-12-28 18:07:56 +08:00
|
|
|
|
case rs_align_test:
|
|
|
|
|
if (count != 0)
|
|
|
|
|
as_bad_where (fragp->fr_file, fragp->fr_line, _("misaligned data"));
|
|
|
|
|
break;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
2000-12-28 18:07:56 +08:00
|
|
|
|
case rs_align_code:
|
|
|
|
|
p = fragp->fr_literal + fragp->fr_fix;
|
|
|
|
|
fix = 0;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
2000-12-28 18:07:56 +08:00
|
|
|
|
if (count & 3)
|
|
|
|
|
{
|
|
|
|
|
fix = count & 3;
|
|
|
|
|
memset (p, 0, fix);
|
|
|
|
|
p += fix;
|
|
|
|
|
count -= fix;
|
|
|
|
|
}
|
2000-07-27 12:05:05 +08:00
|
|
|
|
|
2000-12-28 18:07:56 +08:00
|
|
|
|
if (SPARC_OPCODE_ARCH_V9_P (max_architecture) && count > 8)
|
|
|
|
|
{
|
|
|
|
|
unsigned wval = (0x30680000 | count >> 2); /* ba,a,pt %xcc, 1f */
|
|
|
|
|
if (INSN_BIG_ENDIAN)
|
|
|
|
|
number_to_chars_bigendian (p, wval, 4);
|
|
|
|
|
else
|
|
|
|
|
number_to_chars_littleendian (p, wval, 4);
|
|
|
|
|
p += 4;
|
|
|
|
|
count -= 4;
|
|
|
|
|
fix += 4;
|
2000-07-27 12:05:05 +08:00
|
|
|
|
}
|
2000-12-28 18:07:56 +08:00
|
|
|
|
|
|
|
|
|
if (INSN_BIG_ENDIAN)
|
|
|
|
|
number_to_chars_bigendian (p, 0x01000000, 4);
|
|
|
|
|
else
|
|
|
|
|
number_to_chars_littleendian (p, 0x01000000, 4);
|
|
|
|
|
|
|
|
|
|
fragp->fr_fix += fix;
|
|
|
|
|
fragp->fr_var = 4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Some special processing for a Sparc ELF file. */
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_elf_final_processing (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
/* Set the Sparc ELF flag bits. FIXME: There should probably be some
|
|
|
|
|
sort of BFD interface for this. */
|
|
|
|
|
if (sparc_arch_size == 64)
|
|
|
|
|
{
|
|
|
|
|
switch (sparc_memory_model)
|
|
|
|
|
{
|
|
|
|
|
case MM_RMO:
|
|
|
|
|
elf_elfheader (stdoutput)->e_flags |= EF_SPARCV9_RMO;
|
|
|
|
|
break;
|
|
|
|
|
case MM_PSO:
|
|
|
|
|
elf_elfheader (stdoutput)->e_flags |= EF_SPARCV9_PSO;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (current_architecture >= SPARC_OPCODE_ARCH_V9)
|
|
|
|
|
elf_elfheader (stdoutput)->e_flags |= EF_SPARC_32PLUS;
|
|
|
|
|
if (current_architecture == SPARC_OPCODE_ARCH_V9A)
|
|
|
|
|
elf_elfheader (stdoutput)->e_flags |= EF_SPARC_SUN_US1;
|
2000-10-20 18:38:47 +08:00
|
|
|
|
else if (current_architecture == SPARC_OPCODE_ARCH_V9B)
|
|
|
|
|
elf_elfheader (stdoutput)->e_flags |= EF_SPARC_SUN_US1|EF_SPARC_SUN_US3;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
2001-12-22 06:35:24 +08:00
|
|
|
|
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
|
const char *
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_cons (expressionS *exp, int size)
|
2001-12-22 06:35:24 +08:00
|
|
|
|
{
|
|
|
|
|
char *save;
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
|
const char *sparc_cons_special_reloc = NULL;
|
2001-12-22 06:35:24 +08:00
|
|
|
|
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
save = input_line_pointer;
|
|
|
|
|
if (input_line_pointer[0] == '%'
|
|
|
|
|
&& input_line_pointer[1] == 'r'
|
|
|
|
|
&& input_line_pointer[2] == '_')
|
|
|
|
|
{
|
|
|
|
|
if (strncmp (input_line_pointer + 3, "disp", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 7;
|
|
|
|
|
sparc_cons_special_reloc = "disp";
|
|
|
|
|
}
|
|
|
|
|
else if (strncmp (input_line_pointer + 3, "plt", 3) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (size != 4 && size != 8)
|
|
|
|
|
as_bad (_("Illegal operands: %%r_plt in %d-byte data field"), size);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 6;
|
|
|
|
|
sparc_cons_special_reloc = "plt";
|
|
|
|
|
}
|
|
|
|
|
}
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
else if (strncmp (input_line_pointer + 3, "tls_dtpoff", 10) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (size != 4 && size != 8)
|
|
|
|
|
as_bad (_("Illegal operands: %%r_tls_dtpoff in %d-byte data field"), size);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 13;
|
|
|
|
|
sparc_cons_special_reloc = "tls_dtpoff";
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-12-22 06:35:24 +08:00
|
|
|
|
if (sparc_cons_special_reloc)
|
|
|
|
|
{
|
|
|
|
|
int bad = 0;
|
|
|
|
|
|
|
|
|
|
switch (size)
|
|
|
|
|
{
|
|
|
|
|
case 1:
|
|
|
|
|
if (*input_line_pointer != '8')
|
|
|
|
|
bad = 1;
|
|
|
|
|
input_line_pointer--;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
if (input_line_pointer[0] != '1' || input_line_pointer[1] != '6')
|
|
|
|
|
bad = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
if (input_line_pointer[0] != '3' || input_line_pointer[1] != '2')
|
|
|
|
|
bad = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 8:
|
|
|
|
|
if (input_line_pointer[0] != '6' || input_line_pointer[1] != '4')
|
|
|
|
|
bad = 1;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
bad = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bad)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: Only %%r_%s%d allowed in %d-byte data fields"),
|
|
|
|
|
sparc_cons_special_reloc, size * 8, size);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer += 2;
|
|
|
|
|
if (*input_line_pointer != '(')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: %%r_%s%d requires arguments in ()"),
|
|
|
|
|
sparc_cons_special_reloc, size * 8);
|
|
|
|
|
bad = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bad)
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer = save;
|
|
|
|
|
sparc_cons_special_reloc = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
char *end = ++input_line_pointer;
|
|
|
|
|
int npar = 0;
|
|
|
|
|
|
|
|
|
|
while (! is_end_of_line[(c = *end)])
|
|
|
|
|
{
|
|
|
|
|
if (c == '(')
|
|
|
|
|
npar++;
|
|
|
|
|
else if (c == ')')
|
|
|
|
|
{
|
|
|
|
|
if (!npar)
|
|
|
|
|
break;
|
|
|
|
|
npar--;
|
|
|
|
|
}
|
|
|
|
|
end++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c != ')')
|
|
|
|
|
as_bad (_("Illegal operands: %%r_%s%d requires arguments in ()"),
|
|
|
|
|
sparc_cons_special_reloc, size * 8);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*end = '\0';
|
|
|
|
|
expression (exp);
|
|
|
|
|
*end = c;
|
|
|
|
|
if (input_line_pointer != end)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("Illegal operands: %%r_%s%d requires arguments in ()"),
|
|
|
|
|
sparc_cons_special_reloc, size * 8);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
c = *input_line_pointer;
|
|
|
|
|
if (! is_end_of_line[c] && c != ',')
|
|
|
|
|
as_bad (_("Illegal operands: garbage after %%r_%s%d()"),
|
|
|
|
|
sparc_cons_special_reloc, size * 8);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (sparc_cons_special_reloc == NULL)
|
|
|
|
|
expression (exp);
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
|
return sparc_cons_special_reloc;
|
2001-12-22 06:35:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* This is called by emit_expr via TC_CONS_FIX_NEW when creating a
|
|
|
|
|
reloc for a cons. We could use the definition there, except that
|
|
|
|
|
we want to handle little endian relocs specially. */
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
cons_fix_new_sparc (fragS *frag,
|
|
|
|
|
int where,
|
|
|
|
|
unsigned int nbytes,
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
|
expressionS *exp,
|
|
|
|
|
const char *sparc_cons_special_reloc)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
bfd_reloc_code_real_type r;
|
|
|
|
|
|
|
|
|
|
r = (nbytes == 1 ? BFD_RELOC_8 :
|
|
|
|
|
(nbytes == 2 ? BFD_RELOC_16 :
|
|
|
|
|
(nbytes == 4 ? BFD_RELOC_32 : BFD_RELOC_64)));
|
|
|
|
|
|
2001-05-28 17:23:54 +08:00
|
|
|
|
if (target_little_endian_data
|
|
|
|
|
&& nbytes == 4
|
2000-07-27 12:05:05 +08:00
|
|
|
|
&& now_seg->flags & SEC_ALLOC)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
r = BFD_RELOC_SPARC_REV32;
|
2001-05-28 17:23:54 +08:00
|
|
|
|
|
2016-08-04 21:57:23 +08:00
|
|
|
|
#ifdef TE_SOLARIS
|
|
|
|
|
/* The Solaris linker does not allow R_SPARC_UA64
|
|
|
|
|
relocations for 32-bit executables. */
|
|
|
|
|
if (!target_little_endian_data
|
|
|
|
|
&& sparc_arch_size != 64
|
|
|
|
|
&& r == BFD_RELOC_64)
|
|
|
|
|
r = BFD_RELOC_32;
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-12-22 06:35:24 +08:00
|
|
|
|
if (sparc_cons_special_reloc)
|
|
|
|
|
{
|
|
|
|
|
if (*sparc_cons_special_reloc == 'd')
|
|
|
|
|
switch (nbytes)
|
|
|
|
|
{
|
|
|
|
|
case 1: r = BFD_RELOC_8_PCREL; break;
|
|
|
|
|
case 2: r = BFD_RELOC_16_PCREL; break;
|
|
|
|
|
case 4: r = BFD_RELOC_32_PCREL; break;
|
|
|
|
|
case 8: r = BFD_RELOC_64_PCREL; break;
|
|
|
|
|
default: abort ();
|
|
|
|
|
}
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
else if (*sparc_cons_special_reloc == 'p')
|
2001-12-22 06:35:24 +08:00
|
|
|
|
switch (nbytes)
|
|
|
|
|
{
|
|
|
|
|
case 4: r = BFD_RELOC_SPARC_PLT32; break;
|
|
|
|
|
case 8: r = BFD_RELOC_SPARC_PLT64; break;
|
|
|
|
|
}
|
bfd/
* elf32-sparc.c (_bfd_sparc_elf_howto_table): Add TLS relocs.
(elf32_sparc_rev32_howto): New variable.
(sparc_reloc_map): Add TLS relocs.
(elf32_sparc_reloc_type_lookup, elf32_sparc_info_to_howto):
Handle REV32.
(sparc_elf_hix22_reloc, sparc_elf_lox10_reloc, elf32_sparc_mkobject):
New functions.
(struct elf32_sparc_dyn_relocs, struct elf32_sparc_link_hash_entry,
struct elf32_sparc_link_hash_table):
New structures.
(elf32_sparc_tdata, elf32_sparc_local_got_tls_type,
elf32_sparc_hash_table): Define.
(link_hash_newfunc, elf32_sparc_link_hash_table_create,
create_got_section, elf32_sparc_create_dynamic_sections,
elf32_sparc_copy_indirect_symbol, elf32_sparc_tls_transition): New
functions.
(elf32_sparc_check_relocs): Handle TLS relocs. Add dynamic reloc
reference counting.
(elf32_sparc_gc_sweep_hook): Likewise.
(elf32_sparc_adjust_dynamic_symbol): Likewise.
(elf32_sparc_size_dynamic_sections): Likewise.
(elf32_sparc_relocate_section): Likewise.
(allocate_dynrelocs, readonly_dynrelocs, dtpoff_base, tpoff):
New functions.
(elf32_sparc_object_p): Allocate backend private object data.
(bfd_elf32_bfd_link_hash_table_create,
elf_backend_copy_indirect_symbol, bfd_elf32_mkobject,
elf_backend_can_refcount): Define.
(elf_backend_create_dynamic_sections): Define to
elf32_sparc_create_dynamic_sections.
* reloc.c: Add SPARC TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-sparc.c (sparc64_elf_howto_table): Add TLS relocs.
(sparc_reloc_map): Likewise.
gas/
* config/tc-sparc.c (sparc_ip): Handle TLS % operators.
(tc_gen_reloc): Handle TLS relocs.
(sparc_cons, cons_fix_new_sparc): Handle %r_tls_dtpoff.
* config/tc-sparc.h (tc_fix_adjustable): Don't adjust TLS
relocs.
* config/obj-elf.c (obj_elf_section_word): Handle tls.
(obj_elf_type): Handle tls_object.
include/
* elf/sparc.h: Add TLS relocs. Move R_SPARC_REV32 to 252.
ld/testsuite/
* ld-sparc/sparc.exp: New.
* ld-sparc/tlsg32.s: New test.
* ld-sparc/tlsg32.sd: Likewise.
* ld-sparc/tlsg64.s: Likewise.
* ld-sparc/tlsg64.sd: Likewise.
* ld-sparc/tlslib.s: Likewise.
* ld-sparc/tlsnopic.s: Likewise.
* ld-sparc/tlspic.s: Likewise.
* ld-sparc/tlssunbin32.dd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin32.s: Likewise.
* ld-sparc/tlssunbin32.sd: Likewise.
* ld-sparc/tlssunbin32.td: Likewise.
* ld-sparc/tlssunbin64.dd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunbin64.s: Likewise.
* ld-sparc/tlssunbin64.sd: Likewise.
* ld-sparc/tlssunbin64.td: Likewise.
* ld-sparc/tlssunbinpic32.s: Likewise.
* ld-sparc/tlssunbinpic64.s: Likewise.
* ld-sparc/tlssunnopic32.dd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic32.s: Likewise.
* ld-sparc/tlssunnopic32.sd: Likewise.
* ld-sparc/tlssunnopic64.dd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunnopic64.s: Likewise.
* ld-sparc/tlssunnopic64.sd: Likewise.
* ld-sparc/tlssunpic32.dd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic32.s: Likewise.
* ld-sparc/tlssunpic32.sd: Likewise.
* ld-sparc/tlssunpic32.td: Likewise.
* ld-sparc/tlssunpic64.dd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-sparc/tlssunpic64.s: Likewise.
* ld-sparc/tlssunpic64.sd: Likewise.
* ld-sparc/tlssunpic64.td: Likewise.
2003-01-25 07:44:45 +08:00
|
|
|
|
else
|
|
|
|
|
switch (nbytes)
|
|
|
|
|
{
|
|
|
|
|
case 4: r = BFD_RELOC_SPARC_TLS_DTPOFF32; break;
|
|
|
|
|
case 8: r = BFD_RELOC_SPARC_TLS_DTPOFF64; break;
|
|
|
|
|
}
|
2001-12-22 06:35:24 +08:00
|
|
|
|
}
|
2016-11-15 23:41:27 +08:00
|
|
|
|
else if (sparc_no_align_cons
|
|
|
|
|
|| /* PR 20803 - relocs in the .eh_frame section
|
|
|
|
|
need to support unaligned access. */
|
|
|
|
|
strcmp (now_seg->name, ".eh_frame") == 0)
|
2001-05-28 17:23:54 +08:00
|
|
|
|
{
|
|
|
|
|
switch (nbytes)
|
|
|
|
|
{
|
|
|
|
|
case 2: r = BFD_RELOC_SPARC_UA16; break;
|
|
|
|
|
case 4: r = BFD_RELOC_SPARC_UA32; break;
|
2016-08-04 21:57:23 +08:00
|
|
|
|
#ifdef TE_SOLARIS
|
|
|
|
|
/* The Solaris linker does not allow R_SPARC_UA64
|
|
|
|
|
relocations for 32-bit executables. */
|
|
|
|
|
case 8: r = sparc_arch_size == 64 ?
|
|
|
|
|
BFD_RELOC_SPARC_UA64 : BFD_RELOC_SPARC_UA32; break;
|
|
|
|
|
#else
|
2001-05-28 17:23:54 +08:00
|
|
|
|
case 8: r = BFD_RELOC_SPARC_UA64; break;
|
2016-08-04 21:57:23 +08:00
|
|
|
|
#endif
|
2001-05-28 17:23:54 +08:00
|
|
|
|
default: abort ();
|
|
|
|
|
}
|
2001-08-12 16:47:02 +08:00
|
|
|
|
}
|
2001-05-28 17:23:54 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
fix_new_exp (frag, where, (int) nbytes, exp, 0, r);
|
2003-08-30 04:20:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2008-08-13 07:39:31 +08:00
|
|
|
|
sparc_cfi_frame_initial_instructions (void)
|
2003-08-30 04:20:18 +08:00
|
|
|
|
{
|
|
|
|
|
cfi_add_CFA_def_cfa (14, sparc_arch_size == 64 ? 0x7ff : 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2006-05-19 19:26:11 +08:00
|
|
|
|
sparc_regname_to_dw2regnum (char *regname)
|
2003-08-30 04:20:18 +08:00
|
|
|
|
{
|
2016-03-20 13:36:16 +08:00
|
|
|
|
char *q;
|
|
|
|
|
int i;
|
2003-08-30 04:20:18 +08:00
|
|
|
|
|
|
|
|
|
if (!regname[0])
|
|
|
|
|
return -1;
|
|
|
|
|
|
2016-03-20 13:36:16 +08:00
|
|
|
|
switch (regname[0])
|
|
|
|
|
{
|
|
|
|
|
case 'g': i = 0; break;
|
|
|
|
|
case 'o': i = 1; break;
|
|
|
|
|
case 'l': i = 2; break;
|
|
|
|
|
case 'i': i = 3; break;
|
|
|
|
|
default: i = -1; break;
|
|
|
|
|
}
|
|
|
|
|
if (i != -1)
|
2003-08-30 04:20:18 +08:00
|
|
|
|
{
|
|
|
|
|
if (regname[1] < '0' || regname[1] > '8' || regname[2])
|
|
|
|
|
return -1;
|
2016-03-20 13:36:16 +08:00
|
|
|
|
return i * 8 + regname[1] - '0';
|
2003-08-30 04:20:18 +08:00
|
|
|
|
}
|
|
|
|
|
if (regname[0] == 's' && regname[1] == 'p' && !regname[2])
|
|
|
|
|
return 14;
|
|
|
|
|
if (regname[0] == 'f' && regname[1] == 'p' && !regname[2])
|
|
|
|
|
return 30;
|
|
|
|
|
if (regname[0] == 'f' || regname[0] == 'r')
|
|
|
|
|
{
|
|
|
|
|
unsigned int regnum;
|
|
|
|
|
|
|
|
|
|
regnum = strtoul (regname + 1, &q, 10);
|
2016-03-20 13:36:16 +08:00
|
|
|
|
if (q == NULL || *q)
|
2003-08-30 04:20:18 +08:00
|
|
|
|
return -1;
|
|
|
|
|
if (regnum >= ((regname[0] == 'f'
|
|
|
|
|
&& SPARC_OPCODE_ARCH_V9_P (max_architecture))
|
|
|
|
|
? 64 : 32))
|
|
|
|
|
return -1;
|
|
|
|
|
if (regname[0] == 'f')
|
|
|
|
|
{
|
|
|
|
|
regnum += 32;
|
|
|
|
|
if (regnum >= 64 && (regnum & 1))
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return regnum;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
sparc_cfi_emit_pcrel_expr (expressionS *exp, unsigned int nbytes)
|
|
|
|
|
{
|
|
|
|
|
sparc_no_align_cons = 1;
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
|
emit_expr_with_reloc (exp, nbytes, "disp");
|
2003-08-30 04:20:18 +08:00
|
|
|
|
sparc_no_align_cons = 0;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|