Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for EIP (0.07 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/signal_386.go

    	print("ebp    ", hex(c.ebp()), "\n")
    	print("esp    ", hex(c.esp()), "\n")
    	print("eip    ", hex(c.eip()), "\n")
    	print("eflags ", hex(c.eflags()), "\n")
    	print("cs     ", hex(c.cs()), "\n")
    	print("fs     ", hex(c.fs()), "\n")
    	print("gs     ", hex(c.gs()), "\n")
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) sigpc() uintptr { return uintptr(c.eip()) }
    
    func (c *sigctxt) sigsp() uintptr { return uintptr(c.esp()) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. src/runtime/signal_linux_386.go

    func (c *sigctxt) ebp() uint32 { return c.regs().ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().eflags }
    func (c *sigctxt) cs() uint32      { return uint32(c.regs().cs) }
    func (c *sigctxt) fs() uint32      { return uint32(c.regs().fs) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/runtime/signal_freebsd_386.go

    func (c *sigctxt) ebp() uint32 { return c.regs().mc_ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().mc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().mc_eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().mc_eflags }
    func (c *sigctxt) cs() uint32      { return c.regs().mc_cs }
    func (c *sigctxt) fs() uint32      { return c.regs().mc_fs }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  7. src/runtime/signal_openbsd_386.go

    func (c *sigctxt) ebp() uint32 { return c.regs().sc_ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().sc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().sc_eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().sc_eflags }
    func (c *sigctxt) cs() uint32      { return c.regs().sc_cs }
    func (c *sigctxt) fs() uint32      { return c.regs().sc_fs }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/signal_netbsd_386.go

    func (c *sigctxt) ebp() uint32 { return c.regs().__gregs[_REG_EBP] }
    func (c *sigctxt) esp() uint32 { return c.regs().__gregs[_REG_UESP] }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().__gregs[_REG_EIP] }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().__gregs[_REG_EFL] }
    func (c *sigctxt) cs() uint32      { return c.regs().__gregs[_REG_CS] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top