Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Mod32u (0.17 sec)

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

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Mod32u x y)
    	// cond: buildcfg.GOPPC64 >= 9
    	// result: (MODUW x y)
    	for {
    		x := v_0
    		y := v_1
    		if !(buildcfg.GOPPC64 >= 9) {
    			break
    		}
    		v.reset(OpPPC64MODUW)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Mod32u x y)
    	// cond: buildcfg.GOPPC64 <= 8
    	// result: (SUB x (MULLW y (DIVWU x y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	}
    }
    func rewriteValueARM_OpMod16u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Mod16u x y)
    	// result: (Mod32u (ZeroExt16to32 x) (ZeroExt16to32 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpMod32u)
    		v0 := b.NewValue0(v.Pos, OpZeroExt16to32, typ.UInt32)
    		v0.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	}
    }
    func rewriteValueS390X_OpMod32u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Mod32u x y)
    	// result: (MODWU (MOVWZreg x) y)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpS390XMODWU)
    		v0 := b.NewValue0(v.Pos, OpS390XMOVWZreg, typ.UInt64)
    		v0.AddArg(x)
    		v.AddArg2(v0, y)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top