Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewValue0IA (0.14 sec)

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

    	for _, bloc := range blocs {
    		b := f.NewBlock(bloc.control.kind)
    		blocks[bloc.name] = b
    		for _, valu := range bloc.valus {
    			// args are filled in the second pass.
    			values[valu.name] = b.NewValue0IA(src.NoXPos, valu.op, valu.t, valu.auxint, valu.aux)
    		}
    	}
    	// Connect the blocks together and specify control values.
    	f.Entry = blocks[entry]
    	for _, bloc := range blocs {
    		b := blocks[bloc.name]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssa/expand_calls.go

    				if a == nil {
    					a = w
    				} else {
    					a.copyOf(w)
    				}
    			} else {
    				if a == nil {
    					aux := container.Aux
    					auxInt := container.AuxInt + rc.storeOffset
    					a = container.Block.NewValue0IA(container.Pos, OpArg, at, auxInt, aux)
    				} else {
    					// do nothing, the original should be okay.
    				}
    				x.commonArgs[key] = a
    			}
    		}
    	} else if container.Op == OpSelectN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  4. 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