Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for v4Addr (0.11 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    				ab.Put1(byte(vaddr(ctxt, p, &p.To, nil)))
    
    			case Zibo_m:
    				ab.Put1(byte(op))
    				ab.asmando(ctxt, cursym, p, &p.To, int(o.op[z+1]))
    				ab.Put1(byte(vaddr(ctxt, p, &p.From, nil)))
    
    			case Zibo_m_xm:
    				z = ab.mediaop(ctxt, o, op, int(yt.zoffset), z)
    				ab.asmando(ctxt, cursym, p, &p.To, int(o.op[z+1]))
    				ab.Put1(byte(vaddr(ctxt, p, &p.From, nil)))
    
    			case Z_ib, Zib_:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/runtime/vdso_linux.go

    }
    
    type vdsoVersionKey struct {
    	version string
    	verHash uint32
    }
    
    type vdsoInfo struct {
    	valid bool
    
    	/* Load information */
    	loadAddr   uintptr
    	loadOffset uintptr /* loadAddr - recorded vaddr */
    
    	/* Symbol table */
    	symtab     *[vdsoSymTabSize]elfSym
    	symstrings *[vdsoSymStringsSize]byte
    	chain      []uint32
    	bucket     []uint32
    	symOff     uint32
    	isGNUHash  bool
    
    	/* Version table */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    				Flags:  ProgFlag(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Flags):])),
    				Off:    uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Off):])),
    				Vaddr:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Vaddr):])),
    				Paddr:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Paddr):])),
    				Filesz: uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Filesz):])),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			segSize += newSect.Size
    		}
    		seg.Filesz = segSize
    	} else {
    		seg.Filesz = dwarfsize
    	}
    
    	// We want the DWARF segment to be considered non-loadable, so
    	// force vmaddr and vmsize to zero. In addition, set the initial
    	// protection to zero so as to make the dynamic loader happy,
    	// since otherwise it may complain that the vm size and file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		// page-aligned but isn't the same as Vaddr, we would symbolize
    		// wrong. So if the name the addresses aren't page aligned, or if
    		// the name is "vmlinux" we read _stext. We can be wrong if: (1)
    		// someone passes a kernel path that doesn't contain "vmlinux" AND
    		// (2) _stext is page-aligned AND (3) _stext is not at Vaddr
    		symbols, err := ef.Symbols()
    		if err != nil && err != elf.ErrNoSymbols {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    	// and sections, since the layout of these within the file is
    	// based on Section.Vaddr and Symbol.Value.
    	pos := Segdwarf.Vaddr
    	var prevSect *sym.Section
    	for _, si := range dwarfp {
    		for _, s := range si.syms {
    			ldr.SetSymValue(s, int64(pos))
    			sect := ldr.SymSect(s)
    			if sect != prevSect {
    				sect.Vaddr = uint64(pos)
    				prevSect = sect
    			}
    			if ldr.SubSym(s) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^PERF_/ ||
    		$2 ~ /^SECCOMP_/ ||
    		$2 ~ /^SEEK_/ ||
    		$2 ~ /^SCHED_/ ||
    		$2 ~ /^SPLICE_/ ||
    		$2 ~ /^SYNC_FILE_RANGE_/ ||
    		$2 !~ /IOC_MAGIC/ &&
    		$2 ~ /^[A-Z][A-Z0-9_]+_MAGIC2?$/ ||
    		$2 ~ /^(VM|VMADDR)_/ ||
    		$2 ~ /^IOCTL_VM_SOCKETS_/ ||
    		$2 ~ /^(TASKSTATS|TS)_/ ||
    		$2 ~ /^CGROUPSTATS_/ ||
    		$2 ~ /^GENL_/ ||
    		$2 ~ /^STATX_/ ||
    		$2 ~ /^RENAME/ ||
    		$2 ~ /^UBI_IOC[A-Z]/ ||
    		$2 ~ /^UTIME_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc.go

    	ai := arenaIndex(addr.addr())
    	if p.test || mheap_.arenas[ai.l1()] == nil || mheap_.arenas[ai.l1()][ai.l2()] == nil {
    		vAddr, ok := p.inUse.findAddrGreaterEqual(addr.addr())
    		if ok {
    			return offAddr{vAddr}
    		} else {
    			// The candidate search address is greater than any
    			// known address, which means we definitely have no
    			// free memory left.
    			return maxOffAddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	return s
    }
    
    func datoff(ldr *loader.Loader, s loader.Sym, addr int64) int64 {
    	if uint64(addr) >= Segdata.Vaddr {
    		return int64(uint64(addr) - Segdata.Vaddr + Segdata.Fileoff)
    	}
    	if uint64(addr) >= Segtext.Vaddr {
    		return int64(uint64(addr) - Segtext.Vaddr + Segtext.Fileoff)
    	}
    	ldr.Errorf(s, "invalid datoff %#x", addr)
    	return 0
    }
    
    func Entryvalue(ctxt *Link) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	Entsize   uint32 /* Size of each entry in section. */
    }
    
    // ELF32 Program header.
    type Prog32 struct {
    	Type   uint32 /* Entry type. */
    	Off    uint32 /* File offset of contents. */
    	Vaddr  uint32 /* Virtual address in memory image. */
    	Paddr  uint32 /* Physical address (not used). */
    	Filesz uint32 /* Size of contents in file. */
    	Memsz  uint32 /* Size of contents in memory. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top