Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for set_rip (0.12 sec)

  1. src/runtime/signal_linux_riscv64.go

    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_pc(x uint64) { c.regs().sc_regs.pc = x }
    func (c *sigctxt) set_ra(x uint64) { c.regs().sc_regs.ra = x }
    func (c *sigctxt) set_sp(x uint64) { c.regs().sc_regs.sp = x }
    func (c *sigctxt) set_gp(x uint64) { c.regs().sc_regs.gp = x }
    
    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. src/runtime/signal_freebsd_riscv64.go

    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_pc(x uint64) { c.regs().mc_gpregs.gp_sepc = x }
    func (c *sigctxt) set_ra(x uint64) { c.regs().mc_gpregs.gp_ra = x }
    func (c *sigctxt) set_sp(x uint64) { c.regs().mc_gpregs.gp_sp = x }
    func (c *sigctxt) set_gp(x uint64) { c.regs().mc_gpregs.gp_gp = x }
    
    func (c *sigctxt) set_sigcode(x uint64) { c.info.si_code = int32(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:17:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/signal_openbsd_riscv64.go

    	return *(*uint64)(add(unsafe.Pointer(c.info), 2*goarch.PtrSize))
    }
    
    func (c *sigctxt) set_pc(x uint64) { c.regs().sc_sepc = uintptr(x) }
    func (c *sigctxt) set_ra(x uint64) { c.regs().sc_ra = uintptr(x) }
    func (c *sigctxt) set_sp(x uint64) { c.regs().sc_sp = uintptr(x) }
    func (c *sigctxt) set_gp(x uint64) { c.regs().sc_gp = uintptr(x) }
    
    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/signal_arm64.go

    	pc := gp.sigpc
    
    	if shouldPushSigpanic(gp, pc, uintptr(c.lr())) {
    		// Make it look the like faulting PC called sigpanic.
    		c.set_lr(uint64(pc))
    	}
    
    	// In case we are panicking from external C code
    	c.set_r28(uint64(uintptr(unsafe.Pointer(gp))))
    	c.set_pc(uint64(abi.FuncPCABIInternal(sigpanic)))
    }
    
    func (c *sigctxt) pushCall(targetPC, resumePC uintptr) {
    	// Push the LR to stack, as we'll clobber it in order to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/runtime/write_err_android.go

    	writeFD = uintptr(open(&writePath[0], 0x1 /* O_WRONLY */, 0))
    	if writeFD == 0 {
    		// It is hard to do anything here. Write to stderr just
    		// in case user has root on device and has run
    		//	adb shell setprop log.redirect-stdio true
    		msg := []byte("runtime: cannot open /dev/log/main\x00")
    		write(2, unsafe.Pointer(&msg[0]), int32(len(msg)))
    		exit(2)
    	}
    
    	// Prepopulate the invariant header part.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top