Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for EFLAGS (0.1 sec)

  1. src/runtime/defs_windows_386.go

    	print("edi     ", hex(r.edi), "\n")
    	print("esi     ", hex(r.esi), "\n")
    	print("ebp     ", hex(r.ebp), "\n")
    	print("esp     ", hex(r.esp), "\n")
    	print("eip     ", hex(r.eip), "\n")
    	print("eflags  ", hex(r.eflags), "\n")
    	print("cs      ", hex(r.segcs), "\n")
    	print("fs      ", hex(r.segfs), "\n")
    	print("gs      ", hex(r.seggs), "\n")
    }
    
    // _DISPATCHER_CONTEXT is not defined on 386.
    type _DISPATCHER_CONTEXT struct{}
    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_linux_386.go

    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) }
    func (c *sigctxt) gs() uint32      { return uint32(c.regs().gs) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    	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. src/runtime/signal_386.go

    	print("edi    ", hex(c.edi()), "\n")
    	print("esi    ", hex(c.esi()), "\n")
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/runtime/defs_windows_amd64.go

    	mxcsr                uint32
    	segcs                uint16
    	segds                uint16
    	seges                uint16
    	segfs                uint16
    	seggs                uint16
    	segss                uint16
    	eflags               uint32
    	dr0                  uint64
    	dr1                  uint64
    	dr2                  uint64
    	dr3                  uint64
    	dr6                  uint64
    	dr7                  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/runtime/signal_linux_amd64.go

    func (c *sigctxt) r15() uint64 { return c.regs().r15 }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) rip() uint64 { return c.regs().rip }
    
    func (c *sigctxt) rflags() uint64  { return c.regs().eflags }
    func (c *sigctxt) cs() uint64      { return uint64(c.regs().cs) }
    func (c *sigctxt) fs() uint64      { return uint64(c.regs().fs) }
    func (c *sigctxt) gs() uint64      { return uint64(c.regs().gs) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. src/runtime/signal_freebsd_386.go

    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 }
    func (c *sigctxt) gs() uint32      { return c.regs().mc_gs }
    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. src/runtime/signal_openbsd_386.go

    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 }
    func (c *sigctxt) gs() uint32      { return c.regs().sc_gs }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/signal_netbsd_386.go

    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] }
    func (c *sigctxt) fs() uint32      { return c.regs().__gregs[_REG_FS] }
    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/regexp/testdata/testregex.c

    			if (nexec >= 0)
    			{
    				eret = regnexec(&preg, s, nexec, nmatch, match, eflags);
    				s[nexec] = 0;
    			}
    			else
    #endif
    			{
    				if (!(test & TEST_CATCH))
    					eret = regexec(&preg, s, nmatch, match, eflags);
    				else if (!(eret = setjmp(state.gotcha)))
    				{
    					alarm(HUNG);
    					eret = regexec(&preg, s, nmatch, match, eflags);
    					alarm(0);
    				}
    			}
    #if _REG_subcomp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
Back to top