Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for SHT_RELA (0.14 sec)

  1. src/debug/elf/file_test.go

    			{".gnu.version_r", SHT_LOOS + 268435454, SHF_ALLOC, 0x400330, 0x330, 0x20, 0x6, 0x1, 0x8, 0x0, 0x20},
    			{".rela.dyn", SHT_RELA, SHF_ALLOC, 0x400350, 0x350, 0x18, 0x5, 0x0, 0x8, 0x18, 0x18},
    			{".rela.plt", SHT_RELA, SHF_ALLOC, 0x400368, 0x368, 0x30, 0x5, 0xc, 0x8, 0x18, 0x30},
    			{".init", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x400398, 0x398, 0x18, 0x0, 0x0, 0x4, 0x0, 0x18},
    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

    			sh := elfshname(".rela.plt")
    			sh.Type = uint32(elf.SHT_RELA)
    			sh.Flags = uint64(elf.SHF_ALLOC)
    			sh.Entsize = ELF64RELASIZE
    			sh.Addralign = uint64(ctxt.Arch.RegSize)
    			sh.Link = uint32(elfshname(".dynsym").shnum)
    			sh.Info = uint32(elfshname(".plt").shnum)
    			shsym(sh, ldr, ldr.Lookup(".rela.plt", 0))
    
    			sh = elfshname(".rela")
    			sh.Type = uint32(elf.SHT_RELA)
    			sh.Flags = uint64(elf.SHF_ALLOC)
    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/elf_test.go

    				var ret uint64
    				for _, s := range ef.Sections {
    					if s.Flags&elf.SHF_ALLOC == 0 {
    						continue
    					}
    					switch s.Type {
    					case elf.SHT_DYNSYM, elf.SHT_STRTAB, elf.SHT_REL, elf.SHT_RELA, elf.SHT_HASH, elf.SHT_GNU_HASH, elf.SHT_GNU_VERDEF, elf.SHT_GNU_VERNEED, elf.SHT_GNU_VERSYM:
    						ret += s.Size
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadelf/ldelf.go

    		rsect := &elfobj.sect[i]
    		if rsect.type_ != elf.SHT_RELA && rsect.type_ != elf.SHT_REL {
    			continue
    		}
    		if rsect.info >= uint32(elfobj.nsect) || elfobj.sect[rsect.info].base == nil {
    			continue
    		}
    		sect = &elfobj.sect[rsect.info]
    		if err := elfmap(elfobj, rsect); err != nil {
    			return errorf("malformed elf file: %v", err)
    		}
    		rela := 0
    		if rsect.type_ == elf.SHT_RELA {
    			rela = 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	SHT_PROGBITS       SectionType = 1          /* program defined information */
    	SHT_SYMTAB         SectionType = 2          /* symbol table section */
    	SHT_STRTAB         SectionType = 3          /* string table section */
    	SHT_RELA           SectionType = 4          /* relocation section with addends */
    	SHT_HASH           SectionType = 5          /* symbol hash table section */
    	SHT_DYNAMIC        SectionType = 6          /* dynamic section */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    			// Relocations should already be applied, and .rela sections may
    			// contain incorrect data.
    			return b, nil
    		}
    
    		for _, r := range f.Sections {
    			if r.Type != SHT_RELA && r.Type != SHT_REL {
    				continue
    			}
    			if int(r.Info) != i {
    				continue
    			}
    			rd, err := r.Data()
    			if err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SHT_NOBITS", Const, 0},
    		{"SHT_NOTE", Const, 0},
    		{"SHT_NULL", Const, 0},
    		{"SHT_PREINIT_ARRAY", Const, 0},
    		{"SHT_PROGBITS", Const, 0},
    		{"SHT_REL", Const, 0},
    		{"SHT_RELA", Const, 0},
    		{"SHT_SHLIB", Const, 0},
    		{"SHT_STRTAB", Const, 0},
    		{"SHT_SYMTAB", Const, 0},
    		{"SHT_SYMTAB_SHNDX", Const, 0},
    		{"STB_GLOBAL", Const, 0},
    		{"STB_HIOS", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg debug/elf, const SHT_NULL SectionType
    pkg debug/elf, const SHT_PREINIT_ARRAY SectionType
    pkg debug/elf, const SHT_PROGBITS SectionType
    pkg debug/elf, const SHT_REL SectionType
    pkg debug/elf, const SHT_RELA SectionType
    pkg debug/elf, const SHT_SHLIB SectionType
    pkg debug/elf, const SHT_STRTAB SectionType
    pkg debug/elf, const SHT_SYMTAB SectionType
    pkg debug/elf, const SHT_SYMTAB_SHNDX SectionType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg debug/elf, const SHT_NOTE = 7
    pkg debug/elf, const SHT_NULL = 0
    pkg debug/elf, const SHT_PREINIT_ARRAY = 16
    pkg debug/elf, const SHT_PROGBITS = 1
    pkg debug/elf, const SHT_REL = 9
    pkg debug/elf, const SHT_RELA = 4
    pkg debug/elf, const SHT_SHLIB = 10
    pkg debug/elf, const SHT_STRTAB = 3
    pkg debug/elf, const SHT_SYMTAB = 2
    pkg debug/elf, const SHT_SYMTAB_SHNDX = 18
    pkg debug/elf, const STB_GLOBAL = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top