Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NewValue0 (0.37 sec)

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

    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARMSUB)
    		v0 := b.NewValue0(v.Pos, OpARMXOR, typ.UInt32)
    		v1 := b.NewValue0(v.Pos, OpSelect0, typ.UInt32)
    		v2 := b.NewValue0(v.Pos, OpARMCALLudiv, types.NewTuple(typ.UInt32, typ.UInt32))
    		v3 := b.NewValue0(v.Pos, OpARMSUB, typ.UInt32)
    		v4 := b.NewValue0(v.Pos, OpARMXOR, typ.UInt32)
    		v5 := b.NewValue0(v.Pos, OpSignmask, typ.Int32)
    		v5.AddArg(x)
    		v4.AddArg2(x, v5)
    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/rewritePPC64.go

    		v.AuxInt = int32ToAuxInt(2)
    		v0 := b.NewValue0(v.Pos, OpPPC64SLD, t)
    		v1 := b.NewValue0(v.Pos, OpPPC64MOVHZreg, typ.Int64)
    		v1.AddArg(x)
    		v0.AddArg2(v1, y)
    		v2 := b.NewValue0(v.Pos, OpPPC64MOVDconst, typ.Int64)
    		v2.AuxInt = int64ToAuxInt(0)
    		v3 := b.NewValue0(v.Pos, OpPPC64CMPconst, types.TypeFlags)
    		v3.AuxInt = int64ToAuxInt(0)
    		v4 := b.NewValue0(v.Pos, OpPPC64ANDconst, typ.Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.reset(OpS390XSUB)
    		v0 := b.NewValue0(v.Pos, OpS390XMOVDconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(64)
    		v1 := b.NewValue0(v.Pos, OpS390XFLOGR, typ.UInt64)
    		v2 := b.NewValue0(v.Pos, OpS390XMOVWZreg, typ.UInt64)
    		v3 := b.NewValue0(v.Pos, OpS390XANDW, t)
    		v4 := b.NewValue0(v.Pos, OpS390XSUBWconst, t)
    		v4.AuxInt = int32ToAuxInt(1)
    		v4.AddArg(x)
    		v5 := b.NewValue0(v.Pos, OpS390XNOTW, t)
    		v5.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite386.go

    		v.reset(OpMove)
    		v.AuxInt = int64ToAuxInt(s - s%4)
    		v0 := b.NewValue0(v.Pos, Op386ADDLconst, dst.Type)
    		v0.AuxInt = int32ToAuxInt(int32(s % 4))
    		v0.AddArg(dst)
    		v1 := b.NewValue0(v.Pos, Op386ADDLconst, src.Type)
    		v1.AuxInt = int32ToAuxInt(int32(s % 4))
    		v1.AddArg(src)
    		v2 := b.NewValue0(v.Pos, Op386MOVLstore, types.TypeMem)
    		v3 := b.NewValue0(v.Pos, Op386MOVLload, typ.UInt32)
    		v3.AddArg2(src, mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    // peekPos peeks the top of the line number stack.
    func (s *state) peekPos() src.XPos {
    	return s.line[len(s.line)-1]
    }
    
    // newValue0 adds a new value with no arguments to the current block.
    func (s *state) newValue0(op ssa.Op, t *types.Type) *ssa.Value {
    	return s.curBlock.NewValue0(s.peekPos(), op, t)
    }
    
    // newValue0A adds a new value with no arguments and an aux value to the current block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top