Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for phi (0.06 sec)

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

    //   - the minimum bound
    //   - the increment value
    //   - the "next" value (SSA value that is Phi'd into the induction variable every loop)
    //
    // Currently, we detect induction variables that match (Phi min nxt),
    // with nxt being (Add inc ind).
    // If it can't parse the induction variable correctly, it returns (nil, nil, nil).
    func parseIndVar(ind *Value) (min, inc, nxt *Value) {
    	if ind.Op != OpPhi {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/stackalloc.go

    			phis = phis[:0]
    			for i := len(b.Values) - 1; i >= 0; i-- {
    				v := b.Values[i]
    				live.remove(v.ID)
    				if v.Op == OpPhi {
    					// Save phi for later.
    					// Note: its args might need a stack slot even though
    					// the phi itself doesn't. So don't use needSlot.
    					if !v.Type.IsMemory() && !v.Type.IsVoid() {
    						phis = append(phis, v)
    					}
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/schedule.go

    				// We also score GetLoweredClosurePtr as early as possible to ensure that the
    				// context register is not stomped. GetLoweredClosurePtr should only appear
    				// in the entry block where there are no phi functions, so there is no
    				// conflict or ambiguity here.
    				if b != f.Entry {
    					f.Fatalf("LoweredGetClosurePtr appeared outside of entry block, b=%s", b.String())
    				}
    				score[v.ID] = ScorePhi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        }
        return elem;
      }
    
      function makeColor(index) {
        // Rotate hue around a circle. Multiple by phi to spread things
        // out better. Use 50% saturation to make subdued colors, and
        // 80% lightness to have good contrast with black foreground text.
        const PHI = 1.618033988;
        const hue = (index+1) * PHI * 2 * Math.PI; // +1 to avoid 0
        const hsl = `hsl(${hue}rad 50% 80%)`;
        return hsl;
      }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore.go

    				// Extend shadowed region.
    				shadowed.set(ptr.ID, int32(sr.merge(off, off+sz)))
    			}
    		}
    		// walk to previous store
    		if v.Op == OpPhi {
    			// At start of block.  Move on to next block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			// (Even if it isn't the first in the current b.Values order.)
    			continue
    		}
    		for _, a := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. test/inline.go

    		if i == 3 {
    			break loop
    		}
    		select2(x, y) // ERROR "inlining call to select2"
    	}
    }
    
    // Issue #62211: inlining a function with unreachable "return"
    // statements could trip up phi insertion.
    func issue62211(x bool) { // ERROR "can inline issue62211"
    	if issue62211F(x) { // ERROR "inlining call to issue62211F"
    	}
    	if issue62211G(x) { // ERROR "inlining call to issue62211G"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/mdo/reader-stax.vm

            entities.put("Pi", "\u03a0");
            entities.put("Rho", "\u03a1");
            entities.put("Sigma", "\u03a3");
            entities.put("Tau", "\u03a4");
            entities.put("Upsilon", "\u03a5");
            entities.put("Phi", "\u03a6");
            entities.put("Chi", "\u03a7");
            entities.put("Psi", "\u03a8");
            entities.put("Omega", "\u03a9");
            entities.put("alpha", "\u03b1");
            entities.put("beta", "\u03b2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    			//    goto B
    			// B:
    			//    m1 = Phi mem_C mem_D
    			//    m2 = store operation ... m1
    			//    m3 = store operation ... m2
    			//    m4 = WBend m3
    
    			// Find first memory op in the block, which should be a Phi.
    			m := v
    			for {
    				m = m.MemoryArg()
    				if m.Block != b {
    					lv.f.Fatalf("can't find Phi before write barrier end mark %v", v)
    				}
    				if m.Op == ssa.OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/mdo/reader.vm

            entities.put("Pi", "\u03a0");
            entities.put("Rho", "\u03a1");
            entities.put("Sigma", "\u03a3");
            entities.put("Tau", "\u03a4");
            entities.put("Upsilon", "\u03a5");
            entities.put("Phi", "\u03a6");
            entities.put("Chi", "\u03a7");
            entities.put("Psi", "\u03a8");
            entities.put("Omega", "\u03a9");
            entities.put("alpha", "\u03b1");
            entities.put("beta", "\u03b2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    	var e ValueError
    	fmt.Fprint(bytes.NewBuffer([]byte(e.v[:])), n)
    	return 0, e
    }
    
    // normRegion returns a region if r is deprecated or 0 otherwise.
    // TODO: consider supporting BYS (-> BLR), CSK (-> 200 or CZ), PHI (-> PHL) and AFI (-> DJ).
    // TODO: consider mapping split up regions to new most populous one (like CLDR).
    func normRegion(r Region) Region {
    	m := regionOldMap
    	k := sort.Search(len(m), func(i int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top