Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for int64ToAuxInt (0.15 sec)

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

    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(c + d)
    		return true
    	}
    	// match: (ADDconst [c] (ADDconst [d] x))
    	// result: (ADDconst [c+d] x)
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpARM64ADDconst {
    			break
    		}
    		d := auxIntToInt64(v_0.AuxInt)
    		x := v_0.Args[0]
    		v.reset(OpARM64ADDconst)
    		v.AuxInt = int64ToAuxInt(c + d)
    		v.AddArg(x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v3 := b.NewValue0(v.Pos, OpConst64, typ.UInt64)
    		v3.AuxInt = int64ToAuxInt(15)
    		v2.AddArg2(n, v3)
    		v4 := b.NewValue0(v.Pos, OpConst64, typ.UInt64)
    		v4.AuxInt = int64ToAuxInt(int64(16 - log16(c)))
    		v1.AddArg2(v2, v4)
    		v0.AddArg2(n, v1)
    		v5 := b.NewValue0(v.Pos, OpConst64, typ.UInt64)
    		v5.AuxInt = int64ToAuxInt(int64(log16(c)))
    		v.AddArg2(v0, v5)
    		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)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		src := v_1
    		mem := v_2
    		v.reset(OpMove)
    		v.AuxInt = int64ToAuxInt(16)
    		v0 := b.NewValue0(v.Pos, OpOffPtr, dst.Type)
    		v0.AuxInt = int64ToAuxInt(16)
    		v0.AddArg(dst)
    		v1 := b.NewValue0(v.Pos, OpOffPtr, src.Type)
    		v1.AuxInt = int64ToAuxInt(16)
    		v1.AddArg(src)
    		v2 := b.NewValue0(v.Pos, OpMove, types.TypeMem)
    		v2.AuxInt = int64ToAuxInt(16)
    		v2.AddArg3(dst, src, mem)
    		v.AddArg3(v0, v1, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top