Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 151 for r8 (0.02 sec)

  1. src/internal/runtime/syscall/asm_linux_mips64x.s

    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	MOVV	num+0(FP), R2	// syscall entry
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	a4+32(FP), R7
    	MOVV	a5+40(FP), R8
    	MOVV	a6+48(FP), R9
    	MOVV	R0, R3	// reset R3 to 0 as 1-ret SYSCALL keeps it
    	SYSCALL
    	BEQ	R7, ok
    	MOVV	$-1, R1
    	MOVV	R1, r1+56(FP)
    	MOVV	R0, r2+64(FP)
    	MOVV	R2, errno+72(FP)
    	RET
    ok:
    	MOVV	R2, r1+56(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 724 bytes
    - Viewed (0)
  2. src/syscall/asm_linux_amd64.s

    // func rawVforkSyscall(trap, a1, a2, a3 uintptr) (r1, err uintptr)
    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOVQ	a1+8(FP), DI
    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	$0, R10
    	MOVQ	$0, R8
    	MOVQ	$0, R9
    	MOVQ	trap+0(FP), AX	// syscall entry
    	POPQ	R12 // preserve return address
    	SYSCALL
    	PUSHQ	R12
    	CMPQ	AX, $0xfffffffffffff001
    	JLS	ok2
    	MOVQ	$-1, r1+32(FP)
    	NEGQ	AX
    	MOVQ	AX, err+40(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/runtime/signal_ppc64x.go

    	print("r2   ", hex(c.r2()), "\t")
    	print("r3   ", hex(c.r3()), "\n")
    	print("r4   ", hex(c.r4()), "\t")
    	print("r5   ", hex(c.r5()), "\n")
    	print("r6   ", hex(c.r6()), "\t")
    	print("r7   ", hex(c.r7()), "\n")
    	print("r8   ", hex(c.r8()), "\t")
    	print("r9   ", hex(c.r9()), "\n")
    	print("r10  ", hex(c.r10()), "\t")
    	print("r11  ", hex(c.r11()), "\n")
    	print("r12  ", hex(c.r12()), "\t")
    	print("r13  ", hex(c.r13()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/runtime/asan_loong64.s

    // license that can be found in the LICENSE file.
    
    //go:build asan
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define RARG0 R4
    #define RARG1 R5
    #define RARG2 R6
    #define RARG3 R7
    #define FARG  R8
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanread(SB), NOSPLIT, $0-32
    	MOVV	addr+0(FP), RARG0
    	MOVV	sz+8(FP), RARG1
    	MOVV	sp+16(FP), RARG2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	R12L: "R12L",
    	R13L: "R13L",
    	R14L: "R14L",
    	R15L: "R15L",
    	RAX:  "RAX",
    	RCX:  "RCX",
    	RDX:  "RDX",
    	RBX:  "RBX",
    	RSP:  "RSP",
    	RBP:  "RBP",
    	RSI:  "RSI",
    	RDI:  "RDI",
    	R8:   "R8",
    	R9:   "R9",
    	R10:  "R10",
    	R11:  "R11",
    	R12:  "R12",
    	R13:  "R13",
    	R14:  "R14",
    	R15:  "R15",
    	IP:   "IP",
    	EIP:  "EIP",
    	RIP:  "RIP",
    	F0:   "F0",
    	F1:   "F1",
    	F2:   "F2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/runtime/asm_loong64.s

    	MOVV	REGCTXT, (g_sched+gobuf_ctxt)(g)
    
    	// Cannot grow scheduler stack (m->g0).
    	MOVV	g_m(g), R7
    	MOVV	m_g0(R7), R8
    	BNE	g, R8, 3(PC)
    	JAL	runtime·badmorestackg0(SB)
    	JAL	runtime·abort(SB)
    
    	// Cannot grow signal stack (m->gsignal).
    	MOVV	m_gsignal(R7), R8
    	BNE	g, R8, 3(PC)
    	JAL	runtime·badmorestackgsignal(SB)
    	JAL	runtime·abort(SB)
    
    	// Called from f.
    	// Set m->morebuf to f's caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/runtime/asm_mipsx.s

    	MOVW	REGCTXT, (g_sched+gobuf_ctxt)(g)
    
    	// Cannot grow scheduler stack (m->g0).
    	MOVW	g_m(g), R7
    	MOVW	m_g0(R7), R8
    	BNE	g, R8, 3(PC)
    	JAL	runtime·badmorestackg0(SB)
    	JAL	runtime·abort(SB)
    
    	// Cannot grow signal stack (m->gsignal).
    	MOVW	m_gsignal(R7), R8
    	BNE	g, R8, 3(PC)
    	JAL	runtime·badmorestackgsignal(SB)
    	JAL	runtime·abort(SB)
    
    	// Called from f.
    	// Set m->morebuf to f's caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/runtime/asm_mips64x.s

    	MOVV	REGCTXT, (g_sched+gobuf_ctxt)(g)
    
    	// Cannot grow scheduler stack (m->g0).
    	MOVV	g_m(g), R7
    	MOVV	m_g0(R7), R8
    	BNE	g, R8, 3(PC)
    	JAL	runtime·badmorestackg0(SB)
    	JAL	runtime·abort(SB)
    
    	// Cannot grow signal stack (m->gsignal).
    	MOVV	m_gsignal(R7), R8
    	BNE	g, R8, 3(PC)
    	JAL	runtime·badmorestackgsignal(SB)
    	JAL	runtime·abort(SB)
    
    	// Called from f.
    	// Set m->morebuf to f's caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_arm64.s

    	LDP	1*16(a_ptr), (R6, R7)
    	LDP	2*16(a_ptr), (R8, R9)
    	LDP	0*16(b_ptr), (R16, R17)
    	LDP	1*16(b_ptr), (R19, R20)
    	LDP	2*16(b_ptr), (R21, R22)
    	CSEL	EQ, R16, R4, R4
    	CSEL	EQ, R17, R5, R5
    	CSEL	EQ, R19, R6, R6
    	CSEL	EQ, R20, R7, R7
    	CSEL	EQ, R21, R8, R8
    	CSEL	EQ, R22, R9, R9
    	STP	(R4, R5), 0*16(res_ptr)
    	STP	(R6, R7), 1*16(res_ptr)
    	STP	(R8, R9), 2*16(res_ptr)
    
    	LDP	3*16(a_ptr), (R4, R5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/runtime/msan_amd64.s

    #include "funcdata.h"
    #include "textflag.h"
    
    // This is like race_amd64.s, but for the msan calls.
    // See race_amd64.s for detailed comments.
    
    #ifdef GOOS_windows
    #define RARG0 CX
    #define RARG1 DX
    #define RARG2 R8
    #define RARG3 R9
    #else
    #define RARG0 DI
    #define RARG1 SI
    #define RARG2 DX
    #define RARG3 CX
    #endif
    
    // func runtime·domsanread(addr unsafe.Pointer, sz uintptr)
    // Called from msanread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top