Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for set_r30 (0.32 sec)

  1. src/runtime/signal_aix_ppc64.go

    func (c *sigctxt) sigaddr() uint64 { return uint64(c.info.si_addr) }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.sigaddr()) }
    
    func (c *sigctxt) set_r0(x uint64)   { c.regs().gpr[0] = x }
    func (c *sigctxt) set_r12(x uint64)  { c.regs().gpr[12] = x }
    func (c *sigctxt) set_r30(x uint64)  { c.regs().gpr[30] = x }
    func (c *sigctxt) set_pc(x uint64)   { c.regs().iar = x }
    func (c *sigctxt) set_sp(x uint64)   { c.regs().gpr[1] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd_ppc64.go

    	return *(*uint64)(add(unsafe.Pointer(c.info), 16))
    }
    func (c *sigctxt) fault() uintptr { return uintptr(c.sigaddr()) }
    
    func (c *sigctxt) set_r0(x uint64)   { c.regs().sc_reg[0] = x }
    func (c *sigctxt) set_r12(x uint64)  { c.regs().sc_reg[12] = x }
    func (c *sigctxt) set_r30(x uint64)  { c.regs().sc_reg[30] = x }
    func (c *sigctxt) set_pc(x uint64)   { c.regs().sc_pc = x }
    func (c *sigctxt) set_sp(x uint64)   { c.regs().sc_reg[1] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/runtime/signal_linux_ppc64x.go

    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.regs().dar) }
    
    func (c *sigctxt) set_r0(x uint64)   { c.regs().gpr[0] = x }
    func (c *sigctxt) set_r12(x uint64)  { c.regs().gpr[12] = x }
    func (c *sigctxt) set_r30(x uint64)  { c.regs().gpr[30] = x }
    func (c *sigctxt) set_pc(x uint64)   { c.regs().nip = x }
    func (c *sigctxt) set_sp(x uint64)   { c.regs().gpr[1] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/runtime/signal_ppc64x.go

    		// Make it look the like faulting PC called sigpanic.
    		c.set_link(uint64(pc))
    	}
    
    	// In case we are panicking from external C code
    	c.set_r0(0)
    	c.set_r30(uint64(uintptr(unsafe.Pointer(gp))))
    	c.set_r12(uint64(abi.FuncPCABIInternal(sigpanic)))
    	c.set_pc(uint64(abi.FuncPCABIInternal(sigpanic)))
    }
    
    func (c *sigctxt) pushCall(targetPC, resumePC uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/a.out.go

    	REG_R12
    	REG_R13
    	REG_R14
    	REG_R15
    	REG_R16
    	REG_R17
    	REG_R18
    	REG_R19
    	REG_R20
    	REG_R21
    	REG_R22
    	REG_R23
    	REG_R24
    	REG_R25
    	REG_R26
    	REG_R27
    	REG_R28
    	REG_R29
    	REG_R30
    	REG_R31
    
    	REG_F0 // must be a multiple of 32
    	REG_F1
    	REG_F2
    	REG_F3
    	REG_F4
    	REG_F5
    	REG_F6
    	REG_F7
    	REG_F8
    	REG_F9
    	REG_F10
    	REG_F11
    	REG_F12
    	REG_F13
    	REG_F14
    	REG_F15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/runtime/signal_riscv64.go

    	c.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = c.ra()
    
    	pc := gp.sigpc
    
    	if shouldPushSigpanic(gp, pc, uintptr(c.ra())) {
    		// Make it look the like faulting PC called sigpanic.
    		c.set_ra(uint64(pc))
    	}
    
    	// In case we are panicking from external C code
    	c.set_gp(uint64(uintptr(unsafe.Pointer(gp))))
    	c.set_pc(uint64(abi.FuncPCABIInternal(sigpanic)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/a.out.go

    	REG_R12
    	REG_R13
    	REG_R14
    	REG_R15
    	REG_R16
    	REG_R17
    	REG_R18
    	REG_R19
    	REG_R20
    	REG_R21
    	REG_R22
    	REG_R23
    	REG_R24
    	REG_R25
    	REG_R26
    	REG_R27
    	REG_R28
    	REG_R29
    	REG_R30
    	REG_R31
    
    	REG_F0 // must be a multiple of 32
    	REG_F1
    	REG_F2
    	REG_F3
    	REG_F4
    	REG_F5
    	REG_F6
    	REG_F7
    	REG_F8
    	REG_F9
    	REG_F10
    	REG_F11
    	REG_F12
    	REG_F13
    	REG_F14
    	REG_F15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/a.out.go

    	REGCTXT = REG_R11 /* context for closures */
    	REGTLS  = REG_R13 /* C ABI TLS base pointer */
    	REGMAX  = REG_R27
    	REGEXT  = REG_R30 /* external registers allocated from here down */
    	REGG    = REG_R30 /* G */
    	REGTMP  = REG_R31 /* used by the linker */
    	FREGRET = REG_F0
    	FREGMIN = REG_F17 /* first register variable */
    	FREGMAX = REG_F26 /* last register variable for 9g only */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/runtime/signal_freebsd_arm64.go

    func (c *sigctxt) set_pc(x uint64)  { c.regs().mc_gpregs.gp_elr = x }
    func (c *sigctxt) set_sp(x uint64)  { c.regs().mc_gpregs.gp_sp = x }
    func (c *sigctxt) set_lr(x uint64)  { c.regs().mc_gpregs.gp_lr = x }
    func (c *sigctxt) set_r28(x uint64) { c.regs().mc_gpregs.gp_x[28] = 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 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/runtime/signal_openbsd_arm64.go

    func (c *sigctxt) set_pc(x uint64)  { c.regs().sc_elr = uintptr(x) }
    func (c *sigctxt) set_sp(x uint64)  { c.regs().sc_sp = uintptr(x) }
    func (c *sigctxt) set_lr(x uint64)  { c.regs().sc_lr = uintptr(x) }
    func (c *sigctxt) set_r28(x uint64) { c.regs().sc_x[28] = uintptr(x) }
    
    func (c *sigctxt) set_sigcode(x uint64) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint64) {
    	*(*uint64)(add(unsafe.Pointer(c.info), 16)) = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top