Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DIVLU (0.14 sec)

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

    	}
    }
    func rewriteValueAMD64_OpDiv32u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div32u x y)
    	// result: (Select0 (DIVLU x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpSelect0)
    		v0 := b.NewValue0(v.Pos, OpAMD64DIVLU, types.NewTuple(typ.UInt32, typ.UInt32))
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    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