Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for dumpregs (0.21 sec)

  1. src/runtime/defs_plan9_arm.go

    func (c *sigctxt) setsp(x uintptr)  { c.u.sp = uint32(x) }
    func (c *sigctxt) setlr(x uintptr)  { c.u.link = uint32(x) }
    func (c *sigctxt) savelr(x uintptr) { c.u.r0 = uint32(x) }
    
    func dumpregs(u *ureg) {
    	print("r0    ", hex(u.r0), "\n")
    	print("r1    ", hex(u.r1), "\n")
    	print("r2    ", hex(u.r2), "\n")
    	print("r3    ", hex(u.r3), "\n")
    	print("r4    ", hex(u.r4), "\n")
    	print("r5    ", hex(u.r5), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/defs_plan9_amd64.go

    func (c *sigctxt) setpc(x uintptr) { c.u.ip = uint64(x) }
    func (c *sigctxt) setsp(x uintptr) { c.u.sp = uint64(x) }
    func (c *sigctxt) setlr(x uintptr) {}
    
    func (c *sigctxt) savelr(x uintptr) {}
    
    func dumpregs(u *ureg) {
    	print("ax    ", hex(u.ax), "\n")
    	print("bx    ", hex(u.bx), "\n")
    	print("cx    ", hex(u.cx), "\n")
    	print("dx    ", hex(u.dx), "\n")
    	print("di    ", hex(u.di), "\n")
    	print("si    ", hex(u.si), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/defs_plan9_386.go

    func (c *sigctxt) setpc(x uintptr) { c.u.pc = uint32(x) }
    func (c *sigctxt) setsp(x uintptr) { c.u.sp = uint32(x) }
    func (c *sigctxt) setlr(x uintptr) {}
    
    func (c *sigctxt) savelr(x uintptr) {}
    
    func dumpregs(u *ureg) {
    	print("ax    ", hex(u.ax), "\n")
    	print("bx    ", hex(u.bx), "\n")
    	print("cx    ", hex(u.cx), "\n")
    	print("dx    ", hex(u.dx), "\n")
    	print("di    ", hex(u.di), "\n")
    	print("si    ", hex(u.si), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/defs_windows_386.go

    // 386 does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    func prepareContextForSigResume(c *context) {
    	c.edx = c.esp
    	c.ecx = c.eip
    }
    
    func dumpregs(r *context) {
    	print("eax     ", hex(r.eax), "\n")
    	print("ebx     ", hex(r.ebx), "\n")
    	print("ecx     ", hex(r.ecx), "\n")
    	print("edx     ", hex(r.edx), "\n")
    	print("edi     ", hex(r.edi), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/runtime/signal_386.go

    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || linux || netbsd || openbsd
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("eax    ", hex(c.eax()), "\n")
    	print("ebx    ", hex(c.ebx()), "\n")
    	print("ecx    ", hex(c.ecx()), "\n")
    	print("edx    ", hex(c.edx()), "\n")
    	print("edi    ", hex(c.edi()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/runtime/signal_amd64.go

    //go:build amd64 && (darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris)
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("rax    ", hex(c.rax()), "\n")
    	print("rbx    ", hex(c.rbx()), "\n")
    	print("rcx    ", hex(c.rcx()), "\n")
    	print("rdx    ", hex(c.rdx()), "\n")
    	print("rdi    ", hex(c.rdi()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. src/runtime/defs_windows_arm.go

    // arm does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    func prepareContextForSigResume(c *context) {
    	c.r0 = c.spr
    	c.r1 = c.pc
    }
    
    func dumpregs(r *context) {
    	print("r0   ", hex(r.r0), "\n")
    	print("r1   ", hex(r.r1), "\n")
    	print("r2   ", hex(r.r2), "\n")
    	print("r3   ", hex(r.r3), "\n")
    	print("r4   ", hex(r.r4), "\n")
    	print("r5   ", hex(r.r5), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/runtime/signal_loong64.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && loong64
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("r0   ", hex(c.r0()), "\t")
    	print("r1   ", hex(c.r1()), "\n")
    	print("r2   ", hex(c.r2()), "\t")
    	print("r3   ", hex(c.r3()), "\n")
    	print("r4   ", hex(c.r4()), "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/runtime/defs_windows_amd64.go

    func (c *context) set_sp(x uintptr) { c.rsp = uint64(x) }
    func (c *context) set_fp(x uintptr) { c.rbp = uint64(x) }
    
    func prepareContextForSigResume(c *context) {
    	c.r8 = c.rsp
    	c.r9 = c.rip
    }
    
    func dumpregs(r *context) {
    	print("rax     ", hex(r.rax), "\n")
    	print("rbx     ", hex(r.rbx), "\n")
    	print("rcx     ", hex(r.rcx), "\n")
    	print("rdx     ", hex(r.rdx), "\n")
    	print("rdi     ", hex(r.rdi), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/runtime/signal_arm.go

    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || linux || netbsd || openbsd
    
    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("trap    ", hex(c.trap()), "\n")
    	print("error   ", hex(c.error()), "\n")
    	print("oldmask ", hex(c.oldmask()), "\n")
    	print("r0      ", hex(c.r0()), "\n")
    	print("r1      ", hex(c.r1()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top