Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for REMVU (0.04 sec)

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

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (REMVU _ (MOVVconst [1]))
    	// result: (MOVVconst [0])
    	for {
    		if v_1.Op != OpLOONG64MOVVconst || auxIntToInt64(v_1.AuxInt) != 1 {
    			break
    		}
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (REMVU x (MOVVconst [c]))
    	// cond: isPowerOfTwo64(c)
    	// result: (ANDconst [c-1] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
Back to top