Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for eqv (0.11 sec)

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

    		return true
    	}
    }
    func rewriteValuePPC64_OpEqB(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (EqB x y)
    	// result: (ANDconst [1] (EQV x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpPPC64ANDconst)
    		v.AuxInt = int64ToAuxInt(1)
    		v0 := b.NewValue0(v.Pos, OpPPC64EQV, typ.Int64)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top