Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ET_REL (0.19 sec)

  1. src/debug/elf/file_test.go

    		},
    		nil,
    		nil,
    	},
    	{
    		"testdata/compressed-32.obj",
    		FileHeader{ELFCLASS32, ELFDATA2LSB, EV_CURRENT, ELFOSABI_NONE, 0x0, binary.LittleEndian, ET_REL, EM_386, 0x0},
    		[]SectionHeader{
    			{"", SHT_NULL, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    			{".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR, 0x0, 0x34, 0x17, 0x0, 0x0, 0x1, 0x0, 0x17},
    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/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			return start - loadSegment.Vaddr, nil
    		}
    
    		return 0, fmt.Errorf("don't know how to handle EXEC segment: %v start=0x%x limit=0x%x offset=0x%x", *loadSegment, start, limit, offset)
    	case elf.ET_REL:
    		if offset != 0 {
    			return 0, fmt.Errorf("don't know how to handle mapping.Offset")
    		}
    		return start, nil
    	case elf.ET_DYN:
    		// The process mapping information, start = start of virtual address range,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    	}
    
    	elfobj.is64 = is64
    
    	if v := uint32(hdrbuf[elf.EI_VERSION]); v != elfobj.version {
    		return errorf("malformed elf version: got %d, want %d", v, elfobj.version)
    	}
    
    	if elf.Type(elfobj.type_) != elf.ET_REL {
    		return errorf("elf but not elf relocatable object")
    	}
    
    	mach := elf.Machine(elfobj.machine)
    	switch arch.Family {
    	default:
    		return errorf("elf %s unimplemented", arch.Name)
    
    	case sys.MIPS:
    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/debug/elf/elf.go

    func (i OSABI) GoString() string { return stringName(uint32(i), osabiStrings, true) }
    
    // Type is found in Header.Type.
    type Type uint16
    
    const (
    	ET_NONE   Type = 0      /* Unknown type. */
    	ET_REL    Type = 1      /* Relocatable. */
    	ET_EXEC   Type = 2      /* Executable. */
    	ET_DYN    Type = 3      /* Shared object. */
    	ET_CORE   Type = 4      /* Core file. */
    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/link/internal/ld/elf.go

    	} else {
    		eh.Ident[elf.EI_DATA] = byte(elf.ELFDATA2LSB)
    	}
    	eh.Ident[elf.EI_VERSION] = byte(elf.EV_CURRENT)
    
    	if ctxt.LinkMode == LinkExternal {
    		eh.Type = uint16(elf.ET_REL)
    	} else if ctxt.BuildMode == BuildModePIE {
    		eh.Type = uint16(elf.ET_DYN)
    	} else {
    		eh.Type = uint16(elf.ET_EXEC)
    	}
    
    	if ctxt.LinkMode != LinkExternal {
    		eh.Entry = uint64(Entryvalue(ctxt))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ET_DYN", Const, 0},
    		{"ET_EXEC", Const, 0},
    		{"ET_HIOS", Const, 0},
    		{"ET_HIPROC", Const, 0},
    		{"ET_LOOS", Const, 0},
    		{"ET_LOPROC", Const, 0},
    		{"ET_NONE", Const, 0},
    		{"ET_REL", Const, 0},
    		{"EV_CURRENT", Const, 0},
    		{"EV_NONE", Const, 0},
    		{"ErrNoSymbols", Var, 4},
    		{"File", Type, 0},
    		{"File.FileHeader", Field, 0},
    		{"File.Progs", Field, 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 ET_HIOS Type
    pkg debug/elf, const ET_HIPROC Type
    pkg debug/elf, const ET_LOOS Type
    pkg debug/elf, const ET_LOPROC Type
    pkg debug/elf, const ET_NONE Type
    pkg debug/elf, const ET_REL Type
    pkg debug/elf, const EV_CURRENT Version
    pkg debug/elf, const EV_NONE Version
    pkg debug/elf, const NT_FPREGSET NType
    pkg debug/elf, const NT_PRPSINFO NType
    pkg debug/elf, const NT_PRSTATUS NType
    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 ET_HIOS = 65279
    pkg debug/elf, const ET_HIPROC = 65535
    pkg debug/elf, const ET_LOOS = 65024
    pkg debug/elf, const ET_LOPROC = 65280
    pkg debug/elf, const ET_NONE = 0
    pkg debug/elf, const ET_REL = 1
    pkg debug/elf, const EV_CURRENT = 1
    pkg debug/elf, const EV_NONE = 0
    pkg debug/elf, const NT_FPREGSET = 2
    pkg debug/elf, const NT_PRPSINFO = 3
    pkg debug/elf, const NT_PRSTATUS = 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