Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for r15 (2.89 sec)

  1. src/cmd/asm/internal/asm/operand_test.go

    	{"R11", "R11"},
    	{"R12", "R12"},
    	{"R13", "R13"},
    	{"R14", "R14"},
    	{"R15", "R15"},
    	{"R1<<2(R3)", "R1<<2(R3)"},
    	{"R(1)<<2(R(3))", "R1<<2(R3)"},
    	{"R2", "R2"},
    	{"R3", "R3"},
    	{"R4", "R4"},
    	{"R(4)", "R4"},
    	{"R5", "R5"},
    	{"R6", "R6"},
    	{"R7", "R7"},
    	{"R8", "R8"},
    	{"[R0,R1,g,R15]", "[R0,R1,g,R15]"},
    	{"[R0-R7]", "[R0,R1,R2,R3,R4,R5,R6,R7]"},
    	{"[R(0)-R(7)]", "[R0,R1,R2,R3,R4,R5,R6,R7]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9400/asm_arm.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc
    
    #include "textflag.h"
    
    TEXT cas<>(SB),NOSPLIT,$0
    	MOVW	$0xffff0fc0, R15 // R15 is PC
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Save link register
    	MOVW	R14, R4
    
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 758 bytes
    - Viewed (0)
  3. src/runtime/defs_windows_amd64.go

    	print("r10     ", hex(r.r10), "\n")
    	print("r11     ", hex(r.r11), "\n")
    	print("r12     ", hex(r.r12), "\n")
    	print("r13     ", hex(r.r13), "\n")
    	print("r14     ", hex(r.r14), "\n")
    	print("r15     ", hex(r.r15), "\n")
    	print("rip     ", hex(r.rip), "\n")
    	print("rflags  ", hex(r.eflags), "\n")
    	print("cs      ", hex(r.segcs), "\n")
    	print("fs      ", hex(r.segfs), "\n")
    	print("gs      ", hex(r.seggs), "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	R11L: "R11",
    	R12L: "R12",
    	R13L: "R13",
    	R14L: "R14",
    	R15L: "R15",
    	RAX:  "AX",
    	RCX:  "CX",
    	RDX:  "DX",
    	RBX:  "BX",
    	RSP:  "SP",
    	RBP:  "BP",
    	RSI:  "SI",
    	RDI:  "DI",
    	R8:   "R8",
    	R9:   "R9",
    	R10:  "R10",
    	R11:  "R11",
    	R12:  "R12",
    	R13:  "R13",
    	R14:  "R14",
    	R15:  "R15",
    	IP:   "IP",
    	EIP:  "IP",
    	RIP:  "IP",
    	F0:   "F0",
    	F1:   "F1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/runtime/sys_solaris_amd64.s

    	MOVQ	$usleep2<>(SB), AX // to hide from 6l
    
    	// Execute call on m->g0.
    	get_tls(R15)
    	CMPQ	R15, $0
    	JE	noswitch
    
    	MOVQ	g(R15), R13
    	CMPQ	R13, $0
    	JE	noswitch
    	MOVQ	g_m(R13), R13
    	CMPQ	R13, $0
    	JE	noswitch
    	// TODO(aram): do something about the cpu profiler here.
    
    	MOVQ	m_g0(R13), R14
    	CMPQ	g(R15), R14
    	JNE	switch
    	// executing on m->g0 already
    	CALL	AX
    	RET
    
    switch:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. src/runtime/preempt_amd64.s

    	MOVQ DX, 16(SP)
    	MOVQ BX, 24(SP)
    	MOVQ SI, 32(SP)
    	MOVQ DI, 40(SP)
    	MOVQ R8, 48(SP)
    	MOVQ R9, 56(SP)
    	MOVQ R10, 64(SP)
    	MOVQ R11, 72(SP)
    	MOVQ R12, 80(SP)
    	MOVQ R13, 88(SP)
    	MOVQ R14, 96(SP)
    	MOVQ R15, 104(SP)
    	#ifdef GOOS_darwin
    	#ifndef hasAVX
    	CMPB internal∕cpu·X86+const_offsetX86HasAVX(SB), $0
    	JE 2(PC)
    	#endif
    	VZEROUPPER
    	#endif
    	MOVUPS X0, 112(SP)
    	MOVUPS X1, 128(SP)
    	MOVUPS X2, 144(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/abi/abi_arm64.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package abi
    
    const (
    	// See abi_generic.go.
    
    	// R0 - R15.
    	IntArgRegs = 16
    
    	// F0 - F15.
    	FloatArgRegs = 16
    
    	EffectiveFloatRegSize = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:39:28 UTC 2022
    - 301 bytes
    - Viewed (0)
  8. src/runtime/preempt_arm64.s

    	MOVD R30, (RSP)
    	#endif
    	STP (R0, R1), 8(RSP)
    	STP (R2, R3), 24(RSP)
    	STP (R4, R5), 40(RSP)
    	STP (R6, R7), 56(RSP)
    	STP (R8, R9), 72(RSP)
    	STP (R10, R11), 88(RSP)
    	STP (R12, R13), 104(RSP)
    	STP (R14, R15), 120(RSP)
    	STP (R16, R17), 136(RSP)
    	STP (R19, R20), 152(RSP)
    	STP (R21, R22), 168(RSP)
    	STP (R23, R24), 184(RSP)
    	STP (R25, R26), 200(RSP)
    	MOVD NZCV, R0
    	MOVD R0, 216(RSP)
    	MOVD FPSR, R0
    	MOVD R0, 224(RSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 01:58:56 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat_arm64.s

    loop:
    	CBZ	R0, done
    
    	LDP.P	16(R2), (R5, R6)
    	LDP.P	16(R2), (R7, R8)
    
    	LDP	(R1), (R9, R10)
    	ADDS	R4, R9
    	MUL	R6, R3, R14
    	ADCS	R14, R10
    	MUL	R7, R3, R15
    	LDP	16(R1), (R11, R12)
    	ADCS	R15, R11
    	MUL	R8, R3, R16
    	ADCS	R16, R12
    	UMULH	R8, R3, R20
    	ADC	$0, R20
    
    	MUL	R5, R3, R13
    	ADDS	R13, R9
    	UMULH	R5, R3, R17
    	ADCS	R17, R10
    	UMULH	R6, R3, R21
    	STP.P	(R9, R10), 16(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/runtime/signal_amd64.go

    	print("r10    ", hex(c.r10()), "\n")
    	print("r11    ", hex(c.r11()), "\n")
    	print("r12    ", hex(c.r12()), "\n")
    	print("r13    ", hex(c.r13()), "\n")
    	print("r14    ", hex(c.r14()), "\n")
    	print("r15    ", hex(c.r15()), "\n")
    	print("rip    ", hex(c.rip()), "\n")
    	print("rflags ", hex(c.rflags()), "\n")
    	print("cs     ", hex(c.cs()), "\n")
    	print("fs     ", hex(c.fs()), "\n")
    	print("gs     ", hex(c.gs()), "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top