public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [Linux-ia64] [patch] Assign __gp to middle of short data sections
@ 2002-08-01  3:17 Keith Owens
  2002-08-01  4:01 ` [Linux-ia64] [patch] Assign __gp to middle of short data sect Luck, Tony
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Keith Owens @ 2002-08-01  3:17 UTC (permalink / raw)
  To: linux-ia64

I was getting '__gp does not cover short data segment'.
arch/ia64/vmlinus.lds.S assigns __gp well away from the short data
sections, for no good reason that I can see.  A kernel with more than
2^21 bytes between __gp and the end of sbss cannot link.

This patch (against 2.4.18) puts __gp right in the middle of the short
data sections.  The comment 'gp must be 16-byte aligned for exc. table'
puzzles me, AFAICT the exception tables are not accessed via gp.

Index: 19-pre10.10/arch/ia64/vmlinux.lds.S
--- 19-pre10.10/arch/ia64/vmlinux.lds.S Thu, 09 May 2002 12:00:25 +1000 kaos (linux-2.4/p/c/50_vmlinux.ld 1.1.5.1.2.1.1.1.1.2 644)
+++ 19-pre10.10(w)/arch/ia64/vmlinux.lds.S Thu, 01 Aug 2002 13:09:02 +1000 kaos (linux-2.4/p/c/50_vmlinux.ld 1.1.5.1.2.1.1.1.1.2 644)
@@ -40,8 +40,6 @@ SECTIONS
 
   /* Read-only data */
 
-  __gp = ALIGN(16) + 0x200000;	/* gp must be 16-byte aligned for exc. table */
-
   /* Global data */
   _data = .;
 
@@ -130,6 +128,7 @@ SECTIONS
   .data : AT(ADDR(.data) - PAGE_OFFSET)
 	{ *(.data) *(.gnu.linkonce.d*) CONSTRUCTORS }
 
+  __got = ALIGN(16);
   .got : AT(ADDR(.got) - PAGE_OFFSET)
 	{ *(.got.plt) *(.got) }
   /* We want the small data sections together, so single-instruction offsets
@@ -141,6 +140,7 @@ SECTIONS
   _bss = .;
   .sbss : AT(ADDR(.sbss) - PAGE_OFFSET)
 	{ *(.sbss) *(.scommon) }
+  __gp = (. - (. - __got) / 2) & -16;	/* put __gp in the middle of the short data areas */
   .bss : AT(ADDR(.bss) - PAGE_OFFSET)
 	{ *(.bss) *(COMMON) }
   . = ALIGN(64 / 8);



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-08-01  6:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-01  3:17 [Linux-ia64] [patch] Assign __gp to middle of short data sections Keith Owens
2002-08-01  4:01 ` [Linux-ia64] [patch] Assign __gp to middle of short data sect Luck, Tony
2002-08-01  4:10 ` [Linux-ia64] [patch] Assign __gp to middle of short data sections David Mosberger
2002-08-01  6:00 ` Keith Owens
2002-08-01  6:26 ` David Mosberger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox