Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for preds (0.04 sec)

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

    		if bx == c {
    			break
    		}
    		copyTo += len(bx.Values)
    	}
    	c.Values = t
    
    	// replace b->c edge with preds(b) -> c
    	c.predstorage[0] = Edge{}
    	if len(b.Preds) > len(b.predstorage) {
    		c.Preds = b.Preds
    	} else {
    		c.Preds = append(c.predstorage[:0], b.Preds...)
    	}
    	for i, e := range c.Preds {
    		p := e.b
    		p.Succs[e.i] = Edge{c, i}
    	}
    	f := b.Func
    	if f.Entry == b {
    		f.Entry = c
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/numberlines.go

    		if len(b.Preds) == 0 { // Don't forget the entry block
    			b.Values[firstPosIndex].Pos = firstPos.WithIsStmt()
    			if f.pass.debug > 0 {
    				fmt.Printf("Mark stmt entry-block %s %s %s %s\n", f.Name, b, b.Values[firstPosIndex], flc(firstPos))
    			}
    		} else { // differing pred
    			for _, p := range b.Preds {
    				pbi := p.Block().ID
    				if !endlines[pbi].SameFileAndLine(firstPos) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue63955.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package j
    
    func f(try func() int, shouldInc func() bool, N func(int) int) {
    	var n int
    loop: // we want to have 3 preds here, the function entry and both gotos
    	if v := try(); v == 42 || v == 1337 { // the two || are to trick findIndVar
    		if n < 30 { // this aims to be the matched block
    			if shouldInc() {
    				n++
    				goto loop
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 578 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/looprotate.go

    	after := map[ID][]*Block{}
    
    	// Check each loop header and decide if we want to move it.
    	for _, loop := range loopnest.loops {
    		b := loop.header
    		var p *Block // b's in-loop predecessor
    		for _, e := range b.Preds {
    			if e.b.Kind != BlockPlain {
    				continue
    			}
    			if loopnest.b2l[e.b.ID] != loop {
    				continue
    			}
    			p = e.b
    		}
    		if p == nil {
    			continue
    		}
    		p.Hotness |= HotInitial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadcode.go

    	for len(q) > 0 {
    		// pop a reachable value
    		v := q[len(q)-1]
    		q[len(q)-1] = nil
    		q = q[:len(q)-1]
    		for i, x := range v.Args {
    			if v.Op == OpPhi && !reachable[v.Block.Preds[i].b.ID] {
    				continue
    			}
    			if !live[x.ID] {
    				live[x.ID] = true
    				q = append(q, x) // push
    				if x.Pos.IsStmt() != src.PosNotStmt {
    					liveOrderStmts = append(liveOrderStmts, x)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.h

          return other.pred_ == pred_;
        }
    
        bool operator!=(const DeadnessPredicate& other) const {
          return other.pred_ != pred_;
        }
    
       private:
        explicit DeadnessPredicate(void* pred) : pred_(pred) {}
    
        // This is really a Predicate*, but we don't want to expose that
        // implementation detail to our clients.  `pred_` has pointer equality so we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. cmd/jwt_test.go

    		b.Fatal(err)
    	}
    
    	creds := globalActiveCred
    	token, err := authenticateNode(creds.AccessKey, creds.SecretKey, "")
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	b.ResetTimer()
    	b.ReportAllocs()
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			err = xjwt.ParseWithStandardClaims(token, xjwt.NewStandardClaims(), []byte(creds.SecretKey))
    			if err != nil {
    				b.Fatal(err)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:45:14 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParserTest.groovy

                        "--add-opens=java.base/java.lang=ALL-UNNAMED," +
                        "--add-opens=java.base/java.lang.invoke=ALL-UNNAMED," +
                        "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED," +
                        "--add-opens=java.base/java.nio.charset=ALL-UNNAMED," +
                        "--add-opens=java.base/java.net=ALL-UNNAMED," +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. cmd/warm-backend-s3.go

    				conf.AWSRoleARN,
    				sessionName,
    			},
    		}
    		creds = credentials.New(&s3WebIdentityIAM)
    	case conf.AccessKey != "" && conf.SecretKey != "":
    		creds = credentials.NewStaticV4(conf.AccessKey, conf.SecretKey, "")
    	default:
    		return nil, errors.New("insufficient parameters for S3 backend authentication")
    	}
    	opts := &minio.Options{
    		Creds:     creds,
    		Secure:    u.Scheme == "https",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

            "--add-opens=java.base/java.lang=ALL-UNNAMED",
            "--add-opens=java.base/java.lang.invoke=ALL-UNNAMED",
            "--add-opens=java.base/java.util=ALL-UNNAMED",
            "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED", // required by PreferenceCleaningGroovySystemLoader
            "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", // Required by JdkTools and JdkJavaCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top