Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DIVUW (0.06 sec)

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

    	}
    	return false
    }
    func rewriteValueRISCV64_OpDiv16u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div16u x y)
    	// result: (DIVUW (ZeroExt16to32 x) (ZeroExt16to32 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpRISCV64DIVUW)
    		v0 := b.NewValue0(v.Pos, OpZeroExt16to32, typ.UInt32)
    		v0.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top