Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for EIP (0.06 sec)

  1. src/runtime/defs_windows_386.go

    	edx               uint32
    	ecx               uint32
    	eax               uint32
    	ebp               uint32
    	eip               uint32
    	segcs             uint32
    	eflags            uint32
    	esp               uint32
    	segss             uint32
    	extendedregisters [512]uint8
    }
    
    func (c *context) ip() uintptr { return uintptr(c.eip) }
    func (c *context) sp() uintptr { return uintptr(c.esp) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/testdata/testwinlib/main.c

            // prepare context to resume execution
            CONTEXT *c = ExceptionInfo->ContextRecord;
    #ifdef _AMD64_
            c->Rip = *(DWORD64 *)c->Rsp;
            c->Rsp += 8;
    #elif defined(_X86_)
            c->Eip = *(DWORD *)c->Esp;
            c->Esp += 4;
    #else
            c->Pc = c->Lr;
    #endif
    #ifdef _ARM64_
            // TODO: remove when windows/arm64 supports SEH stack unwinding.
            return EXCEPTION_CONTINUE_EXECUTION;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    	Ebx      int32
    	Ecx      int32
    	Edx      int32
    	Esi      int32
    	Edi      int32
    	Ebp      int32
    	Eax      int32
    	Xds      int32
    	Xes      int32
    	Xfs      int32
    	Xgs      int32
    	Orig_eax int32
    	Eip      int32
    	Xcs      int32
    	Eflags   int32
    	Esp      int32
    	Xss      int32
    }
    
    // PtraceGetRegs386 fetches the registers used by 386 binaries.
    func PtraceGetRegs386(pid int, regsout *PtraceRegs386) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. security/pkg/pki/util/san.go

    		if ipa, _ := netip.ParseAddr(host); ipa.IsValid() {
    			// Use the 4-byte representation of the IP address when possible.
    			ip := ipa.AsSlice()
    			if ipa.Is4In6() {
    				eip := ipa.As4()
    				ip = eip[:]
    			}
    			ids = append(ids, Identity{Type: TypeIP, Value: ip})
    		} else if strings.HasPrefix(host, spiffe.URIPrefix) {
    			ids = append(ids, Identity{Type: TypeURI, Value: []byte(host)})
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	RSP:  "RSP",
    	RBP:  "RBP",
    	RSI:  "RSI",
    	RDI:  "RDI",
    	R8:   "R8",
    	R9:   "R9",
    	R10:  "R10",
    	R11:  "R11",
    	R12:  "R12",
    	R13:  "R13",
    	R14:  "R14",
    	R15:  "R15",
    	IP:   "IP",
    	EIP:  "EIP",
    	RIP:  "RIP",
    	F0:   "F0",
    	F1:   "F1",
    	F2:   "F2",
    	F3:   "F3",
    	F4:   "F4",
    	F5:   "F5",
    	F6:   "F6",
    	F7:   "F7",
    	M0:   "M0",
    	M1:   "M1",
    	M2:   "M2",
    	M3:   "M3",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	if a.Segment != 0 || a.Disp == 0 || a.Index != 0 || a.Scale != 0 {
    		return "", 0
    	}
    
    	var disp uint64
    	switch a.Base {
    	case IP, EIP, RIP:
    		disp = uint64(a.Disp + int64(pc) + int64(instrLen))
    	case 0:
    		disp = uint64(a.Disp)
    	default:
    		return "", 0
    	}
    
    	s, base := symname(disp)
    	return s, int64(disp) - int64(base)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_386.go

    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/runtime/defs_linux_386.go

    	esi           uint32
    	ebp           uint32
    	esp           uint32
    	ebx           uint32
    	edx           uint32
    	ecx           uint32
    	eax           uint32
    	trapno        uint32
    	err           uint32
    	eip           uint32
    	cs            uint16
    	__csh         uint16
    	eflags        uint32
    	esp_at_signal uint32
    	ss            uint16
    	__ssh         uint16
    	fpstate       *fpstate
    	oldmask       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_386.go

    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/runtime/defs_darwin_amd64.go

    }
    
    type regs32 struct {
    	eax    uint32
    	ebx    uint32
    	ecx    uint32
    	edx    uint32
    	edi    uint32
    	esi    uint32
    	ebp    uint32
    	esp    uint32
    	ss     uint32
    	eflags uint32
    	eip    uint32
    	cs     uint32
    	ds     uint32
    	es     uint32
    	fs     uint32
    	gs     uint32
    }
    
    type floatstate32 struct {
    	fpu_reserved  [2]int32
    	fpu_fcw       fpcontrol
    	fpu_fsw       fpstatus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top