This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] SPARC 32-bit TLS support


Hi!

The following patch adds TLS support for sparc32 (and sparc64 in gas only,
not ld) and in addition to that reworks elf32-sparc.c to match elf32-i386.c
more closely with all its reference counting etc.
It passes make check and builds glibc which passes its make check, but as
the patch is quite invasive, I'd like to give it a day or two before
commiting and would be happy if somebody could try it on SPARC too. Thanks.

2003-01-20  Jakub Jelinek  <jakub@redhat.com>

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.

--- bfd/elf32-sparc.c.jj	Sat Dec 28 17:19:07 2002
+++ bfd/elf32-sparc.c	Mon Jan 20 11:18:46 2003
@@ -1,5 +1,5 @@
 /* SPARC-specific support for 32-bit ELF
-   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
    Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -35,10 +35,18 @@ static bfd_boolean elf32_sparc_check_rel
 	   const Elf_Internal_Rela *));
 static bfd_boolean elf32_sparc_adjust_dynamic_symbol
   PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
+static bfd_boolean allocate_dynrelocs
+  PARAMS ((struct elf_link_hash_entry *, PTR));
+static bfd_boolean readonly_dynrelocs
+  PARAMS ((struct elf_link_hash_entry *, PTR));
 static bfd_boolean elf32_sparc_size_dynamic_sections
   PARAMS ((bfd *, struct bfd_link_info *));
 static bfd_boolean elf32_sparc_relax_section
   PARAMS ((bfd *, asection *, struct bfd_link_info *, bfd_boolean *));
+static bfd_vma dtpoff_base
+  PARAMS ((struct bfd_link_info *));
+static bfd_vma tpoff
+  PARAMS ((struct bfd_link_info *, bfd_vma));
 static bfd_boolean elf32_sparc_relocate_section
   PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
 	   Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
@@ -49,6 +57,22 @@ static bfd_boolean elf32_sparc_finish_dy
   PARAMS ((bfd *, struct bfd_link_info *));
 static bfd_boolean elf32_sparc_merge_private_bfd_data
   PARAMS ((bfd *, bfd *));
+static struct bfd_hash_entry *link_hash_newfunc
+  PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
+static struct bfd_link_hash_table *elf32_sparc_link_hash_table_create
+  PARAMS ((bfd *));
+static bfd_boolean create_got_section PARAMS ((bfd *,
+					       struct bfd_link_info *));
+static bfd_boolean elf32_sparc_create_dynamic_sections
+  PARAMS ((bfd *, struct bfd_link_info *));
+static void elf32_sparc_copy_indirect_symbol
+  PARAMS ((struct elf_backend_data *, struct elf_link_hash_entry *,
+	  struct elf_link_hash_entry *));
+static int elf32_sparc_tls_transition
+  PARAMS ((struct bfd_link_info *, bfd *, int, int));
+
+static bfd_boolean elf32_sparc_mkobject
+  PARAMS ((bfd *));
 static bfd_boolean elf32_sparc_object_p
   PARAMS ((bfd *));
 static void elf32_sparc_final_write_processing
@@ -68,6 +92,10 @@ static bfd_reloc_status_type sparc_elf_n
   PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
 static bfd_reloc_status_type sparc_elf_wdisp16_reloc
   PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
+static bfd_reloc_status_type sparc_elf_hix22_reloc
+  PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
+static bfd_reloc_status_type sparc_elf_lox10_reloc
+  PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
 
 reloc_howto_type _bfd_sparc_elf_howto_table[] =
 {
@@ -131,12 +159,37 @@ reloc_howto_type _bfd_sparc_elf_howto_ta
   HOWTO(R_SPARC_NONE,      0,0, 0,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_NONE",    FALSE,0,0x00000000,TRUE),
   HOWTO(R_SPARC_UA64,      0,0, 0,FALSE,0,complain_overflow_dont,    sparc_elf_notsupported_reloc,  "R_SPARC_UA64",    FALSE,0,0x00000000,TRUE),
   HOWTO(R_SPARC_UA16,      0,1,16,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,  "R_SPARC_UA16",    FALSE,0,0x0000ffff,TRUE),
-  HOWTO(R_SPARC_REV32,     0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,  "R_SPARC_REV32",   FALSE,0,0xffffffff,TRUE),
+  HOWTO(R_SPARC_TLS_GD_HI22,10,2,22,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_HI22",FALSE,0,0x003fffff,TRUE),
+  HOWTO(R_SPARC_TLS_GD_LO10,0,2,10,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_LO10",FALSE,0,0x000003ff,TRUE),
+  HOWTO(R_SPARC_TLS_GD_ADD,0,0, 0,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_GD_CALL,2,2,30,TRUE,0,complain_overflow_signed,  bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_CALL",FALSE,0,0x3fffffff,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_HI22,10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_HI22",FALSE,0,0x003fffff,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_LO10,0,2,10,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_LO10",FALSE,0,0x000003ff,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_ADD,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_CALL,2,2,30,TRUE,0,complain_overflow_signed, bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_CALL",FALSE,0,0x3fffffff,TRUE),
+  HOWTO(R_SPARC_TLS_LDO_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc,"R_SPARC_TLS_LDO_HIX22",FALSE,0,0x003fffff, FALSE),
+  HOWTO(R_SPARC_TLS_LDO_LOX10,0,2,0,FALSE,0,complain_overflow_dont,  sparc_elf_lox10_reloc,  "R_SPARC_TLS_LDO_LOX10",FALSE,0,0x000003ff, FALSE),
+  HOWTO(R_SPARC_TLS_LDO_ADD,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_LDO_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_IE_HI22,10,2,22,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_HI22",FALSE,0,0x003fffff,TRUE),
+  HOWTO(R_SPARC_TLS_IE_LO10,0,2,10,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_LO10",FALSE,0,0x000003ff,TRUE),
+  HOWTO(R_SPARC_TLS_IE_LD,0,0, 0,FALSE,0,complain_overflow_dont,     bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_LD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_IE_LDX,0,0, 0,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_LDX",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_IE_ADD,0,0, 0,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_LE_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc, "R_SPARC_TLS_LE_HIX22",FALSE,0,0x003fffff, FALSE),
+  HOWTO(R_SPARC_TLS_LE_LOX10,0,2,0,FALSE,0,complain_overflow_dont,   sparc_elf_lox10_reloc,  "R_SPARC_TLS_LE_LOX10",FALSE,0,0x000003ff, FALSE),
+  HOWTO(R_SPARC_TLS_DTPMOD32,0,0, 0,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_DTPMOD32",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_DTPMOD64,0,0, 0,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_DTPMOD64",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_DTPOFF32,0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,"R_SPARC_TLS_DTPOFF32",FALSE,0,0xffffffff,TRUE),
+  HOWTO(R_SPARC_TLS_DTPOFF64,0,0, 0,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_DTPOFF64",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_TPOFF32,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_TPOFF32",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_TPOFF64,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_TPOFF64",FALSE,0,0x00000000,TRUE)
 };
 static reloc_howto_type elf32_sparc_vtinherit_howto =
   HOWTO (R_SPARC_GNU_VTINHERIT, 0,2,0,FALSE,0,complain_overflow_dont, NULL, "R_SPARC_GNU_VTINHERIT", FALSE,0, 0, FALSE);
 static reloc_howto_type elf32_sparc_vtentry_howto =
   HOWTO (R_SPARC_GNU_VTENTRY, 0,2,0,FALSE,0,complain_overflow_dont, _bfd_elf_rel_vtable_reloc_fn,"R_SPARC_GNU_VTENTRY", FALSE,0,0, FALSE);
+static reloc_howto_type elf32_sparc_rev32_howto =
+  HOWTO(R_SPARC_REV32, 0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_REV32", FALSE,0,0xffffffff,TRUE);
 
 struct elf_reloc_map {
   bfd_reloc_code_real_type bfd_reloc_val;
@@ -188,9 +241,33 @@ static const struct elf_reloc_map sparc_
   { BFD_RELOC_SPARC_7, R_SPARC_7 },
   { BFD_RELOC_SPARC_5, R_SPARC_5 },
   { BFD_RELOC_SPARC_6, R_SPARC_6 },
-  { BFD_RELOC_SPARC_REV32, R_SPARC_REV32 },
+  { BFD_RELOC_SPARC_TLS_GD_HI22, R_SPARC_TLS_GD_HI22 },
+  { BFD_RELOC_SPARC_TLS_GD_LO10, R_SPARC_TLS_GD_LO10 },
+  { BFD_RELOC_SPARC_TLS_GD_ADD, R_SPARC_TLS_GD_ADD },
+  { BFD_RELOC_SPARC_TLS_GD_CALL, R_SPARC_TLS_GD_CALL },
+  { BFD_RELOC_SPARC_TLS_LDM_HI22, R_SPARC_TLS_LDM_HI22 },
+  { BFD_RELOC_SPARC_TLS_LDM_LO10, R_SPARC_TLS_LDM_LO10 },
+  { BFD_RELOC_SPARC_TLS_LDM_ADD, R_SPARC_TLS_LDM_ADD },
+  { BFD_RELOC_SPARC_TLS_LDM_CALL, R_SPARC_TLS_LDM_CALL },
+  { BFD_RELOC_SPARC_TLS_LDO_HIX22, R_SPARC_TLS_LDO_HIX22 },
+  { BFD_RELOC_SPARC_TLS_LDO_LOX10, R_SPARC_TLS_LDO_LOX10 },
+  { BFD_RELOC_SPARC_TLS_LDO_ADD, R_SPARC_TLS_LDO_ADD },
+  { BFD_RELOC_SPARC_TLS_IE_HI22, R_SPARC_TLS_IE_HI22 },
+  { BFD_RELOC_SPARC_TLS_IE_LO10, R_SPARC_TLS_IE_LO10 },
+  { BFD_RELOC_SPARC_TLS_IE_LD, R_SPARC_TLS_IE_LD },
+  { BFD_RELOC_SPARC_TLS_IE_LDX, R_SPARC_TLS_IE_LDX },
+  { BFD_RELOC_SPARC_TLS_IE_ADD, R_SPARC_TLS_IE_ADD },
+  { BFD_RELOC_SPARC_TLS_LE_HIX22, R_SPARC_TLS_LE_HIX22 },
+  { BFD_RELOC_SPARC_TLS_LE_LOX10, R_SPARC_TLS_LE_LOX10 },
+  { BFD_RELOC_SPARC_TLS_DTPMOD32, R_SPARC_TLS_DTPMOD32 },
+  { BFD_RELOC_SPARC_TLS_DTPMOD64, R_SPARC_TLS_DTPMOD64 },
+  { BFD_RELOC_SPARC_TLS_DTPOFF32, R_SPARC_TLS_DTPOFF32 },
+  { BFD_RELOC_SPARC_TLS_DTPOFF64, R_SPARC_TLS_DTPOFF64 },
+  { BFD_RELOC_SPARC_TLS_TPOFF32, R_SPARC_TLS_TPOFF32 },
+  { BFD_RELOC_SPARC_TLS_TPOFF64, R_SPARC_TLS_TPOFF64 },
   { BFD_RELOC_VTABLE_INHERIT, R_SPARC_GNU_VTINHERIT },
   { BFD_RELOC_VTABLE_ENTRY, R_SPARC_GNU_VTENTRY },
+  { BFD_RELOC_SPARC_REV32, R_SPARC_REV32 }
 };
 
 static reloc_howto_type *
@@ -208,6 +285,9 @@ elf32_sparc_reloc_type_lookup (abfd, cod
     case BFD_RELOC_VTABLE_ENTRY:
       return &elf32_sparc_vtentry_howto;
 
+    case BFD_RELOC_SPARC_REV32:
+      return &elf32_sparc_rev32_howto;
+
     default:
       for (i = 0; i < sizeof (sparc_reloc_map) / sizeof (struct elf_reloc_map); i++)
         {
@@ -238,6 +318,10 @@ elf32_sparc_info_to_howto (abfd, cache_p
       cache_ptr->howto = &elf32_sparc_vtentry_howto;
       break;
 
+    case R_SPARC_REV32:
+      cache_ptr->howto = &elf32_sparc_rev32_howto;
+      break;
+
     default:
       BFD_ASSERT (ELF32_R_TYPE(dst->r_info) < (unsigned int) R_SPARC_max_std);
       cache_ptr->howto = &_bfd_sparc_elf_howto_table[ELF32_R_TYPE(dst->r_info)];
@@ -320,6 +404,98 @@ sparc_elf_wdisp16_reloc (abfd,
   else
     return bfd_reloc_ok;
 }
+
+/* Handle the HIX22 reloc.  */
+
+static bfd_reloc_status_type
+sparc_elf_hix22_reloc (abfd,
+		       reloc_entry,
+		       symbol,
+		       data,
+		       input_section,
+		       output_bfd,
+		       error_message)
+     bfd *abfd;
+     arelent *reloc_entry;
+     asymbol *symbol;
+     PTR data;
+     asection *input_section;
+     bfd *output_bfd;
+     char **error_message ATTRIBUTE_UNUSED;
+{
+  bfd_vma relocation;
+  bfd_vma insn;
+
+  if (output_bfd != (bfd *) NULL
+      && (symbol->flags & BSF_SECTION_SYM) == 0)
+    {
+      reloc_entry->address += input_section->output_offset;
+      return bfd_reloc_ok;
+    }
+
+  if (output_bfd != NULL)
+    return bfd_reloc_continue;
+
+  if (reloc_entry->address > input_section->_cooked_size)
+    return bfd_reloc_outofrange;
+
+  relocation = (symbol->value
+		+ symbol->section->output_section->vma
+		+ symbol->section->output_offset);
+  relocation += reloc_entry->addend;
+  insn = bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address);
+
+  insn = (insn &~ (bfd_vma) 0x3fffff) | (((~relocation) >> 10) & 0x3fffff);
+  bfd_put_32 (abfd, insn, (bfd_byte *) data + reloc_entry->address);
+
+  return bfd_reloc_ok;
+}
+
+/* Handle the LOX10 reloc.  */
+
+static bfd_reloc_status_type
+sparc_elf_lox10_reloc (abfd,
+		       reloc_entry,
+		       symbol,
+		       data,
+		       input_section,
+		       output_bfd,
+		       error_message)
+     bfd *abfd;
+     arelent *reloc_entry;
+     asymbol *symbol;
+     PTR data;
+     asection *input_section;
+     bfd *output_bfd;
+     char **error_message ATTRIBUTE_UNUSED;
+{
+  bfd_vma relocation;
+  bfd_vma insn;
+
+  if (output_bfd != (bfd *) NULL
+      && (symbol->flags & BSF_SECTION_SYM) == 0)
+    {
+      reloc_entry->address += input_section->output_offset;
+      return bfd_reloc_ok;
+    }
+
+  if (output_bfd != NULL)
+    return bfd_reloc_continue;
+
+  if (reloc_entry->address > input_section->_cooked_size)
+    return bfd_reloc_outofrange;
+
+  relocation = (symbol->value
+		+ symbol->section->output_section->vma
+		+ symbol->section->output_offset);
+  relocation += reloc_entry->addend;
+  insn = bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address);
+
+  insn = (insn &~ (bfd_vma) 0x1fff) | 0x1c00 | (relocation & 0x3ff);
+  bfd_put_32 (abfd, insn, (bfd_byte *) data + reloc_entry->address);
+
+  return bfd_reloc_ok;
+}
 
 /* Functions for the SPARC ELF linker.  */
 
