Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for set_r30 (0.15 sec)

  1. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) sigaddr() uint64 {
    	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) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/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
    
    	// scalar floating point
    	REG_F0
    	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 Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/list7.go

    	case ARNG_1Q:
    		return "Q1"
    	default:
    		return ""
    	}
    }
    
    func rconv(r int) string {
    	ext := (r >> 5) & 7
    	if r == REGG {
    		return "g"
    	}
    	switch {
    	case REG_R0 <= r && r <= REG_R30:
    		return fmt.Sprintf("R%d", r-REG_R0)
    	case r == REG_R31:
    		return "ZR"
    	case REG_F0 <= r && r <= REG_F31:
    		return fmt.Sprintf("F%d", r-REG_F0)
    	case REG_V0 <= r && r <= REG_V31:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/obj.go

    				q.From.Offset = int64(autosize) + ctxt.Arch.FixedFrameSize
    				q.Reg = REGSP
    				q.To.Type = obj.TYPE_REG
    				q.To.Reg = REG_R30
    
    				q = obj.Appendp(q, newprog)
    				q.As = ABNE
    				q.From.Type = obj.TYPE_REG
    				q.From.Reg = REG_R24
    				q.Reg = REG_R30
    				q.To.Type = obj.TYPE_BRANCH
    				q.Mark |= BRANCH
    				p2 = q
    
    				q = obj.Appendp(q, newprog)
    				q.As = add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	PT_R26                           = 0x1a
    	PT_R27                           = 0x1b
    	PT_R28                           = 0x1c
    	PT_R29                           = 0x1d
    	PT_R3                            = 0x3
    	PT_R30                           = 0x1e
    	PT_R31                           = 0x1f
    	PT_R4                            = 0x4
    	PT_R5                            = 0x5
    	PT_R6                            = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	PT_R26                           = 0x1a
    	PT_R27                           = 0x1b
    	PT_R28                           = 0x1c
    	PT_R29                           = 0x1d
    	PT_R3                            = 0x3
    	PT_R30                           = 0x1e
    	PT_R31                           = 0x1f
    	PT_R4                            = 0x4
    	PT_R5                            = 0x5
    	PT_R6                            = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	PT_R26                           = 0x1a
    	PT_R27                           = 0x1b
    	PT_R28                           = 0x1c
    	PT_R29                           = 0x1d
    	PT_R3                            = 0x3
    	PT_R30                           = 0x1e
    	PT_R31                           = 0x1f
    	PT_R4                            = 0x4
    	PT_R5                            = 0x5
    	PT_R6                            = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		if (uint64(v) &^ (uint64(0xFFFF) << uint(s))) == 0 {
    			return s / 16
    		}
    	}
    	return -1
    }
    
    func rclass(r int16) int {
    	switch {
    	case REG_R0 <= r && r <= REG_R30: // not 31
    		return C_REG
    	case r == REGZERO:
    		return C_ZREG
    	case REG_F0 <= r && r <= REG_F31:
    		return C_FREG
    	case REG_V0 <= r && r <= REG_V31:
    		return C_VREG
    	case r == REGSP:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/opGen.go

    	{24, arm64.REG_R24, 23, "R24"},
    	{25, arm64.REG_R25, 24, "R25"},
    	{26, arm64.REG_R26, 25, "R26"},
    	{27, arm64.REGG, -1, "g"},
    	{28, arm64.REG_R29, -1, "R29"},
    	{29, arm64.REG_R30, 26, "R30"},
    	{30, arm64.REGSP, -1, "SP"},
    	{31, arm64.REG_F0, -1, "F0"},
    	{32, arm64.REG_F1, -1, "F1"},
    	{33, arm64.REG_F2, -1, "F2"},
    	{34, arm64.REG_F3, -1, "F3"},
    	{35, arm64.REG_F4, -1, "F4"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top