Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for int32ToAuxInt (0.14 sec)

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

    		v.reset(OpAMD64LEAL1)
    		v.AuxInt = int32ToAuxInt(c)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (ADDLconst [c] (SHLLconst [1] x))
    	// result: (LEAL1 [c] x x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpAMD64SHLLconst || auxIntToInt8(v_0.AuxInt) != 1 {
    			break
    		}
    		x := v_0.Args[0]
    		v.reset(OpAMD64LEAL1)
    		v.AuxInt = int32ToAuxInt(c)
    		v.AddArg2(x, x)
    		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)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    		v3.AuxInt = int32ToAuxInt(32)
    		v4 := b.NewValue0(v.Pos, OpSelect0, typ.UInt64)
    		v5 := b.NewValue0(v.Pos, OpARM64LDP, types.NewTuple(typ.UInt64, typ.UInt64))
    		v5.AuxInt = int32ToAuxInt(32)
    		v5.AddArg2(src, mem)
    		v4.AddArg(v5)
    		v6 := b.NewValue0(v.Pos, OpSelect1, typ.UInt64)
    		v6.AddArg(v5)
    		v7 := b.NewValue0(v.Pos, OpARM64STP, types.TypeMem)
    		v7.AuxInt = int32ToAuxInt(16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    					v2 := b.NewValue0(v.Pos, OpConst32, typ.UInt32)
    					v2.AuxInt = int32ToAuxInt(int32(udivisible32(c).m))
    					v1.AddArg2(v2, x)
    					v3 := b.NewValue0(v.Pos, OpConst32, typ.UInt32)
    					v3.AuxInt = int32ToAuxInt(int32(32 - udivisible32(c).k))
    					v0.AddArg2(v1, v3)
    					v4 := b.NewValue0(v.Pos, OpConst32, typ.UInt32)
    					v4.AuxInt = int32ToAuxInt(int32(udivisible32(c).max))
    					v.AddArg2(v0, v4)
    					return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
Back to top