Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for r24 (0.02 sec)

  1. src/runtime/signal_linux_arm64.go

    func (c *sigctxt) r21() uint64 { return c.regs().regs[21] }
    func (c *sigctxt) r22() uint64 { return c.regs().regs[22] }
    func (c *sigctxt) r23() uint64 { return c.regs().regs[23] }
    func (c *sigctxt) r24() uint64 { return c.regs().regs[24] }
    func (c *sigctxt) r25() uint64 { return c.regs().regs[25] }
    func (c *sigctxt) r26() uint64 { return c.regs().regs[26] }
    func (c *sigctxt) r27() uint64 { return c.regs().regs[27] }
    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/defs_windows_arm64.go

    	print("r18  ", hex(r.x[18]), "\n")
    	print("r19  ", hex(r.x[19]), "\n")
    	print("r20  ", hex(r.x[20]), "\n")
    	print("r21  ", hex(r.x[21]), "\n")
    	print("r22  ", hex(r.x[22]), "\n")
    	print("r23  ", hex(r.x[23]), "\n")
    	print("r24  ", hex(r.x[24]), "\n")
    	print("r25  ", hex(r.x[25]), "\n")
    	print("r26  ", hex(r.x[26]), "\n")
    	print("r27  ", hex(r.x[27]), "\n")
    	print("r28  ", hex(r.x[28]), "\n")
    	print("r29  ", hex(r.x[29]), "\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)
  3. src/runtime/signal_freebsd_arm64.go

    func (c *sigctxt) r21() uint64 { return c.regs().mc_gpregs.gp_x[21] }
    func (c *sigctxt) r22() uint64 { return c.regs().mc_gpregs.gp_x[22] }
    func (c *sigctxt) r23() uint64 { return c.regs().mc_gpregs.gp_x[23] }
    func (c *sigctxt) r24() uint64 { return c.regs().mc_gpregs.gp_x[24] }
    func (c *sigctxt) r25() uint64 { return c.regs().mc_gpregs.gp_x[25] }
    func (c *sigctxt) r26() uint64 { return c.regs().mc_gpregs.gp_x[26] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/signal_openbsd_arm64.go

    func (c *sigctxt) r21() uint64 { return (uint64)(c.regs().sc_x[21]) }
    func (c *sigctxt) r22() uint64 { return (uint64)(c.regs().sc_x[22]) }
    func (c *sigctxt) r23() uint64 { return (uint64)(c.regs().sc_x[23]) }
    func (c *sigctxt) r24() uint64 { return (uint64)(c.regs().sc_x[24]) }
    func (c *sigctxt) r25() uint64 { return (uint64)(c.regs().sc_x[25]) }
    func (c *sigctxt) r26() uint64 { return (uint64)(c.regs().sc_x[26]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/doc.go

    # Instructions mnemonics mapping rules
    
    1. Most instructions use width suffixes of instruction names to indicate operand width rather than
    using different register names.
    
    Examples:
    
    	ADC R24, R14, R12          <=>     adc x12, x14, x24
    	ADDW R26->24, R21, R15     <=>     add w15, w21, w26, asr #24
    	FCMPS F2, F3               <=>     fcmp s3, s2
    	FCMPD F2, F3               <=>     fcmp d3, d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    const (
    	_ Reg = iota
    	R0
    	R1
    	R2
    	R3
    	R4
    	R5
    	R6
    	R7
    	R8
    	R9
    	R10
    	R11
    	R12
    	R13
    	R14
    	R15
    	R16
    	R17
    	R18
    	R19
    	R20
    	R21
    	R22
    	R23
    	R24
    	R25
    	R26
    	R27
    	R28
    	R29
    	R30
    	R31
    	F0
    	F1
    	F2
    	F3
    	F4
    	F5
    	F6
    	F7
    	F8
    	F9
    	F10
    	F11
    	F12
    	F13
    	F14
    	F15
    	F16
    	F17
    	F18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"R13",
    	"R14",
    	"R15",
    	"R16",
    	"R17",
    	"R18",
    	"R19",
    	"R20",
    	"R21",
    	"g", // aka R22
    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	"R27",
    	"R28",
    	"R29",
    	// R30 is REGTMP not used in regalloc
    	"R31",
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_ppc64x.s

    	MOVWZ	off(ptr),dst
    #else
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVD	$off,idx; \
    	MOVWBR	(idx)(ptr), dst
    #endif
    
    #define M00 R18
    #define M01 R19
    #define M02 R20
    #define M03 R24
    #define M04 R25
    #define M05 R26
    #define M06 R27
    #define M07 R28
    #define M08 R29
    #define M09 R21
    #define M10 R11
    #define M11 R8
    #define M12 R7
    #define M13 R12
    #define M14 R23
    #define M15 R10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/runtime/asm_ppc64x.s

    	MOVD	R15, 168(R1)
    	MOVD	R16, 176(R1)
    	MOVD	R17, 184(R1)
    	MOVD	R18, 192(R1)
    	MOVD	R19, 200(R1)
    	MOVD	R20, 208(R1)
    	MOVD	R21, 216(R1)
    	MOVD	R22, 224(R1)
    	MOVD	R23, 232(R1)
    	MOVD	R24, 240(R1)
    	MOVD	R25, 248(R1)
    	MOVD	R26, 256(R1)
    	MOVD	R27, 264(R1)
    	MOVD	R28, 272(R1)
    	MOVD	R29, 280(R1)
    	MOVD	g, 288(R1)
    	MOVD	LR, R31
    	MOVD	R31, 32(R1)
    	CALL	runtimeĀ·debugCallCheck(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"R13",
    	"R14",
    	"R15",
    	"R16",
    	"R17",
    	"R18",
    	"R19",
    	"R20",
    	"R21",
    	"R22",
    	//REGTMP
    	"R24",
    	"R25",
    	// R26 reserved by kernel
    	// R27 reserved by kernel
    	"R28",
    	"SP",  // aka R29
    	"g",   // aka R30
    	"R31", // REGLINK
    
    	// odd FP registers contain high parts of 64-bit FP values
    	"F0",
    	"F2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top