Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for dumpregs (0.18 sec)

  1. src/runtime/signal_riscv64.go

    // license that can be found in the LICENSE file.
    
    //go:build (linux || freebsd || openbsd) && riscv64
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("ra  ", hex(c.ra()), "\t")
    	print("sp  ", hex(c.sp()), "\n")
    	print("gp  ", hex(c.gp()), "\t")
    	print("tp  ", hex(c.tp()), "\n")
    	print("t0  ", hex(c.t0()), "\t")
    	print("t1  ", hex(c.t1()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/runtime/signal_mipsx.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips || mipsle)
    
    package runtime
    
    import (
    	"internal/abi"
    	"runtime/internal/sys"
    	"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: Thu Oct 28 18:17:57 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/signal_mips64x.go

    // license that can be found in the LICENSE file.
    
    //go:build (linux || openbsd) && (mips64 || mips64le)
    
    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: Thu Oct 28 18:17:57 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/defs_windows_arm64.go

    func (c *context) set_lr(x uintptr) { c.x[30] = uint64(x) }
    func (c *context) set_fp(x uintptr) { c.x[29] = uint64(x) }
    
    func prepareContextForSigResume(c *context) {
    	c.x[0] = c.xsp
    	c.x[1] = c.pc
    }
    
    func dumpregs(r *context) {
    	print("r0   ", hex(r.x[0]), "\n")
    	print("r1   ", hex(r.x[1]), "\n")
    	print("r2   ", hex(r.x[2]), "\n")
    	print("r3   ", hex(r.x[3]), "\n")
    	print("r4   ", hex(r.x[4]), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/runtime/signal_arm64.go

    //go:build darwin || freebsd || linux || netbsd || openbsd
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("r0      ", hex(c.r0()), "\n")
    	print("r1      ", hex(c.r1()), "\n")
    	print("r2      ", hex(c.r2()), "\n")
    	print("r3      ", hex(c.r3()), "\n")
    	print("r4      ", hex(c.r4()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/runtime/signal_linux_s390x.go

    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint64) {
    	*(*uintptr)(add(unsafe.Pointer(c.info), 2*goarch.PtrSize)) = uintptr(x)
    }
    
    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: Thu Jun 17 20:42:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. src/runtime/signal_ppc64x.go

    // license that can be found in the LICENSE file.
    
    //go:build (aix || linux || openbsd) && (ppc64 || ppc64le)
    
    package runtime
    
    import (
    	"internal/abi"
    	"runtime/internal/sys"
    	"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: Fri Sep 08 15:08:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/runtime/os3_plan9.go

    	print("PC=", hex(c.pc()), "\n")
    	print("\n")
    	level, _, docrash = gotraceback()
    	if level > 0 {
    		goroutineheader(gp)
    		tracebacktrap(c.pc(), c.sp(), c.lr(), gp)
    		tracebackothers(gp)
    		print("\n")
    		dumpregs(_ureg)
    	}
    	if docrash {
    		crash()
    	}
    Exit:
    	goexitsall(note)
    	exits(note)
    	return _NDFLT // not reached
    }
    
    func sigenable(sig uint32) {
    }
    
    func sigdisable(sig uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/statusgen.go

    			log.Infof("%s with %d ResourceNames", TypeDebugConfigDump, len(w.ResourceNames))
    			break
    		}
    		var err error
    		dumpRes, err := sg.debugConfigDump(w.ResourceNames[0])
    		if err != nil {
    			log.Infof("%s failed: %v", TypeDebugConfigDump, err)
    			break
    		}
    		res = dumpRes
    	}
    	return res, model.DefaultXdsLogDetails, nil
    }
    
    // isSidecar ad-hoc method to see if connection represents a sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top