Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SymVerABIInternal (0.24 sec)

  1. src/cmd/link/internal/sym/symbol.go

    			// so we normalize everything to ABI0.
    			return SymVerABI0
    		}
    		return SymVerABIInternal
    	}
    	return -1
    }
    
    func VersionToABI(v int) (obj.ABI, bool) {
    	switch v {
    	case SymVerABI0:
    		return obj.ABI0, true
    	case SymVerABIInternal:
    		return obj.ABIInternal, true
    	}
    	return ^obj.ABI(0), false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 933 bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/symtab.go

    	// wrapped function.
    	if !buildcfg.Experiment.RegabiWrappers {
    		return name
    	}
    
    	if ldr.SymType(x) == sym.STEXT && ldr.SymVersion(x) != sym.SymVerABIInternal && ldr.SymVersion(x) < sym.SymVerStatic {
    		if s2 := ldr.Lookup(name, sym.SymVerABIInternal); s2 != 0 && ldr.SymType(s2) == sym.STEXT {
    			name = fmt.Sprintf("%s.abi%d", name, ldr.SymVersion(x))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm64/asm.go

    		}
    	}
    
    	// Generate symbol names for every offset we need in duffcopy/duffzero (only 64 each).
    	if s := ldr.Lookup("runtime.duffcopy", sym.SymVerABIInternal); s != 0 && ldr.AttrReachable(s) {
    		addLabelSyms(s, 8, 8*64)
    	}
    	if s := ldr.Lookup("runtime.duffzero", sym.SymVerABIInternal); s != 0 && ldr.AttrReachable(s) {
    		addLabelSyms(s, 4, 4*64)
    	}
    
    	if ctxt.IsDarwin() {
    		big := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    }
    
    var (
    	thearch Arch
    	lcSize  int32
    	rpath   Rpath
    	spSize  int32
    	symSize int32
    )
    
    // Symbol version of ABIInternal symbols. It is sym.SymVerABIInternal if ABI wrappers
    // are used, 0 otherwise.
    var abiInternalVer = sym.SymVerABIInternal
    
    // DynlinkingGo reports whether we are producing Go code that can live
    // in separate shared libraries linked together at runtime.
    func (ctxt *Link) DynlinkingGo() 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)
Back to top