Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _divv (0.04 sec)

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

    		return true
    	}
    }
    func rewriteValueMIPS64_OpDiv16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div16 x y)
    	// result: (Select1 (DIVV (SignExt16to64 x) (SignExt16to64 y)))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpSelect1)
    		v0 := b.NewValue0(v.Pos, OpMIPS64DIVV, types.NewTuple(typ.Int64, typ.Int64))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	v_0 := v.Args[0]
    	// match: (Div64 x y)
    	// result: (DIVV x y)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64DIVV)
    		v.AddArg2(x, y)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpDiv8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div8 x y)
    	// result: (DIVV (SignExt8to64 x) (SignExt8to64 y))
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
Back to top