Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Mul32uover (0.17 sec)

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

    		if v_0_0.Op != OpConst64 || auxIntToInt64(v_0_0.AuxInt) != 0 {
    			break
    		}
    		lo := v_0.Args[1]
    		v.reset(OpDiv64u)
    		v.AddArg2(lo, y)
    		return true
    	}
    	// match: (Select0 (Mul32uover (Const32 [1]) x))
    	// result: x
    	for {
    		if v_0.Op != OpMul32uover {
    			break
    		}
    		_ = v_0.Args[1]
    		v_0_0 := v_0.Args[0]
    		v_0_1 := v_0.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v.Type = typ.UInt64
    		v0 := b.NewValue0(v.Pos, OpAMD64MULQU, types.NewTuple(typ.UInt64, types.TypeFlags))
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    	// match: (Select0 (Mul32uover x y))
    	// result: (Select0 <typ.UInt32> (MULLU x y))
    	for {
    		if v_0.Op != OpMul32uover {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpSelect0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top