Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for int64ToAuxInt (0.18 sec)

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

    		v0.AuxInt = int64ToAuxInt(0)
    		v.AddArg2(v0, x)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpCom8(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Com8 x)
    	// result: (NOR (MOVVconst [0]) x)
    	for {
    		x := v_0
    		v.reset(OpLOONG64NOR)
    		v0 := b.NewValue0(v.Pos, OpLOONG64MOVVconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(0)
    		v.AddArg2(v0, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v7 := b.NewValue0(v.Pos, OpMIPS64XORconst, typ.UInt64)
    		v7.AuxInt = int64ToAuxInt(3)
    		v7.AddArg(ptr)
    		v6.AddArg(v7)
    		v5.AddArg(v6)
    		v3.AddArg2(v4, v5)
    		v8 := b.NewValue0(v.Pos, OpMIPS64NORconst, typ.UInt64)
    		v8.AuxInt = int64ToAuxInt(0)
    		v9 := b.NewValue0(v.Pos, OpMIPS64SLLV, typ.UInt64)
    		v10 := b.NewValue0(v.Pos, OpMIPS64MOVVconst, typ.UInt64)
    		v10.AuxInt = int64ToAuxInt(0xff)
    		v9.AddArg2(v10, v5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v0.AuxInt = int64ToAuxInt(^3)
    		v0.AddArg(ptr)
    		v1 := b.NewValue0(v.Pos, OpRISCV64SLL, typ.UInt32)
    		v2 := b.NewValue0(v.Pos, OpZeroExt8to32, typ.UInt32)
    		v2.AddArg(val)
    		v3 := b.NewValue0(v.Pos, OpRISCV64SLLI, typ.UInt64)
    		v3.AuxInt = int64ToAuxInt(3)
    		v4 := b.NewValue0(v.Pos, OpRISCV64ANDI, typ.UInt64)
    		v4.AuxInt = int64ToAuxInt(3)
    		v4.AddArg(ptr)
    		v3.AddArg(v4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteWasm.go

    		destptr := v_0
    		mem := v_1
    		v.reset(OpWasmI64Store)
    		v.AuxInt = int64ToAuxInt(24)
    		v0 := b.NewValue0(v.Pos, OpWasmI64Const, typ.Int64)
    		v0.AuxInt = int64ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpWasmI64Store, types.TypeMem)
    		v1.AuxInt = int64ToAuxInt(16)
    		v2 := b.NewValue0(v.Pos, OpWasmI64Store, types.TypeMem)
    		v2.AuxInt = int64ToAuxInt(8)
    		v3 := b.NewValue0(v.Pos, OpWasmI64Store, types.TypeMem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	for {
    		kind := auxIntToInt64(v.AuxInt)
    		x := v_0
    		y := v_1
    		mem := v_2
    		if !(boundsABI(kind) == 0) {
    			break
    		}
    		v.reset(OpMIPSLoweredPanicBoundsA)
    		v.AuxInt = int64ToAuxInt(kind)
    		v.AddArg3(x, y, mem)
    		return true
    	}
    	// match: (PanicBounds [kind] x y mem)
    	// cond: boundsABI(kind) == 1
    	// result: (LoweredPanicBoundsB [kind] x y mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
Back to top