Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for reloctab (0.21 sec)

  1. src/cmd/internal/obj/x86/obj6.go

    	// liblink and then finally using relocations in the linker.
    	//
    	// When -shared is passed, we leave the code in the 2-instruction form but
    	// assemble (and relocate) them in different ways to generate the initial
    	// exec code sequence. It's a bit of a fluke that this is possible without
    	// rewriting the instructions more comprehensively, and it only does because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	// the total number of relocations emitted.
    	relocsect := func(sect *sym.Section, syms []loader.Sym, base uint64) int {
    		// If main section has no bits, nothing to relocate.
    		if sect.Vaddr >= sect.Seg.Vaddr+sect.Seg.Filelen {
    			return 0
    		}
    		sect.Reloff = uint64(ctxt.Out.Offset())
    		for i, s := range syms {
    			if !ldr.AttrReachable(s) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top