Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for SRODATA (0.24 sec)

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

    			continue
    		}
    		t := d.ldr.SymType(idx)
    		switch t {
    		case sym.SRODATA, sym.SDATA, sym.SNOPTRDATA, sym.STYPE, sym.SBSS, sym.SNOPTRBSS, sym.STLSBSS:
    			// ok
    		default:
    			continue
    		}
    		// Skip things with no type, unless it's a dictionary
    		gt := d.ldr.SymGoType(idx)
    		if gt == 0 {
    			if t == sym.SRODATA {
    				if d.ldr.IsDict(idx) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm64/asm.go

    			// linking, in which case the relocation will be
    			// prepared in the 'reloc' phase and passed to the
    			// external linker in the 'asmb' phase.
    			if ldr.SymType(s) != sym.SDATA && ldr.SymType(s) != sym.SRODATA {
    				break
    			}
    		}
    
    		if target.IsElf() {
    			// Generate R_AARCH64_RELATIVE relocations for best
    			// efficiency in the dynamic linker.
    			//
    			// As noted above, symbol addresses have not been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	if size == 0 {
    		return
    	}
    	// TODO: use CarrierSymByType
    
    	ldr := ctxt.loader
    	switch stype {
    	default:
    		Errorf(nil, "unknown XCOFF outer symbol for type %s", stype.String())
    	case sym.SRODATA, sym.SRODATARELRO, sym.SFUNCTAB, sym.SSTRING:
    		// Nothing to do
    	case sym.STYPERELRO:
    		if ctxt.UseRelro() && (ctxt.BuildMode == BuildModeCArchive || ctxt.BuildMode == BuildModeCShared || ctxt.BuildMode == BuildModePIE) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		// part of the .note.go.abihash section in data.go:func address().
    		s := ldr.LookupOrCreateSym("go:link.abihashbytes", 0)
    		sb := ldr.MakeSymbolUpdater(s)
    		ldr.SetAttrLocal(s, true)
    		sb.SetType(sym.SRODATA)
    		ldr.SetAttrSpecial(s, true)
    		sb.SetReachable(true)
    		sb.SetSize(notsha256.Size)
    
    		sort.Sort(byPkg(ctxt.Library))
    		h := notsha256.New()
    		for _, l := range ctxt.Library {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    			// linking, in which case the relocation will be
    			// prepared in the 'reloc' phase and passed to the
    			// external linker in the 'asmb' phase.
    			if ldr.SymType(s) != sym.SDATA && ldr.SymType(s) != sym.SRODATA {
    				break
    			}
    		}
    		// Generate R_PPC64_RELATIVE relocations for best
    		// efficiency in the dynamic linker.
    		//
    		// As noted above, symbol addresses have not been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top