mirror of
https://github.com/golang/go
synced 2024-11-17 23:54:51 -07:00
[dev.link] cmd/link: better naming for Loader container/subsym methods, part 2 of 2
Introduce a new loader method "SetCarrierSym", to be used when establishing container/containee symbol relationships for symbol bucketing in the symtab phase. This new method is intended to be employed in situations where you have a series of related symbols will be represented by a single carrier symbol as a combined entity. The pattern here is that the sub-symbols contain content but will be anonymous from a symbol table perspective; the carrier symbol has no content itself but will appear in the symbol table. Examples of carrier symbols that follow this model are "runtime.itablink" and "runtime.typelink". Change-Id: I1a3391a71062c7c740cb108b3fa210b7f69b81ed Reviewed-on: https://go-review.googlesource.com/c/go/+/240509 Reviewed-by: Cherry Zhang <cherryyz@google.com> Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Jeremy Faller <jeremy@golang.org>
This commit is contained in:
parent
3c3cc19564
commit
1e9381207e
@ -515,10 +515,14 @@ func (ctxt *Link) symtab() []sym.SymKind {
|
||||
}
|
||||
if ctxt.UseRelro() {
|
||||
symGroupType[s] = sym.STYPERELRO
|
||||
ldr.SetOuterSym(s, symtyperel)
|
||||
if symtyperel != 0 {
|
||||
ldr.SetCarrierSym(s, symtyperel)
|
||||
}
|
||||
} else {
|
||||
symGroupType[s] = sym.STYPE
|
||||
ldr.SetOuterSym(s, symtype)
|
||||
if symtyperel != 0 {
|
||||
ldr.SetCarrierSym(s, symtype)
|
||||
}
|
||||
}
|
||||
|
||||
case strings.HasPrefix(name, "go.importpath.") && ctxt.UseRelro():
|
||||
@ -530,17 +534,17 @@ func (ctxt *Link) symtab() []sym.SymKind {
|
||||
nitablinks++
|
||||
symGroupType[s] = sym.SITABLINK
|
||||
ldr.SetAttrNotInSymbolTable(s, true)
|
||||
ldr.SetOuterSym(s, symitablink.Sym())
|
||||
ldr.SetCarrierSym(s, symitablink.Sym())
|
||||
|
||||
case strings.HasPrefix(name, "go.string."):
|
||||
symGroupType[s] = sym.SGOSTRING
|
||||
ldr.SetAttrNotInSymbolTable(s, true)
|
||||
ldr.SetOuterSym(s, symgostring)
|
||||
ldr.SetCarrierSym(s, symgostring)
|
||||
|
||||
case strings.HasPrefix(name, "runtime.gcbits."):
|
||||
symGroupType[s] = sym.SGCBITS
|
||||
ldr.SetAttrNotInSymbolTable(s, true)
|
||||
ldr.SetOuterSym(s, symgcbits)
|
||||
ldr.SetCarrierSym(s, symgcbits)
|
||||
|
||||
case strings.HasSuffix(name, "·f"):
|
||||
if !ctxt.DynlinkingGo() {
|
||||
@ -548,10 +552,12 @@ func (ctxt *Link) symtab() []sym.SymKind {
|
||||
}
|
||||
if ctxt.UseRelro() {
|
||||
symGroupType[s] = sym.SGOFUNCRELRO
|
||||
ldr.SetOuterSym(s, symgofuncrel)
|
||||
if symgofuncrel != 0 {
|
||||
ldr.SetCarrierSym(s, symgofuncrel)
|
||||
}
|
||||
} else {
|
||||
symGroupType[s] = sym.SGOFUNC
|
||||
ldr.SetOuterSym(s, symgofunc)
|
||||
ldr.SetCarrierSym(s, symgofunc)
|
||||
}
|
||||
|
||||
case strings.HasPrefix(name, "gcargs."),
|
||||
@ -561,7 +567,7 @@ func (ctxt *Link) symtab() []sym.SymKind {
|
||||
strings.HasSuffix(name, ".opendefer"):
|
||||
symGroupType[s] = sym.SGOFUNC
|
||||
ldr.SetAttrNotInSymbolTable(s, true)
|
||||
ldr.SetOuterSym(s, symgofunc)
|
||||
ldr.SetCarrierSym(s, symgofunc)
|
||||
const align = 4
|
||||
ldr.SetSymAlign(s, align)
|
||||
liveness += (ldr.SymSize(s) + int64(align) - 1) &^ (int64(align) - 1)
|
||||
|
@ -1661,18 +1661,35 @@ func (l *Loader) SubSym(i Sym) Sym {
|
||||
return l.sub[i]
|
||||
}
|
||||
|
||||
// SetOuterSym sets the outer symbol of i to o (without setting
|
||||
// sub symbols).
|
||||
func (l *Loader) SetOuterSym(i Sym, o Sym) {
|
||||
if o != 0 {
|
||||
l.outer[i] = o
|
||||
// relocsym's foldSubSymbolOffset requires that we only
|
||||
// have a single level of containment-- enforce here.
|
||||
if l.outer[o] != 0 {
|
||||
panic("multiply nested outer sym")
|
||||
}
|
||||
} else {
|
||||
delete(l.outer, i)
|
||||
// SetCarrierSym declares that 'c' is the carrier or container symbol
|
||||
// for 's'. Carrier symbols are used in the linker to as a container
|
||||
// for a collection of sub-symbols where the content of the
|
||||
// sub-symbols is effectively concatenated to form the content of the
|
||||
// carrier. The carrier is given a name in the output symbol table
|
||||
// while the sub-symbol names are not. For example, the Go compiler
|
||||
// emits named string symbols (type SGOSTRING) when compiling a
|
||||
// package; after being deduplicated, these symbols are collected into
|
||||
// a single unit by assigning them a new carrier symbol named
|
||||
// "go.string.*" (which appears in the final symbol table for the
|
||||
// output load module).
|
||||
func (l *Loader) SetCarrierSym(s Sym, c Sym) {
|
||||
if c == 0 {
|
||||
panic("invalid carrier in SetCarrierSym")
|
||||
}
|
||||
if s == 0 {
|
||||
panic("invalid sub-symbol in SetCarrierSym")
|
||||
}
|
||||
// Carrier symbols are not expected to have content/data. It is
|
||||
// ok for them to have non-zero size (to allow for use of generator
|
||||
// symbols).
|
||||
if len(l.Data(c)) != 0 {
|
||||
panic("unexpected non-empty carrier symbol")
|
||||
}
|
||||
l.outer[s] = c
|
||||
// relocsym's foldSubSymbolOffset requires that we only
|
||||
// have a single level of containment-- enforce here.
|
||||
if l.outer[c] != 0 {
|
||||
panic("invalid nested carrier sym")
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user