Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SRAV (0.05 sec)

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

    		v.AuxInt = int64ToAuxInt(d << uint64(c))
    		return true
    	}
    	return false
    }
    func rewriteValueLOONG64_OpLOONG64SRAV(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SRAV x (MOVVconst [c]))
    	// cond: uint64(c)>=64
    	// result: (SRAVconst x [63])
    	for {
    		x := v_0
    		if v_1.Op != OpLOONG64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v.AuxInt = int64ToAuxInt(d << uint64(c))
    		return true
    	}
    	return false
    }
    func rewriteValueMIPS64_OpMIPS64SRAV(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SRAV x (MOVVconst [c]))
    	// cond: uint64(c)>=64
    	// result: (SRAVconst x [63])
    	for {
    		x := v_0
    		if v_1.Op != OpMIPS64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top