Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for windynrelocsym (0.29 sec)

  1. 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)
  2. 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)
Back to top