Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SHF_EXECINSTR (0.32 sec)

  1. src/cmd/internal/objfile/elf.go

    		default:
    			i := int(s.Section)
    			if i < 0 || i >= len(f.elf.Sections) {
    				break
    			}
    			sect := f.elf.Sections[i]
    			switch sect.Flags & (elf.SHF_WRITE | elf.SHF_ALLOC | elf.SHF_EXECINSTR) {
    			case elf.SHF_ALLOC | elf.SHF_EXECINSTR:
    				sym.Code = 'T'
    			case elf.SHF_ALLOC:
    				sym.Code = 'R'
    			case elf.SHF_ALLOC | elf.SHF_WRITE:
    				sym.Code = 'D'
    			}
    		}
    		if elf.ST_BIND(s.Info) == elf.STB_LOCAL {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 20:44:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			{".init", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x8048368, 0x368, 0x11, 0x0, 0x0, 0x4, 0x0, 0x11},
    			{".plt", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x804837c, 0x37c, 0x50, 0x0, 0x0, 0x4, 0x4, 0x50},
    			{".text", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x80483cc, 0x3cc, 0x180, 0x0, 0x0, 0x4, 0x0, 0x180},
    			{".fini", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x804854c, 0x54c, 0xc, 0x0, 0x0, 0x4, 0x0, 0xc},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    		}
    		sectsymNames[name] = true
    
    		sb := l.MakeSymbolUpdater(l.LookupOrCreateCgoExport(name, localSymVersion))
    
    		switch sect.flags & (elf.SHF_ALLOC | elf.SHF_WRITE | elf.SHF_EXECINSTR) {
    		default:
    			return errorf("%s: unexpected flags for ELF section %s", pn, sect.name)
    
    		case elf.SHF_ALLOC:
    			sb.SetType(sym.SRODATA)
    
    		case elf.SHF_ALLOC + elf.SHF_WRITE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    			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 {
    			sh.Entsize = 16
    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/debug/elf/elf.go

    // Section flags.
    type SectionFlag uint32
    
    const (
    	SHF_WRITE            SectionFlag = 0x1        /* Section contains writable data. */
    	SHF_ALLOC            SectionFlag = 0x2        /* Section occupies memory. */
    	SHF_EXECINSTR        SectionFlag = 0x4        /* Section contains instructions. */
    	SHF_MERGE            SectionFlag = 0x10       /* Section may be merged. */
    	SHF_STRINGS          SectionFlag = 0x20       /* Section contains strings. */
    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/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Rela64", Type, 0},
    		{"Rela64.Addend", Field, 0},
    		{"Rela64.Info", Field, 0},
    		{"Rela64.Off", Field, 0},
    		{"SHF_ALLOC", Const, 0},
    		{"SHF_COMPRESSED", Const, 6},
    		{"SHF_EXECINSTR", Const, 0},
    		{"SHF_GROUP", Const, 0},
    		{"SHF_INFO_LINK", Const, 0},
    		{"SHF_LINK_ORDER", Const, 0},
    		{"SHF_MASKOS", Const, 0},
    		{"SHF_MASKPROC", Const, 0},
    		{"SHF_MERGE", 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)
  7. api/go1.txt

    pkg debug/elf, const R_X86_64_TLSLD R_X86_64
    pkg debug/elf, const R_X86_64_TPOFF32 R_X86_64
    pkg debug/elf, const R_X86_64_TPOFF64 R_X86_64
    pkg debug/elf, const SHF_ALLOC SectionFlag
    pkg debug/elf, const SHF_EXECINSTR SectionFlag
    pkg debug/elf, const SHF_GROUP SectionFlag
    pkg debug/elf, const SHF_INFO_LINK SectionFlag
    pkg debug/elf, const SHF_LINK_ORDER SectionFlag
    pkg debug/elf, const SHF_MASKOS SectionFlag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg debug/elf, const R_X86_64_TLSLD = 20
    pkg debug/elf, const R_X86_64_TPOFF32 = 23
    pkg debug/elf, const R_X86_64_TPOFF64 = 18
    pkg debug/elf, const SHF_ALLOC = 2
    pkg debug/elf, const SHF_EXECINSTR = 4
    pkg debug/elf, const SHF_GROUP = 512
    pkg debug/elf, const SHF_INFO_LINK = 64
    pkg debug/elf, const SHF_LINK_ORDER = 128
    pkg debug/elf, const SHF_MASKOS = 267386880
    pkg debug/elf, const SHF_MASKPROC = 4026531840
    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