Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AddArg2 (0.09 sec)

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

    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_1
    		y := v_2
    		flags := v_3
    		v.reset(OpARMADCconst)
    		v.AuxInt = int32ToAuxInt(c)
    		v0 := b.NewValue0(v.Pos, OpARMSLL, x.Type)
    		v0.AddArg2(x, y)
    		v.AddArg2(v0, flags)
    		return true
    	}
    	// match: (ADCshiftLLreg x y (MOVWconst [c]) flags)
    	// cond: 0 <= c && c < 32
    	// result: (ADCshiftLL x y [c] flags)
    	for {
    		x := v_0
    		y := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    		v0 := b.NewValue0(v.Pos, Op386LEAL4, v.Type)
    		v0.AddArg2(x, x)
    		v.AddArg2(x, v0)
    		return true
    	}
    	// match: (MULLconst [13] x)
    	// result: (LEAL4 x (LEAL2 <v.Type> x x))
    	for {
    		if auxIntToInt32(v.AuxInt) != 13 {
    			break
    		}
    		x := v_0
    		v.reset(Op386LEAL4)
    		v0 := b.NewValue0(v.Pos, Op386LEAL2, v.Type)
    		v0.AddArg2(x, x)
    		v.AddArg2(x, v0)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v1.AddArg2(x, y)
    		v0.AddArg2(y, v1)
    		v.AddArg2(x, v0)
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_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)
    	// cond: buildcfg.GOPPC64 >= 9
    	// result: (MODUW x y)
    	for {
    		x := v_0
    		y := v_1
    		if !(buildcfg.GOPPC64 >= 9) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v0.AuxInt = int32ToAuxInt(16)
    		v0.AddArg2(src, mem)
    		v1 := b.NewValue0(v.Pos, OpS390XMOVDstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(8)
    		v2 := b.NewValue0(v.Pos, OpS390XMOVDload, typ.UInt64)
    		v2.AuxInt = int32ToAuxInt(8)
    		v2.AddArg2(src, mem)
    		v3 := b.NewValue0(v.Pos, OpS390XMOVDstore, types.TypeMem)
    		v4 := b.NewValue0(v.Pos, OpS390XMOVDload, typ.UInt64)
    		v4.AddArg2(src, mem)
    		v3.AddArg3(dst, v4, mem)
    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