Skip to content

Commit

Permalink
cmd/link: change -strictdups checking to handle mix of flags
Browse files Browse the repository at this point in the history
Update the recently-added '-strictdups' sanity checking to avoid
failing the link in cases where we have objects feeding into the link
with a mix of command line flags (and in particular some with "-N" and
some without). This scenario will trigger errors/warnings due to
inlinable functions and wrapper functions that have different sizes
due to presence or lack of optimization.

Update #31034.

Change-Id: I1dd9e37c2f9bea5da0ab82e32e6fc210aebf6a65
Reviewed-on: https://go-review.googlesource.com/c/go/+/169160
Run-TryBot: Than McIntosh <thanm@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: David Chase <drchase@google.com>
  • Loading branch information
thanm committed Mar 27, 2019
1 parent 697f418 commit cacab64
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
12 changes: 12 additions & 0 deletions src/cmd/link/internal/ld/dwarf.go
Original file line number Diff line number Diff line change
Expand Up @@ -1797,6 +1797,7 @@ func dwarfGenerateDebugInfo(ctxt *Link) {

// fake root DIE for compile unit DIEs
var dwroot dwarf.DWDie
flagVariants := make(map[string]bool)

for _, lib := range ctxt.Library {
unit := &compilationUnit{lib: lib}
Expand Down Expand Up @@ -1825,7 +1826,11 @@ func dwarfGenerateDebugInfo(ctxt *Link) {
// version, so it should be safe for readers to scan
// forward to the semicolon.
producer += "; " + string(producerExtra.P)
flagVariants[string(producerExtra.P)] = true
} else {
flagVariants[""] = true
}

newattr(unit.dwinfo, dwarf.DW_AT_producer, dwarf.DW_CLS_STRING, int64(len(producer)), producer)

if len(lib.Textp) == 0 {
Expand Down Expand Up @@ -1876,6 +1881,13 @@ func dwarfGenerateDebugInfo(ctxt *Link) {
}
}

// Fix for 31034: if the objects feeding into this link were compiled
// with different sets of flags, then don't issue an error if
// the -strictdups checks fail.
if checkStrictDups > 1 && len(flagVariants) > 1 {
checkStrictDups = 1
}

// Create DIEs for global variables and the types they use.
genasmsym(ctxt, defdwsymb)

Expand Down
10 changes: 9 additions & 1 deletion src/cmd/link/internal/ld/lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,10 @@ var (

nerrors int
liveness int64

// See -strictdups command line flag.
checkStrictDups int // 0=off 1=warning 2=error
strictDupMsgCount int
)

var (
Expand Down Expand Up @@ -283,6 +287,9 @@ func errorexit() {
if nerrors != 0 {
Exit(2)
}
if checkStrictDups > 1 && strictDupMsgCount > 0 {
Exit(2)
}
Exit(0)
}

Expand Down Expand Up @@ -1745,7 +1752,8 @@ func ldobj(ctxt *Link, f *bio.Reader, lib *sym.Library, length int64, pn string,
default:
log.Fatalf("invalid -strictdups flag value %d", *FlagStrictDups)
}
objfile.Load(ctxt.Arch, ctxt.Syms, f, lib, eof-f.Offset(), pn, flags)
c := objfile.Load(ctxt.Arch, ctxt.Syms, f, lib, eof-f.Offset(), pn, flags)
strictDupMsgCount += c
addImports(ctxt, lib, pn)
return nil
}
Expand Down
1 change: 1 addition & 0 deletions src/cmd/link/internal/ld/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ func Main(arch *sys.Arch, theArch Arch) {
if objabi.Fieldtrack_enabled != 0 {
ctxt.Reachparent = make(map[*sym.Symbol]*sym.Symbol)
}
checkStrictDups = *FlagStrictDups

startProfile()
if ctxt.BuildMode == BuildModeUnset {
Expand Down
9 changes: 5 additions & 4 deletions src/cmd/link/internal/objfile/objfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ type objReader struct {
dupSym *sym.Symbol
localSymVersion int
flags int
strictDupMsgs int

// rdBuf is used by readString and readSymName as scratch for reading strings.
rdBuf []byte
Expand Down Expand Up @@ -72,7 +73,7 @@ const (

// Load loads an object file f into library lib.
// The symbols loaded are added to syms.
func Load(arch *sys.Arch, syms *sym.Symbols, f *bio.Reader, lib *sym.Library, length int64, pn string, flags int) {
func Load(arch *sys.Arch, syms *sym.Symbols, f *bio.Reader, lib *sym.Library, length int64, pn string, flags int) int {
start := f.Offset()
r := &objReader{
rd: f.Reader,
Expand All @@ -88,6 +89,7 @@ func Load(arch *sys.Arch, syms *sym.Symbols, f *bio.Reader, lib *sym.Library, le
if f.Offset() != start+length {
log.Fatalf("%s: unexpected end at %d, want %d", pn, f.Offset(), start+length)
}
return r.strictDupMsgs
}

func (r *objReader) loadObjFile() {
Expand Down Expand Up @@ -376,9 +378,8 @@ overwrite:
// params; I am guessing that the pos is being inherited
// from the spot where the wrapper is needed.
whitelist := strings.HasPrefix(dup.Name, "go.info.go.interface")

if r.flags&StrictDupsErrFlag != 0 && !whitelist {
log.Fatalf("failed duplicate symbol check on '%s' reading %s", dup.Name, r.pn)
if !whitelist {
r.strictDupMsgs++
}
}
}
Expand Down

0 comments on commit cacab64

Please sign in to comment.