Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for r13 (0.16 sec)

  1. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	AMANDV		R14, (R13), R12 // acb96238
    	AMORW		R14, (R13), R12 // ac396338
    	AMORV		R14, (R13), R12 // acb96338
    	AMXORW		R14, (R13), R12 // ac396438
    	AMXORV		R14, (R13), R12 // acb96438
    	AMMAXW		R14, (R13), R12 // ac396538
    	AMMAXV		R14, (R13), R12 // acb96538
    	AMMINW		R14, (R13), R12 // ac396638
    	AMMINV		R14, (R13), R12 // acb96638
    	AMMAXWU		R14, (R13), R12 // ac396738
    	AMMAXVU		R14, (R13), R12 // acb96738
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/runtime/rt0_linux_ppc64le.s

    	MOVD	0(R1), R3 // argc
    	ADD	$8, R1, R4 // argv
    
    	// Did the TLS pointer get set? If so, don't change it (e.g musl).
    	CMP	R13, $0
    	BNE	tls_and_argcv_in_reg
    
    	MOVD	$runtimeĀ·m0+m_tls(SB), R13 // TLS
    	ADD	$0x7000, R13
    
    tls_and_argcv_in_reg:
    	BR	main(SB)
    
    TEXT main(SB),NOSPLIT,$-8
    	MOVD	$runtimeĀ·rt0_go(SB), R12
    	MOVD	R12, CTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/internal/bytealg/compare_loong64.s

    	// R4 = a_base
    	// R5 = a_len
    	// R6 = b_base
    	// R7 = b_len
    	JMP	cmpbody<>(SB)
    
    // On entry:
    // R5 length of a
    // R7 length of b
    // R4 points to the start of a
    // R6 points to the start of b
    // R13 points to the return value (-1/0/1)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0
    	BEQ	R4, R6, samebytes // same start of a and b
    
    	SGTU	R5, R7, R9
    	BNE	R0, R9, r2_lt_r1
    	MOVV	R5, R14
    	JMP	entry
    r2_lt_r1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top