Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ControlValues (0.24 sec)

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

    		return 0
    	}
    	if b.Controls[1] == nil {
    		return 1
    	}
    	return 2
    }
    
    // ControlValues returns a slice containing the non-nil control
    // values of the block. The index of each control value will be
    // the same as it is in the Controls property and can be used
    // in ReplaceControl calls.
    func (b *Block) ControlValues() []*Value {
    	if b.Controls[0] == nil {
    		return b.Controls[:0]
    	}
    	if b.Controls[1] == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/copyelim.go

    func copyelim(f *Func) {
    	phielim(f)
    
    	// loop of copyelimValue(v) process has been done in phielim() pass.
    	// Update block control values.
    	for _, b := range f.Blocks {
    		for i, v := range b.ControlValues() {
    			if v.Op == OpCopy {
    				b.ReplaceControl(i, v.Args[0])
    			}
    		}
    	}
    
    	// Update named values.
    	for _, name := range f.Names {
    		values := f.NamedValues[*name]
    		for i, v := range values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/check.go

    		for _, v := range b.Values {
    			for i, a := range v.Args {
    				if !valueMark[a.ID] {
    					f.Fatalf("%v, arg %d of %s, is missing", a, i, v.LongString())
    				}
    			}
    		}
    		for _, c := range b.ControlValues() {
    			if !valueMark[c.ID] {
    				f.Fatalf("control value for %s is missing: %v", b, c)
    			}
    		}
    	}
    	for b := f.freeBlocks; b != nil; b = b.succstorage[0].b {
    		if blockMark[b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/sccp.go

    					if _, exist := t.defUse[arg]; !exist {
    						t.defUse[arg] = make([]*Value, 0, arg.Uses)
    					}
    					t.defUse[arg] = append(t.defUse[arg], val)
    				}
    			}
    		}
    		for _, ctl := range block.ControlValues() {
    			// for control values that can become constants, find their use blocks
    			if possibleConst(ctl) {
    				t.defBlock[ctl] = append(t.defBlock[ctl], block)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule.go

    				for _, a := range v.Args {
    					if a.isFlagOp() {
    						score[v.ID] = ScoreReadFlags
    					}
    				}
    			}
    		}
    		for _, c := range b.ControlValues() {
    			// Force the control values to be scheduled at the end,
    			// unless they have other special priority.
    			if c.Block != b || score[c.ID] < ScoreReadTuple {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadstore.go

    		changed := false
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				changed = visit(v) || changed
    			}
    			// keep the auto if its address reaches a control value
    			for _, c := range b.ControlValues() {
    				if n, ok := addr[c]; ok && !used.Has(n) {
    					used.Add(n)
    					changed = true
    				}
    			}
    		}
    		if !changed {
    			break
    		}
    	}
    
    	// Eliminate stores to unread autos.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    		for _, b := range f.Blocks {
    			var b0 *Block
    			if debug > 1 {
    				b0 = new(Block)
    				*b0 = *b
    				b0.Succs = append([]Edge{}, b.Succs...) // make a new copy, not aliasing
    			}
    			for i, c := range b.ControlValues() {
    				for c.Op == OpCopy {
    					c = c.Args[0]
    					b.ReplaceControl(i, c)
    				}
    			}
    			if rb(b) {
    				change = true
    				if debug > 1 {
    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