Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewValue0IA (0.65 sec)

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

    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = 0
    	v.Aux = aux
    	v.Args = v.argstorage[:0]
    	return v
    }
    
    // NewValue0IA returns a new value in the block with no arguments and both an auxint and aux values.
    func (b *Block) NewValue0IA(pos src.XPos, op Op, t *types.Type, auxint int64, aux Aux) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = auxint
    	v.Aux = aux
    	v.Args = v.argstorage[:0]
    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/liveness/plive.go

    	}
    }
    
    // clobberPtr generates a clobber of the pointer at offset offset in v.
    // The clobber instruction is added at the end of b.
    func clobberPtr(b *ssa.Block, v *ir.Name, offset int64) {
    	b.NewValue0IA(src.NoXPos, ssa.OpClobber, types.TypeVoid, offset, v)
    }
    
    func (lv *liveness) showlive(v *ssa.Value, live bitvec.BitVec) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top