Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for int32ToAuxInt (0.22 sec)

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

    		mem := v_2
    		v.reset(OpS390XMOVDstore)
    		v.AuxInt = int32ToAuxInt(16)
    		v0 := b.NewValue0(v.Pos, OpS390XMOVDload, typ.UInt64)
    		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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		mem := v_2
    		v.reset(OpRISCV64MOVBstore)
    		v.AuxInt = int32ToAuxInt(3)
    		v0 := b.NewValue0(v.Pos, OpRISCV64MOVBload, typ.Int8)
    		v0.AuxInt = int32ToAuxInt(3)
    		v0.AddArg2(src, mem)
    		v1 := b.NewValue0(v.Pos, OpRISCV64MOVBstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(2)
    		v2 := b.NewValue0(v.Pos, OpRISCV64MOVBload, typ.Int8)
    		v2.AuxInt = int32ToAuxInt(2)
    		v2.AddArg2(src, mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritedec64.go

    			break
    		}
    		v.reset(OpInt64Make)
    		v0 := b.NewValue0(v.Pos, OpArg, typ.Int32)
    		v0.AuxInt = int32ToAuxInt(off + 4)
    		v0.Aux = symToAux(n)
    		v1 := b.NewValue0(v.Pos, OpArg, typ.UInt32)
    		v1.AuxInt = int32ToAuxInt(off)
    		v1.Aux = symToAux(n)
    		v.AddArg2(v0, v1)
    		return true
    	}
    	// match: (Arg {n} [off])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewriteWasm.go

    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (LoweredAddr {sym} [0] base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpWasmLoweredAddr)
    		v.AuxInt = int32ToAuxInt(0)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    func rewriteValueWasm_OpBitLen64(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    func boolToAuxInt(b bool) int64 {
    	if b {
    		return 1
    	}
    	return 0
    }
    func int8ToAuxInt(i int8) int64 {
    	return int64(i)
    }
    func int16ToAuxInt(i int16) int64 {
    	return int64(i)
    }
    func int32ToAuxInt(i int32) int64 {
    	return int64(i)
    }
    func int64ToAuxInt(i int64) int64 {
    	return int64(i)
    }
    func uint8ToAuxInt(i uint8) int64 {
    	return int64(int8(i))
    }
    func float32ToAuxInt(f float32) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top