Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for machoreloc1 (0.26 sec)

  1. src/cmd/link/internal/ld/lib.go

    	Gentext        func(*Link, *loader.Loader) // Generate text before addressing has been performed.
    	Machoreloc1    func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    	MachorelocSize uint32 // size of an Mach-O relocation record, must match Machoreloc1.
    	PEreloc1       func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    		// dynamic resolver and the DSO identifier in the two
    		// doublewords at the beginning of the .plt section
    		// before the PLT array. Reserve space for these.
    		plt.SetSize(16)
    	}
    }
    
    func machoreloc1(*sys.Arch, *ld.OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool {
    	return false
    }
    
    // Return the value of .TOC. for symbol s
    func symtoc(ldr *loader.Loader, syms *ld.ArchSyms, s loader.Sym) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    						// We generally use symbol-targeted relocations.
    						// DWARF tools seem to only handle section-targeted relocations,
    						// so generate section-targeted relocations in DWARF sections.
    						// See also machoreloc1.
    						o += ldr.SymValue(rs)
    					}
    				} else if target.IsWindows() {
    					// nothing to do
    				} else if target.IsAIX() {
    					o = ldr.SymValue(rs) + xadd
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top