Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ADDVU (0.23 sec)

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

    	ADDU	R13, R14, R19	// 01cd9821
    	ADDV	R5, R9, R10	// 0125502c
    	ADDVU	R13, R14, R19	// 01cd982d
    
    //	LADDW imm ',' sreg ',' rreg
    //	{
    //		outcode(int($1), &$2, int($4), &$6);
    //	}
    	ADD	$15176, R14, R9	// 21c93b48
    	ADD	$-9, R5, R8	// 20a8fff7
    	ADDU	$10, R9, R9	// 2529000a
    	ADDV	$15176, R14, R9	// 61c93b48
    	ADDV	$-9, R5, R8	// 60a8fff7
    	ADDVU	$10, R9, R9	// 6529000a
    
    //	LADDW rreg ',' rreg
    //	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		readflags = regInfo{inputs: nil, outputs: []regMask{gp}}
    	)
    	ops := []opData{
    		// binary ops
    		{name: "ADDV", argLength: 2, reg: gp21, asm: "ADDVU", commutative: true},   // arg0 + arg1
    		{name: "ADDVconst", argLength: 1, reg: gp11sp, asm: "ADDVU", aux: "Int64"}, // arg0 + auxInt. auxInt is 32-bit, also in other *const ops.
    		{name: "SUBV", argLength: 2, reg: gp21, asm: "SUBVU"},                      // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		readflags = regInfo{inputs: nil, outputs: []regMask{gp}}
    	)
    	ops := []opData{
    		// binary ops
    		{name: "ADDV", argLength: 2, reg: gp21, asm: "ADDVU", commutative: true},                             // arg0 + arg1
    		{name: "ADDVconst", argLength: 1, reg: gp11sp, asm: "ADDVU", aux: "Int64"},                           // arg0 + auxInt. auxInt is 32-bit, also in other *const ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_mips64x.s

    	MOVV	16(R29), R1
    	MOVV	R1, m_vdsoSP(R17)
    	MOVV	8(R29), R1
    	MOVV	R1, m_vdsoPC(R17)
    
    	// sec is in R3, nsec in R5
    	// return nsec in R3
    	MOVV	$1000000000, R4
    	MULVU	R4, R3
    	MOVV	LO, R3
    	ADDVU	R5, R3
    	MOVV	R3, ret+0(FP)
    	RET
    
    fallback:
    	MOVV	$SYS_clock_gettime, R2
    	SYSCALL
    	JMP	finish
    
    TEXT runtime·rtsigprocmask(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	how+0(FP), R4
    	MOVV	new+8(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_loong64.s

    	MOVV	16(R3), R25
    	MOVV	R25, m_vdsoSP(R24)
    	MOVV	8(R3), R25
    	MOVV	R25, m_vdsoPC(R24)
    
    	// sec is in R7, nsec in R5
    	// return nsec in R7
    	MOVV	$1000000000, R4
    	MULVU	R4, R7, R7
    	ADDVU	R5, R7
    	MOVV	R7, ret+0(FP)
    	RET
    
    fallback:
    	MOVV	$SYS_clock_gettime, R11
    	SYSCALL
    	JMP	finish
    
    // func rtsigprocmask(how int32, new, old *sigset, size int32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top