@@ -348,6 +524,319 @@ sparc_elf_wdisp16_reloc (abfd,
 /* nop.  */
 #define PLT_ENTRY_WORD2 SPARC_NOP
 
+/* The SPARC linker needs to keep track of the number of relocs that it
+   decides to copy as dynamic relocs in check_relocs for each symbol.
+   This is so that it can later discard them if they are found to be
+   unnecessary.  We store the information in a field extending the
+   regular ELF linker hash table.  */
+
+struct elf32_sparc_dyn_relocs
+{
+  struct elf32_sparc_dyn_relocs *next;
+
+  /* The input section of the reloc.  */
+  asection *sec;
+
+  /* Total number of relocs copied for the input section.  */
+  bfd_size_type count;
+
+  /* Number of pc-relative relocs copied for the input section.  */
+  bfd_size_type pc_count;
+};
+
+/* SPARC ELF linker hash entry.  */
+
+struct elf32_sparc_link_hash_entry
+{
+  struct elf_link_hash_entry elf;
+
+  /* Track dynamic relocs copied for this symbol.  */
+  struct elf32_sparc_dyn_relocs *dyn_relocs;
+
+#define GOT_UNKNOWN     0
+#define GOT_NORMAL      1
+#define GOT_TLS_GD      2
+#define GOT_TLS_IE      3
+  unsigned char tls_type;
+};
+
+#define elf32_sparc_hash_entry(ent) ((struct elf32_sparc_link_hash_entry *)(ent))
+
+struct elf32_sparc_obj_tdata
+{
+  struct elf_obj_tdata root;
+
+  /* tls_type for each local got entry.  */
+  char *local_got_tls_type;
+
+  /* TRUE if TLS GD relocs has been seen for this object.  */
+  bfd_boolean has_tlsgd;
+};
+
+#define elf32_sparc_tdata(abfd) \
+  ((struct elf32_sparc_obj_tdata *) (abfd)->tdata.any)
+
+#define elf32_sparc_local_got_tls_type(abfd) \
+  (elf32_sparc_tdata (abfd)->local_got_tls_type)
+
+static bfd_boolean
+elf32_sparc_mkobject (abfd)
+     bfd *abfd;
+{
+  bfd_size_type amt = sizeof (struct elf32_sparc_obj_tdata);
+  abfd->tdata.any = bfd_zalloc (abfd, amt);
+  if (abfd->tdata.any == NULL)
+    return FALSE;
+  return TRUE;
+}
+
+/* SPARC ELF linker hash table.  */
+
+struct elf32_sparc_link_hash_table
+{
+  struct elf_link_hash_table elf;
+
+  /* Short-cuts to get to dynamic linker sections.  */
+  asection *sgot;
+  asection *srelgot;
+  asection *splt;
+  asection *srelplt;
+  asection *sdynbss;
+  asection *srelbss;
+
+  union {
+    bfd_signed_vma refcount;
+    bfd_vma offset;
+  } tls_ldm_got;
+
+  /* Small local sym to section mapping cache.  */
+  struct sym_sec_cache sym_sec;
+};
+
+/* Get the SPARC ELF linker hash table from a link_info structure.  */
+
+#define elf32_sparc_hash_table(p) \
+  ((struct elf32_sparc_link_hash_table *) ((p)->hash))
+
+/* Create an entry in an i386 ELF linker hash table.  */
+
+static struct bfd_hash_entry *
+link_hash_newfunc (entry, table, string)
+     struct bfd_hash_entry *entry;
+     struct bfd_hash_table *table;
+     const char *string;
+{
+  /* Allocate the structure if it has not already been allocated by a
+     subclass.  */
+  if (entry == NULL)
+    {
+      entry = bfd_hash_allocate (table,
+                                 sizeof (struct elf32_sparc_link_hash_entry));
+      if (entry == NULL)
+        return entry;
+    }
+
+  /* Call the allocation method of the superclass.  */
+  entry = _bfd_elf_link_hash_newfunc (entry, table, string);
+  if (entry != NULL)
+    {
+      struct elf32_sparc_link_hash_entry *eh;
+
+      eh = (struct elf32_sparc_link_hash_entry *) entry;
+      eh->dyn_relocs = NULL;
+      eh->tls_type = GOT_UNKNOWN;
+    }
+
+  return entry;
+}
+
+/* Create a SPARC ELF linker hash table.  */
+
+static struct bfd_link_hash_table *
+elf32_sparc_link_hash_table_create (abfd)
+     bfd *abfd;
+{
+  struct elf32_sparc_link_hash_table *ret;
+  bfd_size_type amt = sizeof (struct elf32_sparc_link_hash_table);
+
+  ret = (struct elf32_sparc_link_hash_table *) bfd_malloc (amt);
+  if (ret == NULL)
+    return NULL;
+
+  if (! _bfd_elf_link_hash_table_init (&ret->elf, abfd, link_hash_newfunc))
+    {
+      free (ret);
+      return NULL;
+    }
+
+  ret->sgot = NULL;
+  ret->srelgot = NULL;
+  ret->splt = NULL;
+  ret->srelplt = NULL;
+  ret->sdynbss = NULL;
+  ret->srelbss = NULL;
+  ret->tls_ldm_got.refcount = 0;
+  ret->sym_sec.abfd = NULL;
+
+  return &ret->elf.root;
+}
+
+/* Create .got and .rela.got sections in DYNOBJ, and set up
+   shortcuts to them in our hash table.  */
+
+static bfd_boolean
+create_got_section (dynobj, info)
+     bfd *dynobj;
+     struct bfd_link_info *info;
+{
+  struct elf32_sparc_link_hash_table *htab;
+
+  if (! _bfd_elf_create_got_section (dynobj, info))
+    return FALSE;
+
+  htab = elf32_sparc_hash_table (info);
+  htab->sgot = bfd_get_section_by_name (dynobj, ".got");
+  if (!htab->sgot)
+    abort ();
+
+  htab->srelgot = bfd_make_section (dynobj, ".rela.got");
+  if (htab->srelgot == NULL
+      || ! bfd_set_section_flags (dynobj, htab->srelgot,
+				  (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
+				   | SEC_IN_MEMORY | SEC_LINKER_CREATED
+				   | SEC_READONLY))
+      || ! bfd_set_section_alignment (dynobj, htab->srelgot, 2))
+    return FALSE;
+  return TRUE;
+}
+
+/* Create .plt, .rela.plt, .got, .rela.got, .dynbss, and
+   .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
+   hash table.  */
+
+static bfd_boolean
+elf32_sparc_create_dynamic_sections (dynobj, info)
+     bfd *dynobj;
+     struct bfd_link_info *info;
+{
+  struct elf32_sparc_link_hash_table *htab;
+
+  htab = elf32_sparc_hash_table (info);
+  if (!htab->sgot && !create_got_section (dynobj, info))
+    return FALSE;
+
+  if (!_bfd_elf_create_dynamic_sections (dynobj, info))
+    return FALSE;
+
+  htab->splt = bfd_get_section_by_name (dynobj, ".plt");
+  htab->srelplt = bfd_get_section_by_name (dynobj, ".rela.plt");
+  htab->sdynbss = bfd_get_section_by_name (dynobj, ".dynbss");
+  if (!info->shared)
+    htab->srelbss = bfd_get_section_by_name (dynobj, ".rela.bss");
+
+  if (!htab->splt || !htab->srelplt || !htab->sdynbss
+      || (!info->shared && !htab->srelbss))
+    abort ();
+
+  return TRUE;
+}
+
+/* Copy the extra info we tack onto an elf_link_hash_entry.  */
+
+static void
+elf32_sparc_copy_indirect_symbol (bed, dir, ind)
+     struct elf_backend_data *bed;
+     struct elf_link_hash_entry *dir, *ind;
+{
+  struct elf32_sparc_link_hash_entry *edir, *eind;
+
+  edir = (struct elf32_sparc_link_hash_entry *) dir;
+  eind = (struct elf32_sparc_link_hash_entry *) ind;
+
+  if (eind->dyn_relocs != NULL)
+    {
+      if (edir->dyn_relocs != NULL)
+        {
+          struct elf32_sparc_dyn_relocs **pp;
+          struct elf32_sparc_dyn_relocs *p;
+
+          if (ind->root.type == bfd_link_hash_indirect)
+            abort ();
+
+          /* Add reloc counts against the weak sym to the strong sym
+             list.  Merge any entries against the same section.  */
+          for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
+            {
+              struct elf32_sparc_dyn_relocs *q;
+
+              for (q = edir->dyn_relocs; q != NULL; q = q->next)
+                if (q->sec == p->sec)
+                  {
+                    q->pc_count += p->pc_count;
+                    q->count += p->count;
+                    *pp = p->next;
+                    break;
+                  }
+              if (q == NULL)
+                pp = &p->next;
+            }
+          *pp = edir->dyn_relocs;
+        }
+
+      edir->dyn_relocs = eind->dyn_relocs;
+      eind->dyn_relocs = NULL;
+    }
+
+  if (ind->root.type == bfd_link_hash_indirect
+      && dir->got.refcount <= 0)
+    {
+      edir->tls_type = eind->tls_type;
+      eind->tls_type = GOT_UNKNOWN;
+    }
+  _bfd_elf_link_hash_copy_indirect (bed, dir, ind);
+}
+
+static int
+elf32_sparc_tls_transition (info, abfd, r_type, is_local)
+     struct bfd_link_info *info;
+     bfd *abfd;
+     int r_type;
+     int is_local;
+{
+  if (r_type == R_SPARC_TLS_GD_HI22
+      && ! elf32_sparc_tdata (abfd)->has_tlsgd)
+    r_type = R_SPARC_REV32;
+
+  if (info->shared)
+    return r_type;
+
+  switch (r_type)
+    {
+    case R_SPARC_TLS_GD_HI22:
+      if (is_local)
+	return R_SPARC_TLS_LE_HIX22;
+      return R_SPARC_TLS_IE_HI22;
+    case R_SPARC_TLS_GD_LO10:
+      if (is_local)
+        return R_SPARC_TLS_LE_LOX10;
+      return R_SPARC_TLS_IE_LO10;
+    case R_SPARC_TLS_IE_HI22:
+      if (is_local)
+        return R_SPARC_TLS_LE_HIX22;
+      return r_type;
+    case R_SPARC_TLS_IE_LO10:
+      if (is_local)
+        return R_SPARC_TLS_LE_LOX10;
+      return r_type;
+    case R_SPARC_TLS_LDM_HI22:
+      return R_SPARC_TLS_LE_HIX22;
+    case R_SPARC_TLS_LDM_LO10:
+      return R_SPARC_TLS_LE_LOX10;
+    }
+
+  return r_type;
+}
+
 /* Look through the relocs for a section during the first phase, and
    allocate space in the global offset table or procedure linkage
    table.  */
@@ -359,143 +848,201 @@ elf32_sparc_check_relocs (abfd, info, se
      asection *sec;
      const Elf_Internal_Rela *relocs;
 {
-  bfd *dynobj;
+  struct elf32_sparc_link_hash_table *htab;
   Elf_Internal_Shdr *symtab_hdr;
   struct elf_link_hash_entry **sym_hashes;
   bfd_vma *local_got_offsets;
   const Elf_Internal_Rela *rel;
   const Elf_Internal_Rela *rel_end;
-  asection *sgot;
-  asection *srelgot;
   asection *sreloc;
+  bfd_boolean checked_tlsgd = FALSE;
 
   if (info->relocateable)
     return TRUE;
 
-  dynobj = elf_hash_table (info)->dynobj;
+  htab = elf32_sparc_hash_table (info);
   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
   sym_hashes = elf_sym_hashes (abfd);
   local_got_offsets = elf_local_got_offsets (abfd);
 
-  sgot = NULL;
-  srelgot = NULL;
   sreloc = NULL;
 
   rel_end = relocs + sec->reloc_count;
   for (rel = relocs; rel < rel_end; rel++)
     {
+      unsigned int r_type;
       unsigned long r_symndx;
       struct elf_link_hash_entry *h;
 
       r_symndx = ELF32_R_SYM (rel->r_info);
+      r_type = ELF32_R_TYPE (rel->r_info);
+
+      if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
+        {
+          (*_bfd_error_handler) (_("%s: bad symbol index: %d"),
+                                 bfd_archive_filename (abfd),
+                                 r_symndx);
+          return FALSE;
+        }
+
       if (r_symndx < symtab_hdr->sh_info)
 	h = NULL;
       else
 	h = sym_hashes[r_symndx - symtab_hdr->sh_info];
 
-      switch (ELF32_R_TYPE (rel->r_info))
+      /* Compatibility with old R_SPARC_REV32 reloc conflicting
+	 with R_SPARC_TLS_GD_HI22.  */
+      if (! checked_tlsgd)
+	switch (r_type)
+	  {
+	  case R_SPARC_TLS_GD_HI22:
+	    {
+	      const Elf_Internal_Rela *relt;
+
+	      for (relt = rel + 1; relt < rel_end; relt++)
+		if (ELF32_R_TYPE (relt->r_info) == R_SPARC_TLS_GD_LO10
+		    || ELF32_R_TYPE (relt->r_info) == R_SPARC_TLS_GD_ADD
+		    || ELF32_R_TYPE (relt->r_info) == R_SPARC_TLS_GD_CALL)
+		  break;
+	      checked_tlsgd = TRUE;
+	      elf32_sparc_tdata (abfd)->has_tlsgd = relt < rel_end;
+	    }
+	    break;
+	  case R_SPARC_TLS_GD_LO10:
+	  case R_SPARC_TLS_GD_ADD:
+	  case R_SPARC_TLS_GD_CALL:
+	    checked_tlsgd = TRUE;
+	    elf32_sparc_tdata (abfd)->has_tlsgd = TRUE;
+	    break;
+	  }
+
+      r_type = elf32_sparc_tls_transition (info, abfd, r_type, h == NULL);
+      switch (r_type)
 	{
+	case R_SPARC_TLS_LDM_HI22:
+	case R_SPARC_TLS_LDM_LO10:
+	  htab->tls_ldm_got.refcount += 1;
+	  break;
+
+	case R_SPARC_TLS_LE_HIX22:
+	case R_SPARC_TLS_LE_LOX10:
+	  if (info->shared)
+	    goto r_sparc_plt32;
+	  break;
+
+	case R_SPARC_TLS_IE_HI22:
+	case R_SPARC_TLS_IE_LO10:
+	  if (info->shared)
+	    info->flags |= DF_STATIC_TLS;
+	  /* Fall through */
+
 	case R_SPARC_GOT10:
 	case R_SPARC_GOT13:
 	case R_SPARC_GOT22:
+	case R_SPARC_TLS_GD_HI22:
+	case R_SPARC_TLS_GD_LO10:
 	  /* This symbol requires a global offset table entry.  */
+	  {
+	    int tls_type, old_tls_type;
 
-	  if (dynobj == NULL)
-	    {
-	      /* Create the .got section.  */
-	      elf_hash_table (info)->dynobj = dynobj = abfd;
-	      if (! _bfd_elf_create_got_section (dynobj, info))
-		return FALSE;
-	    }
+	    switch (r_type)
+	      {
+	      default:
+	      case R_SPARC_GOT10:
+	      case R_SPARC_GOT13:
+	      case R_SPARC_GOT22:
+		tls_type = GOT_NORMAL;
+		break;
+	      case R_SPARC_TLS_GD_HI22:
+	      case R_SPARC_TLS_GD_LO10:
+		tls_type = GOT_TLS_GD;
+		break;
+	      case R_SPARC_TLS_IE_HI22:
+	      case R_SPARC_TLS_IE_LO10:
+		tls_type = GOT_TLS_IE;
+		break;
+	      }
 
-	  if (sgot == NULL)
-	    {
-	      sgot = bfd_get_section_by_name (dynobj, ".got");
-	      BFD_ASSERT (sgot != NULL);
-	    }
+	    if (h != NULL)
+	      {
+		h->got.refcount += 1;
+		old_tls_type = elf32_sparc_hash_entry(h)->tls_type;
+	      }
+	    else
+	      {
+		bfd_signed_vma *local_got_refcounts;
 
-	  if (srelgot == NULL
-	      && (h != NULL || info->shared))
-	    {
-	      srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
-	      if (srelgot == NULL)
-		{
-		  srelgot = bfd_make_section (dynobj, ".rela.got");
-		  if (srelgot == NULL
-		      || ! bfd_set_section_flags (dynobj, srelgot,
-						  (SEC_ALLOC
-						   | SEC_LOAD
-						   | SEC_HAS_CONTENTS
-						   | SEC_IN_MEMORY
-						   | SEC_LINKER_CREATED
-						   | SEC_READONLY))
-		      || ! bfd_set_section_alignment (dynobj, srelgot, 2))
-		    return FALSE;
-		}
-	    }
+		/* This is a global offset table entry for a local symbol.  */
+		local_got_refcounts = elf_local_got_refcounts (abfd);
+		if (local_got_refcounts == NULL)
+		  {
+		    bfd_size_type size;
 
-	  if (h != NULL)
-	    {
-	      if (h->got.offset != (bfd_vma) -1)
-		{
-		  /* We have already allocated space in the .got.  */
-		  break;
-		}
-	      h->got.offset = sgot->_raw_size;
+		    size = symtab_hdr->sh_info;
+		    size *= (sizeof (bfd_signed_vma) + sizeof(char));
+		    local_got_refcounts = ((bfd_signed_vma *)
+					   bfd_zalloc (abfd, size));
+		    if (local_got_refcounts == NULL)
+		      return FALSE;
+		    elf_local_got_refcounts (abfd) = local_got_refcounts;
+		    elf32_sparc_local_got_tls_type (abfd)
+		      = (char *) (local_got_refcounts + symtab_hdr->sh_info);
+		  }
+		local_got_refcounts[r_symndx] += 1;
+		old_tls_type = elf32_sparc_local_got_tls_type (abfd) [r_symndx];
+	      }
 
-	      /* Make sure this symbol is output as a dynamic symbol.  */
-	      if (h->dynindx == -1)
-		{
-		  if (! bfd_elf32_link_record_dynamic_symbol (info, h))
+	    /* If a TLS symbol is accessed using IE at least once,
+	       there is no point to use dynamic model for it.  */
+	    if (old_tls_type != tls_type && old_tls_type != GOT_UNKNOWN
+		&& (old_tls_type != GOT_TLS_GD
+		    || tls_type != GOT_TLS_IE))
+	      {
+		if (old_tls_type == GOT_TLS_IE && tls_type == GOT_TLS_GD)
+		  tls_type = old_tls_type;
+		else
+		  {
+		    (*_bfd_error_handler)
+		      (_("%s: `%s' accessed both as normal and thread local symbol"),
+		       bfd_archive_filename (abfd),
+		       h ? h->root.root.string : "<local>");
 		    return FALSE;
-		}
+		  }
+	      }
 
-	      srelgot->_raw_size += sizeof (Elf32_External_Rela);
-	    }
-	  else
-	    {
-	      /* This is a global offset table entry for a local
-                 symbol.  */
-	      if (local_got_offsets == NULL)
-		{
-		  bfd_size_type size;
-		  register unsigned int i;
+	    if (old_tls_type != tls_type)
+	      {
+		if (h != NULL)
+		  elf32_sparc_hash_entry (h)->tls_type = tls_type;
+		else
+		  elf32_sparc_local_got_tls_type (abfd) [r_symndx] = tls_type;
+	      }
+	  }
 
-		  size = symtab_hdr->sh_info;
-		  size *= sizeof (bfd_vma);
-		  local_got_offsets = (bfd_vma *) bfd_alloc (abfd, size);
-		  if (local_got_offsets == NULL)
-		    return FALSE;
-		  elf_local_got_offsets (abfd) = local_got_offsets;
-		  for (i = 0; i < symtab_hdr->sh_info; i++)
-		    local_got_offsets[i] = (bfd_vma) -1;
-		}
-	      if (local_got_offsets[r_symndx] != (bfd_vma) -1)
-		{
-		  /* We have already allocated space in the .got.  */
-		  break;
-		}
-	      local_got_offsets[r_symndx] = sgot->_raw_size;
+	  if (htab->elf.dynobj == NULL)
+	    htab->elf.dynobj = abfd;
+	  if (!create_got_section (htab->elf.dynobj, info))
+	    return FALSE;
+	  break;
 
-	      if (info->shared)
-		{
-		  /* If we are generating a shared object, we need to
-                     output a R_SPARC_RELATIVE reloc so that the
-                     dynamic linker can adjust this GOT entry.  */
-		  srelgot->_raw_size += sizeof (Elf32_External_Rela);
-		}
+	case R_SPARC_TLS_GD_CALL:
+	case R_SPARC_TLS_LDM_CALL:
+	  if (info->shared)
+	    {
+	      /* These are basically R_SPARC_TLS_WPLT30 relocs against
+		 __tls_get_addr.  */
+	      struct bfd_link_hash_entry *bh = NULL;
+	      if (! _bfd_generic_link_add_one_symbol (info, abfd,
+						      "__tls_get_addr", 0,
+						      bfd_und_section_ptr, 0,
+						      NULL, FALSE, FALSE,
+						      &bh))
+		return FALSE;
+	      h = (struct elf_link_hash_entry *) bh;
 	    }
-
-	  sgot->_raw_size += 4;
-
-	  /* If the .got section is more than 0x1000 bytes, we add
-	     0x1000 to the value of _GLOBAL_OFFSET_TABLE_, so that 13
-	     bit relocations have a greater chance of working.  */
-	  if (sgot->_raw_size >= 0x1000
-	      && elf_hash_table (info)->hgot->root.u.def.value == 0)
-	    elf_hash_table (info)->hgot->root.u.def.value = 0x1000;
-
-	  break;
+	  else
+	    break;
+	  /* Fall through */
 
 	case R_SPARC_PLT32:
 	case R_SPARC_WPLT30:
@@ -511,22 +1058,16 @@ elf32_sparc_check_relocs (abfd, info, se
                  reloc for a local symbol if you assemble a call from
                  one section to another when using -K pic.  We treat
                  it as WDISP30.  */
-	      if (ELF32_R_TYPE (rel->r_info) != R_SPARC_WPLT30)
+	      if (ELF32_R_TYPE (rel->r_info) == R_SPARC_PLT32)
 		goto r_sparc_plt32;
 	      break;
 	    }
 
-	  /* Make sure this symbol is output as a dynamic symbol.  */
-	  if (h->dynindx == -1)
-	    {
-	      if (! bfd_elf32_link_record_dynamic_symbol (info, h))
-		return FALSE;
-	    }
-
 	  h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
 
-	  if (ELF32_R_TYPE (rel->r_info) != R_SPARC_WPLT30)
+	  if (ELF32_R_TYPE (rel->r_info) == R_SPARC_PLT32)
 	    goto r_sparc_plt32;
+	  h->plt.refcount += 1;
 	  break;
 
 	case R_SPARC_PC10:
@@ -538,6 +1079,7 @@ elf32_sparc_check_relocs (abfd, info, se
 	      && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
 	    break;
 	  /* Fall through.  */
+
 	case R_SPARC_DISP8:
 	case R_SPARC_DISP16:
 	case R_SPARC_DISP32:
@@ -545,23 +1087,6 @@ elf32_sparc_check_relocs (abfd, info, se
 	case R_SPARC_WDISP22:
 	case R_SPARC_WDISP19:
 	case R_SPARC_WDISP16:
-	  if (h != NULL)
-	    h->elf_link_hash_flags |= ELF_LINK_NON_GOT_REF;
-
-	  /* If we are linking with -Bsymbolic, we do not need to copy
-             a PC relative reloc against a global symbol which is
-             defined in an object we are including in the link (i.e.,
-             DEF_REGULAR is set).  FIXME: At this point we have not
-             seen all the input files, so it is possible that
-             DEF_REGULAR is not set now but will be set later (it is
-             never cleared).  This needs to be handled as in
-             elf32-i386.c.  */
-	  if (h == NULL
-	      || (info->symbolic
-		  && (h->elf_link_hash_flags
-		      & ELF_LINK_HASH_DEF_REGULAR) != 0))
-	    break;
-	  /* Fall through.  */
 	case R_SPARC_8:
 	case R_SPARC_16:
 	case R_SPARC_32:
@@ -575,14 +1100,59 @@ elf32_sparc_check_relocs (abfd, info, se
 	    h->elf_link_hash_flags |= ELF_LINK_NON_GOT_REF;
 
 	r_sparc_plt32:
-	  if (info->shared && (sec->flags & SEC_ALLOC))
+	  if (h != NULL && !info->shared)
+	    {
+	      /* We may need a .plt entry if the function this reloc
+		 refers to is in a shared lib.  */
+	      h->plt.refcount += 1;
+	    }
+
+	  /* If we are creating a shared library, and this is a reloc
+	     against a global symbol, or a non PC relative reloc
+	     against a local symbol, then we need to copy the reloc
+	     into the shared library.  However, if we are linking with
+	     -Bsymbolic, we do not need to copy a reloc against a
+	     global symbol which is defined in an object we are
+	     including in the link (i.e., DEF_REGULAR is set).  At
+	     this point we have not seen all the input files, so it is
+	     possible that DEF_REGULAR is not set now but will be set
+	     later (it is never cleared).  In case of a weak definition,
+	     DEF_REGULAR may be cleared later by a strong definition in
+	     a shared library.  We account for that possibility below by
+	     storing information in the relocs_copied field of the hash
+	     table entry.  A similar situation occurs when creating
+	     shared libraries and symbol visibility changes render the
+	     symbol local.
+
+	     If on the other hand, we are creating an executable, we
+	     may need to keep relocations for symbols satisfied by a
+	     dynamic library if we manage to avoid copy relocs for the
+	     symbol.  */
+	  if ((info->shared
+	       && (sec->flags & SEC_ALLOC) != 0
+	       && (! _bfd_sparc_elf_howto_table[r_type].pc_relative
+		   || (h != NULL
+		       && (! info->symbolic
+			   || h->root.type == bfd_link_hash_defweak
+			   || (h->elf_link_hash_flags
+			       & ELF_LINK_HASH_DEF_REGULAR) == 0))))
+	      || (!info->shared
+		  && (sec->flags & SEC_ALLOC) != 0
+		  && h != NULL
+		  && (h->root.type == bfd_link_hash_defweak
+		      || (h->elf_link_hash_flags
+			  & ELF_LINK_HASH_DEF_REGULAR) == 0)))
 	    {
+	      struct elf32_sparc_dyn_relocs *p;
+	      struct elf32_sparc_dyn_relocs **head;
+
 	      /* When creating a shared object, we must copy these
                  relocs into the output file.  We create a reloc
                  section in dynobj and make room for the reloc.  */
 	      if (sreloc == NULL)
 		{
 		  const char *name;
+		  bfd *dynobj;
 
 		  name = (bfd_elf_string_from_elf_section
 			  (abfd,
@@ -595,6 +1165,10 @@ elf32_sparc_check_relocs (abfd, info, se
 			      && strcmp (bfd_get_section_name (abfd, sec),
 					 name + 5) == 0);
 
+		  if (htab->elf.dynobj == NULL)
+		    htab->elf.dynobj = abfd;
+		  dynobj = htab->elf.dynobj;
+
 		  sreloc = bfd_get_section_by_name (dynobj, name);
 		  if (sreloc == NULL)
 		    {
@@ -610,11 +1184,47 @@ elf32_sparc_check_relocs (abfd, info, se
 			  || ! bfd_set_section_alignment (dynobj, sreloc, 2))
 			return FALSE;
 		    }
-		  if (sec->flags & SEC_READONLY)
-		    info->flags |= DF_TEXTREL;
+		  elf_section_data (sec)->sreloc = sreloc;
 		}
 
-	      sreloc->_raw_size += sizeof (Elf32_External_Rela);
+	      /* If this is a global symbol, we count the number of
+		 relocations we need for this symbol.  */
+	      if (h != NULL)
+		head = &((struct elf32_sparc_link_hash_entry *) h)->dyn_relocs;
+	      else
+		{
+		  /* Track dynamic relocs needed for local syms too.
+		     We really need local syms available to do this
+		     easily.  Oh well.  */
+
+		  asection *s;
+		  s = bfd_section_from_r_symndx (abfd, &htab->sym_sec,
+						 sec, r_symndx);
+		  if (s == NULL)
+		    return FALSE;
+
+		  head = ((struct elf32_sparc_dyn_relocs **)
+			  &elf_section_data (s)->local_dynrel);
+		}
+
+	      p = *head;
+	      if (p == NULL || p->sec != sec)
+		{
+		  bfd_size_type amt = sizeof *p;
+		  p = ((struct elf32_sparc_dyn_relocs *)
+		       bfd_alloc (htab->elf.dynobj, amt));
+		  if (p == NULL)
+		    return FALSE;
+		  p->next = *head;
+		  *head = p;
+		  p->sec = sec;
+		  p->count = 0;
+		  p->pc_count = 0;
+		}
+
+	      p->count += 1;
+	      if (_bfd_sparc_elf_howto_table[r_type].pc_relative)
+		p->pc_count += 1;
 	    }
 
 	  break;
@@ -688,6 +1298,7 @@ elf32_sparc_gc_sweep_hook (abfd, info, s
   bfd_signed_vma *local_got_refcounts;
   const Elf_Internal_Rela *rel, *relend;
   unsigned long r_symndx;
+  int r_type;
   struct elf_link_hash_entry *h;
 
   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
@@ -696,8 +1307,80 @@ elf32_sparc_gc_sweep_hook (abfd, info, s
 
   relend = relocs + sec->reloc_count;
   for (rel = relocs; rel < relend; rel++)
-    switch (ELF32_R_TYPE (rel->r_info))
+    switch ((r_type = elf32_sparc_tls_transition (info, abfd,
+						  ELF32_R_TYPE (rel->r_info),
+						  ELF32_R_SYM (rel->r_info)
+						  >= symtab_hdr->sh_info)))
       {
+      case R_SPARC_TLS_LDM_HI22:
+      case R_SPARC_TLS_LDM_LO10:
+	if (elf32_sparc_hash_table (info)->tls_ldm_got.refcount > 0)
+	  elf32_sparc_hash_table (info)->tls_ldm_got.refcount -= 1;
+	break;
+
+      case R_SPARC_TLS_LE_HIX22:
+      case R_SPARC_TLS_LE_LOX10:
+	if (info->shared)
+	  goto r_sparc_plt32;
+	break;
+
+      case R_SPARC_PC10:
+      case R_SPARC_PC22:
+	  if ((r_symndx = ELF32_R_SYM (rel->r_info)) >= symtab_hdr->sh_info
+	      && strcmp (sym_hashes[r_symndx
+				    - symtab_hdr->sh_info]->root.root.string,
+				    "_GLOBAL_OFFSET_TABLE_") == 0)
+	    break;
+	  /* Fall through.  */
+
+      case R_SPARC_DISP8:
+      case R_SPARC_DISP16:
+      case R_SPARC_DISP32:
+      case R_SPARC_WDISP30:
+      case R_SPARC_WDISP22:
+      case R_SPARC_WDISP19:
+      case R_SPARC_WDISP16:
+      case R_SPARC_8:
+      case R_SPARC_16:
+      case R_SPARC_32:
+      case R_SPARC_HI22:
+      case R_SPARC_22:
+      case R_SPARC_13:
+      case R_SPARC_LO10:
+      case R_SPARC_UA16:
+      case R_SPARC_UA32:
+      r_sparc_plt32:
+	r_symndx = ELF32_R_SYM (rel->r_info);
+	if (r_symndx >= symtab_hdr->sh_info)
+	  {
+	    struct elf32_sparc_link_hash_entry *eh;
+	    struct elf32_sparc_dyn_relocs **pp;
+	    struct elf32_sparc_dyn_relocs *p;
+
+	    h = sym_hashes[r_symndx - symtab_hdr->sh_info];
+
+	    if (! info->shared)
+	      --h->plt.refcount;
+
+	    eh = (struct elf32_sparc_link_hash_entry *) h;
+
+	    for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
+	      if (p->sec == sec)
+		{
+		  if (_bfd_sparc_elf_howto_table[r_type].pc_relative)
+		    p->pc_count -= 1;
+		  p->count -= 1;
+		  if (p->count == 0)
+		    *pp = p->next;
+		  break;
+		}
+	  }
+	break;
+
+      case R_SPARC_TLS_GD_HI22:
+      case R_SPARC_TLS_GD_LO10:
+      case R_SPARC_TLS_IE_HI22:
+      case R_SPARC_TLS_IE_LO10:
       case R_SPARC_GOT10:
       case R_SPARC_GOT13:
       case R_SPARC_GOT22:
@@ -727,6 +1410,8 @@ elf32_sparc_gc_sweep_hook (abfd, info, s
 	    if (h->plt.refcount > 0)
 	      h->plt.refcount--;
 	  }
+	if (r_type == R_SPARC_PLT32)
+	  goto r_sparc_plt32;
 	break;
 
       default:
@@ -747,14 +1432,16 @@ elf32_sparc_adjust_dynamic_symbol (info,
      struct bfd_link_info *info;
      struct elf_link_hash_entry *h;
 {
-  bfd *dynobj;
+  struct elf32_sparc_link_hash_table *htab;
+  struct elf32_sparc_link_hash_entry * eh;
+  struct elf32_sparc_dyn_relocs *p;
   asection *s;
   unsigned int power_of_two;
 
-  dynobj = elf_hash_table (info)->dynobj;
+  htab = elf32_sparc_hash_table (info);
 
   /* Make sure we know what is going on here.  */
-  BFD_ASSERT (dynobj != NULL
+  BFD_ASSERT (htab->elf.dynobj != NULL
 	      && ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT)
 		  || h->weakdef != NULL
 		  || ((h->elf_link_hash_flags
@@ -778,64 +1465,26 @@ elf32_sparc_adjust_dynamic_symbol (info,
 	      || h->root.type == bfd_link_hash_defweak)
 	  && (h->root.u.def.section->flags & SEC_CODE) != 0))
     {
-      if (! elf_hash_table (info)->dynamic_sections_created
-	  || ((!info->shared || info->symbolic || h->dynindx == -1)
-	      && (h->elf_link_hash_flags
-		  & ELF_LINK_HASH_DEF_REGULAR) != 0))
+      if (h->plt.refcount <= 0
+	  || (! info->shared
+	      && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) == 0
+	      && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) == 0
+	      && h->root.type != bfd_link_hash_undefweak
+	      && h->root.type != bfd_link_hash_undefined))
 	{
 	  /* This case can occur if we saw a WPLT30 reloc in an input
-	     file, but none of the input files were dynamic objects.
-	     Or, when linking the main application or a -Bsymbolic
-	     shared library against PIC code.  Or when a global symbol
-	     has been made private, e.g. via versioning.
-
-	     In these cases we know what value the symbol will resolve
-	     to, so we don't actually need to build a procedure linkage
-	     table, and we can just do a WDISP30 reloc instead.  */
-
+	     file, but the symbol was never referred to by a dynamic
+	     object, or if all references were garbage collected.  In
+	     such a case, we don't actually need to build a procedure
+	     linkage table, and we can just do a WDISP30 reloc instead.  */
+	  h->plt.offset = (bfd_vma) -1;
 	  h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
-	  return TRUE;
-	}
-
-      s = bfd_get_section_by_name (dynobj, ".plt");
-      BFD_ASSERT (s != NULL);
-
-      /* The first four entries in .plt are reserved.  */
-      if (s->_raw_size == 0)
-	s->_raw_size = 4 * PLT_ENTRY_SIZE;
-
-      /* The procedure linkage table has a maximum size.  */
-      if (s->_raw_size >= 0x400000)
-	{
-	  bfd_set_error (bfd_error_bad_value);
-	  return FALSE;
 	}
 
-     /* If this symbol is not defined in a regular file, and we are
-       not generating a shared library, then set the symbol to this
-       location in the .plt.  This is required to make function
-       pointers compare as equal between the normal executable and
-       the shared library.  */
-     if (! info->shared
-	&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
-      {
-	h->root.u.def.section = s;
-	h->root.u.def.value = s->_raw_size;
-      }
-
-      h->plt.offset = s->_raw_size;
-
-      /* Make room for this entry.  */
-      s->_raw_size += PLT_ENTRY_SIZE;
-
-      /* We also need to make an entry in the .rela.plt section.  */
-
-      s = bfd_get_section_by_name (dynobj, ".rela.plt");
-      BFD_ASSERT (s != NULL);
-      s->_raw_size += sizeof (Elf32_External_Rela);
-
       return TRUE;
     }
+  else
+    h->plt.offset = (bfd_vma) -1;
 
   /* If this is a weak symbol, and there is a real definition, the
      processor independent code will have arranged for us to see the
@@ -864,55 +1513,306 @@ elf32_sparc_adjust_dynamic_symbol (info,
   if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0)
     return TRUE;
 
-  /* We must allocate the symbol in our .dynbss section, which will
-     become part of the .bss section of the executable.  There will be
-     an entry for this symbol in the .dynsym section.  The dynamic
-     object will contain position independent code, so all references
-     from the dynamic object to this symbol will go through the global
-     offset table.  The dynamic linker will use the .dynsym entry to
-     determine the address it must put in the global offset table, so
-     both the dynamic object and the regular object will refer to the
-     same memory location for the variable.  */
+  eh = (struct elf32_sparc_link_hash_entry *) h;
+  for (p = eh->dyn_relocs; p != NULL; p = p->next)
+    {
+      s = p->sec->output_section;
+      if (s != NULL && (s->flags & SEC_READONLY) != 0)
+	break;
+    }
+
+  /* If we didn't find any dynamic relocs in read-only sections, then
+     we'll be keeping the dynamic relocs and avoiding the copy reloc.  */
+  if (p == NULL)
+    {
+      h->elf_link_hash_flags &= ~ELF_LINK_NON_GOT_REF;
+      return TRUE;
+    }
+
+  /* We must allocate the symbol in our .dynbss section, which will
+     become part of the .bss section of the executable.  There will be
+     an entry for this symbol in the .dynsym section.  The dynamic
+     object will contain position independent code, so all references
+     from the dynamic object to this symbol will go through the global
+     offset table.  The dynamic linker will use the .dynsym entry to
+     determine the address it must put in the global offset table, so
+     both the dynamic object and the regular object will refer to the
+     same memory location for the variable.  */
+
+  /* We must generate a R_SPARC_COPY reloc to tell the dynamic linker
+     to copy the initial value out of the dynamic object and into the
+     runtime process image.  We need to remember the offset into the
+     .rel.bss section we are going to use.  */
+  if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
+    {
+      htab->srelbss->_raw_size += sizeof (Elf32_External_Rela);
+      h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_COPY;
+    }
+
+  /* We need to figure out the alignment required for this symbol.  I
+     have no idea how ELF linkers handle this.  */
+  power_of_two = bfd_log2 (h->size);
+  if (power_of_two > 3)
+    power_of_two = 3;
+
+  /* Apply the required alignment.  */
+  s = htab->sdynbss;
+  s->_raw_size = BFD_ALIGN (s->_raw_size,
+			    (bfd_size_type) (1 << power_of_two));
+  if (power_of_two > bfd_get_section_alignment (dynobj, s))
+    {
+      if (! bfd_set_section_alignment (dynobj, s, power_of_two))
+	return FALSE;
+    }
+
+  /* Define the symbol as being at this point in the section.  */
+  h->root.u.def.section = s;
+  h->root.u.def.value = s->_raw_size;
+
+  /* Increment the section size to make room for the symbol.  */
+  s->_raw_size += h->size;
+
+  return TRUE;
+}
+
+/* This is the condition under which finish_dynamic_symbol will be called
+   from elflink.h.  If elflink.h doesn't call our finish_dynamic_symbol
+   routine, we'll need to do something about initializing any .plt and .got
+   entries in relocate_section.  */
+#define WILL_CALL_FINISH_DYNAMIC_SYMBOL(DYN, INFO, H)			\
+  ((DYN)								\
+   && ((INFO)->shared							\
+       || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)	\
+   && ((H)->dynindx != -1						\
+       || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0))
+
+/* Allocate space in .plt, .got and associated reloc sections for
+   dynamic relocs.  */
+
+static bfd_boolean
+allocate_dynrelocs (h, inf)
+     struct elf_link_hash_entry *h;
+     PTR inf;
+{
+  struct bfd_link_info *info;
+  struct elf32_sparc_link_hash_table *htab;
+  struct elf32_sparc_link_hash_entry *eh;
+  struct elf32_sparc_dyn_relocs *p;
+
+  if (h->root.type == bfd_link_hash_indirect)
+    return TRUE;
+
+  if (h->root.type == bfd_link_hash_warning)
+    /* When warning symbols are created, they **replace** the "real"
+       entry in the hash table, thus we never get to see the real
+       symbol in a hash traversal.  So look at it now.  */
+    h = (struct elf_link_hash_entry *) h->root.u.i.link;
+
+  info = (struct bfd_link_info *) inf;
+  htab = elf32_sparc_hash_table (info);
+
+  if (htab->elf.dynamic_sections_created
+      && h->plt.refcount > 0)
+    {
+      /* Make sure this symbol is output as a dynamic symbol.
+	 Undefined weak syms won't yet be marked as dynamic.  */
+      if (h->dynindx == -1
+	  && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
+	{
+	  if (! bfd_elf32_link_record_dynamic_symbol (info, h))
+	    return FALSE;
+	}
+
+      if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, info, h))
+	{
+	  asection *s = htab->splt;
+
+	  /* The first four entries in .plt are reserved.  */
+	  if (s->_raw_size == 0)
+	    s->_raw_size = 4 * PLT_ENTRY_SIZE;
+                    
+	  /* The procedure linkage table has a maximum size.  */
+	  if (s->_raw_size >= 0x400000)
+	    {
+	      bfd_set_error (bfd_error_bad_value);
+	      return FALSE;
+	    }
+
+	  h->plt.offset = s->_raw_size;
+
+	  /* If this symbol is not defined in a regular file, and we are
+	     not generating a shared library, then set the symbol to this
+	     location in the .plt.  This is required to make function
+	     pointers compare as equal between the normal executable and
+	     the shared library.  */
+	  if (! info->shared
+	      && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
+	    {
+	      h->root.u.def.section = s;
+	      h->root.u.def.value = h->plt.offset;
+	    }
+
+	  /* Make room for this entry.  */
+	  s->_raw_size += PLT_ENTRY_SIZE;
+
+	  /* We also need to make an entry in the .rela.plt section.  */
+	  htab->srelplt->_raw_size += sizeof (Elf32_External_Rela);
+	}
+      else
+	{
+	  h->plt.offset = (bfd_vma) -1;
+	  h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
+	}
+    }
+  else
+    {
+      h->plt.offset = (bfd_vma) -1;
+      h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
+    }
+
+  /* If R_SPARC_TLS_IE_{HI22,LO10} symbol is now local to the binary,
+     make it a R_SPARC_TLS_LE_{HI22,LO10} requiring no TLS entry.  */
+  if (h->got.refcount > 0
+      && !info->shared
+      && h->dynindx == -1
+      && elf32_sparc_hash_entry(h)->tls_type == GOT_TLS_IE)
+    h->got.offset = (bfd_vma) -1;
+  else if (h->got.refcount > 0)
+    {
+      asection *s;
+      bfd_boolean dyn;
+      int tls_type = elf32_sparc_hash_entry(h)->tls_type;
+
+      /* Make sure this symbol is output as a dynamic symbol.
+	 Undefined weak syms won't yet be marked as dynamic.  */
+      if (h->dynindx == -1
+	  && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
+	{
+	  if (! bfd_elf32_link_record_dynamic_symbol (info, h))
+	    return FALSE;
+	}
+
+      s = htab->sgot;
+      h->got.offset = s->_raw_size;
+      s->_raw_size += 4;
+      /* R_SPARC_TLS_GD_HI{22,LO10} needs 2 consecutive GOT slots.  */
+      if (tls_type == GOT_TLS_GD)
+	s->_raw_size += 4;
+      dyn = htab->elf.dynamic_sections_created;
+      /* R_SPARC_TLS_IE_{HI22,LO10} needs one dynamic relocation,
+	 R_SPARC_TLS_GD_{HI22,LO10} needs one if local symbol and two if
+	 global.  */
+      if ((tls_type == GOT_TLS_GD && h->dynindx == -1)
+	  || tls_type == GOT_TLS_IE)
+	htab->srelgot->_raw_size += sizeof (Elf32_External_Rela);
+      else if (tls_type == GOT_TLS_GD)
+	htab->srelgot->_raw_size += 2 * sizeof (Elf32_External_Rela);
+      else if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info, h))
+	htab->srelgot->_raw_size += sizeof (Elf32_External_Rela);
+    }
+  else
+    h->got.offset = (bfd_vma) -1;
+
+  eh = (struct elf32_sparc_link_hash_entry *) h;
+  if (eh->dyn_relocs == NULL)
+    return TRUE;
+
+  /* In the shared -Bsymbolic case, discard space allocated for
+     dynamic pc-relative relocs against symbols which turn out to be
+     defined in regular objects.  For the normal shared case, discard
+     space for pc-relative relocs that have become local due to symbol
+     visibility changes.  */
+
+  if (info->shared)
+    {
+      if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0
+	  && ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0
+	      || info->symbolic))
+	{
+	  struct elf32_sparc_dyn_relocs **pp;
+
+	  for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
+	    {
+	      p->count -= p->pc_count;
+	      p->pc_count = 0;
+	      if (p->count == 0)
+		*pp = p->next;
+	      else
+		pp = &p->next;
+	    }
+	}
+    }
+  else
+    {
+      /* For the non-shared case, discard space for relocs against
+	 symbols which turn out to need copy relocs or are not
+	 dynamic.  */
+
+      if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
+	  && (((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
+	       && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
+	      || (htab->elf.dynamic_sections_created
+		  && (h->root.type == bfd_link_hash_undefweak
+		      || h->root.type == bfd_link_hash_undefined))))
+	{
+	  /* Make sure this symbol is output as a dynamic symbol.
+	     Undefined weak syms won't yet be marked as dynamic.  */
+	  if (h->dynindx == -1
+	      && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
+	    {
+	      if (! bfd_elf32_link_record_dynamic_symbol (info, h))
+		return FALSE;
+	    }
+
+	  /* If that succeeded, we know we'll be keeping all the
+	     relocs.  */
+	  if (h->dynindx != -1)
+	    goto keep;
+	}
 
-  s = bfd_get_section_by_name (dynobj, ".dynbss");
-  BFD_ASSERT (s != NULL);
+      eh->dyn_relocs = NULL;
 
-  /* We must generate a R_SPARC_COPY reloc to tell the dynamic linker
-     to copy the initial value out of the dynamic object and into the
-     runtime process image.  We need to remember the offset into the
-     .rel.bss section we are going to use.  */
-  if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
-    {
-      asection *srel;
+    keep: ;
+    }
 
-      srel = bfd_get_section_by_name (dynobj, ".rela.bss");
-      BFD_ASSERT (srel != NULL);
-      srel->_raw_size += sizeof (Elf32_External_Rela);
-      h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_COPY;
+  /* Finally, allocate space.  */
+  for (p = eh->dyn_relocs; p != NULL; p = p->next)
+    {
+      asection *sreloc = elf_section_data (p->sec)->sreloc;
+      sreloc->_raw_size += p->count * sizeof (Elf32_External_Rela);
     }
 
-  /* We need to figure out the alignment required for this symbol.  I
-     have no idea how ELF linkers handle this.  */
-  power_of_two = bfd_log2 (h->size);
-  if (power_of_two > 3)
-    power_of_two = 3;
+  return TRUE;
+}
 
-  /* Apply the required alignment.  */
-  s->_raw_size = BFD_ALIGN (s->_raw_size,
-			    (bfd_size_type) (1 << power_of_two));
-  if (power_of_two > bfd_get_section_alignment (dynobj, s))
+/* Find any dynamic relocs that apply to read-only sections.  */
+
+static bfd_boolean
+readonly_dynrelocs (h, inf)
+     struct elf_link_hash_entry *h;
+     PTR inf;
+{
+  struct elf32_sparc_link_hash_entry *eh;
+  struct elf32_sparc_dyn_relocs *p;
+
+  if (h->root.type == bfd_link_hash_warning)
+    h = (struct elf_link_hash_entry *) h->root.u.i.link;
+
+  eh = (struct elf32_sparc_link_hash_entry *) h;
+  for (p = eh->dyn_relocs; p != NULL; p = p->next)
     {
-      if (! bfd_set_section_alignment (dynobj, s, power_of_two))
-	return FALSE;
-    }
+      asection *s = p->sec->output_section;
 
-  /* Define the symbol as being at this point in the section.  */
-  h->root.u.def.section = s;
-  h->root.u.def.value = s->_raw_size;
+      if (s != NULL && (s->flags & SEC_READONLY) != 0)
+	{
+	  struct bfd_link_info *info = (struct bfd_link_info *) inf;
 
-  /* Increment the section size to make room for the symbol.  */
-  s->_raw_size += h->size;
+	  info->flags |= DF_TEXTREL;
 
+	  /* Not an error, just cut short the traversal.  */
+	  return FALSE;
+	}
+    }
   return TRUE;
 }
 
@@ -923,11 +1823,13 @@ elf32_sparc_size_dynamic_sections (outpu
      bfd *output_bfd ATTRIBUTE_UNUSED;
      struct bfd_link_info *info;
 {
+  struct elf32_sparc_link_hash_table *htab;
   bfd *dynobj;
   asection *s;
-  bfd_boolean relplt;
+  bfd *ibfd;
 
-  dynobj = elf_hash_table (info)->dynobj;
+  htab = elf32_sparc_hash_table (info);
+  dynobj = htab->elf.dynobj;
   BFD_ASSERT (dynobj != NULL);
 
   if (elf_hash_table (info)->dynamic_sections_created)
@@ -940,33 +1842,113 @@ elf32_sparc_size_dynamic_sections (outpu
 	  s->_raw_size = sizeof ELF_DYNAMIC_INTERPRETER;
 	  s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
 	}
+    }
 
-      /* Make space for the trailing nop in .plt.  */
-      s = bfd_get_section_by_name (dynobj, ".plt");
-      BFD_ASSERT (s != NULL);
-      if (s->_raw_size > 0)
-	s->_raw_size += 4;
+  /* Set up .got offsets for local syms, and space for local dynamic
+     relocs.  */
+  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
+    {
+      bfd_signed_vma *local_got;
+      bfd_signed_vma *end_local_got;
+      char *local_tls_type;
+      bfd_size_type locsymcount;
+      Elf_Internal_Shdr *symtab_hdr;
+      asection *srel;
+
+      if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
+	continue;
+
+      for (s = ibfd->sections; s != NULL; s = s->next)
+	{
+	  struct elf32_sparc_dyn_relocs *p;
+
+	  for (p = *((struct elf32_sparc_dyn_relocs **)
+		     &elf_section_data (s)->local_dynrel);
+	       p != NULL;
+	       p = p->next)
+	    {
+	      if (!bfd_is_abs_section (p->sec)
+		  && bfd_is_abs_section (p->sec->output_section))
+		{
+		  /* Input section has been discarded, either because
+		     it is a copy of a linkonce section or due to
+		     linker script /DISCARD/, so we'll be discarding
+		     the relocs too.  */
+		}
+	      else if (p->count != 0)
+		{
+		  srel = elf_section_data (p->sec)->sreloc;
+		  srel->_raw_size += p->count * sizeof (Elf32_External_Rela);
+		  if ((p->sec->output_section->flags & SEC_READONLY) != 0)
+		    info->flags |= DF_TEXTREL;
+		}
+	    }
+	}
+
+      local_got = elf_local_got_refcounts (ibfd);
+      if (!local_got)
+	continue;
+
+      symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
+      locsymcount = symtab_hdr->sh_info;
+      end_local_got = local_got + locsymcount;
+      local_tls_type = elf32_sparc_local_got_tls_type (ibfd);
+      s = htab->sgot;
+      srel = htab->srelgot;
+      for (; local_got < end_local_got; ++local_got, ++local_tls_type)
+	{
+	  if (*local_got > 0)
+	    {
+	      *local_got = s->_raw_size;
+	      s->_raw_size += 4;
+	      if (*local_tls_type == GOT_TLS_GD)
+		s->_raw_size += 4;
+	      if (info->shared
+		  || *local_tls_type == GOT_TLS_GD
+		  || *local_tls_type == GOT_TLS_IE)
+		srel->_raw_size += sizeof (Elf32_External_Rela);
+	    }
+	  else
+	    *local_got = (bfd_vma) -1;
+	}
+    }
+
+  if (htab->tls_ldm_got.refcount > 0)
+    {
+      /* Allocate 2 got entries and 1 dynamic reloc for
+	 R_SPARC_TLS_LDM_{HI22,LO10} relocs.  */
+      htab->tls_ldm_got.offset = htab->sgot->_raw_size;
+      htab->sgot->_raw_size += 8;
+      htab->srelgot->_raw_size += sizeof (Elf32_External_Rela);
     }
   else
+    htab->tls_ldm_got.offset = -1;
+
+  /* Allocate global sym .plt and .got entries, and space for global
+     sym dynamic relocs.  */
+  elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, (PTR) info);
+
+  if (elf_hash_table (info)->dynamic_sections_created)
     {
-      /* We may have created entries in the .rela.got section.
-         However, if we are not creating the dynamic sections, we will
-         not actually use these entries.  Reset the size of .rela.got,
-         which will cause it to get stripped from the output file
-         below.  */
-      s = bfd_get_section_by_name (dynobj, ".rela.got");
-      if (s != NULL)
-	s->_raw_size = 0;
+      /* Make space for the trailing nop in .plt.  */
+      if (htab->splt->_raw_size > 0)
+	htab->splt->_raw_size += 4;
+
+      /* If the .got section is more than 0x1000 bytes, we add
+	 0x1000 to the value of _GLOBAL_OFFSET_TABLE_, so that 13
+	 bit relocations have a greater chance of working.  */
+      if (htab->sgot->_raw_size >= 0x1000
+	  && elf_hash_table (info)->hgot->root.u.def.value == 0)
+	elf_hash_table (info)->hgot->root.u.def.value = 0x1000;
     }
 
   /* The check_relocs and adjust_dynamic_symbol entry points have
      determined the sizes of the various dynamic sections.  Allocate
      memory for them.  */
-  relplt = FALSE;
   for (s = dynobj->sections; s != NULL; s = s->next)
     {
       const char *name;
-      bfd_boolean strip;
+      bfd_boolean strip = FALSE;
 
       if ((s->flags & SEC_LINKER_CREATED) == 0)
 	continue;
@@ -975,8 +1957,6 @@ elf32_sparc_size_dynamic_sections (outpu
 	 of the dynobj section names depend upon the input files.  */
       name = bfd_get_section_name (dynobj, s);
 
-      strip = FALSE;
-
       if (strncmp (name, ".rela", 5) == 0)
 	{
 	  if (s->_raw_size == 0)
@@ -994,16 +1974,12 @@ elf32_sparc_size_dynamic_sections (outpu
 	    }
 	  else
 	    {
-	      if (strcmp (name, ".rela.plt") == 0)
-		relplt = TRUE;
-
 	      /* We use the reloc_count field as a counter if we need
 		 to copy relocs into the output file.  */
 	      s->reloc_count = 0;
 	    }
 	}
-      else if (strcmp (name, ".plt") != 0
-	       && strcmp (name, ".got") != 0)
+      else if (s != htab->splt && s != htab->sgot)
 	{
 	  /* It's not one of our sections, so don't allocate space.  */
 	  continue;
@@ -1042,7 +2018,7 @@ elf32_sparc_size_dynamic_sections (outpu
 	    return FALSE;
 	}
 
-      if (relplt)
+      if (htab->srelplt->_raw_size != 0)
 	{
 	  if (!add_dynamic_entry (DT_PLTGOT, 0)
 	      || !add_dynamic_entry (DT_PLTRELSZ, 0)
@@ -1056,6 +2032,12 @@ elf32_sparc_size_dynamic_sections (outpu
 	  || !add_dynamic_entry (DT_RELAENT, sizeof (Elf32_External_Rela)))
 	return FALSE;
 
+      /* If any dynamic relocs apply to a read-only section,
+	 then we need a DT_TEXTREL entry.  */
+      if ((info->flags & DF_TEXTREL) == 0)
+	elf_link_hash_traverse (&htab->elf, readonly_dynrelocs,
+				(PTR) info);
+
       if (info->flags & DF_TEXTREL)
 	{
 	  if (!add_dynamic_entry (DT_TEXTREL, 0))
@@ -1082,16 +2064,37 @@ elf32_sparc_relax_section (abfd, section
   return TRUE;
 }
 
-/* This is the condition under which finish_dynamic_symbol will be called
-   from elflink.h.  If elflink.h doesn't call our finish_dynamic_symbol
-   routine, we'll need to do something about initializing any .plt and .got
-   entries in relocate_section.  */
-#define WILL_CALL_FINISH_DYNAMIC_SYMBOL(DYN, INFO, H)			\
-  ((DYN)								\
-   && ((INFO)->shared							\
-       || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)	\
-   && ((H)->dynindx != -1						\
-       || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0))
+/* Return the base VMA address which should be subtracted from real addresses
+   when resolving @dtpoff relocation.
+   This is PT_TLS segment p_vaddr.  */
+
+static bfd_vma
+dtpoff_base (info)
+     struct bfd_link_info *info;
+{
+  /* If tls_segment is NULL, we should have signalled an error already.  */
+  if (elf_hash_table (info)->tls_segment == NULL)
+    return 0;
+  return elf_hash_table (info)->tls_segment->start;
+}
+
+/* Return the relocation value for @tpoff relocation
+   if STT_TLS virtual address is ADDRESS.  */
+
+static bfd_vma
+tpoff (info, address)
+     struct bfd_link_info *info;
+     bfd_vma address;
+{
+  struct elf_link_tls_segment *tls_segment
+    = elf_hash_table (info)->tls_segment;
+
+  /* If tls_segment is NULL, we should have signalled an error already.  */
+  if (tls_segment == NULL)
+    return 0;
+  return -(align_power (tls_segment->size, tls_segment->align)
+	   + tls_segment->start - address);
+}
 
 /* Relocate a SPARC ELF section.  */
 
@@ -1107,13 +2110,11 @@ elf32_sparc_relocate_section (output_bfd
      Elf_Internal_Sym *local_syms;
      asection **local_sections;
 {
-  bfd *dynobj;
+  struct elf32_sparc_link_hash_table *htab;
   Elf_Internal_Shdr *symtab_hdr;
   struct elf_link_hash_entry **sym_hashes;
   bfd_vma *local_got_offsets;
   bfd_vma got_base;
-  asection *sgot;
-  asection *splt;
   asection *sreloc;
   Elf_Internal_Rela *rel;
   Elf_Internal_Rela *relend;
@@ -1121,7 +2122,7 @@ elf32_sparc_relocate_section (output_bfd
   if (info->relocateable)
     return TRUE;
 
-  dynobj = elf_hash_table (info)->dynobj;
+  htab = elf32_sparc_hash_table (info);
   symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
   sym_hashes = elf_sym_hashes (input_bfd);
   local_got_offsets = elf_local_got_offsets (input_bfd);
@@ -1131,15 +2132,13 @@ elf32_sparc_relocate_section (output_bfd
   else
     got_base = elf_hash_table (info)->hgot->root.u.def.value;
 
-  sgot = NULL;
-  splt = NULL;
-  sreloc = NULL;
+  sreloc = elf_section_data (input_section)->sreloc;
 
   rel = relocs;
   relend = relocs + input_section->reloc_count;
   for (; rel < relend; rel++)
     {
-      int r_type;
+      int r_type, tls_type;
       reloc_howto_type *howto;
       unsigned long r_symndx;
       struct elf_link_hash_entry *h;
@@ -1223,11 +2222,8 @@ elf32_sparc_relocate_section (output_bfd
 	case R_SPARC_GOT22:
 	  /* Relocation is to the entry for this symbol in the global
              offset table.  */
-	  if (sgot == NULL)
-	    {
-	      sgot = bfd_get_section_by_name (dynobj, ".got");
-	      BFD_ASSERT (sgot != NULL);
-	    }
+	  if (htab->sgot == NULL)
+	    abort ();
 
 	  if (h != NULL)
 	    {
@@ -1261,7 +2257,7 @@ elf32_sparc_relocate_section (output_bfd
 		  else
 		    {
 		      bfd_put_32 (output_bfd, relocation,
-				  sgot->contents + off);
+				  htab->sgot->contents + off);
 		      h->got.offset |= 1;
 		    }
 		}
@@ -1291,11 +2287,11 @@ elf32_sparc_relocate_section (output_bfd
 
 		      /* We need to generate a R_SPARC_RELATIVE reloc
 			 for the dynamic linker.  */
-		      s = bfd_get_section_by_name (dynobj, ".rela.got");
+		      s = htab->srelgot;
 		      BFD_ASSERT (s != NULL);
 
-		      outrel.r_offset = (sgot->output_section->vma
-					 + sgot->output_offset
+		      outrel.r_offset = (htab->sgot->output_section->vma
+					 + htab->sgot->output_offset
 					 + off);
 		      outrel.r_info = ELF32_R_INFO (0, R_SPARC_RELATIVE);
 		      outrel.r_addend = relocation;
@@ -1305,11 +2301,12 @@ elf32_sparc_relocate_section (output_bfd
 		      bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
 		    }
 
-		  bfd_put_32 (output_bfd, relocation, sgot->contents + off);
+		  bfd_put_32 (output_bfd, relocation,
+			      htab->sgot->contents + off);
 		  local_got_offsets[r_symndx] |= 1;
 		}
 	    }
-	  relocation = sgot->output_offset + off - got_base;
+	  relocation = htab->sgot->output_offset + off - got_base;
 	  break;
 
 	case R_SPARC_PLT32:
@@ -1320,6 +2317,7 @@ elf32_sparc_relocate_section (output_bfd
 	    }
 	  /* Fall through.  */
 	case R_SPARC_WPLT30:
+	r_sparc_wplt30:
 	  /* Relocation is to the entry for this symbol in the
              procedure linkage table.  */
 
@@ -1338,14 +2336,11 @@ elf32_sparc_relocate_section (output_bfd
 	      break;
 	    }
 
-	  if (splt == NULL)
-	    {
-	      splt = bfd_get_section_by_name (dynobj, ".plt");
-	      BFD_ASSERT (splt != NULL);
-	    }
+	  if (htab->splt == NULL)
+	    abort ();
 
-	  relocation = (splt->output_section->vma
-			+ splt->output_offset
+	  relocation = (htab->splt->output_section->vma
+			+ htab->splt->output_offset
 			+ h->plt.offset);
 	  unresolved_reloc = FALSE;
 	  if (r_type == R_SPARC_PLT32)
@@ -1369,12 +2364,6 @@ elf32_sparc_relocate_section (output_bfd
 	case R_SPARC_WDISP22:
 	case R_SPARC_WDISP19:
 	case R_SPARC_WDISP16:
-	  if (h == NULL
-	      || (info->symbolic
-		  && (h->elf_link_hash_flags
-		      & ELF_LINK_HASH_DEF_REGULAR) != 0))
-	    break;
-	  /* Fall through.  */
 	case R_SPARC_8:
 	case R_SPARC_16:
 	case R_SPARC_32:
@@ -1385,9 +2374,30 @@ elf32_sparc_relocate_section (output_bfd
 	case R_SPARC_UA16:
 	case R_SPARC_UA32:
 	r_sparc_plt32:
-	  if (info->shared
-	      && r_symndx != 0
-	      && (input_section->flags & SEC_ALLOC))
+	  /* r_symndx will be zero only for relocs against symbols
+	     from removed linkonce sections, or sections discarded by
+	     a linker script.  */
+	  if (r_symndx == 0
+	      || (input_section->flags & SEC_ALLOC) == 0)
+	    break;
+
+	  if ((info->shared
+	       && (! howto->pc_relative
+		   || (h != NULL
+		       && h->dynindx != -1
+		       && (! info->symbolic
+			   || (h->elf_link_hash_flags
+			       & ELF_LINK_HASH_DEF_REGULAR) == 0))))
+	      || (!info->shared
+		  && h != NULL
+		  && h->dynindx != -1
+		  && (h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
+		  && (((h->elf_link_hash_flags
+			& ELF_LINK_HASH_DEF_DYNAMIC) != 0
+		       && (h->elf_link_hash_flags
+			   & ELF_LINK_HASH_DEF_REGULAR) == 0)
+		      || h->root.type == bfd_link_hash_undefweak
+		      || h->root.type == bfd_link_hash_undefined)))
 	    {
 	      Elf_Internal_Rela outrel;
 	      bfd_byte *loc;
@@ -1397,25 +2407,7 @@ elf32_sparc_relocate_section (output_bfd
                  are copied into the output file to be resolved at run
                  time.  */
 
-	      if (sreloc == NULL)
-		{
-		  const char *name;
-
-		  name = (bfd_elf_string_from_elf_section
-			  (input_bfd,
-			   elf_elfheader (input_bfd)->e_shstrndx,
-			   elf_section_data (input_section)->rel_hdr.sh_name));
-		  if (name == NULL)
-		    return FALSE;
-
-		  BFD_ASSERT (strncmp (name, ".rela", 5) == 0
-			      && strcmp (bfd_get_section_name (input_bfd,
-							       input_section),
-					 name + 5) == 0);
-
-		  sreloc = bfd_get_section_by_name (dynobj, name);
-		  BFD_ASSERT (sreloc != NULL);
-		}
+	      BFD_ASSERT (sreloc != NULL);
 
 	      skip = FALSE;
 
@@ -1487,7 +2479,7 @@ elf32_sparc_relocate_section (output_bfd
 		      long indx;
 
 		      if (is_plt)
-			sec = splt;
+			sec = htab->splt;
 		      else if (h == NULL)
 			sec = local_sections[r_symndx];
 		      else
@@ -1540,6 +2532,330 @@ elf32_sparc_relocate_section (output_bfd
 	    }
 	  break;
 
+	case R_SPARC_TLS_GD_HI22:
+	  if (! elf32_sparc_tdata (input_bfd)->has_tlsgd)
+	    {
+	      /* R_SPARC_REV32 used the same reloc number as
+		 R_SPARC_TLS_GD_HI22.  */
+	      r_type = R_SPARC_REV32;
+	      break;
+	    }
+	  /* Fall through */
+
+	case R_SPARC_TLS_GD_LO10:
+	case R_SPARC_TLS_IE_HI22:
+	case R_SPARC_TLS_IE_LO10:
+	  r_type = elf32_sparc_tls_transition (info, input_bfd, r_type,
+					       h == NULL);
+	  tls_type = GOT_UNKNOWN;
+	  if (h == NULL && local_got_offsets)
+	    tls_type = elf32_sparc_local_got_tls_type (input_bfd) [r_symndx];
+	  else if (h != NULL)
+	    {
+	      tls_type = elf32_sparc_hash_entry(h)->tls_type;
+	      if (!info->shared && h->dynindx == -1 && tls_type == GOT_TLS_IE)
+		switch (ELF32_R_TYPE (rel->r_info))
+		  {
+		  case R_SPARC_TLS_GD_HI22:
+		  case R_SPARC_TLS_IE_HI22:
+		    r_type = R_SPARC_TLS_LE_HIX22;
+		    break;
+		  default:
+		    r_type = R_SPARC_TLS_LE_LOX10;
+		    break;
+		  }
+	    }
+	  if (tls_type == GOT_TLS_IE)
+	    switch (r_type)
+	      {
+	      case R_SPARC_TLS_GD_HI22:
+		r_type = R_SPARC_TLS_IE_HI22;
+		break;
+	      case R_SPARC_TLS_GD_LO10:
+		r_type = R_SPARC_TLS_IE_LO10;
+		break;
+	      }
+
+	  if (r_type == R_SPARC_TLS_LE_HIX22)
+	    {
+	      relocation = tpoff (info, relocation);
+	      break;
+	    }
+	  if (r_type == R_SPARC_TLS_LE_LOX10)
+	    {
+	      /* Change add into xor.  */
+	      relocation = tpoff (info, relocation);
+	      bfd_put_32 (output_bfd, (bfd_get_32 (input_bfd,
+						   contents + rel->r_offset)
+				       | 0x80182000), contents + rel->r_offset);
+	      break;
+	    }
+
+          if (h != NULL)
+	    {
+	      off = h->got.offset;
+	      h->got.offset |= 1;
+	    }
+	  else
+	    {
+	      BFD_ASSERT (local_got_offsets != NULL);
+	      off = local_got_offsets[r_symndx];
+	      local_got_offsets[r_symndx] |= 1;
+	    }
+	    
+	r_sparc_tlsldm:
+	  if (htab->sgot == NULL)
+	    abort ();
+
+	  if ((off & 1) != 0)
+	    off &= ~1;
+          else
+	    {
+	      Elf_Internal_Rela outrel;
+	      Elf32_External_Rela *loc;
+	      int dr_type, indx;
+
+	      if (htab->srelgot == NULL)
+		abort ();
+
+	      bfd_put_32 (output_bfd, 0, htab->sgot->contents + off);
+	      outrel.r_offset = (htab->sgot->output_section->vma
+				 + htab->sgot->output_offset + off);
+	      indx = h && h->dynindx != -1 ? h->dynindx : 0;
+	      if (r_type == R_SPARC_TLS_IE_HI22
+		|| r_type == R_SPARC_TLS_IE_LO10)
+		dr_type = R_SPARC_TLS_TPOFF32;
+	      else
+		dr_type = R_SPARC_TLS_DTPMOD32;
+	      if (dr_type == R_SPARC_TLS_TPOFF32 && indx == 0)
+		outrel.r_addend = relocation - dtpoff_base (info);
+	      else
+		outrel.r_addend = 0;
+	      outrel.r_info = ELF32_R_INFO (indx, dr_type);
+	      loc = (Elf32_External_Rela *) htab->srelgot->contents;
+	      loc += htab->srelgot->reloc_count++;
+	      bfd_elf32_swap_reloca_out (output_bfd, &outrel,
+					 (bfd_byte *) loc);
+
+	      if (r_type == R_SPARC_TLS_GD_HI22
+		  || r_type == R_SPARC_TLS_GD_LO10)
+		{
+		  if (indx == 0)
+		    {
+	    	      BFD_ASSERT (! unresolved_reloc);
+		      bfd_put_32 (output_bfd,
+				  relocation - dtpoff_base (info),
+				  htab->sgot->contents + off + 4);
+		    }
+		  else
+		    {
+		      bfd_put_32 (output_bfd, 0,
+				  htab->sgot->contents + off + 4);
+		      outrel.r_info = ELF32_R_INFO (indx,
+						    R_SPARC_TLS_DTPOFF32);
+		      outrel.r_offset += 4;
+		      htab->srelgot->reloc_count++;
+		      loc++;
+		      bfd_elf32_swap_reloca_out (output_bfd, &outrel,
+						 (bfd_byte *) loc);
+		    }
+		}
+	      else if (dr_type == R_SPARC_TLS_DTPMOD32)
+		{
+		  bfd_put_32 (output_bfd, 0,
+			      htab->sgot->contents + off + 4);
+		}
+	    }
+
+	  if (off >= (bfd_vma) -2)
+	    abort ();
+
+	  relocation = htab->sgot->output_offset + off - got_base;
+	  unresolved_reloc = FALSE;
+	  howto = _bfd_sparc_elf_howto_table + r_type;
+	  break;
+
+	case R_SPARC_TLS_LDM_HI22:
+	case R_SPARC_TLS_LDM_LO10:
+	  if (! info->shared)
+	    {
+	      bfd_put_32 (output_bfd, SPARC_NOP, contents + rel->r_offset);
+	      continue;
+	    }
+	  off = htab->tls_ldm_got.offset;
+	  htab->tls_ldm_got.offset |= 1;
+	  goto r_sparc_tlsldm;
+
+	case R_SPARC_TLS_LDO_HIX22:
+	case R_SPARC_TLS_LDO_LOX10:
+	  if (info->shared)
+	    relocation -= dtpoff_base (info);
+	  else
+	    relocation = tpoff (info, relocation);
+	  break;
+
+	case R_SPARC_TLS_LE_HIX22:
+	case R_SPARC_TLS_LE_LOX10:
+	  if (info->shared)
+	    {
+	      Elf_Internal_Rela outrel;
+	      bfd_boolean skip, relocate = FALSE;
+
+	      BFD_ASSERT (sreloc != NULL);
+	      skip = FALSE;
+	      outrel.r_offset =
+		_bfd_elf_section_offset (output_bfd, info, input_section,
+					 rel->r_offset);
+	      if (outrel.r_offset == (bfd_vma) -1)
+		skip = TRUE;
+	      else if (outrel.r_offset == (bfd_vma) -2)
+		skip = TRUE, relocate = TRUE;
+	      outrel.r_offset += (input_section->output_section->vma
+				  + input_section->output_offset);
+	      if (skip)
+		memset (&outrel, 0, sizeof outrel);
+	      else
+		{
+		  outrel.r_info = ELF32_R_INFO (0, r_type);
+		  outrel.r_addend = relocation - dtpoff_base (info)
+				    + rel->r_addend;
+		}
+
+	      bfd_elf32_swap_reloca_out (output_bfd, &outrel,
+					 (bfd_byte *) (((Elf32_External_Rela *)
+							sreloc->contents)
+						       + sreloc->reloc_count));
+	      ++sreloc->reloc_count;
+	      continue;
+	    }
+	  relocation = tpoff (info, relocation);
+	  break;
+
+	case R_SPARC_TLS_LDM_CALL:
+	  if (! info->shared)
+	    {
+	      /* mov %g0, %o0 */
+	      bfd_put_32 (output_bfd, 0x90100000, contents + rel->r_offset);
+	      continue;
+	    }
+	  /* Fall through */
+
+	case R_SPARC_TLS_GD_CALL:
+	  tls_type = GOT_UNKNOWN;
+	  if (h == NULL && local_got_offsets)
+	    tls_type = elf32_sparc_local_got_tls_type (input_bfd) [r_symndx];
+	  else if (h != NULL)
+	    tls_type = elf32_sparc_hash_entry(h)->tls_type;
+	  if (! info->shared
+	      || (r_type == R_SPARC_TLS_GD_CALL && tls_type == GOT_TLS_IE))
+	    {
+	      bfd_vma insn;
+
+	      if (!info->shared && (h == NULL || h->dynindx == -1))
+		{
+		  /* GD -> LE */
+		  bfd_put_32 (output_bfd, SPARC_NOP, contents + rel->r_offset);
+		  continue;
+		}
+
+	      /* GD -> IE */
+	      if (rel + 1 < relend
+		  && ELF32_R_TYPE (rel[1].r_info) == R_SPARC_TLS_GD_ADD
+		  && rel[1].r_offset == rel->r_offset + 4
+		  && ELF32_R_SYM (rel[1].r_info) == r_symndx
+		  && (((insn = bfd_get_32 (input_bfd,
+					   contents + rel[1].r_offset))
+		       >> 25) & 0x1f) == 8)
+		{
+		  /* We have
+		     call __tls_get_addr, %tgd_call(foo)
+		      add %reg1, %reg2, %o0, %tgd_add(foo)
+		     and change it into IE:
+		     ld [%reg1 + %reg2], %o0, %tie_ld(foo)
+		     add %g7, %o0, %o0, %tie_add(foo).
+		     add is 0x80000000 | (rd << 25) | (rs1 << 14) | rs2,
+		     ld is 0xc0000000 | (rd << 25) | (rs1 << 14) | rs2.  */
+		  bfd_put_32 (output_bfd, insn | 0xc0000000,
+			      contents + rel->r_offset);
+		  bfd_put_32 (output_bfd, 0x9001c008,
+			      contents + rel->r_offset + 4);
+		  rel++;
+		  continue;
+		}
+
+	      bfd_put_32 (output_bfd, 0x9001c008, contents + rel->r_offset);
+	      continue;
+	    }
+
+	  h = (struct elf_link_hash_entry *)
+	      bfd_link_hash_lookup (info->hash, "__tls_get_addr", FALSE,
+				    FALSE, TRUE);
+	  BFD_ASSERT (h != NULL);
+	  r_type = R_SPARC_WPLT30;
+	  howto = _bfd_sparc_elf_howto_table + r_type;
+	  goto r_sparc_wplt30;
+
+	case R_SPARC_TLS_GD_ADD:
+	  tls_type = GOT_UNKNOWN;
+	  if (h == NULL && local_got_offsets)
+	    tls_type = elf32_sparc_local_got_tls_type (input_bfd) [r_symndx];
+	  else if (h != NULL)
+	    tls_type = elf32_sparc_hash_entry(h)->tls_type;
+	  if (! info->shared || tls_type == GOT_TLS_IE)
+	    {
+	      /* add %reg1, %reg2, %reg3, %tgd_add(foo)
+		 changed into IE:
+		 ld [%reg1 + %reg2], %reg3, %tie_ld(foo)
+		 or LE:
+		 add %g7, %reg2, %reg3.  */
+	      bfd_vma insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
+	      if ((h != NULL && h->dynindx != -1) || info->shared)
+		relocation = insn | 0xc0000000;
+	      else
+		relocation = (insn & ~0x7c000) | 0x1c000;
+	      bfd_put_32 (output_bfd, relocation, contents + rel->r_offset);
+	    }
+	  continue;
+
+	case R_SPARC_TLS_LDM_ADD:
+	  if (! info->shared)
+	    bfd_put_32 (output_bfd, SPARC_NOP, contents + rel->r_offset);
+	  continue;
+
+	case R_SPARC_TLS_LDO_ADD:
+	  if (! info->shared)
+	    {
+	      /* Change rs1 into %g7.  */
+	      bfd_vma insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
+	      insn = (insn & ~0x7c000) | 0x1c000;
+	      bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
+	    }
+	  continue;
+
+	case R_SPARC_TLS_IE_LD:
+	case R_SPARC_TLS_IE_LDX:
+	  if (! info->shared && (h == NULL || h->dynindx == -1))
+	    {
+	      bfd_vma insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
+	      int rs2 = insn & 0x1f;
+	      int rd = (insn >> 25) & 0x1f;
+
+	      if (rs2 == rd)
+		relocation = SPARC_NOP;
+	      else
+		relocation = 0x80100000 | (insn & 0x3e00001f);
+	      bfd_put_32 (output_bfd, relocation, contents + rel->r_offset);
+	    }
+	  continue;
+
+	case R_SPARC_TLS_IE_ADD:
+	  /* Totally useless relocation.  */
+	  continue;
+
+	case R_SPARC_TLS_DTPOFF32:
+	  relocation -= dtpoff_base (info);
+	  break;
+
 	default:
 	  break;
 	}
@@ -1589,6 +2905,33 @@ elf32_sparc_relocate_section (output_bfd
 	  bfd_putl32 (/*input_bfd,*/ x, contents + rel->r_offset);
 	  r = bfd_reloc_ok;
 	}
+      else if (r_type == R_SPARC_TLS_LDO_HIX22
+	       || r_type == R_SPARC_TLS_LE_HIX22)
+	{
+	  bfd_vma x;
+
+	  relocation += rel->r_addend;
+	  relocation = relocation ^ 0xffffffff;
+
+	  x = bfd_get_32 (input_bfd, contents + rel->r_offset);
+	  x = (x & ~(bfd_vma) 0x3fffff) | ((relocation >> 10) & 0x3fffff);
+	  bfd_put_32 (input_bfd, x, contents + rel->r_offset);
+	  r = bfd_reloc_ok;
+	}
+      else if (r_type == R_SPARC_TLS_LDO_LOX10
+	       || r_type == R_SPARC_TLS_LE_LOX10)
+	{
+	  bfd_vma x;
+
+	  relocation += rel->r_addend;
+	  relocation = (relocation & 0x3ff) | 0x1c00;
+
+	  x = bfd_get_32 (input_bfd, contents + rel->r_offset);
+	  x = (x & ~(bfd_vma) 0x1fff) | relocation;
+	  bfd_put_32 (input_bfd, x, contents + rel->r_offset);
+
+	  r = bfd_reloc_ok;
+	}
       else if ((r_type == R_SPARC_WDISP30 || r_type == R_SPARC_WPLT30)
 	       && SEC_DO_RELAX (input_section)
 	       && rel->r_offset + 4 < input_section->_raw_size)
@@ -1731,8 +3074,10 @@ elf32_sparc_finish_dynamic_symbol (outpu
      Elf_Internal_Sym *sym;
 {
   bfd *dynobj;
-
-  dynobj = elf_hash_table (info)->dynobj;
+  struct elf32_sparc_link_hash_table *htab;
+        
+  htab = elf32_sparc_hash_table (info);
+  dynobj = htab->elf.dynobj;
 
   if (h->plt.offset != (bfd_vma) -1)
     {
@@ -1746,8 +3091,8 @@ elf32_sparc_finish_dynamic_symbol (outpu
 
       BFD_ASSERT (h->dynindx != -1);
 
-      splt = bfd_get_section_by_name (dynobj, ".plt");
-      srela = bfd_get_section_by_name (dynobj, ".rela.plt");
+      splt = htab->splt;
+      srela = htab->srelplt;
       BFD_ASSERT (splt != NULL && srela != NULL);
 
       /* Fill in the entry in the procedure linkage table.  */
@@ -1786,7 +3131,9 @@ elf32_sparc_finish_dynamic_symbol (outpu
 	}
     }
 
-  if (h->got.offset != (bfd_vma) -1)
+  if (h->got.offset != (bfd_vma) -1
+      && elf32_sparc_hash_entry(h)->tls_type != GOT_TLS_GD
+      && elf32_sparc_hash_entry(h)->tls_type != GOT_TLS_IE)
     {
       asection *sgot;
       asection *srela;
@@ -1796,8 +3143,8 @@ elf32_sparc_finish_dynamic_symbol (outpu
       /* This symbol has an entry in the global offset table.  Set it
          up.  */
 
-      sgot = bfd_get_section_by_name (dynobj, ".got");
-      srela = bfd_get_section_by_name (dynobj, ".rela.got");
+      sgot = htab->sgot;
+      srela = htab->srelgot;
       BFD_ASSERT (sgot != NULL && srela != NULL);
 
       rela.r_offset = (sgot->output_section->vma
@@ -1873,9 +3220,10 @@ elf32_sparc_finish_dynamic_sections (out
 {
   bfd *dynobj;
   asection *sdyn;
-  asection *sgot;
-
-  dynobj = elf_hash_table (info)->dynobj;
+  struct elf32_sparc_link_hash_table *htab;
+  
+  htab = elf32_sparc_hash_table (info);
+  dynobj = htab->elf.dynobj;
 
   sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
 
@@ -1943,19 +3291,18 @@ elf32_sparc_finish_dynamic_sections (out
 
   /* Set the first entry in the global offset table to the address of
      the dynamic section.  */
-  sgot = bfd_get_section_by_name (dynobj, ".got");
-  BFD_ASSERT (sgot != NULL);
-  if (sgot->_raw_size > 0)
+  if (htab->sgot && htab->sgot->_raw_size > 0)
     {
       if (sdyn == NULL)
-	bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
+	bfd_put_32 (output_bfd, (bfd_vma) 0, htab->sgot->contents);
       else
 	bfd_put_32 (output_bfd,
 		    sdyn->output_section->vma + sdyn->output_offset,
-		    sgot->contents);
+		    htab->sgot->contents);
     }
 
-  elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
+  if (htab->sgot)
+    elf_section_data (htab->sgot->output_section)->this_hdr.sh_entsize = 4;
 
   return TRUE;
 }
@@ -2024,6 +3371,15 @@ static bfd_boolean
 elf32_sparc_object_p (abfd)
      bfd *abfd;
 {
+  /* Allocate our special target data.  */
+  struct elf32_sparc_obj_tdata *new_tdata;
+  bfd_size_type amt = sizeof (struct elf32_sparc_obj_tdata);
+  new_tdata = bfd_zalloc (abfd, amt);
+  if (new_tdata == NULL)
+    return FALSE;
+  new_tdata->root = *abfd->tdata.elf_obj_data;
+  abfd->tdata.any = new_tdata;
+
   if (elf_elfheader (abfd)->e_machine == EM_SPARC32PLUS)
     {
       if (elf_elfheader (abfd)->e_flags & EF_SPARC_SUN_US3)
@@ -2108,10 +3464,14 @@ elf32_sparc_reloc_type_class (rela)
 #define ELF_MAXPAGESIZE 0x10000
 
 #define bfd_elf32_bfd_reloc_type_lookup	elf32_sparc_reloc_type_lookup
+#define bfd_elf32_bfd_link_hash_table_create \
+					elf32_sparc_link_hash_table_create
 #define bfd_elf32_bfd_relax_section	elf32_sparc_relax_section
 #define elf_info_to_howto		elf32_sparc_info_to_howto
+#define elf_backend_copy_indirect_symbol \
+					elf32_sparc_copy_indirect_symbol
 #define elf_backend_create_dynamic_sections \
-					_bfd_elf_create_dynamic_sections
+					elf32_sparc_create_dynamic_sections
 #define elf_backend_check_relocs	elf32_sparc_check_relocs
 #define elf_backend_adjust_dynamic_symbol \
 					elf32_sparc_adjust_dynamic_symbol
@@ -2124,6 +3484,7 @@ elf32_sparc_reloc_type_class (rela)
 					elf32_sparc_finish_dynamic_sections
 #define bfd_elf32_bfd_merge_private_bfd_data \
 					elf32_sparc_merge_private_bfd_data
+#define bfd_elf32_mkobject		elf32_sparc_mkobject
 #define elf_backend_object_p		elf32_sparc_object_p
 #define elf_backend_final_write_processing \
 					elf32_sparc_final_write_processing
@@ -2132,6 +3493,7 @@ elf32_sparc_reloc_type_class (rela)
 #define elf_backend_reloc_type_class	elf32_sparc_reloc_type_class
 
 #define elf_backend_can_gc_sections 1
+#define elf_backend_can_refcount 1
 #define elf_backend_want_got_plt 0
 #define elf_backend_plt_readonly 0
 #define elf_backend_want_plt_sym 1
--- bfd/reloc.c.jj	Wed Jan  8 09:56:15 2003
+++ bfd/reloc.c	Mon Jan 20 09:47:46 2003
@@ -1872,6 +1872,56 @@ ENUM
   BFD_RELOC_SPARC_REV32
 ENUMDOC
   SPARC little endian relocation
+ENUM
+  BFD_RELOC_SPARC_TLS_GD_HI22
+ENUMX
+  BFD_RELOC_SPARC_TLS_GD_LO10
+ENUMX
+  BFD_RELOC_SPARC_TLS_GD_ADD
+ENUMX
+  BFD_RELOC_SPARC_TLS_GD_CALL
+ENUMX
+  BFD_RELOC_SPARC_TLS_LDM_HI22
+ENUMX
+  BFD_RELOC_SPARC_TLS_LDM_LO10
+ENUMX
+  BFD_RELOC_SPARC_TLS_LDM_ADD
+ENUMX
+  BFD_RELOC_SPARC_TLS_LDM_CALL
+ENUMX
+  BFD_RELOC_SPARC_TLS_LDO_HIX22
+ENUMX
+  BFD_RELOC_SPARC_TLS_LDO_LOX10
+ENUMX
+  BFD_RELOC_SPARC_TLS_LDO_ADD
+ENUMX
+  BFD_RELOC_SPARC_TLS_IE_HI22
+ENUMX
+  BFD_RELOC_SPARC_TLS_IE_LO10
+ENUMX
+  BFD_RELOC_SPARC_TLS_IE_LD
+ENUMX
+  BFD_RELOC_SPARC_TLS_IE_LDX
+ENUMX
+  BFD_RELOC_SPARC_TLS_IE_ADD
+ENUMX
+  BFD_RELOC_SPARC_TLS_LE_HIX22
+ENUMX
+  BFD_RELOC_SPARC_TLS_LE_LOX10
+ENUMX
+  BFD_RELOC_SPARC_TLS_DTPMOD32
+ENUMX
+  BFD_RELOC_SPARC_TLS_DTPMOD64
+ENUMX
+  BFD_RELOC_SPARC_TLS_DTPOFF32
+ENUMX
+  BFD_RELOC_SPARC_TLS_DTPOFF64
+ENUMX
+  BFD_RELOC_SPARC_TLS_TPOFF32
+ENUMX
+  BFD_RELOC_SPARC_TLS_TPOFF64
+ENUMDOC
+  SPARC TLS relocations
 
 ENUM
   BFD_RELOC_ALPHA_GPDISP_HI16
--- bfd/bfd-in2.h.jj	Wed Jan  8 09:56:11 2003
+++ bfd/bfd-in2.h	Mon Jan 20 09:47:46 2003
@@ -2162,6 +2162,32 @@ relocation types already defined.  */
 /* SPARC little endian relocation  */
   BFD_RELOC_SPARC_REV32,
 
+/* SPARC TLS relocations  */
+  BFD_RELOC_SPARC_TLS_GD_HI22,
+  BFD_RELOC_SPARC_TLS_GD_LO10,
+  BFD_RELOC_SPARC_TLS_GD_ADD,
+  BFD_RELOC_SPARC_TLS_GD_CALL,
+  BFD_RELOC_SPARC_TLS_LDM_HI22,
+  BFD_RELOC_SPARC_TLS_LDM_LO10,
+  BFD_RELOC_SPARC_TLS_LDM_ADD,
+  BFD_RELOC_SPARC_TLS_LDM_CALL,
+  BFD_RELOC_SPARC_TLS_LDO_HIX22,
+  BFD_RELOC_SPARC_TLS_LDO_LOX10,
+  BFD_RELOC_SPARC_TLS_LDO_ADD,
+  BFD_RELOC_SPARC_TLS_IE_HI22,
+  BFD_RELOC_SPARC_TLS_IE_LO10,
+  BFD_RELOC_SPARC_TLS_IE_LD,
+  BFD_RELOC_SPARC_TLS_IE_LDX,
+  BFD_RELOC_SPARC_TLS_IE_ADD,
+  BFD_RELOC_SPARC_TLS_LE_HIX22,
+  BFD_RELOC_SPARC_TLS_LE_LOX10,
+  BFD_RELOC_SPARC_TLS_DTPMOD32,
+  BFD_RELOC_SPARC_TLS_DTPMOD64,
+  BFD_RELOC_SPARC_TLS_DTPOFF32,
+  BFD_RELOC_SPARC_TLS_DTPOFF64,
+  BFD_RELOC_SPARC_TLS_TPOFF32,
+  BFD_RELOC_SPARC_TLS_TPOFF64,
+
 /* Alpha ECOFF and ELF relocations.  Some of these treat the symbol or
 "addend" in some special way.
 For GPDISP_HI16 ("gpdisp") relocations, the symbol is ignored when
--- bfd/libbfd.h.jj	Wed Jan  8 09:56:15 2003
+++ bfd/libbfd.h	Mon Jan 20 09:47:46 2003
@@ -793,6 +793,30 @@ static const char *const bfd_reloc_code_
   "BFD_RELOC_SPARC_L44",
   "BFD_RELOC_SPARC_REGISTER",
   "BFD_RELOC_SPARC_REV32",
+  "BFD_RELOC_SPARC_TLS_GD_HI22",
+  "BFD_RELOC_SPARC_TLS_GD_LO10",
+  "BFD_RELOC_SPARC_TLS_GD_ADD",
+  "BFD_RELOC_SPARC_TLS_GD_CALL",
+  "BFD_RELOC_SPARC_TLS_LDM_HI22",
+  "BFD_RELOC_SPARC_TLS_LDM_LO10",
+  "BFD_RELOC_SPARC_TLS_LDM_ADD",
+  "BFD_RELOC_SPARC_TLS_LDM_CALL",
+  "BFD_RELOC_SPARC_TLS_LDO_HIX22",
+  "BFD_RELOC_SPARC_TLS_LDO_LOX10",
+  "BFD_RELOC_SPARC_TLS_LDO_ADD",
+  "BFD_RELOC_SPARC_TLS_IE_HI22",
+  "BFD_RELOC_SPARC_TLS_IE_LO10",
+  "BFD_RELOC_SPARC_TLS_IE_LD",
+  "BFD_RELOC_SPARC_TLS_IE_LDX",
+  "BFD_RELOC_SPARC_TLS_IE_ADD",
+  "BFD_RELOC_SPARC_TLS_LE_HIX22",
+  "BFD_RELOC_SPARC_TLS_LE_LOX10",
+  "BFD_RELOC_SPARC_TLS_DTPMOD32",
+  "BFD_RELOC_SPARC_TLS_DTPMOD64",
+  "BFD_RELOC_SPARC_TLS_DTPOFF32",
+  "BFD_RELOC_SPARC_TLS_DTPOFF64",
+  "BFD_RELOC_SPARC_TLS_TPOFF32",
+  "BFD_RELOC_SPARC_TLS_TPOFF64",
   "BFD_RELOC_ALPHA_GPDISP_HI16",
   "BFD_RELOC_ALPHA_GPDISP_LO16",
   "BFD_RELOC_ALPHA_GPDISP",
--- bfd/elf64-sparc.c.jj	Sat Dec 28 17:19:08 2002
+++ bfd/elf64-sparc.c	Mon Jan 20 09:47:46 2003
@@ -171,7 +171,31 @@ static reloc_howto_type sparc64_elf_howt
   HOWTO(R_SPARC_L44,       0,2,13,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_L44",     FALSE,0,0x00000fff,FALSE),
   HOWTO(R_SPARC_REGISTER,  0,4, 0,FALSE,0,complain_overflow_bitfield,sparc_elf_notsup_reloc, "R_SPARC_REGISTER",FALSE,0,MINUS_ONE, FALSE),
   HOWTO(R_SPARC_UA64,        0,4,64,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,  "R_SPARC_UA64",      FALSE,0,MINUS_ONE, TRUE),
-  HOWTO(R_SPARC_UA16,        0,1,16,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,  "R_SPARC_UA16",      FALSE,0,0x0000ffff,TRUE)
+  HOWTO(R_SPARC_UA16,        0,1,16,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,  "R_SPARC_UA16",      FALSE,0,0x0000ffff,TRUE),
+  HOWTO(R_SPARC_TLS_GD_HI22,10,2,22,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_HI22",FALSE,0,0x003fffff,TRUE),
+  HOWTO(R_SPARC_TLS_GD_LO10,0,2,10,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_LO10",FALSE,0,0x000003ff,TRUE),
+  HOWTO(R_SPARC_TLS_GD_ADD,0,0, 0,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_GD_CALL,2,2,30,TRUE,0,complain_overflow_signed,  bfd_elf_generic_reloc,  "R_SPARC_TLS_GD_CALL",FALSE,0,0x3fffffff,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_HI22,10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_HI22",FALSE,0,0x003fffff,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_LO10,0,2,10,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_LO10",FALSE,0,0x000003ff,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_ADD,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_LDM_CALL,2,2,30,TRUE,0,complain_overflow_signed, bfd_elf_generic_reloc,  "R_SPARC_TLS_LDM_CALL",FALSE,0,0x3fffffff,TRUE),
+  HOWTO(R_SPARC_TLS_LDO_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc,"R_SPARC_TLS_LDO_HIX22",FALSE,0,0x003fffff, FALSE),
+  HOWTO(R_SPARC_TLS_LDO_LOX10,0,2,0,FALSE,0,complain_overflow_dont,  sparc_elf_lox10_reloc,  "R_SPARC_TLS_LDO_LOX10",FALSE,0,0x000003ff, FALSE),
+  HOWTO(R_SPARC_TLS_LDO_ADD,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_LDO_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_IE_HI22,10,2,22,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_HI22",FALSE,0,0x003fffff,TRUE),
+  HOWTO(R_SPARC_TLS_IE_LO10,0,2,10,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_LO10",FALSE,0,0x000003ff,TRUE),
+  HOWTO(R_SPARC_TLS_IE_LD,0,0, 0,FALSE,0,complain_overflow_dont,     bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_LD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_IE_LDX,0,0, 0,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_LDX",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_IE_ADD,0,0, 0,FALSE,0,complain_overflow_dont,    bfd_elf_generic_reloc,  "R_SPARC_TLS_IE_ADD",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_LE_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc, "R_SPARC_TLS_LE_HIX22",FALSE,0,0x003fffff, FALSE),
+  HOWTO(R_SPARC_TLS_LE_LOX10,0,2,0,FALSE,0,complain_overflow_dont,   sparc_elf_lox10_reloc,  "R_SPARC_TLS_LE_LOX10",FALSE,0,0x000003ff, FALSE),
+  HOWTO(R_SPARC_TLS_DTPMOD32,0,0, 0,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_DTPMOD32",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_DTPMOD64,0,0, 0,FALSE,0,complain_overflow_dont,  bfd_elf_generic_reloc,  "R_SPARC_TLS_DTPMOD64",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_DTPOFF32,0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,"R_SPARC_TLS_DTPOFF32",FALSE,0,0xffffffff,TRUE),
+  HOWTO(R_SPARC_TLS_DTPOFF64,0,4,64,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,"R_SPARC_TLS_DTPOFF64",FALSE,0,MINUS_ONE,TRUE),
+  HOWTO(R_SPARC_TLS_TPOFF32,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_TPOFF32",FALSE,0,0x00000000,TRUE),
+  HOWTO(R_SPARC_TLS_TPOFF64,0,0, 0,FALSE,0,complain_overflow_dont,   bfd_elf_generic_reloc,  "R_SPARC_TLS_TPOFF64",FALSE,0,0x00000000,TRUE)
 };
 
 struct elf_reloc_map {
@@ -225,6 +249,30 @@ static const struct elf_reloc_map sparc_
   { BFD_RELOC_SPARC_5, R_SPARC_5 },
   { BFD_RELOC_SPARC_6, R_SPARC_6 },
   { BFD_RELOC_SPARC_DISP64, R_SPARC_DISP64 },
+  { BFD_RELOC_SPARC_TLS_GD_HI22, R_SPARC_TLS_GD_HI22 },
+  { BFD_RELOC_SPARC_TLS_GD_LO10, R_SPARC_TLS_GD_LO10 },
+  { BFD_RELOC_SPARC_TLS_GD_ADD, R_SPARC_TLS_GD_ADD },
+  { BFD_RELOC_SPARC_TLS_GD_CALL, R_SPARC_TLS_GD_CALL },
+  { BFD_RELOC_SPARC_TLS_LDM_HI22, R_SPARC_TLS_LDM_HI22 },
+  { BFD_RELOC_SPARC_TLS_LDM_LO10, R_SPARC_TLS_LDM_LO10 },
+  { BFD_RELOC_SPARC_TLS_LDM_ADD, R_SPARC_TLS_LDM_ADD },
+  { BFD_RELOC_SPARC_TLS_LDM_CALL, R_SPARC_TLS_LDM_CALL },
+  { BFD_RELOC_SPARC_TLS_LDO_HIX22, R_SPARC_TLS_LDO_HIX22 },
+  { BFD_RELOC_SPARC_TLS_LDO_LOX10, R_SPARC_TLS_LDO_LOX10 },
+  { BFD_RELOC_SPARC_TLS_LDO_ADD, R_SPARC_TLS_LDO_ADD },
+  { BFD_RELOC_SPARC_TLS_IE_HI22, R_SPARC_TLS_IE_HI22 },
+  { BFD_RELOC_SPARC_TLS_IE_LO10, R_SPARC_TLS_IE_LO10 },
+  { BFD_RELOC_SPARC_TLS_IE_LD, R_SPARC_TLS_IE_LD },
+  { BFD_RELOC_SPARC_TLS_IE_LDX, R_SPARC_TLS_IE_LDX },
+  { BFD_RELOC_SPARC_TLS_IE_ADD, R_SPARC_TLS_IE_ADD },
+  { BFD_RELOC_SPARC_TLS_LE_HIX22, R_SPARC_TLS_LE_HIX22 },
+  { BFD_RELOC_SPARC_TLS_LE_LOX10, R_SPARC_TLS_LE_LOX10 },
+  { BFD_RELOC_SPARC_TLS_DTPMOD32, R_SPARC_TLS_DTPMOD32 },
+  { BFD_RELOC_SPARC_TLS_DTPMOD64, R_SPARC_TLS_DTPMOD64 },
+  { BFD_RELOC_SPARC_TLS_DTPOFF32, R_SPARC_TLS_DTPOFF32 },
+  { BFD_RELOC_SPARC_TLS_DTPOFF64, R_SPARC_TLS_DTPOFF64 },
+  { BFD_RELOC_SPARC_TLS_TPOFF32, R_SPARC_TLS_TPOFF32 },
+  { BFD_RELOC_SPARC_TLS_TPOFF64, R_SPARC_TLS_TPOFF64 },
 #ifndef SPARC64_OLD_RELOCS
   { BFD_RELOC_SPARC_PLT32, R_SPARC_PLT32 },
 #endif
--- gas/config/tc-sparc.c.jj	Sat Dec 28 17:19:17 2002
+++ gas/config/tc-sparc.c	Mon Jan 20 09:47:46 2003
@@ -1806,10 +1806,88 @@ sparc_ip (str, pinsn)
 	      break;
 
 	    case '\0':		/* End of args.  */
-	      if (*s == '\0')
+	      if (s[0] == ',' && s[1] == '%')
 		{
-		  match = 1;
+		  static const struct tls_ops {
+		    /* The name as it appears in assembler.  */
+		    char *name;
+		    /* strlen (name), precomputed for speed */
+		    int len;
+		    /* The reloc this pseudo-op translates to.  */
+		    int reloc;
+		    /* 1 if call.  */
+		    int call;
+		  } tls_ops[] = {
+		    { "tgd_add", 7, BFD_RELOC_SPARC_TLS_GD_ADD, 0 },
+		    { "tgd_call", 8, BFD_RELOC_SPARC_TLS_GD_CALL, 1 },
+		    { "tldm_add", 8, BFD_RELOC_SPARC_TLS_LDM_ADD, 0 },
+		    { "tldm_call", 9, BFD_RELOC_SPARC_TLS_LDM_CALL, 1 },
+		    { "tldo_add", 8, BFD_RELOC_SPARC_TLS_LDO_ADD, 0 },
+		    { "tie_ldx", 7, BFD_RELOC_SPARC_TLS_IE_LDX, 0 },
+		    { "tie_ld", 6, BFD_RELOC_SPARC_TLS_IE_LD, 0 },
+		    { "tie_add", 7, BFD_RELOC_SPARC_TLS_IE_ADD, 0 }
+		  };
+		  const struct tls_ops *o;
+		  char *s1;
+		  int npar = 0;
+
+		  for (o = tls_ops; o->name; o++)
+		    if (strncmp (s + 2, o->name, o->len) == 0)
+		      break;
+		  if (o->name == NULL)
+		    break;
+
+		  if (s[o->len + 2] != '(')
+		    {
+		      as_bad (_("Illegal operands: %%%s requires arguments in ()"), o->name);
+		      return special_case;
+		    }
+
+		  if (! o->call && the_insn.reloc != BFD_RELOC_NONE)
+		    {
+		      as_bad (_("Illegal operands: %%%s cannot be used together with other relocs in the insn ()"),
+			      o->name);
+		      return special_case;
+		    }
+
+		  if (o->call
+		      && (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"),
+			      o->name);
+		      return special_case;
+		    }
+
+		  the_insn.reloc = o->reloc;
+		  memset (&the_insn.exp, 0, sizeof (the_insn.exp));
+		  s += o->len + 3;
+
+		  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 ()"), o->name);
+		      return special_case;
+		    }
+
+		  *s1 = '\0';
+		  (void) get_expression (s);
+		  *s1 = ')';
+		  s = s1 + 1;
 		}
+	      if (*s == '\0')
+		match = 1;
 	      break;
 
 	    case '+':
@@ -2176,6 +2254,18 @@ sparc_ip (str, pinsn)
 		      { "l44", 3, BFD_RELOC_SPARC_L44, 1, 0 },
 		      { "uhi", 3, BFD_RELOC_SPARC_HH22, 1, 0 },
 		      { "ulo", 3, BFD_RELOC_SPARC_HM10, 1, 0 },
+		      { "tgd_hi22", 8, BFD_RELOC_SPARC_TLS_GD_HI22, 0, 0 },
+		      { "tgd_lo10", 8, BFD_RELOC_SPARC_TLS_GD_LO10, 0, 0 },
+		      { "tldm_hi22", 9, BFD_RELOC_SPARC_TLS_LDM_HI22, 0, 0 },
+		      { "tldm_lo10", 9, BFD_RELOC_SPARC_TLS_LDM_LO10, 0, 0 },
+		      { "tldo_hix22", 10, BFD_RELOC_SPARC_TLS_LDO_HIX22, 0,
+									 0 },
+		      { "tldo_lox10", 10, BFD_RELOC_SPARC_TLS_LDO_LOX10, 0,
+									 0 },
+		      { "tie_hi22", 8, BFD_RELOC_SPARC_TLS_IE_HI22, 0, 0 },
+		      { "tie_lo10", 8, BFD_RELOC_SPARC_TLS_IE_LO10, 0, 0 },
+		      { "tle_hix22", 9, BFD_RELOC_SPARC_TLS_LE_HIX22, 0, 0 },
+		      { "tle_lox10", 9, BFD_RELOC_SPARC_TLS_LE_LOX10, 0, 0 },
 		      { NULL, 0, 0, 0, 0 }
 		    };
 		    const struct ops *o;
@@ -2378,6 +2468,13 @@ sparc_ip (str, pinsn)
 		      goto error;
 		    }
 
+		  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;
+		    }
+
 		  /* Constants that won't fit are checked in md_apply_fix3
 		     and bfd_install_relocation.
 		     ??? It would be preferable to install the constants
@@ -3305,6 +3402,26 @@ tc_gen_reloc (section, fixp)
     case BFD_RELOC_SPARC_PLT64:
     case BFD_RELOC_VTABLE_ENTRY:
     case BFD_RELOC_VTABLE_INHERIT:
+    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:
       code = fixp->fx_r_type;
       break;
     default:
@@ -3393,7 +3510,9 @@ tc_gen_reloc (section, fixp)
       && code != BFD_RELOC_SPARC_WDISP22
       && code != BFD_RELOC_SPARC_WDISP16
       && code != BFD_RELOC_SPARC_WDISP19
-      && code != BFD_RELOC_SPARC_WPLT30)
+      && code != BFD_RELOC_SPARC_WPLT30
+      && code != BFD_RELOC_SPARC_TLS_GD_CALL
+      && code != BFD_RELOC_SPARC_TLS_LDM_CALL)
     reloc->addend = fixp->fx_addnumber;
   else if (symbol_section_p (fixp->fx_addsy))
     reloc->addend = (section->vma
@@ -4196,6 +4315,16 @@ sparc_cons (exp, size)
 	      sparc_cons_special_reloc = "plt";
 	    }
 	}
+      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";
+	    }
+	}
       if (sparc_cons_special_reloc)
 	{
 	  int bad = 0;
@@ -4329,12 +4458,18 @@ cons_fix_new_sparc (frag, where, nbytes,
 	  case 8: r = BFD_RELOC_64_PCREL; break;
 	  default: abort ();
 	  }
-      else
+      else if (*sparc_cons_special_reloc == 'p')
 	switch (nbytes)
 	  {
 	  case 4: r = BFD_RELOC_SPARC_PLT32; break;
 	  case 8: r = BFD_RELOC_SPARC_PLT64; break;
 	  }
+      else
+	switch (nbytes)
+	  {
+	  case 4: r = BFD_RELOC_SPARC_TLS_DTPOFF32; break;
+	  case 8: r = BFD_RELOC_SPARC_TLS_DTPOFF64; break;
+	  }
     }
   else if (sparc_no_align_cons)
     {
--- gas/config/tc-sparc.h.jj	Tue Sep 10 08:51:00 2002
+++ gas/config/tc-sparc.h	Mon Jan 20 09:47:46 2003
@@ -107,6 +107,8 @@ extern int elf32_sparc_force_relocation 
 #define tc_fix_adjustable(FIX)						\
   ((FIX)->fx_r_type != BFD_RELOC_VTABLE_INHERIT				\
    && (FIX)->fx_r_type != BFD_RELOC_VTABLE_ENTRY			\
+   && ((FIX)->fx_r_type < BFD_RELOC_SPARC_TLS_GD_HI22			\
+       || (FIX)->fx_r_type > BFD_RELOC_SPARC_TLS_TPOFF64)		\
    && (! sparc_pic_code							\
        || ((FIX)->fx_r_type != BFD_RELOC_HI22				\
 	   && (FIX)->fx_r_type != BFD_RELOC_LO10			\
--- gas/config/obj-elf.c.jj	Wed Jan 15 19:01:27 2003
+++ gas/config/obj-elf.c	Mon Jan 20 09:47:46 2003
@@ -868,6 +868,8 @@ obj_elf_section_word (str, len)
     return SHF_ALLOC;
   if (len == 9 && strncmp (str, "execinstr", 9) == 0)
     return SHF_EXECINSTR;
+  if (len == 3 && strncmp (str, "tls", 3) == 0)
+    return SHF_TLS;
 
 #ifdef md_elf_section_word
   {
@@ -1638,6 +1640,9 @@ obj_elf_type (ignore)
   else if (strcmp (typename, "object") == 0
 	   || strcmp (typename, "STT_OBJECT") == 0)
     type = BSF_OBJECT;
+  else if (strcmp (typename, "tls_object") == 0
+	   || strcmp (typename, "STT_TLS") == 0)
+    type = BSF_OBJECT | BSF_THREAD_LOCAL;
 #ifdef md_elf_symbol_type
   else if ((type = md_elf_symbol_type (typename, sym, elfsym)) != -1)
     ;
--- include/elf/sparc.h.jj	Fri May 11 06:25:59 2001
+++ include/elf/sparc.h	Mon Jan 20 09:47:46 2003
@@ -1,5 +1,5 @@
 /* SPARC ELF support for BFD.
-   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
    By Doug Evans, Cygnus Support, <dje@cygnus.com>.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -126,13 +126,36 @@ START_RELOC_NUMBERS (elf_sparc_reloc_typ
   RELOC_NUMBER (R_SPARC_UA64, 54)
   RELOC_NUMBER (R_SPARC_UA16, 55)
 
-  /* little endian data relocs */
-  RELOC_NUMBER (R_SPARC_REV32, 56)
-
+  RELOC_NUMBER (R_SPARC_TLS_GD_HI22, 56)
+  RELOC_NUMBER (R_SPARC_TLS_GD_LO10, 57)
+  RELOC_NUMBER (R_SPARC_TLS_GD_ADD, 58)
+  RELOC_NUMBER (R_SPARC_TLS_GD_CALL, 59)
+  RELOC_NUMBER (R_SPARC_TLS_LDM_HI22, 60)
+  RELOC_NUMBER (R_SPARC_TLS_LDM_LO10, 61)
+  RELOC_NUMBER (R_SPARC_TLS_LDM_ADD, 62)
+  RELOC_NUMBER (R_SPARC_TLS_LDM_CALL, 63)
+  RELOC_NUMBER (R_SPARC_TLS_LDO_HIX22, 64)
+  RELOC_NUMBER (R_SPARC_TLS_LDO_LOX10, 65)
+  RELOC_NUMBER (R_SPARC_TLS_LDO_ADD, 66)
+  RELOC_NUMBER (R_SPARC_TLS_IE_HI22, 67)
+  RELOC_NUMBER (R_SPARC_TLS_IE_LO10, 68)
+  RELOC_NUMBER (R_SPARC_TLS_IE_LD, 69)
+  RELOC_NUMBER (R_SPARC_TLS_IE_LDX, 70)
+  RELOC_NUMBER (R_SPARC_TLS_IE_ADD, 71)
+  RELOC_NUMBER (R_SPARC_TLS_LE_HIX22, 72)
+  RELOC_NUMBER (R_SPARC_TLS_LE_LOX10, 73)
+  RELOC_NUMBER (R_SPARC_TLS_DTPMOD32, 74)
+  RELOC_NUMBER (R_SPARC_TLS_DTPMOD64, 75)
+  RELOC_NUMBER (R_SPARC_TLS_DTPOFF32, 76)
+  RELOC_NUMBER (R_SPARC_TLS_DTPOFF64, 77)
+  RELOC_NUMBER (R_SPARC_TLS_TPOFF32, 78)
+  RELOC_NUMBER (R_SPARC_TLS_TPOFF64, 79)
+  
   EMPTY_RELOC  (R_SPARC_max_std)
 
   RELOC_NUMBER (R_SPARC_GNU_VTINHERIT, 250)
   RELOC_NUMBER (R_SPARC_GNU_VTENTRY, 251)
+  RELOC_NUMBER (R_SPARC_REV32, 252)
 
 END_RELOC_NUMBERS (R_SPARC_max)
 
--- ld/testsuite/ld-sparc/sparc.exp.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/sparc.exp	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,88 @@
+# Expect script for ld-sparc tests
+#   Copyright (C) 2002, 2003 Free Software Foundation
+#
+# This file is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+
+# Test i386 linking; all types of relocs.  This tests the assembler and
+# tools like objdump as well as the linker.
+
+if { !([istarget "sparc*-*-elf*"]		
+       || ([istarget "sparc*-*-linux*"]
+	   && ![istarget "*-*-*aout*"]
+	   && ![istarget "*-*-*oldld*"])) } {
+    return
+}
+
+# List contains test-items with 3 items followed by 2 lists:
+# 0:name 1:ld options 2:assembler options
+# 3:filenames of assembler files 4: action and options. 5: name of output file
+
+# Actions:
+# objdump: Apply objdump options on result.  Compare with regex (last arg).
+# nm: Apply nm options on result.  Compare with regex (last arg).
+# readelf: Apply readelf options on result.  Compare with regex (last arg).
+
+set sparctests {
+    {"TLS -fpic -shared transitions" "-shared -melf32_sparc"
+     "--32 -K PIC" {tlssunpic32.s tlspic.s}
+     {{readelf -WSsrl tlssunpic32.rd} {objdump -drj.text tlssunpic32.dd}
+      {objdump -sj.got tlssunpic32.sd} {objdump -sj.tdata tlssunpic32.td}}
+      "libtlssunpic32.so"}
+    {"Helper shared library" "-shared -melf32_sparc"
+     "--32 -K PIC" {tlslib.s} {} "libtlslib32.so"}
+    {"Another helper shared library" "-shared -melf32_sparc"
+     "--32 -K PIC" {tlssunbinpic32.s} {} "libtlssunbinpic32.so"}
+    {"TLS -fpic and -fno-pic exec transitions"
+     "-melf32_sparc tmpdir/libtlslib32.so tmpdir/tlssunbinpic32.o"
+     "--32" {tlssunbin32.s}
+     {{readelf -WSsrl tlssunbin32.rd} {objdump -drj.text tlssunbin32.dd}
+      {objdump -sj.got tlssunbin32.sd} {objdump -sj.tdata tlssunbin32.td}}
+      "tlssunbin32"}
+    {"TLS -fno-pic -shared" "-shared -melf32_sparc"
+     "--32" {tlssunnopic32.s tlsnopic.s}
+     {{readelf -WSsrl tlssunnopic32.rd} {objdump -drj.text tlssunnopic32.dd}
+      {objdump -sj.got tlssunnopic32.sd}} "libtlssunnopic32.so"}
+    {"TLS in debug sections" "-melf32_sparc"
+     "--32" {tlsg32.s}
+     {{objdump -sj.debug_foobar tlsg32.sd}} "tlsg32"}
+}
+set sparc64tests {
+    {"TLS -fpic -shared transitions" "-shared -melf64_sparc"
+     "--64 -Av9 -K PIC" {tlssunpic64.s tlspic.s}
+     {{readelf -WSsrl tlssunpic64.rd} {objdump -drj.text tlssunpic64.dd}
+      {objdump -sj.got tlssunpic64.sd} {objdump -sj.tdata tlssunpic64.td}}
+      "libtlssunpic64.so"}
+    {"Helper shared library" "-shared -melf64_sparc"
+     "--64 -Av9 -K PIC" {tlslib.s} {} "libtlslib64.so"}
+    {"Another helper shared library" "-shared -melf64_sparc"
+     "--64 -Av9 -K PIC" {tlssunbinpic64.s} {} "libtlssunbinpic64.so"}
+    {"TLS -fpic and -fno-pic exec transitions"
+     "-melf64_sparc tmpdir/libtlslib64.so tmpdir/tlssunbinpic64.o"
+     "--64 -Av9" {tlssunbin64.s}
+     {{readelf -WSsrl tlssunbin64.rd} {objdump -drj.text tlssunbin64.dd}
+      {objdump -sj.got tlssunbin64.sd} {objdump -sj.tdata tlssunbin64.td}}
+      "tlssunbin64"}
+    {"TLS -fno-pic -shared" "-shared -melf64_sparc"
+     "--64 -Av9" {tlssunnopic64.s tlsnopic.s}
+     {{readelf -WSsrl tlssunnopic64.rd} {objdump -drj.text tlssunnopic64.dd}
+      {objdump -sj.got tlssunnopic64.sd}} "libtlssunnopic64.so"}
+    {"TLS in debug sections" "-melf64_sparc"
+     "--64 -Av9" {tlsg64.s}
+     {{objdump -sj.debug_foobar tlsg64.sd}} "tlsg64"}
+}
+
+run_ld_link_tests $sparctests
+# run_ld_link_tests $sparc64tests
--- ld/testsuite/ld-sparc/tlsg32.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlsg32.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+	.section .tbss
+	.align	4
+	.word	0, 0, 0, 0, 0, 0
+	.type	a,#tls_object
+	.size	a,4
+a:
+	.word	0
+	.text
+	.globl	_start
+_start:
+	.section .debug_foobar
+	.word	%r_tls_dtpoff32(a)
--- ld/testsuite/ld-sparc/tlsg32.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlsg32.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,10 @@
+#source: tlsg.s
+#as: --32
+#ld: -melf32_sparc
+#objdump: -sj.debug_foobar
+#target: sparc*-*-*
+
+.*: +file format elf32-sparc
+
+Contents of section .debug_foobar:
+ 0+ 0+18  .*
--- ld/testsuite/ld-sparc/tlsg64.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlsg64.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+	.section .tbss
+	.align	4
+	.word	0, 0, 0, 0, 0, 0
+	.type	a,#tls_object
+	.size	a,4
+a:
+	.word	0
+	.text
+	.globl	_start
+_start:
+	.section .debug_foobar
+	.xword	%r_tls_dtpoff64(a)
--- ld/testsuite/ld-sparc/tlsg64.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlsg64.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,11 @@
+#source: tlsg.s
+#as: --64 -Av9
+#ld: -melf64_sparc
+#objdump: -sj.debug_foobar
+#target: sparc*-*-*
+
+.*: +file format elf64-sparc
+
+Contents of section .debug_foobar:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlslib.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlslib.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,20 @@
+	.section ".tdata", #alloc, #write, #tls
+	.align	4
+	.globl sG1, sG2, sG3, sG4, sG5, sG6, sG7, sG8
+sG1:	.word 513
+sG2:	.word 514
+sG3:	.word 515
+sG4:	.word 516
+sG5:	.word 517
+sG6:	.word 518
+sG7:	.word 519
+sG8:	.word 520
+
+	.text
+	/* Dummy.  */
+	.globl	__tls_get_addr
+	.type   __tls_get_addr,#function
+	.proc	04
+__tls_get_addr:
+	ret
+	restore
--- ld/testsuite/ld-sparc/tlsnopic.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlsnopic.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,8 @@
+	.section ".tbss"
+	.align	4
+	.globl sh1, sh2, sh3, sh4
+	.hidden sh1, sh2, sh3, sh4
+sh1:	.word 0
+sh2:	.word 0
+sh3:	.word 0
+sh4:	.word 0
--- ld/testsuite/ld-sparc/tlspic.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlspic.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+	.section ".tbss"
+	.align	4
+	.globl sH1, sH2, sH3, sH4, sH5, sH6, sH7, sH8
+	.hidden sH1, sH2, sH3, sH4, sH5, sH6, sH7, sH8
+sH1:	.word 0
+sH2:	.word 0
+sH3:	.word 0
+sH4:	.word 0
+sH5:	.word 0
+sH6:	.word 0
+sH7:	.word 0
+sH8:	.word 0
--- ld/testsuite/ld-sparc/tlssunbin32.dd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin32.dd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,273 @@
+#source: tlssunbin32.s
+#as: --32
+#ld: -shared -melf32_sparc tmpdir/libtlslib32.so tmpdir/tlssunbinpic32.o
+#objdump: -drj.text
+#target: sparc*-*-*
+
+.*: +file format elf32-sparc
+
+Disassembly of section .text:
+
+0+11000 <fn2-0x8>:
+ +11000:	81 c3 e0 08 	retl *
+ +11004:	ae 03 c0 17 	add  %o7, %l7, %l7
+
+0+11008 <fn2>:
+ +11008:	9d e3 bf 98 	save  %sp, -104, %sp
+ +1100c:	2f 00 00 50 	sethi  %hi\(0x14000\), %l7
+ +11010:	7f ff ff fc 	call  11000 <.*>
+ +11014:	ae 05 e0 d0 	add  %l7, 0xd0, %l7	! 140d0 <.*>
+ +11018:	01 00 00 00 	nop *
+ +1101c:	01 00 00 00 	nop *
+ +11020:	01 00 00 00 	nop *
+ +11024:	01 00 00 00 	nop *
+ +11028:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +1102c:	01 00 00 00 	nop *
+ +11030:	a4 04 60 10 	add  %l1, 0x10, %l2
+ +11034:	01 00 00 00 	nop *
+ +11038:	d0 05 c0 12 	ld  \[ %l7 \+ %l2 \], %o0
+ +1103c:	01 00 00 00 	nop *
+ +11040:	90 01 c0 08 	add  %g7, %o0, %o0
+ +11044:	01 00 00 00 	nop *
+ +11048:	01 00 00 00 	nop *
+ +1104c:	01 00 00 00 	nop *
+ +11050:	01 00 00 00 	nop *
+ +11054:	01 00 00 00 	nop *
+ +11058:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +1105c:	92 02 20 08 	add  %o0, 8, %o1	! 8 <.*>
+ +11060:	d0 05 c0 09 	ld  \[ %l7 \+ %o1 \], %o0
+ +11064:	90 01 c0 08 	add  %g7, %o0, %o0
+ +11068:	01 00 00 00 	nop *
+ +1106c:	01 00 00 00 	nop *
+ +11070:	01 00 00 00 	nop *
+ +11074:	01 00 00 00 	nop *
+ +11078:	01 00 00 00 	nop *
+ +1107c:	21 00 00 04 	sethi  %hi\(0x1000\), %l0
+ +11080:	aa 1c 3f 60 	xor  %l0, -160, %l5
+ +11084:	90 01 c0 15 	add  %g7, %l5, %o0
+ +11088:	01 00 00 00 	nop *
+ +1108c:	01 00 00 00 	nop *
+ +11090:	01 00 00 00 	nop *
+ +11094:	01 00 00 00 	nop *
+ +11098:	01 00 00 00 	nop *
+ +1109c:	01 00 00 00 	nop *
+ +110a0:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +110a4:	92 1a 3f 80 	xor  %o0, -128, %o1
+ +110a8:	90 01 c0 09 	add  %g7, %o1, %o0
+ +110ac:	01 00 00 00 	nop *
+ +110b0:	01 00 00 00 	nop *
+ +110b4:	01 00 00 00 	nop *
+ +110b8:	01 00 00 00 	nop *
+ +110bc:	01 00 00 00 	nop *
+ +110c0:	01 00 00 00 	nop *
+ +110c4:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +110c8:	92 1a 3f a0 	xor  %o0, -96, %o1
+ +110cc:	90 01 c0 09 	add  %g7, %o1, %o0
+ +110d0:	01 00 00 00 	nop *
+ +110d4:	01 00 00 00 	nop *
+ +110d8:	01 00 00 00 	nop *
+ +110dc:	01 00 00 00 	nop *
+ +110e0:	01 00 00 00 	nop *
+ +110e4:	01 00 00 00 	nop *
+ +110e8:	01 00 00 00 	nop *
+ +110ec:	01 00 00 00 	nop *
+ +110f0:	01 00 00 00 	nop *
+ +110f4:	01 00 00 00 	nop *
+ +110f8:	01 00 00 00 	nop *
+ +110fc:	01 00 00 00 	nop *
+ +11100:	90 10 00 00 	mov  %g0, %o0
+ +11104:	01 00 00 00 	nop *
+ +11108:	27 00 00 00 	sethi  %hi\(0\), %l3
+ +1110c:	01 00 00 00 	nop *
+ +11110:	a8 1c ff 80 	xor  %l3, -128, %l4
+ +11114:	01 00 00 00 	nop *
+ +11118:	aa 01 c0 14 	add  %g7, %l4, %l5
+ +1111c:	01 00 00 00 	nop *
+ +11120:	25 00 00 00 	sethi  %hi\(0\), %l2
+ +11124:	01 00 00 00 	nop *
+ +11128:	a6 1c bf 86 	xor  %l2, -122, %l3
+ +1112c:	01 00 00 00 	nop *
+ +11130:	ec 11 c0 13 	lduh  \[ %g7 \+ %l3 \], %l6
+ +11134:	01 00 00 00 	nop *
+ +11138:	01 00 00 00 	nop *
+ +1113c:	01 00 00 00 	nop *
+ +11140:	01 00 00 00 	nop *
+ +11144:	01 00 00 00 	nop *
+ +11148:	27 00 00 00 	sethi  %hi\(0\), %l3
+ +1114c:	01 00 00 00 	nop *
+ +11150:	25 00 00 00 	sethi  %hi\(0\), %l2
+ +11154:	01 00 00 00 	nop *
+ +11158:	a8 1c ff a0 	xor  %l3, -96, %l4
+ +1115c:	90 10 00 00 	mov  %g0, %o0
+ +11160:	a6 1c bf a5 	xor  %l2, -91, %l3
+ +11164:	aa 01 c0 14 	add  %g7, %l4, %l5
+ +11168:	ec 09 c0 13 	ldub  \[ %g7 \+ %l3 \], %l6
+ +1116c:	01 00 00 00 	nop *
+ +11170:	01 00 00 00 	nop *
+ +11174:	01 00 00 00 	nop *
+ +11178:	01 00 00 00 	nop *
+ +1117c:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +11180:	01 00 00 00 	nop *
+ +11184:	a4 04 60 08 	add  %l1, 8, %l2
+ +11188:	01 00 00 00 	nop *
+ +1118c:	e4 05 c0 12 	ld  \[ %l7 \+ %l2 \], %l2
+ +11190:	01 00 00 00 	nop *
+ +11194:	a4 01 c0 12 	add  %g7, %l2, %l2
+ +11198:	01 00 00 00 	nop *
+ +1119c:	01 00 00 00 	nop *
+ +111a0:	01 00 00 00 	nop *
+ +111a4:	01 00 00 00 	nop *
+ +111a8:	17 00 00 04 	sethi  %hi\(0x1000\), %o3
+ +111ac:	96 1a ff 60 	xor  %o3, -160, %o3
+ +111b0:	01 00 00 00 	nop *
+ +111b4:	98 01 c0 0b 	add  %g7, %o3, %o4
+ +111b8:	01 00 00 00 	nop *
+ +111bc:	01 00 00 00 	nop *
+ +111c0:	01 00 00 00 	nop *
+ +111c4:	01 00 00 00 	nop *
+ +111c8:	29 00 00 00 	sethi  %hi\(0\), %l4
+ +111cc:	a2 1d 3f 80 	xor  %l4, -128, %l1
+ +111d0:	a6 10 00 11 	mov  %l1, %l3
+ +111d4:	a6 01 c0 13 	add  %g7, %l3, %l3
+ +111d8:	01 00 00 00 	nop *
+ +111dc:	01 00 00 00 	nop *
+ +111e0:	01 00 00 00 	nop *
+ +111e4:	01 00 00 00 	nop *
+ +111e8:	13 00 00 00 	sethi  %hi\(0\), %o1
+ +111ec:	96 1a 7f a0 	xor  %o1, -96, %o3
+ +111f0:	90 10 00 0b 	mov  %o3, %o0
+ +111f4:	96 01 c0 08 	add  %g7, %o0, %o3
+ +111f8:	01 00 00 00 	nop *
+ +111fc:	01 00 00 00 	nop *
+ +11200:	01 00 00 00 	nop *
+ +11204:	01 00 00 00 	nop *
+ +11208:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +1120c:	96 02 e0 04 	add  %o3, 4, %o3	! 4 <.*>
+ +11210:	d4 05 c0 0b 	ld  \[ %l7 \+ %o3 \], %o2
+ +11214:	d8 01 c0 0a 	ld  \[ %g7 \+ %o2 \], %o4
+ +11218:	01 00 00 00 	nop *
+ +1121c:	01 00 00 00 	nop *
+ +11220:	01 00 00 00 	nop *
+ +11224:	01 00 00 00 	nop *
+ +11228:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +1122c:	96 1a ff 90 	xor  %o3, -112, %o3
+ +11230:	94 10 00 0b 	mov  %o3, %o2
+ +11234:	d8 29 c0 0a 	stb  %o4, \[ %g7 \+ %o2 \]
+ +11238:	01 00 00 00 	nop *
+ +1123c:	01 00 00 00 	nop *
+ +11240:	01 00 00 00 	nop *
+ +11244:	01 00 00 00 	nop *
+ +11248:	1b 00 00 00 	sethi  %hi\(0\), %o5
+ +1124c:	96 1b 7f b0 	xor  %o5, -80, %o3
+ +11250:	94 10 00 0b 	mov  %o3, %o2
+ +11254:	d8 49 c0 0a 	ldsb  \[ %g7 \+ %o2 \], %o4
+ +11258:	01 00 00 00 	nop *
+ +1125c:	01 00 00 00 	nop *
+ +11260:	01 00 00 00 	nop *
+ +11264:	01 00 00 00 	nop *
+ +11268:	81 c7 e0 08 	ret *
+ +1126c:	81 e8 00 00 	restore *
+#...
+
+00012000 <_start>:
+ +12000:	9d e3 bf 98 	save  %sp, -104, %sp
+ +12004:	29 00 00 94 	sethi  %hi\(0x25000\), %l4
+ +12008:	a8 15 20 e0 	or  %l4, 0xe0, %l4	! 250e0 <.*>
+ +1200c:	01 00 00 00 	nop *
+ +12010:	01 00 00 00 	nop *
+ +12014:	01 00 00 00 	nop *
+ +12018:	01 00 00 00 	nop *
+ +1201c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +12020:	96 02 e0 0c 	add  %o3, 0xc, %o3	! c <.*>
+ +12024:	d4 05 00 0b 	ld  \[ %l4 \+ %o3 \], %o2
+ +12028:	98 01 c0 0a 	add  %g7, %o2, %o4
+ +1202c:	01 00 00 00 	nop *
+ +12030:	01 00 00 00 	nop *
+ +12034:	01 00 00 00 	nop *
+ +12038:	01 00 00 00 	nop *
+ +1203c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +12040:	9a 1a ff d4 	xor  %o3, -44, %o5
+ +12044:	94 10 00 0d 	mov  %o5, %o2
+ +12048:	98 01 c0 0a 	add  %g7, %o2, %o4
+ +1204c:	01 00 00 00 	nop *
+ +12050:	01 00 00 00 	nop *
+ +12054:	01 00 00 00 	nop *
+ +12058:	01 00 00 00 	nop *
+ +1205c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +12060:	9a 1a ff f4 	xor  %o3, -12, %o5
+ +12064:	a4 10 00 0d 	mov  %o5, %l2
+ +12068:	a4 01 c0 12 	add  %g7, %l2, %l2
+ +1206c:	01 00 00 00 	nop *
+ +12070:	01 00 00 00 	nop *
+ +12074:	01 00 00 00 	nop *
+ +12078:	01 00 00 00 	nop *
+ +1207c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +12080:	9a 1a ff fc 	xor  %o3, -4, %o5
+ +12084:	a4 10 00 0d 	mov  %o5, %l2
+ +12088:	e4 01 c0 12 	ld  \[ %g7 \+ %l2 \], %l2
+ +1208c:	01 00 00 00 	nop *
+ +12090:	01 00 00 00 	nop *
+ +12094:	01 00 00 00 	nop *
+ +12098:	01 00 00 00 	nop *
+ +1209c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +120a0:	9a 1a ff b4 	xor  %o3, -76, %o5
+ +120a4:	a4 10 00 0d 	mov  %o5, %l2
+ +120a8:	a4 01 c0 12 	add  %g7, %l2, %l2
+ +120ac:	01 00 00 00 	nop *
+ +120b0:	01 00 00 00 	nop *
+ +120b4:	01 00 00 00 	nop *
+ +120b8:	01 00 00 00 	nop *
+ +120bc:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +120c0:	9a 1a ff fc 	xor  %o3, -4, %o5
+ +120c4:	a4 10 00 0d 	mov  %o5, %l2
+ +120c8:	e2 29 c0 12 	stb  %l1, \[ %g7 \+ %l2 \]
+ +120cc:	01 00 00 00 	nop *
+ +120d0:	01 00 00 00 	nop *
+ +120d4:	01 00 00 00 	nop *
+ +120d8:	01 00 00 00 	nop *
+ +120dc:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +120e0:	01 00 00 00 	nop *
+ +120e4:	a4 1c 7f 64 	xor  %l1, -156, %l2
+ +120e8:	01 00 00 00 	nop *
+ +120ec:	a6 01 c0 12 	add  %g7, %l2, %l3
+ +120f0:	01 00 00 00 	nop *
+ +120f4:	01 00 00 00 	nop *
+ +120f8:	01 00 00 00 	nop *
+ +120fc:	01 00 00 00 	nop *
+ +12100:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +12104:	90 1a 3f e6 	xor  %o0, -26, %o0
+ +12108:	90 01 c0 08 	add  %g7, %o0, %o0
+ +1210c:	01 00 00 00 	nop *
+ +12110:	01 00 00 00 	nop *
+ +12114:	01 00 00 00 	nop *
+ +12118:	01 00 00 00 	nop *
+ +1211c:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +12120:	9a 1c 7f a5 	xor  %l1, -91, %o5
+ +12124:	92 01 c0 0d 	add  %g7, %o5, %o1
+ +12128:	01 00 00 00 	nop *
+ +1212c:	01 00 00 00 	nop *
+ +12130:	01 00 00 00 	nop *
+ +12134:	01 00 00 00 	nop *
+ +12138:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +1213c:	9a 1c 7f 68 	xor  %l1, -152, %o5
+ +12140:	d2 01 c0 0d 	ld  \[ %g7 \+ %o5 \], %o1
+ +12144:	01 00 00 00 	nop *
+ +12148:	01 00 00 00 	nop *
+ +1214c:	01 00 00 00 	nop *
+ +12150:	01 00 00 00 	nop *
+ +12154:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +12158:	90 1a 3f eb 	xor  %o0, -21, %o0
+ +1215c:	d2 29 c0 08 	stb  %o1, \[ %g7 \+ %o0 \]
+ +12160:	01 00 00 00 	nop *
+ +12164:	01 00 00 00 	nop *
+ +12168:	01 00 00 00 	nop *
+ +1216c:	01 00 00 00 	nop *
+ +12170:	15 00 00 00 	sethi  %hi\(0\), %o2
+ +12174:	98 1a bf ab 	xor  %o2, -85, %o4
+ +12178:	da 69 c0 0c 	ldstub  \[ %g7 \+ %o4 \], %o5
+ +1217c:	01 00 00 00 	nop *
+ +12180:	01 00 00 00 	nop *
+ +12184:	01 00 00 00 	nop *
+ +12188:	01 00 00 00 	nop *
+ +1218c:	81 c7 e0 08 	ret *
+ +12190:	81 e8 00 00 	restore *
--- ld/testsuite/ld-sparc/tlssunbin32.rd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin32.rd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,137 @@
+#source: tlssunbin32.s
+#as: --32
+#ld: -shared -melf32_sparc tmpdir/libtlslib32.so tmpdir/tlssunbinpic32.o
+#readelf: -WSsrl
+#target: sparc*-*-*
+
+There are 17 section headers, starting at offset 0x[0-9a-f]+:
+
+Section Headers:
+ +\[Nr\] Name +Type +Addr +Off +Size +ES Flg Lk Inf Al
+ +\[ 0\] +NULL +0+ 0+ 0+ 00 +0 +0 +0
+ +\[ 1\] .interp +.*
+ +\[ 2\] .hash +.*
+ +\[ 3\] .dynsym +.*
+ +\[ 4\] .dynstr +.*
+ +\[ 5\] .rela.dyn +.*
+ +\[ 6\] .text +PROGBITS +0+11000 0+1000 0+1194 00 +AX +0 +0 4096
+ +\[ 7\] .data +.*
+ +\[ 8\] .tdata +PROGBITS +0+24000 0+4000 0+1060 00 WAT +0 +0 +4
+ +\[ 9\] .tbss +NOBITS +0+25060 0+5060 0+40 00 WAT +0 +0 +4
+ +\[10\] .dynamic +DYNAMIC +0+25060 0+5060 0+80 08 +WA +4 +0 +4
+ +\[11\] .plt +.*
+ +\[12\] .got +PROGBITS +0+250e0 0+50e0 0+14 04 +WA +0 +0 +4
+ +\[13\] .bss +.*
+ +\[14\] .shstrtab +.*
+ +\[15\] .symtab +.*
+ +\[16\] .strtab +.*
+#...
+
+Elf file type is EXEC \(Executable file\)
+Entry point 0x12000
+There are 6 program headers, starting at offset [0-9]+
+
+Program Headers:
+ +Type +Offset +VirtAddr +PhysAddr +FileSiz MemSiz +Flg Align
+ +PHDR +0x0+34 0x0+10034 0x0+10034 0x0+c0 0x0+c0 R E 0x4
+ +INTERP +0x0+f4 0x0+100f4 0x0+100f4 0x0+11 0x0+11 R +0x1
+.*Requesting program interpreter.*
+ +LOAD +0x0+ 0x0+10000 0x0+10000 0x0+2194 0x0+2194 R E 0x10000
+ +LOAD +0x0+4000 0x0+24000 0x0+24000 0x0+10f4 0x0+10f8 RWE 0x10000
+ +DYNAMIC +0x0+5060 0x0+25060 0x0+25060 0x0+80 0x0+80 RW +0x4
+ +TLS +0x0+4000 0x0+24000 0x0+24000 0x0+1060 0x0+10a0 R +0x4
+#...
+
+Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries:
+ Offset +Info +Type +Sym. Value +Symbol's Name \+ Addend
+000250e4 +0000014e R_SPARC_TLS_TPOFF32 +00000000 +sG5 \+ 0
+000250e8 +0000034e R_SPARC_TLS_TPOFF32 +00000000 +sG2 \+ 0
+000250ec +0000074e R_SPARC_TLS_TPOFF32 +00000000 +sG6 \+ 0
+000250f0 +0000084e R_SPARC_TLS_TPOFF32 +00000000 +sG1 \+ 0
+
+Symbol table '.dynsym' contains 11 entries:
+ +Num: +Value +Size Type +Bind +Vis +Ndx Name
+ +0: 0+ +0 NOTYPE +LOCAL +DEFAULT +UND *
+ +1: 0+ +0 TLS +GLOBAL DEFAULT +UND sG5
+ +2: 0+25060 +0 OBJECT +GLOBAL DEFAULT +ABS _DYNAMIC
+ +3: 0+ +0 TLS +GLOBAL DEFAULT +UND sG2
+ +4: [0-9a-f]+ +0 OBJECT +GLOBAL DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
+ +5: 0+ +0 FUNC +GLOBAL DEFAULT +UND __tls_get_addr
+ +6: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS __bss_start
+ +7: 0+ +0 TLS +GLOBAL DEFAULT +UND sG6
+ +8: 0+ +0 TLS +GLOBAL DEFAULT +UND sG1
+ +9: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _edata
+ +10: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _end
+
+Symbol table '.symtab' contains 70 entries:
+ +Num: +Value +Size Type +Bind +Vis +Ndx Name
+ +0: 0+ +0 NOTYPE +LOCAL +DEFAULT +UND *
+ +1: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +1 *
+ +2: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +2 *
+ +3: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +3 *
+ +4: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +4 *
+ +5: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +5 *
+ +6: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +6 *
+ +7: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +7 *
+ +8: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +8 *
+ +9: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +9 *
+ +10: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +10 *
+ +11: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +11 *
+ +12: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +12 *
+ +13: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +13 *
+ +14: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +14 *
+ +15: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +15 *
+ +16: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +16 *
+ +17: 0+1020 +0 TLS +LOCAL +DEFAULT +8 sl1
+ +18: 0+1024 +0 TLS +LOCAL +DEFAULT +8 sl2
+ +19: 0+1028 +0 TLS +LOCAL +DEFAULT +8 sl3
+ +20: 0+102c +0 TLS +LOCAL +DEFAULT +8 sl4
+ +21: 0+1030 +0 TLS +LOCAL +DEFAULT +8 sl5
+ +22: 0+1034 +0 TLS +LOCAL +DEFAULT +8 sl6
+ +23: 0+1038 +0 TLS +LOCAL +DEFAULT +8 sl7
+ +24: 0+103c +0 TLS +LOCAL +DEFAULT +8 sl8
+ +25: 0+1080 +0 TLS +LOCAL +DEFAULT +9 bl1
+ +26: 0+1084 +0 TLS +LOCAL +DEFAULT +9 bl2
+ +27: 0+1088 +0 TLS +LOCAL +DEFAULT +9 bl3
+ +28: 0+108c +0 TLS +LOCAL +DEFAULT +9 bl4
+ +29: 0+1090 +0 TLS +LOCAL +DEFAULT +9 bl5
+ +30: 0+1094 +0 TLS +LOCAL +DEFAULT +9 bl6
+ +31: 0+1098 +0 TLS +LOCAL +DEFAULT +9 bl7
+ +32: 0+109c +0 TLS +LOCAL +DEFAULT +9 bl8
+ +33: 0+250e0 +0 OBJECT +LOCAL +HIDDEN +12 _GLOBAL_OFFSET_TABLE_
+ +34: 0+101c +0 TLS +GLOBAL DEFAULT +8 sg8
+ +35: 0+107c +0 TLS +GLOBAL DEFAULT +9 bg8
+ +36: 0+1074 +0 TLS +GLOBAL DEFAULT +9 bg6
+ +37: 0+ +0 TLS +GLOBAL DEFAULT +UND sG5
+ +38: 0+1068 +0 TLS +GLOBAL DEFAULT +9 bg3
+ +39: 0+25060 +0 OBJECT +GLOBAL DEFAULT +ABS _DYNAMIC
+ +40: 0+1008 +0 TLS +GLOBAL DEFAULT +8 sg3
+ +41: 0+1048 +0 TLS +GLOBAL HIDDEN +8 sh3
+ +42: 0+ +0 TLS +GLOBAL DEFAULT +UND sG2
+ +43: 0+100c +0 TLS +GLOBAL DEFAULT +8 sg4
+ +44: 0+1010 +0 TLS +GLOBAL DEFAULT +8 sg5
+ +45: [0-9a-f]+ +0 OBJECT +GLOBAL DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
+ +46: 0+1070 +0 TLS +GLOBAL DEFAULT +9 bg5
+ +47: 0+ +0 FUNC +GLOBAL DEFAULT +UND __tls_get_addr
+ +48: 0+1058 +0 TLS +GLOBAL HIDDEN +8 sh7
+ +49: 0+105c +0 TLS +GLOBAL HIDDEN +8 sh8
+ +50: 0+ +0 TLS +GLOBAL DEFAULT +8 sg1
+ +51: 0+12000 +0 FUNC +GLOBAL DEFAULT +6 _start
+ +52: 0+104c +0 TLS +GLOBAL HIDDEN +8 sh4
+ +53: 0+1078 +0 TLS +GLOBAL DEFAULT +9 bg7
+ +54: 0+1050 +0 TLS +GLOBAL HIDDEN +8 sh5
+ +55: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS __bss_start
+ +56: 0+ +0 TLS +GLOBAL DEFAULT +UND sG6
+ +57: 0+11008 +0 FUNC +GLOBAL DEFAULT +6 fn2
+ +58: 0+1004 +0 TLS +GLOBAL DEFAULT +8 sg2
+ +59: 0+ +0 TLS +GLOBAL DEFAULT +UND sG1
+ +60: 0+1040 +0 TLS +GLOBAL HIDDEN +8 sh1
+ +61: 0+1014 +0 TLS +GLOBAL DEFAULT +8 sg6
+ +62: 0+1018 +0 TLS +GLOBAL DEFAULT +8 sg7
+ +63: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _edata
+ +64: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _end
+ +65: 0+1044 +0 TLS +GLOBAL HIDDEN +8 sh2
+ +66: 0+1054 +0 TLS +GLOBAL HIDDEN +8 sh6
+ +67: 0+1064 +0 TLS +GLOBAL DEFAULT +9 bg2
+ +68: 0+1060 +0 TLS +GLOBAL DEFAULT +9 bg1
+ +69: 0+106c +0 TLS +GLOBAL DEFAULT +9 bg4
--- ld/testsuite/ld-sparc/tlssunbin32.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin32.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,114 @@
+	.section ".tbss"
+	.align	4
+	.globl bg1, bg2, bg3, bg4, bg5, bg6, bg7, bg8
+bg1:	.word 0
+bg2:	.word 0
+bg3:	.word 0
+bg4:	.word 0
+bg5:	.word 0
+bg6:	.word 0
+bg7:	.word 0
+bg8:	.word 0
+bl1:	.word 0
+bl2:	.word 0
+bl3:	.word 0
+bl4:	.word 0
+bl5:	.word 0
+bl6:	.word 0
+bl7:	.word 0
+bl8:	.word 0
+	.text
+	.globl	_start
+	.type	_start,#function
+	.proc	04
+_start:
+	save	%sp, -104, %sp
+	.hidden	_GLOBAL_OFFSET_TABLE_
+	sethi	%hi(_GLOBAL_OFFSET_TABLE_), %l4
+	or	%l4, %lo(_GLOBAL_OFFSET_TABLE_), %l4
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sG6), %o3
+	add	%o3, %tie_lo10(sG6), %o3
+	ld	[%l4 + %o3], %o2, %tie_ld(sG6)
+	add	%g7, %o2, %o4, %tie_add(sG6)
+	nop;nop;nop;nop
+
+	/* IE -> LE against global var defined in exec  */
+	sethi	%tie_hi22(bg6), %o3
+	add	%o3, %tie_lo10(bg6), %o5
+	ld	[%l4 + %o5], %o2, %tie_ld(bg6)
+	add	%g7, %o2, %o4, %tie_add(bg6)
+	nop;nop;nop;nop
+
+	/* IE -> LE against local var  */
+	sethi	%tie_hi22(bl6), %o3
+	add	%o3, %tie_lo10(bl6), %o5
+	ld	[%l4 + %o5], %l2, %tie_ld(bl6)
+	add	%g7, %l2, %l2, %tie_add(bl6)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE -> LE against local var  */
+	sethi	%tie_hi22(bl8), %o3
+	add	%o3, %tie_lo10(bl8), %o5
+	ld	[%l4 + %o5], %l2, %tie_ld(bl8)
+	ld	[%g7 + %l2], %l2, %tie_add(bl8)
+	nop;nop;nop;nop
+
+	/* IE -> LE against hidden but not local var  */
+	sethi	%tie_hi22(sh6), %o3
+	add	%o3, %tie_lo10(sh6), %o5
+	ld	[%l4 + %o5], %l2, %tie_ld(sh6)
+	add	%g7, %l2, %l2, %tie_add(sh6)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE -> LE against hidden but not local var  */
+	sethi	%tie_hi22(bl8), %o3
+	add	%o3, %tie_lo10(bl8), %o5
+	ld	[%l4 + %o5], %l2, %tie_ld(bl8)
+	stb	%l1, [%g7 + %l2], %tie_add(bl8)
+	nop;nop;nop;nop
+
+	/* LE, global var defined in exec  */
+	sethi	%tle_hix22(sg2), %l1
+	nop
+	xor	%l1, %tle_lox10(sg2), %l2
+	nop
+	add	%g7, %l2, %l3
+	nop;nop;nop;nop
+
+	/* LE, local var  */
+	sethi	%tle_hix22(bl2+2), %o0
+	xor	%o0, %tle_lox10(bl2+2), %o0
+	add	%g7, %o0, %o0
+	nop;nop;nop;nop
+
+	/* LE, hidden var defined in exec */
+	sethi	%tle_hix22(sh2+1), %l1
+	xor	%l1, %tle_lox10(sh2+1), %o5
+	add	%g7, %o5, %o1
+	nop;nop;nop;nop
+
+	/* Direct %g7 access  */
+
+	/* LE, global var defined in exec  */
+	sethi	%tle_hix22(sg3), %l1
+	xor	%l1, %tle_lox10(sg3), %o5
+	ld	[%g7 + %o5], %o1
+	nop;nop;nop;nop
+
+	/* LE, local var  */
+	sethi	%tle_hix22(bl3 + 3), %o0
+	xor	%o0, %tle_lox10(bl3 + 3), %o0
+	stb	%o1, [%g7 + %o0]
+	nop;nop;nop;nop
+
+	/* LE, hidden var defined in exec  */
+	sethi	%tle_hix22(sh3 + 3), %o2
+	xor	%o2, %tle_lox10(sh3 + 3), %o4
+	ldstub	[%g7 + %o4], %o5
+	nop;nop;nop;nop
+
+	ret
+	restore
--- ld/testsuite/ld-sparc/tlssunbin32.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin32.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,11 @@
+#source: tlssunbin32.s
+#as: --32
+#ld: -shared -melf32_sparc tmpdir/libtlslib32.so tmpdir/tlssunbinbin32.o
+#objdump: -sj.got
+#target: sparc*-*-*
+
+.*: +file format elf32-sparc
+
+Contents of section .got:
+ 250e0 00025060 0+ 0+ 0+  .*
+ 250f0 0+  .*
--- ld/testsuite/ld-sparc/tlssunbin32.td.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin32.td	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,19 @@
+#source: tlssunbin32.s
+#as: --32
+#ld: -shared -melf32_sparc tmpdir/libtlslib32.so tmpdir/tlssunbinpic32.o
+#objdump: -sj.tdata
+#target: sparc*-*-*
+
+.*: +file format elf32-sparc
+
+Contents of section .tdata:
+ 24000 00000011 00000000 00000000 00000000  .*
+ 24010 00000000 00000000 00000000 00000000  .*
+#...
+ 24ff0 00000000 00000000 00000000 00000000  .*
+ 25000 00000000 00000012 00000013 00000014  .*
+ 25010 00000015 00000016 00000017 00000018  .*
+ 25020 00000041 00000042 00000043 00000044  .*
+ 25030 00000045 00000046 00000047 00000048  .*
+ 25040 00000101 00000102 00000103 00000104  .*
+ 25050 00000105 00000106 00000107 00000108  .*
--- ld/testsuite/ld-sparc/tlssunbin64.dd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin64.dd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,11 @@
+#source: tlssunbin64.s
+#as: --64
+#ld: -shared -melf64_sparc tmpdir/libtlslib64.so tmpdir/tlssunbinpic64.o
+#objdump: -drj.text
+#target: sparc*-*-*
+
+.*: +file format elf64-sparc
+
+Disassembly of section .text:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunbin64.rd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin64.rd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,8 @@
+#source: tlssunbin64.s
+#as: --64
+#ld: -shared -melf64_sparc tmpdir/libtlslib64.so tmpdir/tlssunbinpic64.o
+#readelf: -WSsrl
+#target: sparc*-*-*
+
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunbin64.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin64.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,118 @@
+	.section ".tbss"
+	.align	4
+	.globl bg1, bg2, bg3, bg4, bg5, bg6, bg7, bg8
+bg1:	.word 0
+bg2:	.word 0
+bg3:	.word 0
+bg4:	.word 0
+bg5:	.word 0
+bg6:	.word 0
+bg7:	.word 0
+bg8:	.word 0
+bl1:	.word 0
+bl2:	.word 0
+bl3:	.word 0
+bl4:	.word 0
+bl5:	.word 0
+bl6:	.word 0
+bl7:	.word 0
+bl8:	.word 0
+	.text
+	.globl	_start
+	.type	_start,#function
+	.proc	04
+_start:
+	save	%sp, -160, %sp
+	.hidden	_GLOBAL_OFFSET_TABLE_
+	sethi	%hh(_GLOBAL_OFFSET_TABLE_), %l1
+	sethi	%lm(_GLOBAL_OFFSET_TABLE_), %l2
+	or	%l1, %hm(_GLOBAL_OFFSET_TABLE_), %l1
+	or	%l2, %lo(_GLOBAL_OFFSET_TABLE_), %l2
+	sllx	%l1, 32, %l1
+	add	%l1, %l2, %l4
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sG6), %o3
+	add	%o3, %tie_lo10(sG6), %o3
+	ldx	[%l4 + %o3], %o2, %tie_ldx(sG6)
+	add	%g7, %o2, %o4, %tie_add(sG6)
+	nop;nop;nop;nop
+
+	/* IE -> LE against global var defined in exec  */
+	sethi	%tie_hi22(bg6), %o3
+	add	%o3, %tie_lo10(bg6), %o5
+	ldx	[%l4 + %o5], %o2, %tie_ldx(bg6)
+	add	%g7, %o2, %o4, %tie_add(bg6)
+	nop;nop;nop;nop
+
+	/* IE -> LE against local var  */
+	sethi	%tie_hi22(bl6), %o3
+	add	%o3, %tie_lo10(bl6), %o5
+	ldx	[%l4 + %o5], %l2, %tie_ldx(bl6)
+	add	%g7, %l2, %l2, %tie_add(bl6)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE -> LE against local var  */
+	sethi	%tie_hi22(bl8), %o3
+	add	%o3, %tie_lo10(bl8), %o5
+	ldx	[%l4 + %o5], %l2, %tie_ldx(bl8)
+	ldsw [%g7 + %l2], %l2, %tie_add(bl8)
+	nop;nop;nop;nop
+
+	/* IE -> LE against hidden but not local var  */
+	sethi	%tie_hi22(sh6), %o3
+	add	%o3, %tie_lo10(sh6), %o5
+	ldx	[%l4 + %o5], %l2, %tie_ldx(sh6)
+	add	%g7, %l2, %l2, %tie_add(sh6)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE -> LE against hidden but not local var  */
+	sethi	%tie_hi22(bl8), %o3
+	add	%o3, %tie_lo10(bl8), %o5
+	ldx	[%l4 + %o5], %l2, %tie_ldx(bl8)
+	stb	%l1, [%g7 + %l2], %tie_add(bl8)
+	nop;nop;nop;nop
+
+	/* LE, global var defined in exec  */
+	sethi	%tle_hix22(sg2), %l1
+	nop
+	xor	%l1, %tle_lox10(sg2), %l2
+	nop
+	add	%g7, %l2, %l3
+	nop;nop;nop;nop
+
+	/* LE, local var  */
+	sethi	%tle_hix22(bl2+2), %o0
+	xor	%o0, %tle_lox10(bl2+2), %o0
+	add	%g7, %o0, %o0
+	nop;nop;nop;nop
+
+	/* LE, hidden var defined in exec */
+	sethi	%tle_hix22(sh2+1), %l1
+	xor	%l1, %tle_lox10(sh2+1), %o5
+	add	%g7, %o5, %o1
+	nop;nop;nop;nop
+
+	/* Direct %g7 access  */
+
+	/* LE, global var defined in exec  */
+	sethi	%tle_hix22(sg3), %l1
+	xor	%l1, %tle_lox10(sg3), %o5
+	ldx	[%g7 + %o5], %o1
+	nop;nop;nop;nop
+
+	/* LE, local var  */
+	sethi	%tle_hix22(bl3 + 3), %o0
+	xor	%o0, %tle_lox10(bl3 + 3), %o0
+	stb	%o1, [%g7 + %o0]
+	nop;nop;nop;nop
+
+	/* LE, hidden var defined in exec  */
+	sethi	%tle_hix22(sh3 + 3), %o2
+	xor	%o2, %tle_lox10(sh3 + 3), %o4
+	ldstub	[%g7 + %o4], %o5
+	nop;nop;nop;nop
+
+	ret
+	restore
--- ld/testsuite/ld-sparc/tlssunbin64.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin64.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,11 @@
+#source: tlssunbin64.s
+#as: --64
+#ld: -shared -melf64_sparc tmpdir/libtlslib64.so tmpdir/tlssunbinpic64.o
+#objdump: -sj.got
+#target: sparc*-*-*
+
+.*: +file format elf64-sparc
+
+Contents of section .got:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunbin64.td.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbin64.td	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,11 @@
+#source: tlssunbin64.s
+#as: --64
+#ld: -shared -melf64_sparc tmpdir/libtlslib64.so tmpdir/tlssunbinpic64.o
+#objdump: -sj.tdata
+#target: sparc*-*-*
+
+.*: +file format elf64-sparc
+
+Contents of section .tdata:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunbinpic32.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbinpic32.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,183 @@
+	.data
+	.align	4096
+	.section ".tdata", #alloc, #write, #tls
+	.align	4
+	.globl sg1, sg2, sg3, sg4, sg5, sg6, sg7, sg8
+	.globl sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+	.hidden sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+sg1:	.word 17
+	.skip	4096
+sg2:	.word 18
+sg3:	.word 19
+sg4:	.word 20
+sg5:	.word 21
+sg6:	.word 22
+sg7:	.word 23
+sg8:	.word 24
+sl1:	.word 65
+sl2:	.word 66
+sl3:	.word 67
+sl4:	.word 68
+sl5:	.word 69
+sl6:	.word 70
+sl7:	.word 71
+sl8:	.word 72
+sh1:	.word 257
+sh2:	.word 258
+sh3:	.word 259
+sh4:	.word 260
+sh5:	.word 261
+sh6:	.word 262
+sh7:	.word 263
+sh8:	.word 264
+	.text
+	.align	4096
+.LLGETPC0:
+        retl
+        add     %o7, %l7, %l7
+
+	.globl	fn2
+	.type	fn2,#function
+	.proc	04
+fn2:
+	save	%sp, -104, %sp
+	sethi	%hi(_GLOBAL_OFFSET_TABLE_-4), %l7
+	call	.LLGETPC0
+	add	%l7, %lo(_GLOBAL_OFFSET_TABLE_+4), %l7
+	nop;nop;nop;nop
+
+	/* GD -> IE because variable is not defined in executable */
+	sethi	%tgd_hi22(sG1), %l1
+	nop
+	add	%l1, %tgd_lo10(sG1), %l2
+	nop
+	add	%l7, %l2, %o0, %tgd_add(sG1)
+	nop
+	call	__tls_get_addr, %tgd_call(sG1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE because variable is not defined in executable where
+	   the variable is referenced through IE too */
+	sethi	%tgd_hi22(sG2), %o0
+	add	%o0, %tgd_lo10(sG2), %o1
+	add	%l7, %o1, %o0, %tgd_add(sG2)
+	call	__tls_get_addr, %tgd_call(sG2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> LE with global variable defined in executable */
+	sethi	%tgd_hi22(sg1), %l0
+	add	%l0, %tgd_lo10(sg1), %l5
+	add	%l7, %l5, %o0, %tgd_add(sg1)
+	call	__tls_get_addr, %tgd_call(sg1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> LE with local variable defined in executable */
+	sethi	%tgd_hi22(sl1), %o0
+	add	%o0, %tgd_lo10(sl1), %o1
+	add	%l7, %o1, %o0, %tgd_add(sl1)
+	call	__tls_get_addr, %tgd_call(sl1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> LE with hidden variable defined in executable */
+	sethi	%tgd_hi22(sh1), %o0
+	add	%o0, %tgd_lo10(sh1), %o1
+	add	%l7, %o1, %o0, %tgd_add(sh1)
+	call	__tls_get_addr, %tgd_call(sh1)
+	nop
+	nop;nop;nop;nop
+
+	/* LD -> LE */
+	sethi	%tldm_hi22(sl1), %l1
+	nop
+	add	%l1, %tldm_lo10(sl1), %l2
+	nop
+	add	%l7, %l2, %o0, %tldm_add(sl1)
+	nop
+	call	__tls_get_addr, %tldm_call(sl1)
+	nop
+	sethi	%tldo_hix22(sl1), %l3
+	nop
+	xor	%l3, %tldo_lox10(sl1), %l4
+	nop
+	add	%o0, %l4, %l5, %tldo_add(sl1)
+	nop
+	sethi	%tldo_hix22(sl2 + 2), %l2
+	nop
+	xor	%l2, %tldo_lox10(sl2 + 2), %l3
+	nop
+	lduh	[%o0 + %l3], %l6, %tldo_add(sl2 + 2)
+	nop;nop;nop;nop
+
+	/* LD -> LE against hidden variables */
+	sethi	%tldm_hi22(sh1), %o1
+	sethi	%tldo_hix22(sh1), %l3
+	add	%o1, %tldm_lo10(sh1), %o2
+	sethi	%tldo_hix22(sh2 + 1), %l2
+	add	%l7, %o2, %o0, %tldm_add(sh1)
+	xor	%l3, %tldo_lox10(sh1), %l4
+	call	__tls_get_addr, %tldm_call(sh1)
+	xor	%l2, %tldo_lox10(sh2 + 1), %l3
+	add	%o0, %l4, %l5, %tldo_add(sh1)
+	ldub	[%o0 + %l3], %l6, %tldo_add(sh2 + 1)
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sG2), %l1
+	nop
+	add	%l1, %tie_lo10(sG2), %l2
+	nop
+	ld	[%l7 + %l2], %l2, %tie_ld(sG2)
+	nop
+	add	%g7, %l2, %l2, %tie_add(sG2)
+	nop;nop;nop;nop
+
+	/* IE -> LE against global var defined in exec */
+	sethi	%tie_hi22(sg1), %o3
+	add	%o3, %tie_lo10(sg1), %o3
+	ld	[%l7 + %o3], %o3, %tie_ld(sg1)
+	add	%g7, %o3, %o4, %tie_add(sg1)
+	nop;nop;nop;nop
+
+	/* IE -> LE against local var */
+	sethi	%tie_hi22(sl1), %l4
+	add	%l4, %tie_lo10(sl1), %l1
+	ld	[%l7 + %l1], %l3, %tie_ld(sl1)
+	add	%g7, %l3, %l3, %tie_add(sl1)
+	nop;nop;nop;nop
+
+	/* IE -> LE against hidden var */
+	sethi	%tie_hi22(sh1), %o1
+	add	%o1, %tie_lo10(sh1), %o3
+	ld	[%l7 + %o3], %o0, %tie_ld(sh1)
+	add	%g7, %o0, %o3, %tie_add(sh1)
+	nop;nop;nop;nop
+
+	/* Direct access through %g7  */
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sG5), %o3
+	add	%o3, %tie_lo10(sG5), %o3
+	ld	[%l7 + %o3], %o2, %tie_ld(sG5)
+	ld	[%g7 + %o2], %o4, %tie_add(sG5)
+	nop;nop;nop;nop
+
+	/* IE->LE against local var  */
+	sethi	%tie_hi22(sl5), %o3
+	add	%o3, %tie_lo10(sl5), %o3
+	ld	[%l7 + %o3], %o2, %tie_ld(sl5)
+	stb	%o4, [%g7 + %o2], %tie_add(sl5)
+	nop;nop;nop;nop
+
+	/* IE->LE against hidden var  */
+	sethi	%tie_hi22(sh5), %o5
+	add	%o5, %tie_lo10(sh5), %o3
+	ld	[%l7 + %o3], %o2, %tie_ld(sh5)
+	ldsb	[%g7 + %o2], %o4, %tie_add(sh5)
+	nop;nop;nop;nop
+
+	ret
+	restore
--- ld/testsuite/ld-sparc/tlssunbinpic64.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunbinpic64.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,182 @@
+	.data
+	.align	4096
+	.section ".tdata", #alloc, #write, #tls
+	.align	4
+	.globl sg1, sg2, sg3, sg4, sg5, sg6, sg7, sg8
+	.globl sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+	.hidden sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+sg1:	.word 17
+sg2:	.word 18
+sg3:	.word 19
+sg4:	.word 20
+sg5:	.word 21
+sg6:	.word 22
+sg7:	.word 23
+sg8:	.word 24
+sl1:	.word 65
+sl2:	.word 66
+sl3:	.word 67
+sl4:	.word 68
+sl5:	.word 69
+sl6:	.word 70
+sl7:	.word 71
+sl8:	.word 72
+sh1:	.word 257
+sh2:	.word 258
+sh3:	.word 259
+sh4:	.word 260
+sh5:	.word 261
+sh6:	.word 262
+sh7:	.word 263
+sh8:	.word 264
+	.text
+	.align	4096
+.LLGETPC0:
+        retl
+        add     %o7, %l7, %l7
+
+	.globl	fn2
+	.type	fn2,#function
+	.proc	04
+fn2:
+	save	%sp, -160, %sp
+	sethi	%hi(_GLOBAL_OFFSET_TABLE_-4), %l7
+	call	.LLGETPC0
+	add	%l7, %lo(_GLOBAL_OFFSET_TABLE_+4), %l7
+	nop;nop;nop;nop
+
+	/* GD -> IE because variable is not defined in executable */
+	sethi	%tgd_hi22(sG1), %l1
+	nop
+	add	%l1, %tgd_lo10(sG1), %l2
+	nop
+	add	%l7, %l2, %o0, %tgd_add(sG1)
+	nop
+	call	__tls_get_addr, %tgd_call(sG1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE because variable is not defined in executable where
+	   the variable is referenced through IE too */
+	sethi	%tgd_hi22(sG2), %o0
+	add	%o0, %tgd_lo10(sG2), %o1
+	add	%l7, %o1, %o0, %tgd_add(sG2)
+	call	__tls_get_addr, %tgd_call(sG2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> LE with global variable defined in executable */
+	sethi	%tgd_hi22(sg1), %l0
+	add	%l0, %tgd_lo10(sg1), %l5
+	add	%l7, %l5, %o0, %tgd_add(sg1)
+	call	__tls_get_addr, %tgd_call(sg1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> LE with local variable defined in executable */
+	sethi	%tgd_hi22(sl1), %o0
+	add	%o0, %tgd_lo10(sl1), %o1
+	add	%l7, %o1, %o0, %tgd_add(sl1)
+	call	__tls_get_addr, %tgd_call(sl1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> LE with hidden variable defined in executable */
+	sethi	%tgd_hi22(sh1), %o0
+	add	%o0, %tgd_lo10(sh1), %o1
+	add	%l7, %o1, %o0, %tgd_add(sh1)
+	call	__tls_get_addr, %tgd_call(sh1)
+	nop
+	nop;nop;nop;nop
+
+	/* LD -> LE */
+	sethi	%tldm_hi22(sl1), %l1
+	nop
+	add	%l1, %tldm_lo10(sl1), %l2
+	nop
+	add	%l7, %l2, %o0, %tldm_add(sl1)
+	nop
+	call	__tls_get_addr, %tldm_call(sl1)
+	nop
+	sethi	%tldo_hix22(sl1), %l3
+	nop
+	xor	%l3, %tldo_lox10(sl1), %l4
+	nop
+	add	%o0, %l4, %l5, %tldo_add(sl1)
+	nop
+	sethi	%tldo_hix22(sl2 + 2), %l2
+	nop
+	xor	%l2, %tldo_lox10(sl2 + 2), %l3
+	nop
+	lduh	[%o0 + %l3], %l6, %tldo_add(sl2 + 2)
+	nop;nop;nop;nop
+
+	/* LD -> LE against hidden variables */
+	sethi	%tldm_hi22(sh1), %o1
+	sethi	%tldo_hix22(sh1), %l3
+	add	%o1, %tldm_lo10(sh1), %o2
+	sethi	%tldo_hix22(sh2 + 1), %l2
+	add	%l7, %o2, %o0, %tldm_add(sh1)
+	xor	%l3, %tldo_lox10(sh1), %l4
+	call	__tls_get_addr, %tldm_call(sh1)
+	xor	%l2, %tldo_lox10(sh2 + 1), %l3
+	add	%o0, %l4, %l5, %tldo_add(sh1)
+	ldub	[%o0 + %l3], %l6, %tldo_add(sh2 + 1)
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sG2), %l1
+	nop
+	add	%l1, %tie_lo10(sG2), %l2
+	nop
+	ldx	[%l7 + %l2], %l2, %tie_ldx(sG2)
+	nop
+	add	%g7, %l2, %l2, %tie_add(sG2)
+	nop;nop;nop;nop
+
+	/* IE -> LE against global var defined in exec */
+	sethi	%tie_hi22(sg1), %o3
+	add	%o3, %tie_lo10(sg1), %o3
+	ldx	[%l7 + %o3], %o2, %tie_ldx(sg1)
+	add	%g7, %o2, %o4, %tie_add(sg1)
+	nop;nop;nop;nop
+
+	/* IE -> LE against local var */
+	sethi	%tie_hi22(sl1), %l4
+	add	%l4, %tie_lo10(sl1), %l1
+	ldx	[%l7 + %l1], %l3, %tie_ldx(sl1)
+	add	%g7, %l3, %l3, %tie_add(sl1)
+	nop;nop;nop;nop
+
+	/* IE -> LE against hidden var */
+	sethi	%tie_hi22(sh1), %o1
+	add	%o1, %tie_lo10(sh1), %o3
+	ldx	[%l7 + %o3], %o0, %tie_ldx(sh1)
+	add	%g7, %o0, %o3, %tie_add(sh1)
+	nop;nop;nop;nop
+
+	/* Direct access through %g7  */
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sG5), %o3
+	add	%o3, %tie_lo10(sG5), %o3
+	ldx	[%l7 + %o3], %o2, %tie_ldx(sG5)
+	ldx	[%g7 + %o2], %o4, %tie_add(sG5)
+	nop;nop;nop;nop
+
+	/* IE->LE against local var  */
+	sethi	%tie_hi22(sl5), %o3
+	add	%o3, %tie_lo10(sl5), %o3
+	ldx	[%l7 + %o3], %o2, %tie_ldx(sl5)
+	stb	%o4, [%g7 + %o2], %tie_add(sl5)
+	nop;nop;nop;nop
+
+	/* IE->LE against hidden var  */
+	sethi	%tie_hi22(sh5), %o5
+	add	%o5, %tie_lo10(sh5), %o3
+	ldx	[%l7 + %o3], %o2, %tie_ldx(sh5)
+	ldsb	[%g7 + %o2], %o4, %tie_add(sh5)
+	nop;nop;nop;nop
+
+	return	%i7 + 8
+	nop
--- ld/testsuite/ld-sparc/tlssunnopic32.dd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic32.dd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,84 @@
+#source: tlssunnopic32.s
+#source: tlsnopic.s
+#as: --32
+#ld: -shared -melf32_sparc
+#objdump: -drj.text
+#target: isparc-*-*
+
+.*: +file format elf32-sparc
+
+Disassembly of section .text:
+
+00001000 <fn3>:
+ +1000:	9d e3 bf 98 	save  %sp, -104, %sp
+ +1004:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +1008:	a2 14 60 00 	mov  %l1, %l1	! 0 <.*>
+ +100c:	01 00 00 00 	nop *
+ +1010:	01 00 00 00 	nop *
+ +1014:	01 00 00 00 	nop *
+ +1018:	01 00 00 00 	nop *
+ +101c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +1020:	96 02 e0 0c 	add  %o3, 0xc, %o3	! c <.*>
+ +1024:	d4 04 40 0b 	ld  \[ %l1 \+ %o3 \], %o2
+ +1028:	98 01 c0 0a 	add  %g7, %o2, %o4
+ +102c:	01 00 00 00 	nop *
+ +1030:	01 00 00 00 	nop *
+ +1034:	01 00 00 00 	nop *
+ +1038:	01 00 00 00 	nop *
+ +103c:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +1040:	90 02 20 10 	add  %o0, 0x10, %o0	! 10 <.*>
+ +1044:	d0 04 40 08 	ld  \[ %l1 \+ %o0 \], %o0
+ +1048:	d0 01 c0 08 	ld  \[ %g7 \+ %o0 \], %o0
+ +104c:	01 00 00 00 	nop *
+ +1050:	01 00 00 00 	nop *
+ +1054:	01 00 00 00 	nop *
+ +1058:	01 00 00 00 	nop *
+ +105c:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +1060:	90 02 20 14 	add  %o0, 0x14, %o0	! 14 <.*>
+ +1064:	d0 04 40 08 	ld  \[ %l1 \+ %o0 \], %o0
+ +1068:	90 01 c0 08 	add  %g7, %o0, %o0
+ +106c:	01 00 00 00 	nop *
+ +1070:	01 00 00 00 	nop *
+ +1074:	01 00 00 00 	nop *
+ +1078:	01 00 00 00 	nop *
+ +107c:	1b 00 00 00 	sethi  %hi\(0\), %o5
+ +1080:	92 03 60 18 	add  %o5, 0x18, %o1	! 18 <.*>
+ +1084:	d4 04 40 09 	ld  \[ %l1 \+ %o1 \], %o2
+ +1088:	d6 29 c0 0a 	stb  %o3, \[ %g7 \+ %o2 \]
+ +108c:	01 00 00 00 	nop *
+ +1090:	01 00 00 00 	nop *
+ +1094:	01 00 00 00 	nop *
+ +1098:	01 00 00 00 	nop *
+ +109c:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +10a0:	90 02 20 04 	add  %o0, 4, %o0	! 4 <.*>
+ +10a4:	d0 04 40 08 	ld  \[ %l1 \+ %o0 \], %o0
+ +10a8:	90 01 c0 08 	add  %g7, %o0, %o0
+ +10ac:	01 00 00 00 	nop *
+ +10b0:	01 00 00 00 	nop *
+ +10b4:	01 00 00 00 	nop *
+ +10b8:	01 00 00 00 	nop *
+ +10bc:	1b 00 00 00 	sethi  %hi\(0\), %o5
+ +10c0:	92 03 60 08 	add  %o5, 8, %o1	! 8 <.*>
+ +10c4:	d4 04 40 09 	ld  \[ %l1 \+ %o1 \], %o2
+ +10c8:	d6 29 c0 0a 	stb  %o3, \[ %g7 \+ %o2 \]
+ +10cc:	01 00 00 00 	nop *
+ +10d0:	01 00 00 00 	nop *
+ +10d4:	01 00 00 00 	nop *
+ +10d8:	01 00 00 00 	nop *
+ +10dc:	15 00 00 00 	sethi  %hi\(0\), %o2
+ +10e0:	98 1a a0 00 	xor  %o2, 0, %o4
+ +10e4:	90 01 c0 0c 	add  %g7, %o4, %o0
+ +10e8:	01 00 00 00 	nop *
+ +10ec:	01 00 00 00 	nop *
+ +10f0:	01 00 00 00 	nop *
+ +10f4:	01 00 00 00 	nop *
+ +10f8:	15 00 00 00 	sethi  %hi\(0\), %o2
+ +10fc:	94 1a a0 00 	xor  %o2, 0, %o2
+ +1100:	d4 01 c0 0a 	ld  \[ %g7 \+ %o2 \], %o2
+ +1104:	01 00 00 00 	nop *
+ +1108:	01 00 00 00 	nop *
+ +110c:	01 00 00 00 	nop *
+ +1110:	01 00 00 00 	nop *
+ +1114:	81 c7 e0 08 	ret *
+ +1118:	81 e8 00 00 	restore *
+#pass
--- ld/testsuite/ld-sparc/tlssunnopic32.rd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic32.rd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,112 @@
+#source: tlssunnopic32.s
+#source: tlsnopic.s
+#as: --32
+#ld: -shared -melf32_sparc
+#readelf: -WSsrl
+#target: sparc-*-*
+
+There are 15 section headers, starting at offset 0x[0-9a-f]+:
+
+Section Headers:
+ +\[Nr\] Name +Type +Addr +Off +Size +ES Flg Lk Inf Al
+ +\[ 0\] +NULL +0+ 0+ 0+ 0+ +0 +0 +0
+ +\[ 1\] .hash +.*
+ +\[ 2\] .dynsym +.*
+ +\[ 3\] .dynstr +.*
+ +\[ 4\] .rela.dyn +.*
+ +\[ 5\] .text +PROGBITS +0+1000 0+1000 0+1000 0+ +AX +0 +0 4096
+ +\[ 6\] .data +PROGBITS +0+12000 0+2000 0+ 0+ +WA +0 +0 4096
+ +\[ 7\] .tbss +NOBITS +0+12000 0+2000 0+24 0+ WAT +0 +0 +4
+ +\[ 8\] .dynamic +DYNAMIC +0+12000 0+2000 0+80 08 +WA +3 +0 +4
+ +\[ 9\] .plt +.*
+ +\[10\] .got +PROGBITS +0+12080 0+2080 0+1c 04 +WA +0 +0 +4
+ +\[11\] .bss +.*
+ +\[12\] .shstrtab +.*
+ +\[13\] .symtab +.*
+ +\[14\] .strtab +.*
+#...
+Elf file type is DYN \(Shared object file\)
+Entry point 0x1000
+There are 4 program headers, starting at offset [0-9a-f]+
+
+Program Headers:
+ +Type +Offset +VirtAddr +PhysAddr +FileSiz MemSiz +Flg Align
+ +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x10000
+ +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+9c 0x0+a0 RWE 0x10000
+ +DYNAMIC +0x0+2000 0x0+12000 0x0+12000 0x0+80 0x0+80 RW +0x4
+ +TLS +0x0+2000 0x0+12000 0x0+12000 0x0+ 0x0+24 R +0x4
+#...
+
+Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 12 entries:
+ Offset +Info +Type +Sym. Value +Symbol's Name \+ Addend
+0+1004 +0+a09 R_SPARC_HI22 +0+12080 +\.got \+ 12080
+0+1008 +0+a0c R_SPARC_LO10 +0+12080 +\.got \+ 12080
+0+10dc +0+48 R_SPARC_TLS_LE_HIX22 +0+9
+0+10e0 +0+49 R_SPARC_TLS_LE_LOX10 +0+9
+0+10f8 +0+48 R_SPARC_TLS_LE_HIX22 +0+1c
+0+10fc +0+49 R_SPARC_TLS_LE_LOX10 +0+1c
+0+12084 +0+4e R_SPARC_TLS_TPOFF32 +0+
+0+12088 +0+4e R_SPARC_TLS_TPOFF32 +0+4
+0+12094 +0+4e R_SPARC_TLS_TPOFF32 +0+14
+0+12098 +0+4e R_SPARC_TLS_TPOFF32 +0+18
+0+1208c +0+f4e R_SPARC_TLS_TPOFF32 +0+ +sg1 \+ 0
+0+12090 +0+114e R_SPARC_TLS_TPOFF32 +0+ +sg2 \+ 0
+
+Symbol table '.dynsym' contains 20 entries:
+ +Num: +Value +Size Type +Bind +Vis +Ndx Name
+ +0: 0+ +0 NOTYPE +LOCAL +DEFAULT +UND *
+ +1: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +1 *
+ +2: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +2 *
+ +3: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +3 *
+ +4: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +4 *
+ +5: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +5 *
+ +6: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +6 *
+ +7: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +7 *
+ +8: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +8 *
+ +9: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +9 *
+ +10: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +10 *
+ +11: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +11 *
+ +12: 0+12000 +0 OBJECT +GLOBAL DEFAULT +ABS _DYNAMIC
+ +13: 0+1000 +0 FUNC +GLOBAL DEFAULT +5 fn3
+ +14: 0+12080 +0 OBJECT +GLOBAL DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
+ +15: 0+ +0 NOTYPE +GLOBAL DEFAULT +UND sg1
+ +16: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS __bss_start
+ +17: 0+ +0 NOTYPE +GLOBAL DEFAULT +UND sg2
+ +18: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _edata
+ +19: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _end
+
+Symbol table '.symtab' contains 33 entries:
+ +Num: +Value +Size Type +Bind +Vis +Ndx Name
+ +0: 0+ +0 NOTYPE +LOCAL +DEFAULT +UND *
+ +1: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +1 *
+ +2: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +2 *
+ +3: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +3 *
+ +4: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +4 *
+ +5: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +5 *
+ +6: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +6 *
+ +7: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +7 *
+ +8: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +8 *
+ +9: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +9 *
+ +10: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +10 *
+ +11: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +11 *
+ +12: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +12 *
+ +13: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +13 *
+ +14: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +14 *
+ +15: 0+ +0 TLS +LOCAL +DEFAULT +7 bl1
+ +16: 0+4 +0 TLS +LOCAL +DEFAULT +7 bl2
+ +17: 0+8 +0 TLS +LOCAL +DEFAULT +7 bl3
+ +18: 0+c +0 TLS +LOCAL +DEFAULT +7 bl4
+ +19: 0+10 +0 TLS +LOCAL +DEFAULT +7 bl5
+ +20: 0+1c +0 TLS +LOCAL +HIDDEN +7 sh3
+ +21: 0+20 +0 TLS +LOCAL +HIDDEN +7 sh4
+ +22: 0+14 +0 TLS +LOCAL +HIDDEN +7 sh1
+ +23: 0+12080 +0 OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_
+ +24: 0+18 +0 TLS +LOCAL +HIDDEN +7 sh2
+ +25: 0+12000 +0 OBJECT +GLOBAL DEFAULT +ABS _DYNAMIC
+ +26: 0+1000 +0 FUNC +GLOBAL DEFAULT +5 fn3
+ +27: 0+12080 +0 OBJECT +GLOBAL DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
+ +28: 0+ +0 NOTYPE +GLOBAL DEFAULT +UND sg1
+ +29: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS __bss_start
+ +30: 0+ +0 NOTYPE +GLOBAL DEFAULT +UND sg2
+ +31: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _edata
+ +32: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _end
--- ld/testsuite/ld-sparc/tlssunnopic32.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic32.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,77 @@
+	.data
+	.align	4096
+	.section ".tbss"
+	.align	4
+bl1:	.word 0
+bl2:	.word 0
+bl3:	.word 0
+bl4:	.word 0
+bl5:	.word 0
+	.text
+	.align	4096
+	.globl	fn3
+	.type	fn3,#function
+	.proc	04
+fn3:
+	save	%sp, -104, %sp
+	.hidden	_GLOBAL_OFFSET_TABLE_
+	sethi	%hi(_GLOBAL_OFFSET_TABLE_), %l1
+	or	%l1, %lo(_GLOBAL_OFFSET_TABLE_), %l1
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sg1), %o3
+	add	%o3, %tie_lo10(sg1), %o3
+	ld	[%l1 + %o3], %o2, %tie_ld(sg1)
+	add	%g7, %o2, %o4, %tie_add(sg1)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE against global var  */
+	sethi	%tie_hi22(sg2), %o0
+	add	%o0, %tie_lo10(sg2), %o0
+	ld	[%l1 + %o0], %o0, %tie_ld(sg2)
+	ld	[%g7 + %o0], %o0, %tie_add(sg2)
+	nop;nop;nop;nop
+
+	/* IE against hidden var */
+	sethi	%tie_hi22(sh1), %o0
+	add	%o0, %tie_lo10(sh1), %o0
+	ld	[%l1 + %o0], %o0, %tie_ld(sh1)
+	add	%g7, %o0, %o0, %tie_add(sh1)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE against hidden var */
+	sethi	%tie_hi22(sh2), %o5
+	add	%o5, %tie_lo10(sh2), %o1
+	ld	[%l1 + %o1], %o2, %tie_ld(sh2)
+	stb	%o3, [%g7 + %o2], %tie_add(sh2)
+	nop;nop;nop;nop
+
+	/* IE against local var  */
+	sethi	%tie_hi22(bl1), %o0
+	add	%o0, %tie_lo10(bl1), %o0
+	ld	[%l1 + %o0], %o0, %tie_ld(bl1)
+	add	%g7, %o0, %o0, %tie_add(bl1)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE against local var  */
+	sethi	%tie_hi22(bl2), %o5
+	add	%o5, %tie_lo10(bl2), %o1
+	ld	[%l1 + %o1], %o2, %tie_ld(bl2)
+	stb	%o3, [%g7 + %o2], %tie_add(bl2)
+	nop;nop;nop;nop
+
+	/* LE, local var  */
+	sethi	%tle_hix22(bl3+1), %o2
+	xor     %o2, %tle_lox10(bl3+1), %o4
+	add	%g7, %o4, %o0
+	nop;nop;nop;nop
+
+	/* LE, hidden var, direct %g7 access  */
+	sethi	%tle_hix22(sh3), %o2
+	xor     %o2, %tle_lox10(sh3), %o2
+	ld	[%g7 + %o2], %o2
+	nop;nop;nop;nop
+
+	ret
+	restore
--- ld/testsuite/ld-sparc/tlssunnopic32.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic32.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+#source: tlssunnopic32.s
+#source: tlsnopic.s
+#as: --32
+#ld: -shared -melf32_sparc
+#objdump: -sj.got
+#target: sparc-*-*
+
+.*:     file format elf32-sparc
+
+Contents of section \.got:
+ 12080 0+12000 0+ 0+ 0+  .*
+ 12090 0+ 0+ 0+  .*
--- ld/testsuite/ld-sparc/tlssunnopic64.dd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic64.dd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+#source: tlssunnopic64.s
+#source: tlsnopic.s
+#as: --64 -Av9
+#ld: -shared -melf64_sparc
+#objdump: -drj.text
+#target: isparc-*-*
+
+.*: +file format elf64-sparc
+
+Disassembly of section .text:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunnopic64.rd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic64.rd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,9 @@
+#source: tlssunnopic64.s
+#source: tlsnopic.s
+#as: --64 -Av9
+#ld: -shared -melf64_sparc
+#readelf: -WSsrl
+#target: sparc-*-*
+
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunnopic64.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic64.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,81 @@
+	.data
+	.align	4096
+	.section ".tbss"
+	.align	4
+bl1:	.word 0
+bl2:	.word 0
+bl3:	.word 0
+bl4:	.word 0
+bl5:	.word 0
+	.text
+	.align	4096
+	.globl	fn3
+	.type	fn3,#function
+	.proc	04
+fn3:
+	save	%sp, -160, %sp
+	.hidden	_GLOBAL_OFFSET_TABLE_
+	sethi	%hh(_GLOBAL_OFFSET_TABLE_), %l1
+	sethi	%lm(_GLOBAL_OFFSET_TABLE_), %l2
+	or	%l1, %hm(_GLOBAL_OFFSET_TABLE_), %l1
+	or	%l2, %lo(_GLOBAL_OFFSET_TABLE_), %l2
+	sllx	%l1, 32, %l1
+	add	%l1, %l2, %l1
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sg1), %o3
+	add	%o3, %tie_lo10(sg1), %o3
+	ldx	[%l1 + %o3], %o2, %tie_ldx(sg1)
+	add	%g7, %o2, %o4, %tie_add(sg1)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE against global var  */
+	sethi	%tie_hi22(sg2), %o0
+	add	%o0, %tie_lo10(sg2), %o0
+	ldx	[%l1 + %o0], %o0, %tie_ldx(sg2)
+	lduw [%g7 + %o0], %o0, %tie_add(sg2)
+	nop;nop;nop;nop
+
+	/* IE against hidden var */
+	sethi	%tie_hi22(sh1), %o0
+	add	%o0, %tie_lo10(sh1), %o0
+	ldx	[%l1 + %o0], %o0, %tie_ldx(sh1)
+	add	%g7, %o0, %o0, %tie_add(sh1)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE against hidden var */
+	sethi	%tie_hi22(sh2), %o5
+	add	%o5, %tie_lo10(sh2), %o1
+	ldx	[%l1 + %o1], %o2, %tie_ldx(sh2)
+	stb	%o3, [%g7 + %o2], %tie_add(sh2)
+	nop;nop;nop;nop
+
+	/* IE against local var  */
+	sethi	%tie_hi22(bl1), %o0
+	add	%o0, %tie_lo10(bl1), %o0
+	ldx	[%l1 + %o0], %o0, %tie_ldx(bl1)
+	add	%g7, %o0, %o0, %tie_add(bl1)
+	nop;nop;nop;nop
+
+	/* direct %g7 access IE against local var  */
+	sethi	%tie_hi22(bl2), %o5
+	add	%o5, %tie_lo10(bl2), %o1
+	ldx	[%l1 + %o1], %o2, %tie_ldx(bl2)
+	stb	%o3, [%g7 + %o2], %tie_add(bl2)
+	nop;nop;nop;nop
+
+	/* LE, local var  */
+	sethi	%tle_hix22(bl3+1), %o2
+	xor     %o2, %tle_lox10(bl3+1), %o4
+	add	%g7, %o4, %o0
+	nop;nop;nop;nop
+
+	/* LE, hidden var, direct %g7 access  */
+	sethi	%tle_hix22(sh3), %o2
+	xor     %o2, %tle_lox10(sh3), %o2
+	ld	[%g7 + %o2], %o2
+	nop;nop;nop;nop
+
+	return	%i7 + 8
+	nop
--- ld/testsuite/ld-sparc/tlssunnopic64.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunnopic64.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+#source: tlssunnopic64.s
+#source: tlsnopic.s
+#as: --64 -Av9
+#ld: -shared -melf64_sparc
+#objdump: -sj.got
+#target: sparc-*-*
+
+.*:     file format elf64-sparc
+
+Contents of section \.got:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunpic32.dd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic32.dd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,220 @@
+#source: tlssunpic32.s
+#source: tlspic.s
+#as: --32 -K PIC
+#ld: -shared -melf32_sparc
+#objdump: -drj.text
+#target: sparc*-*-*
+
+.*: +file format elf32-sparc
+
+Disassembly of section .text:
+
+00001000 <fn1-0x8>:
+ +1000:	81 c3 e0 08 	retl *
+ +1004:	ae 03 c0 17 	add  %o7, %l7, %l7
+
+00001008 <fn1>:
+ +1008:	9d e3 bf 98 	save  %sp, -104, %sp
+ +100c:	2f 00 00 44 	sethi  %hi\(0x11000\), %l7
+ +1010:	7f ff ff fc 	call  1000 <.*>
+ +1014:	ae 05 e1 28 	add  %l7, 0x128, %l7	! 11128 <.*>
+ +1018:	01 00 00 00 	nop *
+ +101c:	01 00 00 00 	nop *
+ +1020:	01 00 00 00 	nop *
+ +1024:	01 00 00 00 	nop *
+ +1028:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +102c:	01 00 00 00 	nop *
+ +1030:	a4 04 60 2c 	add  %l1, 0x2c, %l2
+ +1034:	01 00 00 00 	nop *
+ +1038:	90 05 c0 12 	add  %l7, %l2, %o0
+ +103c:	01 00 00 00 	nop *
+ +1040:	40 00 44 3a 	call  12128 <.*>
+ +1044:	01 00 00 00 	nop *
+ +1048:	01 00 00 00 	nop *
+ +104c:	01 00 00 00 	nop *
+ +1050:	01 00 00 00 	nop *
+ +1054:	01 00 00 00 	nop *
+ +1058:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +105c:	92 02 20 3c 	add  %o0, 0x3c, %o1	! 3c <.*>
+ +1060:	d0 05 c0 09 	ld  \[ %l7 \+ %o1 \], %o0
+ +1064:	90 01 c0 08 	add  %g7, %o0, %o0
+ +1068:	01 00 00 00 	nop *
+ +106c:	01 00 00 00 	nop *
+ +1070:	01 00 00 00 	nop *
+ +1074:	01 00 00 00 	nop *
+ +1078:	01 00 00 00 	nop *
+ +107c:	19 00 00 00 	sethi  %hi\(0\), %o4
+ +1080:	98 03 20 04 	add  %o4, 4, %o4	! 4 <.*>
+ +1084:	90 05 c0 0c 	add  %l7, %o4, %o0
+ +1088:	40 00 44 28 	call  12128 <.*>
+ +108c:	01 00 00 00 	nop *
+ +1090:	01 00 00 00 	nop *
+ +1094:	01 00 00 00 	nop *
+ +1098:	01 00 00 00 	nop *
+ +109c:	01 00 00 00 	nop *
+ +10a0:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +10a4:	90 02 20 0c 	add  %o0, 0xc, %o0	! c <.*>
+ +10a8:	d0 05 c0 08 	ld  \[ %l7 \+ %o0 \], %o0
+ +10ac:	90 01 c0 08 	add  %g7, %o0, %o0
+ +10b0:	01 00 00 00 	nop *
+ +10b4:	01 00 00 00 	nop *
+ +10b8:	01 00 00 00 	nop *
+ +10bc:	01 00 00 00 	nop *
+ +10c0:	01 00 00 00 	nop *
+ +10c4:	19 00 00 00 	sethi  %hi\(0\), %o4
+ +10c8:	98 03 20 40 	add  %o4, 0x40, %o4	! 40 <.*>
+ +10cc:	90 05 c0 0c 	add  %l7, %o4, %o0
+ +10d0:	40 00 44 16 	call  12128 <.*>
+ +10d4:	01 00 00 00 	nop *
+ +10d8:	01 00 00 00 	nop *
+ +10dc:	01 00 00 00 	nop *
+ +10e0:	01 00 00 00 	nop *
+ +10e4:	01 00 00 00 	nop *
+ +10e8:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +10ec:	90 02 20 48 	add  %o0, 0x48, %o0	! 48 <.*>
+ +10f0:	d0 05 c0 08 	ld  \[ %l7 \+ %o0 \], %o0
+ +10f4:	90 01 c0 08 	add  %g7, %o0, %o0
+ +10f8:	01 00 00 00 	nop *
+ +10fc:	01 00 00 00 	nop *
+ +1100:	01 00 00 00 	nop *
+ +1104:	01 00 00 00 	nop *
+ +1108:	01 00 00 00 	nop *
+ +110c:	19 00 00 00 	sethi  %hi\(0\), %o4
+ +1110:	98 03 20 1c 	add  %o4, 0x1c, %o4	! 1c <.*>
+ +1114:	90 05 c0 0c 	add  %l7, %o4, %o0
+ +1118:	40 00 44 04 	call  12128 <.*>
+ +111c:	01 00 00 00 	nop *
+ +1120:	01 00 00 00 	nop *
+ +1124:	01 00 00 00 	nop *
+ +1128:	01 00 00 00 	nop *
+ +112c:	01 00 00 00 	nop *
+ +1130:	11 00 00 00 	sethi  %hi\(0\), %o0
+ +1134:	90 02 20 24 	add  %o0, 0x24, %o0	! 24 <.*>
+ +1138:	d0 05 c0 08 	ld  \[ %l7 \+ %o0 \], %o0
+ +113c:	90 01 c0 08 	add  %g7, %o0, %o0
+ +1140:	01 00 00 00 	nop *
+ +1144:	01 00 00 00 	nop *
+ +1148:	01 00 00 00 	nop *
+ +114c:	01 00 00 00 	nop *
+ +1150:	01 00 00 00 	nop *
+ +1154:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +1158:	01 00 00 00 	nop *
+ +115c:	a4 04 60 14 	add  %l1, 0x14, %l2
+ +1160:	01 00 00 00 	nop *
+ +1164:	90 05 c0 12 	add  %l7, %l2, %o0
+ +1168:	01 00 00 00 	nop *
+ +116c:	40 00 43 ef 	call  12128 <.*>
+ +1170:	01 00 00 00 	nop *
+ +1174:	27 3f ff ff 	sethi  %hi\(0xfffffc00\), %l3
+ +1178:	01 00 00 00 	nop *
+ +117c:	a8 1c fc 20 	xor  %l3, -992, %l4
+ +1180:	01 00 00 00 	nop *
+ +1184:	aa 02 00 14 	add  %o0, %l4, %l5
+ +1188:	01 00 00 00 	nop *
+ +118c:	25 3f ff ff 	sethi  %hi\(0xfffffc00\), %l2
+ +1190:	01 00 00 00 	nop *
+ +1194:	a6 1c bc 26 	xor  %l2, -986, %l3
+ +1198:	01 00 00 00 	nop *
+ +119c:	ec 12 00 13 	lduh  \[ %o0 \+ %l3 \], %l6
+ +11a0:	01 00 00 00 	nop *
+ +11a4:	01 00 00 00 	nop *
+ +11a8:	01 00 00 00 	nop *
+ +11ac:	01 00 00 00 	nop *
+ +11b0:	13 00 00 00 	sethi  %hi\(0\), %o1
+ +11b4:	27 3f ff ff 	sethi  %hi\(0xfffffc00\), %l3
+ +11b8:	94 02 60 14 	add  %o1, 0x14, %o2
+ +11bc:	25 3f ff ff 	sethi  %hi\(0xfffffc00\), %l2
+ +11c0:	90 05 c0 0a 	add  %l7, %o2, %o0
+ +11c4:	a8 1c fc 40 	xor  %l3, -960, %l4
+ +11c8:	40 00 43 d8 	call  12128 <.*>
+ +11cc:	a6 1c bc 45 	xor  %l2, -955, %l3
+ +11d0:	aa 02 00 14 	add  %o0, %l4, %l5
+ +11d4:	ec 0a 00 13 	ldub  \[ %o0 \+ %l3 \], %l6
+ +11d8:	01 00 00 00 	nop *
+ +11dc:	01 00 00 00 	nop *
+ +11e0:	01 00 00 00 	nop *
+ +11e4:	01 00 00 00 	nop *
+ +11e8:	13 00 00 00 	sethi  %hi\(0\), %o1
+ +11ec:	27 3f ff ff 	sethi  %hi\(0xfffffc00\), %l3
+ +11f0:	94 02 60 14 	add  %o1, 0x14, %o2
+ +11f4:	25 3f ff ff 	sethi  %hi\(0xfffffc00\), %l2
+ +11f8:	90 05 c0 0a 	add  %l7, %o2, %o0
+ +11fc:	a8 1c fc 63 	xor  %l3, -925, %l4
+ +1200:	40 00 43 ca 	call  12128 <.*>
+ +1204:	a6 1c bc 64 	xor  %l2, -924, %l3
+ +1208:	aa 02 00 14 	add  %o0, %l4, %l5
+ +120c:	ec 02 00 13 	ld  \[ %o0 \+ %l3 \], %l6
+ +1210:	01 00 00 00 	nop *
+ +1214:	01 00 00 00 	nop *
+ +1218:	01 00 00 00 	nop *
+ +121c:	01 00 00 00 	nop *
+ +1220:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +1224:	01 00 00 00 	nop *
+ +1228:	a4 04 60 3c 	add  %l1, 0x3c, %l2
+ +122c:	01 00 00 00 	nop *
+ +1230:	e4 05 c0 12 	ld  \[ %l7 \+ %l2 \], %l2
+ +1234:	01 00 00 00 	nop *
+ +1238:	a4 01 c0 12 	add  %g7, %l2, %l2
+ +123c:	01 00 00 00 	nop *
+ +1240:	01 00 00 00 	nop *
+ +1244:	01 00 00 00 	nop *
+ +1248:	01 00 00 00 	nop *
+ +124c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +1250:	96 02 e0 0c 	add  %o3, 0xc, %o3	! c <.*>
+ +1254:	d4 05 c0 0b 	ld  \[ %l7 \+ %o3 \], %o2
+ +1258:	98 01 c0 0a 	add  %g7, %o2, %o4
+ +125c:	01 00 00 00 	nop *
+ +1260:	01 00 00 00 	nop *
+ +1264:	01 00 00 00 	nop *
+ +1268:	01 00 00 00 	nop *
+ +126c:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +1270:	a4 04 60 48 	add  %l1, 0x48, %l2	! 48 <.*>
+ +1274:	e4 05 c0 12 	ld  \[ %l7 \+ %l2 \], %l2
+ +1278:	a4 01 c0 12 	add  %g7, %l2, %l2
+ +127c:	01 00 00 00 	nop *
+ +1280:	01 00 00 00 	nop *
+ +1284:	01 00 00 00 	nop *
+ +1288:	01 00 00 00 	nop *
+ +128c:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +1290:	a4 04 60 24 	add  %l1, 0x24, %l2	! 24 <.*>
+ +1294:	e4 05 c0 12 	ld  \[ %l7 \+ %l2 \], %l2
+ +1298:	a4 01 c0 12 	add  %g7, %l2, %l2
+ +129c:	01 00 00 00 	nop *
+ +12a0:	01 00 00 00 	nop *
+ +12a4:	01 00 00 00 	nop *
+ +12a8:	01 00 00 00 	nop *
+ +12ac:	23 00 00 00 	sethi  %hi\(0\), %l1
+ +12b0:	a4 04 60 28 	add  %l1, 0x28, %l2	! 28 <.*>
+ +12b4:	e4 05 c0 12 	ld  \[ %l7 \+ %l2 \], %l2
+ +12b8:	e4 01 c0 12 	ld  \[ %g7 \+ %l2 \], %l2
+ +12bc:	01 00 00 00 	nop *
+ +12c0:	01 00 00 00 	nop *
+ +12c4:	01 00 00 00 	nop *
+ +12c8:	01 00 00 00 	nop *
+ +12cc:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +12d0:	98 02 e0 10 	add  %o3, 0x10, %o4	! 10 <.*>
+ +12d4:	da 05 c0 0c 	ld  \[ %l7 \+ %o4 \], %o5
+ +12d8:	e4 29 c0 0d 	stb  %l2, \[ %g7 \+ %o5 \]
+ +12dc:	01 00 00 00 	nop *
+ +12e0:	01 00 00 00 	nop *
+ +12e4:	01 00 00 00 	nop *
+ +12e8:	01 00 00 00 	nop *
+ +12ec:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +12f0:	98 02 e0 34 	add  %o3, 0x34, %o4	! 34 <.*>
+ +12f4:	da 05 c0 0c 	ld  \[ %l7 \+ %o4 \], %o5
+ +12f8:	e4 11 c0 0d 	lduh  \[ %g7 \+ %o5 \], %l2
+ +12fc:	01 00 00 00 	nop *
+ +1300:	01 00 00 00 	nop *
+ +1304:	01 00 00 00 	nop *
+ +1308:	01 00 00 00 	nop *
+ +130c:	17 00 00 00 	sethi  %hi\(0\), %o3
+ +1310:	98 02 e0 38 	add  %o3, 0x38, %o4	! 38 <.*>
+ +1314:	da 05 c0 0c 	ld  \[ %l7 \+ %o4 \], %o5
+ +1318:	e4 21 c0 0d 	st  %l2, \[ %g7 \+ %o5 \]
+ +131c:	01 00 00 00 	nop *
+ +1320:	01 00 00 00 	nop *
+ +1324:	01 00 00 00 	nop *
+ +1328:	01 00 00 00 	nop *
+ +132c:	81 c7 e0 08 	ret *
+ +1330:	81 e8 00 00 	restore *
+#pass
--- ld/testsuite/ld-sparc/tlssunpic32.rd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic32.rd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,155 @@
+#source: tlssunpic32.s
+#source: tlspic.s
+#as: --32 -K PIC
+#ld: -shared -melf32_sparc
+#readelf: -WSsrl
+#target: sparc*-*-*
+
+There are 17 section headers, starting at offset 0x[0-9a-f]+:
+
+Section Headers:
+ +\[Nr\] Name +Type +Addr +Off +Size +ES Flg Lk Inf Al
+ +\[ 0\] +NULL +0+ 0+ 0+ 0+ +0 +0 +0
+ +\[ 1\] .hash +.*
+ +\[ 2\] .dynsym +.*
+ +\[ 3\] .dynstr +.*
+ +\[ 4\] .rela.dyn +.*
+ +\[ 5\] .rela.plt +.*
+ +\[ 6\] .text +PROGBITS +0+1000 0+1000 0+1000 0+ +AX +0 +0 4096
+ +\[ 7\] .data +PROGBITS +0+12000 0+2000 0+ 0+ +WA +0 +0 4096
+ +\[ 8\] .tdata +PROGBITS +0+12000 0+2000 0+60 0+ WAT +0 +0 +4
+ +\[ 9\] .tbss +NOBITS +0+12060 0+2060 0+20 0+ WAT +0 +0 +4
+ +\[10\] .dynamic +DYNAMIC +0+12060 0+2060 0+98 08 +WA +3 +0 +4
+ +\[11\] .plt +.*
+ +\[12\] .got +PROGBITS +0+12138 0+2138 0+4c 04 +WA +0 +0 +4
+ +\[13\] .bss +.*
+ +\[14\] .shstrtab +.*
+ +\[15\] .symtab +.*
+ +\[16\] .strtab +.*
+#...
+
+Elf file type is DYN \(Shared object file\)
+Entry point 0x1000
+There are 4 program headers, starting at offset [0-9]+
+
+Program Headers:
+ +Type +Offset +VirtAddr +PhysAddr +FileSiz MemSiz +Flg Align
+ +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x10000
+ +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+184 0x0+188 RWE 0x10000
+ +DYNAMIC +0x0+2060 0x0+12060 0x0+12060 0x0+98 0x0+98 RW +0x4
+ +TLS +0x0+2000 0x0+12000 0x0+12000 0x0+60 0x0+80 R +0x4
+#...
+
+Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries:
+ Offset +Info +Type +Sym. Value +Symbol's Name \+ Addend
+0+1213c +0+4a R_SPARC_TLS_DTPMOD32 +0+
+0+12144 +0+4e R_SPARC_TLS_TPOFF32 +0+24
+0+12148 +0+4e R_SPARC_TLS_TPOFF32 +0+30
+0+1214c +0+4a R_SPARC_TLS_DTPMOD32 +0+
+0+12154 +0+4a R_SPARC_TLS_DTPMOD32 +0+
+0+1215c +0+4e R_SPARC_TLS_TPOFF32 +0+64
+0+1216c +0+4e R_SPARC_TLS_TPOFF32 +0+50
+0+12170 +0+4e R_SPARC_TLS_TPOFF32 +0+70
+0+12178 +0+4a R_SPARC_TLS_DTPMOD32 +0+
+0+12180 +0+4e R_SPARC_TLS_TPOFF32 +0+44
+0+12160 +0+124e R_SPARC_TLS_TPOFF32 +0+10 +sg5 \+ 0
+0+12164 +0+154a R_SPARC_TLS_DTPMOD32 +0+ +sg1 \+ 0
+0+12168 +0+154c R_SPARC_TLS_DTPOFF32 +0+ +sg1 \+ 0
+0+12174 +0+184e R_SPARC_TLS_TPOFF32 +0+4 +sg2 \+ 0
+
+Relocation section '.rela.plt' at offset 0x[0-9a-f]+ contains 1 entries:
+ Offset +Info +Type +Sym. Value +Symbol's Name \+ Addend
+0+12128 +0+1415 R_SPARC_JMP_SLOT +0+ +__tls_get_addr \+ 0
+
+Symbol table '.dynsym' contains 30 entries:
+ +Num: +Value +Size Type +Bind +Vis +Ndx Name
+ +0: 0+ +0 NOTYPE +LOCAL +DEFAULT +UND *
+ +1: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +1 *
+ +2: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +2 *
+ +3: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +3 *
+ +4: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +4 *
+ +5: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +5 *
+ +6: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +6 *
+ +7: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +7 *
+ +8: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +8 *
+ +9: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +9 *
+ +10: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +10 *
+ +11: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +11 *
+ +12: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +12 *
+ +13: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +13 *
+ +14: 0+1c +0 TLS +GLOBAL DEFAULT +8 sg8
+ +15: 0+12060 +0 OBJECT +GLOBAL DEFAULT +ABS _DYNAMIC
+ +16: 0+8 +0 TLS +GLOBAL DEFAULT +8 sg3
+ +17: 0+c +0 TLS +GLOBAL DEFAULT +8 sg4
+ +18: 0+10 +0 TLS +GLOBAL DEFAULT +8 sg5
+ +19: [0-9a-f]+ +0 OBJECT +GLOBAL DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
+ +20: 0+ +0 NOTYPE +GLOBAL DEFAULT +UND __tls_get_addr
+ +21: 0+ +0 TLS +GLOBAL DEFAULT +8 sg1
+ +22: 0+1008 +0 FUNC +GLOBAL DEFAULT +6 fn1
+ +23: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS __bss_start
+ +24: 0+4 +0 TLS +GLOBAL DEFAULT +8 sg2
+ +25: 0+14 +0 TLS +GLOBAL DEFAULT +8 sg6
+ +26: 0+18 +0 TLS +GLOBAL DEFAULT +8 sg7
+ +27: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _edata
+ +28: 0+12138 +0 OBJECT +GLOBAL DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+ +29: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _end
+
+Symbol table '.symtab' contains 57 entries:
+ +Num: +Value +Size Type +Bind +Vis +Ndx Name
+ +0: 0+ +0 NOTYPE +LOCAL +DEFAULT +UND *
+ +1: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +1 *
+ +2: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +2 *
+ +3: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +3 *
+ +4: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +4 *
+ +5: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +5 *
+ +6: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +6 *
+ +7: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +7 *
+ +8: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +8 *
+ +9: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +9 *
+ +10: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +10 *
+ +11: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +11 *
+ +12: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +12 *
+ +13: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +13 *
+ +14: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +14 *
+ +15: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +15 *
+ +16: [0-9a-f]+ +0 SECTION LOCAL +DEFAULT +16 *
+ +17: 0+20 +0 TLS +LOCAL +DEFAULT +8 sl1
+ +18: 0+24 +0 TLS +LOCAL +DEFAULT +8 sl2
+ +19: 0+28 +0 TLS +LOCAL +DEFAULT +8 sl3
+ +20: 0+2c +0 TLS +LOCAL +DEFAULT +8 sl4
+ +21: 0+30 +0 TLS +LOCAL +DEFAULT +8 sl5
+ +22: 0+34 +0 TLS +LOCAL +DEFAULT +8 sl6
+ +23: 0+38 +0 TLS +LOCAL +DEFAULT +8 sl7
+ +24: 0+3c +0 TLS +LOCAL +DEFAULT +8 sl8
+ +25: 0+60 +0 TLS +LOCAL +HIDDEN +9 sH1
+ +26: 0+48 +0 TLS +LOCAL +HIDDEN +8 sh3
+ +27: 0+64 +0 TLS +LOCAL +HIDDEN +9 sH2
+ +28: 0+78 +0 TLS +LOCAL +HIDDEN +9 sH7
+ +29: 0+58 +0 TLS +LOCAL +HIDDEN +8 sh7
+ +30: 0+5c +0 TLS +LOCAL +HIDDEN +8 sh8
+ +31: 0+6c +0 TLS +LOCAL +HIDDEN +9 sH4
+ +32: 0+4c +0 TLS +LOCAL +HIDDEN +8 sh4
+ +33: 0+68 +0 TLS +LOCAL +HIDDEN +9 sH3
+ +34: 0+50 +0 TLS +LOCAL +HIDDEN +8 sh5
+ +35: 0+70 +0 TLS +LOCAL +HIDDEN +9 sH5
+ +36: 0+74 +0 TLS +LOCAL +HIDDEN +9 sH6
+ +37: 0+7c +0 TLS +LOCAL +HIDDEN +9 sH8
+ +38: 0+40 +0 TLS +LOCAL +HIDDEN +8 sh1
+ +39: 0+44 +0 TLS +LOCAL +HIDDEN +8 sh2
+ +40: 0+54 +0 TLS +LOCAL +HIDDEN +8 sh6
+ +41: 0+1c +0 TLS +GLOBAL DEFAULT +8 sg8
+ +42: 0+12060 +0 OBJECT +GLOBAL DEFAULT +ABS _DYNAMIC
+ +43: 0+8 +0 TLS +GLOBAL DEFAULT +8 sg3
+ +44: 0+c +0 TLS +GLOBAL DEFAULT +8 sg4
+ +45: 0+10 +0 TLS +GLOBAL DEFAULT +8 sg5
+ +46: [0-9a-f]+ +0 OBJECT +GLOBAL DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
+ +47: 0+ +0 NOTYPE +GLOBAL DEFAULT +UND __tls_get_addr
+ +48: 0+ +0 TLS +GLOBAL DEFAULT +8 sg1
+ +49: 0+1008 +0 FUNC +GLOBAL DEFAULT +6 fn1
+ +50: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS __bss_start
+ +51: 0+4 +0 TLS +GLOBAL DEFAULT +8 sg2
+ +52: 0+14 +0 TLS +GLOBAL DEFAULT +8 sg6
+ +53: 0+18 +0 TLS +GLOBAL DEFAULT +8 sg7
+ +54: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _edata
+ +55: 0+12138 +0 OBJECT +GLOBAL DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+ +56: [0-9a-f]+ +0 NOTYPE +GLOBAL DEFAULT +ABS _end
--- ld/testsuite/ld-sparc/tlssunpic32.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic32.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,228 @@
+	.data
+	.align	4096
+	.section ".tdata", #alloc, #write, #tls
+	.align	4
+	.globl sg1, sg2, sg3, sg4, sg5, sg6, sg7, sg8
+	.globl sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+	.hidden sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+sg1:	.word 17
+sg2:	.word 18
+sg3:	.word 19
+sg4:	.word 20
+sg5:	.word 21
+sg6:	.word 22
+sg7:	.word 23
+sg8:	.word 24
+sl1:	.word 65
+sl2:	.word 66
+sl3:	.word 67
+sl4:	.word 68
+sl5:	.word 69
+sl6:	.word 70
+sl7:	.word 71
+sl8:	.word 72
+sh1:	.word 257
+sh2:	.word 258
+sh3:	.word 259
+sh4:	.word 260
+sh5:	.word 261
+sh6:	.word 262
+sh7:	.word 263
+sh8:	.word 264
+
+	.text
+	.align	4096
+.LLGETPC0:
+	retl
+	add	%o7, %l7, %l7
+
+	.globl	fn1
+	.type	fn1,#function
+	.proc	04
+fn1:
+	save	%sp, -104, %sp
+	sethi	%hi(_GLOBAL_OFFSET_TABLE_-4), %l7
+	call	.LLGETPC0
+	add	%l7, %lo(_GLOBAL_OFFSET_TABLE_+4), %l7
+	nop;nop;nop;nop
+
+	/* GD */
+	sethi	%tgd_hi22(sg1), %l1
+	nop
+	add	%l1, %tgd_lo10(sg1), %l2
+	nop
+	add	%l7, %l2, %o0, %tgd_add(sg1)
+	nop
+	call	__tls_get_addr, %tgd_call(sg1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE because variable is referenced through IE too */
+	sethi	%tgd_hi22(sg2), %o0
+	add	%o0, %tgd_lo10(sg2), %o1
+	add	%l7, %o1, %o0, %tgd_add(sg2)
+	call	__tls_get_addr, %tgd_call(sg2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD against local variable */
+	sethi	%tgd_hi22(sl1), %o4
+	add	%o4, %tgd_lo10(sl1), %o4
+	add	%l7, %o4, %o0, %tgd_add(sl1)
+	call	__tls_get_addr, %tgd_call(sl1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE against local variable referenced through IE too */
+	sethi	%tgd_hi22(sl2), %o0
+	add	%o0, %tgd_lo10(sl2), %o0
+	add	%l7, %o0, %o0, %tgd_add(sl2)
+	call	__tls_get_addr, %tgd_call(sl2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD against hidden and local variable */
+	sethi	%tgd_hi22(sh1), %o4
+	add	%o4, %tgd_lo10(sh1), %o4
+	add	%l7, %o4, %o0, %tgd_add(sh1)
+	call	__tls_get_addr, %tgd_call(sh1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE against hidden and local variable referenced through
+	   IE too */
+	sethi	%tgd_hi22(sh2), %o0
+	add	%o0, %tgd_lo10(sh2), %o0
+	add	%l7, %o0, %o0, %tgd_add(sh2)
+	call	__tls_get_addr, %tgd_call(sh2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD against hidden but not local variable */
+	sethi	%tgd_hi22(sH1), %o4
+	add	%o4, %tgd_lo10(sH1), %o4
+	add	%l7, %o4, %o0, %tgd_add(sH1)
+	call	__tls_get_addr, %tgd_call(sH1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE against hidden but not local variable referenced through
+	   IE too */
+	sethi	%tgd_hi22(sH2), %o0
+	add	%o0, %tgd_lo10(sH2), %o0
+	add	%l7, %o0, %o0, %tgd_add(sH2)
+	call	__tls_get_addr, %tgd_call(sH2)
+	nop
+	nop;nop;nop;nop
+
+	/* LD */
+	sethi	%tldm_hi22(sl1), %l1
+	nop
+	add	%l1, %tldm_lo10(sl1), %l2
+	nop
+	add	%l7, %l2, %o0, %tldm_add(sl1)
+	nop
+	call	__tls_get_addr, %tldm_call(sl1)
+	nop
+	sethi	%tldo_hix22(sl1), %l3
+	nop
+	xor	%l3, %tldo_lox10(sl1), %l4
+	nop
+	add	%o0, %l4, %l5, %tldo_add(sl1)
+	nop
+	sethi	%tldo_hix22(sl2 + 2), %l2
+	nop
+	xor	%l2, %tldo_lox10(sl2 + 2), %l3
+	nop
+	lduh	[%o0 + %l3], %l6, %tldo_add(sl2 + 2)
+	nop;nop;nop;nop
+
+	/* LD against hidden and local variables */
+	sethi	%tldm_hi22(sh1), %o1
+	sethi	%tldo_hix22(sh1), %l3
+	add	%o1, %tldm_lo10(sh1), %o2
+	sethi	%tldo_hix22(sh2 + 1), %l2
+	add	%l7, %o2, %o0, %tldm_add(sh1)
+	xor	%l3, %tldo_lox10(sh1), %l4
+	call	__tls_get_addr, %tldm_call(sh1)
+	xor	%l2, %tldo_lox10(sh2 + 1), %l3
+	add	%o0, %l4, %l5, %tldo_add(sh1)
+	ldub	[%o0 + %l3], %l6, %tldo_add(sh2 + 1)
+	nop;nop;nop;nop
+
+	/* LD against hidden but not local variables */
+	sethi	%tldm_hi22(sH1), %o1
+	sethi	%tldo_hix22(sH1 + 3), %l3
+	add	%o1, %tldm_lo10(sH1), %o2
+	sethi	%tldo_hix22(sH2), %l2
+	add	%l7, %o2, %o0, %tldm_add(sH1)
+	xor	%l3, %tldo_lox10(sH1 + 3), %l4
+	call	__tls_get_addr, %tldm_call(sH1)
+	xor	%l2, %tldo_lox10(sH2), %l3
+	add	%o0, %l4, %l5, %tldo_add(sH1 + 3)
+	ld	[%o0 + %l3], %l6, %tldo_add(sH2)
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sg2), %l1
+	nop
+	add	%l1, %tie_lo10(sg2), %l2
+	nop
+	ld	[%l7 + %l2], %l2, %tie_ld(sg2)
+	nop
+	add	%g7, %l2, %l2, %tie_add(sg2)
+	nop;nop;nop;nop
+
+	/* IE against local var  */
+	sethi	%tie_hi22(sl2), %o3
+	add	%o3, %tie_lo10(sl2), %o3
+	ld	[%l7 + %o3], %o2, %tie_ld(sl2)
+	add	%g7, %o2, %o4, %tie_add(sl2)
+	nop;nop;nop;nop
+
+	/* IE against hidden and local var  */
+	sethi	%tie_hi22(sh2), %l1
+	add	%l1, %tie_lo10(sh2), %l2
+	ld	[%l7 + %l2], %l2, %tie_ld(sh2)
+	add	%g7, %l2, %l2, %tie_add(sh2)
+	nop;nop;nop;nop
+
+	/* IE against hidden but not local var  */
+	sethi	%tie_hi22(sH2), %l1
+	add	%l1, %tie_lo10(sH2), %l2
+	ld	[%l7 + %l2], %l2, %tie_ld(sH2)
+	add	%g7, %l2, %l2, %tie_add(sH2)
+	nop;nop;nop;nop
+
+	/* Direct access through %g7  */
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sg5), %l1
+	add	%l1, %tie_lo10(sg5), %l2
+	ld	[%l7 + %l2], %l2, %tie_ld(sg5)
+	ld	[%g7 + %l2], %l2, %tie_add(sg5)
+	nop;nop;nop;nop
+
+	/* IE against local var  */
+	sethi	%tie_hi22(sl5), %o3
+	add	%o3, %tie_lo10(sl5), %o4
+	ld	[%l7 + %o4], %o5, %tie_ld(sl5)
+	stb	%l2, [%g7 + %o5], %tie_add(sl5)
+	nop;nop;nop;nop
+
+	/* IE against hidden and local var  */
+	sethi	%tie_hi22(sh5), %o3
+	add	%o3, %tie_lo10(sh5), %o4
+	ld	[%l7 + %o4], %o5, %tie_ld(sh5)
+	lduh	[%g7 + %o5], %l2, %tie_add(sh5)
+	nop;nop;nop;nop
+
+	/* IE against hidden but not local var  */
+	sethi	%tie_hi22(sH5), %o3
+	add	%o3, %tie_lo10(sH5), %o4
+	ld	[%l7 + %o4], %o5, %tie_ld(sH5)
+	st	%l2, [%g7 + %o5], %tie_add(sH5)
+	nop;nop;nop;nop
+
+	ret
+	restore
--- ld/testsuite/ld-sparc/tlssunpic32.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic32.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,15 @@
+#source: tlssunpic32.s
+#source: tlspic.s
+#as: --32 -K PIC
+#ld: -shared -melf32_sparc
+#objdump: -sj.got
+#target: sparc*-*-*
+
+.*: +file format elf32-sparc
+
+Contents of section .got:
+ 12138 00012060 00000000 00000020 00000000  .*
+ 12148 00000000 00000000 00000000 00000000  .*
+ 12158 00000060 00000000 00000000 00000000  .*
+ 12168 00000000 00000000 00000000 00000000  .*
+ 12178 00000000 00000040 00000000  .*
--- ld/testsuite/ld-sparc/tlssunpic32.td.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic32.td	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,16 @@
+#source: tlssunpic32.s
+#source: tlspic.s
+#as: --32 -K PIC
+#ld: -shared -melf32_sparc
+#objdump: -sj.tdata
+#target: sparc*-*-*
+
+.*: +file format elf32-sparc
+
+Contents of section .tdata:
+ 12000 00000011 00000012 00000013 00000014  .*
+ 12010 00000015 00000016 00000017 00000018  .*
+ 12020 00000041 00000042 00000043 00000044  .*
+ 12030 00000045 00000046 00000047 00000048  .*
+ 12040 00000101 00000102 00000103 00000104  .*
+ 12050 00000105 00000106 00000107 00000108  .*
--- ld/testsuite/ld-sparc/tlssunpic64.dd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic64.dd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+#source: tlssunpic64.s
+#source: tlspic.s
+#as: --64 -Av9 -K PIC
+#ld: -shared -melf64_sparc
+#objdump: -drj.text
+#target: sparc*-*-*
+
+.*: +file format elf64-sparc
+
+Disassembly of section .text:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunpic64.rd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic64.rd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,9 @@
+#source: tlssunpic64.s
+#source: tlspic.s
+#as: --64 -Av9 -K PIC
+#ld: -shared -melf64_sparc
+#readelf: -WSsrl
+#target: sparc*-*-*
+
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunpic64.s.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic64.s	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,228 @@
+	.data
+	.align	4096
+	.section ".tdata", #alloc, #write, #tls
+	.align	4
+	.globl sg1, sg2, sg3, sg4, sg5, sg6, sg7, sg8
+	.globl sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+	.hidden sh1, sh2, sh3, sh4, sh5, sh6, sh7, sh8
+sg1:	.word 17
+sg2:	.word 18
+sg3:	.word 19
+sg4:	.word 20
+sg5:	.word 21
+sg6:	.word 22
+sg7:	.word 23
+sg8:	.word 24
+sl1:	.word 65
+sl2:	.word 66
+sl3:	.word 67
+sl4:	.word 68
+sl5:	.word 69
+sl6:	.word 70
+sl7:	.word 71
+sl8:	.word 72
+sh1:	.word 257
+sh2:	.word 258
+sh3:	.word 259
+sh4:	.word 260
+sh5:	.word 261
+sh6:	.word 262
+sh7:	.word 263
+sh8:	.word 264
+
+	.text
+	.align	4096
+.LLGETPC0:
+	retl
+	add	%o7, %l7, %l7
+
+	.globl	fn1
+	.type	fn1,#function
+	.proc	04
+fn1:
+	save	%sp, -160, %sp
+	sethi	%hi(_GLOBAL_OFFSET_TABLE_-4), %l7
+	call	.LLGETPC0
+	add	%l7, %lo(_GLOBAL_OFFSET_TABLE_+4), %l7
+	nop;nop;nop;nop
+
+	/* GD */
+	sethi	%tgd_hi22(sg1), %l1
+	nop
+	add	%l1, %tgd_lo10(sg1), %l2
+	nop
+	add	%l7, %l2, %o0, %tgd_add(sg1)
+	nop
+	call	__tls_get_addr, %tgd_call(sg1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE because variable is referenced through IE too */
+	sethi	%tgd_hi22(sg2), %o0
+	add	%o0, %tgd_lo10(sg2), %o1
+	add	%l7, %o1, %o0, %tgd_add(sg2)
+	call	__tls_get_addr, %tgd_call(sg2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD against local variable */
+	sethi	%tgd_hi22(sl1), %o4
+	add	%o4, %tgd_lo10(sl1), %o4
+	add	%l7, %o4, %o0, %tgd_add(sl1)
+	call	__tls_get_addr, %tgd_call(sl1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE against local variable referenced through IE too */
+	sethi	%tgd_hi22(sl2), %o0
+	add	%o0, %tgd_lo10(sl2), %o0
+	add	%l7, %o0, %o0, %tgd_add(sl2)
+	call	__tls_get_addr, %tgd_call(sl2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD against hidden and local variable */
+	sethi	%tgd_hi22(sh1), %o4
+	add	%o4, %tgd_lo10(sh1), %o4
+	add	%l7, %o4, %o0, %tgd_add(sh1)
+	call	__tls_get_addr, %tgd_call(sh1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE against hidden and local variable referenced through
+	   IE too */
+	sethi	%tgd_hi22(sh2), %o0
+	add	%o0, %tgd_lo10(sh2), %o0
+	add	%l7, %o0, %o0, %tgd_add(sh2)
+	call	__tls_get_addr, %tgd_call(sh2)
+	nop
+	nop;nop;nop;nop
+
+	/* GD against hidden but not local variable */
+	sethi	%tgd_hi22(sH1), %o4
+	add	%o4, %tgd_lo10(sH1), %o4
+	add	%l7, %o4, %o0, %tgd_add(sH1)
+	call	__tls_get_addr, %tgd_call(sH1)
+	nop
+	nop;nop;nop;nop
+
+	/* GD -> IE against hidden but not local variable referenced through
+	   IE too */
+	sethi	%tgd_hi22(sH2), %o0
+	add	%o0, %tgd_lo10(sH2), %o0
+	add	%l7, %o0, %o0, %tgd_add(sH2)
+	call	__tls_get_addr, %tgd_call(sH2)
+	nop
+	nop;nop;nop;nop
+
+	/* LD */
+	sethi	%tldm_hi22(sl1), %l1
+	nop
+	add	%l1, %tldm_lo10(sl1), %l2
+	nop
+	add	%l7, %l2, %o0, %tldm_add(sl1)
+	nop
+	call	__tls_get_addr, %tldm_call(sl1)
+	nop
+	sethi	%tldo_hix22(sl1), %l3
+	nop
+	xor	%l3, %tldo_lox10(sl1), %l4
+	nop
+	add	%o0, %l4, %l5, %tldo_add(sl1)
+	nop
+	sethi	%tldo_hix22(sl2 + 2), %l2
+	nop
+	xor	%l2, %tldo_lox10(sl2 + 2), %l3
+	nop
+	lduh	[%o0 + %l3], %l6, %tldo_add(sl2 + 2)
+	nop;nop;nop;nop
+
+	/* LD against hidden and local variables */
+	sethi	%tldm_hi22(sh1), %o1
+	sethi	%tldo_hix22(sh1), %l3
+	add	%o1, %tldm_lo10(sh1), %o2
+	sethi	%tldo_hix22(sh2 + 1), %l2
+	add	%l7, %o2, %o0, %tldm_add(sh1)
+	xor	%l3, %tldo_lox10(sh1), %l4
+	call	__tls_get_addr, %tldm_call(sh1)
+	xor	%l2, %tldo_lox10(sh2 + 1), %l3
+	ldx	[%o0 + %l4], %l5, %tldo_add(sh1)
+	add	%o0, %l3, %l6, %tldo_add(sh2 + 1)
+	nop;nop;nop;nop
+
+	/* LD against hidden but not local variables */
+	sethi	%tldm_hi22(sH1), %o1
+	sethi	%tldo_hix22(sH1 + 3), %l3
+	add	%o1, %tldm_lo10(sH1), %o2
+	sethi	%tldo_hix22(sH2), %l2
+	add	%l7, %o2, %o0, %tldm_add(sH1)
+	xor	%l3, %tldo_lox10(sH1 + 3), %l4
+	call	__tls_get_addr, %tldm_call(sH1)
+	xor	%l2, %tldo_lox10(sH2), %l3
+	add	%o0, %l4, %l5, %tldo_add(sH1 + 3)
+	ld	[%o0 + %l3], %l6, %tldo_add(sH2)
+	nop;nop;nop;nop
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sg2), %l1
+	nop
+	add	%l1, %tie_lo10(sg2), %l2
+	nop
+	ldx	[%l7 + %l2], %l2, %tie_ldx(sg2)
+	nop
+	add	%g7, %l2, %l2, %tie_add(sg2)
+	nop;nop;nop;nop
+
+	/* IE against local var  */
+	sethi	%tie_hi22(sl2), %o3
+	add	%o3, %tie_lo10(sl2), %o3
+	ldx	[%l7 + %o3], %o2, %tie_ldx(sl2)
+	add	%g7, %o2, %o4, %tie_add(sl2)
+	nop;nop;nop;nop
+
+	/* IE against hidden and local var  */
+	sethi	%tie_hi22(sh2), %l1
+	add	%l1, %tie_lo10(sh2), %l2
+	ldx	[%l7 + %l2], %l2, %tie_ldx(sh2)
+	add	%g7, %l2, %l2, %tie_add(sh2)
+	nop;nop;nop;nop
+
+	/* IE against hidden but not local var  */
+	sethi	%tie_hi22(sH2), %l1
+	add	%l1, %tie_lo10(sH2), %l2
+	ldx	[%l7 + %l2], %l2, %tie_ldx(sH2)
+	add	%g7, %l2, %l2, %tie_add(sH2)
+	nop;nop;nop;nop
+
+	/* Direct access through %g7  */
+
+	/* IE against global var  */
+	sethi	%tie_hi22(sg5), %l1
+	add	%l1, %tie_lo10(sg5), %l2
+	ldx	[%l7 + %l2], %l2, %tie_ldx(sg5)
+	ldx	[%g7 + %l2], %l2, %tie_add(sg5)
+	nop;nop;nop;nop
+
+	/* IE against local var  */
+	sethi	%tie_hi22(sl5), %o3
+	add	%o3, %tie_lo10(sl5), %o4
+	ldx	[%l7 + %o4], %o5, %tie_ldx(sl5)
+	stb	%l2, [%g7 + %o5], %tie_add(sl5)
+	nop;nop;nop;nop
+
+	/* IE against hidden and local var  */
+	sethi	%tie_hi22(sh5), %o3
+	add	%o3, %tie_lo10(sh5), %o4
+	ldx	[%l7 + %o4], %o5, %tie_ldx(sh5)
+	stx	%l2, [%g7 + %o5], %tie_add(sh5)
+	nop;nop;nop;nop
+
+	/* IE against hidden but not local var  */
+	sethi	%tie_hi22(sH5), %o3
+	add	%o3, %tie_lo10(sH5), %o4
+	ldx	[%l7 + %o4], %o5, %tie_ldx(sH5)
+	st	%l2, [%g7 + %o5], %tie_add(sH5)
+	nop;nop;nop;nop
+
+	return	%i7 + 8
+	nop
--- ld/testsuite/ld-sparc/tlssunpic64.sd.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic64.sd	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+#source: tlssunpic64.s
+#source: tlspic.s
+#as: --64 -K PIC
+#ld: -shared -melf64_sparc
+#objdump: -sj.got
+#target: sparc*-*-*
+
+.*: +file format elf64-sparc
+
+Contents of section .got:
+# FIXME
+#pass
--- ld/testsuite/ld-sparc/tlssunpic64.td.jj	Mon Jan 20 09:47:47 2003
+++ ld/testsuite/ld-sparc/tlssunpic64.td	Mon Jan 20 09:47:47 2003
@@ -0,0 +1,12 @@
+#source: tlssunpic64.s
+#source: tlspic.s
+#as: --64 -K PIC
+#ld: -shared -melf64_sparc
+#objdump: -sj.tdata
+#target: sparc*-*-*
+
+.*: +file format elf64-sparc
+
+Contents of section .tdata:
+# FIXME
+#pass

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]