Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for windynrelocsyms (0.2 sec)

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

    		ctxt.doelf()
    	}
    	if ctxt.IsDarwin() {
    		bench.Start("domacho")
    		ctxt.domacho()
    	}
    	if ctxt.IsWindows() {
    		bench.Start("dope")
    		ctxt.dope()
    		bench.Start("windynrelocsyms")
    		ctxt.windynrelocsyms()
    	}
    	if ctxt.IsAIX() {
    		bench.Start("doxcoff")
    		ctxt.doxcoff()
    	}
    
    	bench.Start("textbuildid")
    	ctxt.textbuildid()
    	bench.Start("addexport")
    	ctxt.setArchSyms()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    			}
    			r.SetSym(rel.Sym())
    			r.SetAdd(int64(tplt))
    		}
    	}
    	return nil
    }
    
    // windynrelocsyms generates jump table to C library functions that will be
    // added later. windynrelocsyms writes the table into .rel symbol.
    func (ctxt *Link) windynrelocsyms() {
    	if !(ctxt.IsWindows() && iscgo && ctxt.IsInternal()) {
    		return
    	}
    
    	rel := ctxt.loader.CreateSymForUpdate(".rel", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/ldpe.go

    const (
    	// When stored into the PLT value for a symbol, this token tells
    	// windynrelocsym to redirect direct references to this symbol to a stub
    	// that loads from the corresponding import symbol and then does
    	// a jump to the loaded value.
    	CreateImportStubPltToken = -2
    
    	// When stored into the GOT value for an import symbol __imp_X this
    	// token tells windynrelocsym to redirect references to the
    	// underlying DYNIMPORT symbol X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top