diff options
| author | Paul E. Murphy <murp@ibm.com> | 2022-09-19 16:48:49 -0500 |
|---|---|---|
| committer | Paul Murphy <murp@ibm.com> | 2022-09-27 17:29:05 +0000 |
| commit | edd1273b841050e96d9ddd937fc00c0eebe10f1b (patch) | |
| tree | c2d924e3017b482bbd238f469f4b38b65123b4b1 /src/cmd/link | |
| parent | ff34676cdd5f2c318fa58e78c84a90b3e5a21b04 (diff) | |
| download | go-edd1273b841050e96d9ddd937fc00c0eebe10f1b.tar.xz | |
cmd/link: refactor usage of SymLocalentry helper functions
PPC64 ELFv2 uses the st_other field of a symbol to specify an offset
from the global entry point to its local entry point. Similarly, some
values (i.e 1) may also require additional linker support which is
missing today.
For now, generate an error if we encounter unsupported local entry
values on PPC64, and update the Localentry values to use bytes, not
32b instruction words.
Similarly, ELFv2 1.5 also updates the wording of values 2-6. They
now map to a specific number of bytes.
Change-Id: Id1b71c3b0fea982bdcfb7eac91d9f93e04ae43f9
Reviewed-on: https://go-review.googlesource.com/c/go/+/431876
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Run-TryBot: Paul Murphy <murp@ibm.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Diffstat (limited to 'src/cmd/link')
| -rw-r--r-- | src/cmd/link/internal/loadelf/ldelf.go | 12 | ||||
| -rw-r--r-- | src/cmd/link/internal/loader/loader.go | 5 | ||||
| -rw-r--r-- | src/cmd/link/internal/ppc64/asm.go | 2 |
3 files changed, 12 insertions, 7 deletions
diff --git a/src/cmd/link/internal/loadelf/ldelf.go b/src/cmd/link/internal/loadelf/ldelf.go index 74f7cb15a0..da02223212 100644 --- a/src/cmd/link/internal/loadelf/ldelf.go +++ b/src/cmd/link/internal/loadelf/ldelf.go @@ -634,10 +634,16 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader, if elf.Machine(elfobj.machine) == elf.EM_PPC64 { flag := int(elfsym.other) >> 5 - if 2 <= flag && flag <= 6 { - l.SetSymLocalentry(s, 1<<uint(flag-2)) - } else if flag == 7 { + switch flag { + case 0: + // No local entry. R2 is preserved. + case 1: + // These require R2 be saved and restored by the caller. This isn't supported today. + return errorf("%s: unable to handle local entry type 1", sb.Name()) + case 7: return errorf("%s: invalid sym.other 0x%x", sb.Name(), elfsym.other) + default: + l.SetSymLocalentry(s, 4<<uint(flag-2)) } } } diff --git a/src/cmd/link/internal/loader/loader.go b/src/cmd/link/internal/loader/loader.go index c2baa20d8d..40ad950fe5 100644 --- a/src/cmd/link/internal/loader/loader.go +++ b/src/cmd/link/internal/loader/loader.go @@ -1562,13 +1562,12 @@ func (l *Loader) SetSymPkg(i Sym, pkg string) { l.symPkg[i] = pkg } -// SymLocalentry returns the "local entry" value for the specified -// symbol. +// SymLocalentry returns an offset in bytes of the "local entry" of a symbol. func (l *Loader) SymLocalentry(i Sym) uint8 { return l.localentry[i] } -// SetSymLocalentry sets the "local entry" attribute for a symbol. +// SetSymLocalentry sets the "local entry" offset attribute for a symbol. func (l *Loader) SetSymLocalentry(i Sym, value uint8) { // reject bad symbols if i >= Sym(len(l.objSyms)) || i == 0 { diff --git a/src/cmd/link/internal/ppc64/asm.go b/src/cmd/link/internal/ppc64/asm.go index 21bc430e04..70d2cf3f0b 100644 --- a/src/cmd/link/internal/ppc64/asm.go +++ b/src/cmd/link/internal/ppc64/asm.go @@ -380,7 +380,7 @@ func addelfdynrel(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s lo // callee. Hence, we need to go to the local entry // point. (If we don't do this, the callee will try // to use r12 to compute r2.) - su.SetRelocAdd(rIdx, r.Add()+int64(ldr.SymLocalentry(targ))*4) + su.SetRelocAdd(rIdx, r.Add()+int64(ldr.SymLocalentry(targ))) if targType == sym.SDYNIMPORT { // Should have been handled in elfsetupplt |
