Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newValue2I (0.39 sec)

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

    	arg0.Uses++
    	arg1.Uses++
    	return v
    }
    
    // NewValue2A returns a new value in the block with two arguments and one aux values.
    func (b *Block) NewValue2A(pos src.XPos, op Op, t *types.Type, aux Aux, arg0, arg1 *Value) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = 0
    	v.Aux = aux
    	v.Args = v.argstorage[:2]
    	v.argstorage[0] = arg0
    	v.argstorage[1] = arg1
    	arg0.Uses++
    	arg1.Uses++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // newValue2 adds a new value with two arguments to the current block.
    func (s *state) newValue2(op ssa.Op, t *types.Type, arg0, arg1 *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue2(s.peekPos(), op, t, arg0, arg1)
    }
    
    // newValue2A adds a new value with two 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