Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for MOVV (0.03 sec)

  1. src/internal/bytealg/equal_mips64x.s

    not_eq:
    	MOVB	R0, ret+24(FP)
    	RET
    eq:
    	MOVV	$1, R1
    	MOVB	R1, ret+24(FP)
    	RET
    
    // memequal_varlen(a, b unsafe.Pointer) bool
    TEXT runtime·memequal_varlen(SB),NOSPLIT,$40-17
    	MOVV	a+0(FP), R1
    	MOVV	b+8(FP), R2
    	BEQ	R1, R2, eq
    	MOVV	8(REGCTXT), R3    // compiler stores size at offset 8 in the closure
    	MOVV	R1, 8(R29)
    	MOVV	R2, 16(R29)
    	MOVV	R3, 24(R29)
    	JAL	runtime·memequal(SB)
    	MOVBU	32(R29), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. src/runtime/rt0_linux_loong64.s

    nocgo:
    	MOVV	$0x800000, R4                     // stacksize = 8192KB
    	MOVV	$_rt0_loong64_linux_lib_go(SB), R5
    	MOVV	R4, 8(R3)
    	MOVV	R5, 16(R3)
    	MOVV	$runtime·newosproc0(SB), R19
    	JAL	(R19)
    
    restore:
    	// Restore callee-save registers.
    	RESTORE_R22_TO_R31(3*8)
    	RESTORE_F24_TO_F31(13*8)
    	RET
    
    TEXT _rt0_loong64_linux_lib_go(SB),NOSPLIT,$0
    	MOVV	_rt0_loong64_linux_lib_argc<>(SB), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/reflect/asm_loong64.s

    	JAL	runtime·spillArgs(SB)
    	MOVV	REGCTXT, 32(R3) // save REGCTXT > args of moveMakeFuncArgPtrs < LOCAL_REGARGS
    
    	MOVV	REGCTXT, R4
    	MOVV	R25, R5
    	JAL	·moveMakeFuncArgPtrs<ABIInternal>(SB)
    	MOVV	32(R3), REGCTXT // restore REGCTXT
    
    	MOVV	REGCTXT, 8(R3)
    	MOVV	$argframe+0(FP), R20
    	MOVV	R20, 16(R3)
    	MOVV	R0, LOCAL_RETVALID(R3)
    	ADDV	$LOCAL_RETVALID, R3, R20
    	MOVV	R20, 24(R3)
    	ADDV	$LOCAL_REGARGS, R3, R20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/internal/runtime/syscall/asm_linux_loong64.s

    TEXT ·Syscall6<ABIInternal>(SB),NOSPLIT,$0-80
    	MOVV	R4, R11  // syscall entry
    	MOVV	R5, R4
    	MOVV	R6, R5
    	MOVV	R7, R6
    	MOVV	R8, R7
    	MOVV	R9, R8
    	MOVV	R10, R9
    	SYSCALL
    	MOVV	R0, R5      // r2 is not used. Always set to 0.
    	MOVW	$-4096, R12
    	BGEU	R12, R4, ok
    	SUBVU	R4, R0, R6  // errno
    	MOVV	$-1, R4     // r1
    	RET
    ok:
    	// r1 already in R4
    	MOVV	R0, R6     // errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1013 bytes
    - Viewed (0)
  5. src/runtime/memmove_loong64.s

    	MOVB	R7, (R4)
    	ADDV	$1, R4
    	JMP	-6(PC)
    
    words:
    	// do 8 bytes at a time if there is room
    	ADDV	$-7, R9, R6 // R6 is end pointer-7
    
    	PCALIGN	$16
    	SGTU	R6, R4, R8
    	BEQ	R8, out
    	MOVV	(R5), R7
    	ADDV	$8, R5
    	MOVV	R7, (R4)
    	ADDV	$8, R4
    	JMP	-6(PC)
    
    out:
    	BEQ	R4, R9, done
    	MOVB	(R5), R7
    	ADDV	$1, R5
    	MOVB	R7, (R4)
    	ADDV	$1, R4
    	JMP	-5(PC)
    done:
    	RET
    
    backward:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/bytealg/indexbyte_loong64.s

    	// R4 = b_base
    	// R5 = b_len
    	// R6 = b_cap (unused)
    	// R7 = byte to find
    	AND	$0xff, R7
    	MOVV	R4, R6		// store base for later
    	ADDV	R4, R5		// end
    	ADDV	$-1, R4
    
    	PCALIGN	$16
    loop:
    	ADDV	$1, R4
    	BEQ	R4, R5, notfound
    	MOVBU	(R4), R8
    	BNE	R7, R8, loop
    
    	SUBV	R6, R4		// remove base
    	RET
    
    notfound:
    	MOVV	$-1, R4
    	RET
    
    TEXT ·IndexByteString<ABIInternal>(SB),NOSPLIT,$0-32
    	// R4 = s_base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 905 bytes
    - Viewed (0)
  7. src/runtime/cgo/asm_loong64.s

    	 */
    
    	ADDV	$(-23*8), R3
    	MOVV	R4, (1*8)(R3) // fn unsafe.Pointer
    	MOVV	R5, (2*8)(R3) // a unsafe.Pointer
    	MOVV	R7, (3*8)(R3) // ctxt uintptr
    
    	SAVE_R22_TO_R31((4*8))
    	SAVE_F24_TO_F31((14*8))
    	MOVV	R1, (22*8)(R3)
    
    	// Initialize Go ABI environment
    	JAL	runtime·load_g(SB)
    
    	JAL	runtime·cgocallback(SB)
    
    	RESTORE_R22_TO_R31((4*8))
    	RESTORE_F24_TO_F31((14*8))
    	MOVV	(22*8)(R3), R1
    
    	ADDV	$(23*8), R3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/runtime/tls_mips64x.s

    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·iscgo(SB), R23
    	BEQ	R23, nocgo
    
    	MOVV	R3, R23	// save R3
    	MOVV	g, runtime·tls_g(SB) // TLS relocation clobbers R3
    	MOVV	R23, R3	// restore R3
    
    nocgo:
    	RET
    
    TEXT runtime·load_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVV	runtime·tls_g(SB), g // TLS relocation clobbers R3
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 733 bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/loong64enc3.s

    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	MOVW	$65536(R4), R5			// 1e020014de03800385f81000
    	MOVW	$4096(R4), R5 			// 3e000014de03800385f81000
    	MOVV	$65536(R4), R5			// 1e020014de03800385f81000
    	MOVV	$4096(R4), R5			// 3e000014de03800385f81000
    	ADD	$74565, R4			// 5e020014de178d0384781000
    	ADD	$4097, R4  			// 3e000014de07800384781000
    	ADDV	$74565, R4			// 5e020014de178d0384f81000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 23:57:43 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. src/runtime/tls_loong64.s

    //
    // NOTE: mcall() assumes this clobbers only R30 (REGTMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·iscgo(SB), R30
    	BEQ	R30, nocgo
    
    	MOVV	g, runtime·tls_g(SB)
    
    nocgo:
    	RET
    
    TEXT runtime·load_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVV	runtime·tls_g(SB), g
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 20:18:25 UTC 2022
    - 589 bytes
    - Viewed (0)
Back to top