Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for emitRelocations (0.26 sec)

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

    			if sect.Name == pesect.name {
    				pesect.emitRelocations(ctxt.Out, func() int {
    					return relocsect(sect, si.syms, sect.Vaddr)
    				})
    				continue dwarfLoop
    			}
    		}
    		Errorf(nil, "emitRelocations: could not find %q section", sect.Name)
    	}
    
    	if f.ctorsSect == nil {
    		return
    	}
    
    	f.ctorsSect.emitRelocations(ctxt.Out, func() int {
    		dottext := ldr.Lookup(".text", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	if ctxt.LinkMode == LinkExternal {
    		xfile.emitRelocations(ctxt, fileoff)
    	}
    
    	// Write Symbol table
    	xfile.symtabOffset = ctxt.Out.Offset()
    	for _, s := range xfile.symtabSym {
    		binary.Write(ctxt.Out, ctxt.Arch.ByteOrder, s)
    	}
    	// write string table
    	xfile.stringTable.write(ctxt.Out)
    
    	// write headers
    	xcoffwrite(ctxt)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top