Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SHF_EXECINSTR (0.67 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top