Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for succFn (0.18 sec)

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

    func (b *Block) removeSucc(i int) {
    	n := len(b.Succs) - 1
    	if i != n {
    		e := b.Succs[n]
    		b.Succs[i] = e
    		// Update the other end of the edge we moved.
    		e.b.Preds[e.i].i = i
    	}
    	b.Succs[n] = Edge{}
    	b.Succs = b.Succs[:n]
    	b.Func.invalidateCFG()
    }
    
    func (b *Block) swapSuccessors() {
    	if len(b.Succs) != 2 {
    		b.Fatalf("swapSuccessors with len(Succs)=%d", len(b.Succs))
    	}
    	e0 := b.Succs[0]
    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/wasm/ssa.go

    	case ssa.BlockPlain:
    		if next != b.Succs[0].Block() {
    			s.Br(obj.AJMP, b.Succs[0].Block())
    		}
    
    	case ssa.BlockIf:
    		switch next {
    		case b.Succs[0].Block():
    			// if false, jump to b.Succs[1]
    			getValue32(s, b.Controls[0])
    			s.Prog(wasm.AI32Eqz)
    			s.Prog(wasm.AIf)
    			s.Br(obj.AJMP, b.Succs[1].Block())
    			s.Prog(wasm.AEnd)
    		case b.Succs[1].Block():
    			// if true, jump to b.Succs[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/phiopt.go

    		// reverse is the predecessor from which the truth value comes.
    		var reverse int
    		if b0.Succs[0].b == pb0 && b0.Succs[1].b == pb1 {
    			reverse = 0
    		} else if b0.Succs[0].b == pb1 && b0.Succs[1].b == pb0 {
    			reverse = 1
    		} else {
    			b.Fatalf("invalid predecessors\n")
    		}
    
    		for _, v := range b.Values {
    			if v.Op != OpPhi {
    				continue
    			}
    
    			// Look for conversions from bool to 0/1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    // Z:
    // 	return y
    // }
    
    // {f:BC_CD_BE_BZ_CZ101,
    //  maxin:32, blocks:[]blo{
    //  	blo{inc:0, cond:true, succs:[2]int64{1, 2}},
    //  	blo{inc:1, cond:true, succs:[2]int64{2, 3}},
    //  	blo{inc:0, cond:true, succs:[2]int64{1, 4}},
    //  	blo{inc:10, cond:true, succs:[2]int64{1, 25}},
    //  	blo{inc:0, cond:true, succs:[2]int64{2, 25}},}},
    
    var labels string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/trim.go

    		// order, in which the predecessors edges are merged here.
    		p, i := b.Preds[0].b, b.Preds[0].i
    		s, j := b.Succs[0].b, b.Succs[0].i
    		ns := len(s.Preds)
    		p.Succs[i] = Edge{s, j}
    		s.Preds[j] = Edge{p, i}
    
    		for _, e := range b.Preds[1:] {
    			p, i := e.b, e.i
    			p.Succs[i] = Edge{s, len(s.Preds)}
    			s.Preds = append(s.Preds, Edge{p, i})
    		}
    
    		// Attempt to preserve a statement boundary
    		if bIsStmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/critical.go

    				// Don't increment i in this case because we moved
    				// an unprocessed predecessor down into slot i.
    			} else {
    				// splice it in
    				p.Succs[pi] = Edge{d, 0}
    				b.Preds[i] = Edge{d, 0}
    				d.Preds = append(d.Preds, Edge{p, pi})
    				d.Succs = append(d.Succs, Edge{b, i})
    				i++
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	// Check if newsuccs is the same set as succs.
    	succs := s[data.controls:]
    	newsuccs := t[outdata.controls:]
    	m := map[string]bool{}
    	for _, succ := range succs {
    		if m[succ] {
    			log.Fatalf("can't have a repeat successor name %s in %s", succ, rule)
    		}
    		m[succ] = true
    	}
    	for _, succ := range newsuccs {
    		if !m[succ] {
    			log.Fatalf("unknown successor %s in %s", succ, rule)
    		}
    		delete(m, succ)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    				ft.restore()
    				if !unsat {
    					continue
    				}
    				// This branch is impossible,so redirect p directly to another branch.
    				out := 1 ^ j
    				child := parent.Succs[out].b
    				if child == b {
    					continue
    				}
    				b.removePred(k)
    				p.Succs[pk.i] = Edge{child, len(child.Preds)}
    				// Fix up Phi value in b to have one less argument.
    				for _, v := range b.Values {
    					if v.Op != OpPhi {
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/deadcode.go

    }
    
    // removeEdge removes the i'th outgoing edge from b (and
    // the corresponding incoming edge from b.Succs[i].b).
    // Note that this potentially reorders successors of b, so it
    // must be used very carefully.
    func (b *Block) removeEdge(i int) {
    	e := b.Succs[i]
    	c := e.b
    	j := e.i
    
    	// Adjust b.Succs
    	b.removeSucc(i)
    
    	// Adjust c.Preds
    	c.removePred(j)
    
    	// Remove phi args from c's phis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/s390x/ssa.go

    	// whether a block has already been emitted. In general forward
    	// branches are assumed 'not taken' and backward branches are
    	// assumed 'taken'.
    	if next == succs[0] {
    		succs[0], succs[1] = succs[1], succs[0]
    		mask = mask.Inverse()
    	}
    
    	p := s.Br(blockAsm(b), succs[0])
    	switch b.Kind {
    	case ssa.BlockS390XBRC:
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = int64(mask)
    	case ssa.BlockS390XCGRJ, ssa.BlockS390XCRJ,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
Back to top