Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for DIVVU (0.14 sec)

  1. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		}
    		break
    	}
    	// match: (Select1 (DIVVU x (MOVVconst [1])))
    	// result: x
    	for {
    		if v_0.Op != OpMIPS64DIVVU {
    			break
    		}
    		_ = v_0.Args[1]
    		x := v_0.Args[0]
    		v_0_1 := v_0.Args[1]
    		if v_0_1.Op != OpMIPS64MOVVconst || auxIntToInt64(v_0_1.AuxInt) != 1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (Select1 (DIVVU x (MOVVconst [c])))
    	// cond: isPowerOfTwo64(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_loong64.s

    	SYSCALL
    	MOVW	R4, errno+16(FP)
    	RET
    
    // func usleep(usec uint32)
    TEXT runtimeĀ·usleep(SB),NOSPLIT,$16-4
    	MOVWU	usec+0(FP), R7
    	MOVV	$1000, R6
    	MULVU	R6, R7, R7
    	MOVV	$1000000000, R6
    
    	DIVVU	R6, R7, R5	// ts->tv_sec
    	REMVU	R6, R7, R4	// ts->tv_nsec
    	MOVV	R5, 8(R3)
    	MOVV	R4, 16(R3)
    
    	// nanosleep(&ts, 0)
    	ADDV	$8, R3, R4
    	MOVV	R0, R5
    	MOVV	$SYS_nanosleep, R11
    	SYSCALL
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    func rewriteValueLOONG64_OpLOONG64DIVVU(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (DIVVU x (MOVVconst [1]))
    	// result: x
    	for {
    		x := v_0
    		if v_1.Op != OpLOONG64MOVVconst || auxIntToInt64(v_1.AuxInt) != 1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (DIVVU x (MOVVconst [c]))
    	// cond: isPowerOfTwo64(c)
    	// result: (SRLVconst [log64(c)] x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 1071644664}, // R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R18 R19 R20 R21 R23 R24 R25 R26 R27 R28 R29 R31
    			},
    		},
    	},
    	{
    		name:   "DIVVU",
    		argLen: 2,
    		asm:    loong64.ADIVVU,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 1073741816}, // R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R18 R19 R20 R21 g R23 R24 R25 R26 R27 R28 R29 R31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top