github.com/go-asm/go@v1.21.1-0.20240213172139-40c5ead50c48/cmd/link/ld/link.go (about)

     1  // Derived from Inferno utils/6l/l.h and related files.
     2  // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/l.h
     3  //
     4  //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
     5  //	Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
     6  //	Portions Copyright © 1997-1999 Vita Nuova Limited
     7  //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
     8  //	Portions Copyright © 2004,2006 Bruce Ellis
     9  //	Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net)
    10  //	Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
    11  //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    12  //
    13  // Permission is hereby granted, free of charge, to any person obtaining a copy
    14  // of this software and associated documentation files (the "Software"), to deal
    15  // in the Software without restriction, including without limitation the rights
    16  // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    17  // copies of the Software, and to permit persons to whom the Software is
    18  // furnished to do so, subject to the following conditions:
    19  //
    20  // The above copyright notice and this permission notice shall be included in
    21  // all copies or substantial portions of the Software.
    22  //
    23  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    24  // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    25  // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    26  // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    27  // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    28  // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    29  // THE SOFTWARE.
    30  
    31  package ld
    32  
    33  import (
    34  	"bufio"
    35  	"debug/elf"
    36  	"fmt"
    37  
    38  	"github.com/go-asm/go/cmd/link/loader"
    39  	"github.com/go-asm/go/cmd/link/sym"
    40  	"github.com/go-asm/go/cmd/objabi"
    41  )
    42  
    43  type Shlib struct {
    44  	Path string
    45  	Hash []byte
    46  	Deps []string
    47  	File *elf.File
    48  }
    49  
    50  // Link holds the context for writing object code from a compiler
    51  // or for reading that input into the linker.
    52  type Link struct {
    53  	Target
    54  	ErrorReporter
    55  	ArchSyms
    56  
    57  	outSem chan int // limits the number of output writers
    58  	Out    *OutBuf
    59  
    60  	version int // current version number for static/file-local symbols
    61  
    62  	Debugvlog int
    63  	Bso       *bufio.Writer
    64  
    65  	Loaded bool // set after all inputs have been loaded as symbols
    66  
    67  	compressDWARF bool
    68  
    69  	Libdir       []string
    70  	Library      []*sym.Library
    71  	LibraryByPkg map[string]*sym.Library
    72  	Shlibs       []Shlib
    73  	Textp        []loader.Sym
    74  	Moduledata   loader.Sym
    75  
    76  	PackageFile  map[string]string
    77  	PackageShlib map[string]string
    78  
    79  	tramps []loader.Sym // trampolines
    80  
    81  	compUnits []*sym.CompilationUnit // DWARF compilation units
    82  	runtimeCU *sym.CompilationUnit   // One of the runtime CUs, the last one seen.
    83  
    84  	loader  *loader.Loader
    85  	cgodata []cgodata // cgo directives to load, three strings are args for loadcgo
    86  
    87  	datap  []loader.Sym
    88  	dynexp []loader.Sym
    89  
    90  	// Elf symtab variables.
    91  	numelfsym int // starts at 0, 1 is reserved
    92  
    93  	// These are symbols that created and written by the linker.
    94  	// Rather than creating a symbol, and writing all its data into the heap,
    95  	// you can create a symbol, and just a generation function will be called
    96  	// after the symbol's been created in the output mmap.
    97  	generatorSyms map[loader.Sym]generatorFunc
    98  }
    99  
   100  type cgodata struct {
   101  	file       string
   102  	pkg        string
   103  	directives [][]string
   104  }
   105  
   106  func (ctxt *Link) Logf(format string, args ...interface{}) {
   107  	fmt.Fprintf(ctxt.Bso, format, args...)
   108  	ctxt.Bso.Flush()
   109  }
   110  
   111  func addImports(ctxt *Link, l *sym.Library, pn string) {
   112  	pkg := objabi.PathToPrefix(l.Pkg)
   113  	for _, imp := range l.Autolib {
   114  		lib := addlib(ctxt, pkg, pn, imp.Pkg, imp.Fingerprint)
   115  		if lib != nil {
   116  			l.Imports = append(l.Imports, lib)
   117  		}
   118  	}
   119  	l.Autolib = nil
   120  }
   121  
   122  // Allocate a new version (i.e. symbol namespace).
   123  func (ctxt *Link) IncVersion() int {
   124  	ctxt.version++
   125  	return ctxt.version - 1
   126  }
   127  
   128  // returns the maximum version number
   129  func (ctxt *Link) MaxVersion() int {
   130  	return ctxt.version
   131  }
   132  
   133  // generatorFunc is a convenience type.
   134  // Some linker-created Symbols are large and shouldn't really live in the heap.
   135  // Such Symbols can define a generator function. Their bytes can be generated
   136  // directly in the output mmap.
   137  //
   138  // Relocations are applied prior to emitting generator Symbol contents.
   139  // Generator Symbols that require relocations can be written in two passes.
   140  // The first pass, at Symbol creation time, adds only relocations.
   141  // The second pass, at content generation time, adds the rest.
   142  // See generateFunctab for an example.
   143  //
   144  // Generator functions shouldn't grow the Symbol size.
   145  // Generator functions must be safe for concurrent use.
   146  //
   147  // Generator Symbols have their Data set to the mmapped area when the
   148  // generator is called.
   149  type generatorFunc func(*Link, loader.Sym)
   150  
   151  // createGeneratorSymbol is a convenience method for creating a generator
   152  // symbol.
   153  func (ctxt *Link) createGeneratorSymbol(name string, version int, t sym.SymKind, size int64, gen generatorFunc) loader.Sym {
   154  	ldr := ctxt.loader
   155  	s := ldr.LookupOrCreateSym(name, version)
   156  	ldr.SetIsGeneratedSym(s, true)
   157  	sb := ldr.MakeSymbolUpdater(s)
   158  	sb.SetType(t)
   159  	sb.SetSize(size)
   160  	ctxt.generatorSyms[s] = gen
   161  	return s
   162  }