Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SHT_PROGBITS (0.15 sec)

  1. src/debug/elf/file_test.go

    			{".debug_aranges", SHT_PROGBITS, 0x0, 0x0, 0x801, 0x20, 0x0, 0x0, 0x1, 0x0, 0x20},
    			{".debug_pubnames", SHT_PROGBITS, 0x0, 0x0, 0x821, 0x1b, 0x0, 0x0, 0x1, 0x0, 0x1b},
    			{".debug_info", SHT_PROGBITS, 0x0, 0x0, 0x83c, 0x11d, 0x0, 0x0, 0x1, 0x0, 0x11d},
    			{".debug_abbrev", SHT_PROGBITS, 0x0, 0x0, 0x959, 0x41, 0x0, 0x0, 0x1, 0x0, 0x41},
    			{".debug_line", SHT_PROGBITS, 0x0, 0x0, 0x99a, 0x35, 0x0, 0x0, 0x1, 0x0, 0x35},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		}
    
    		if elf.Machine(eh.Machine) == elf.EM_PPC64 {
    			sh := elfshname(".glink")
    			sh.Type = uint32(elf.SHT_PROGBITS)
    			sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_EXECINSTR)
    			sh.Addralign = 4
    			shsym(sh, ldr, ldr.Lookup(".glink", 0))
    		}
    
    		sh = elfshname(".plt")
    		sh.Type = uint32(elf.SHT_PROGBITS)
    		sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_EXECINSTR)
    		if elf.Machine(eh.Machine) == elf.EM_X86_64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	}
    }
    
    func readelfsymboldata(ctxt *Link, f *elf.File, sym *elf.Symbol) []byte {
    	data := make([]byte, sym.Size)
    	sect := f.Sections[sym.Section]
    	if sect.Type != elf.SHT_PROGBITS && sect.Type != elf.SHT_NOTE {
    		Errorf(nil, "reading %s from non-data section", sym.Name)
    	}
    	n, err := sect.ReadAt(data, int64(sym.Value-sect.Addr))
    	if uint64(n) != sym.Size {
    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