Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Reback (0.68 sec)

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

    	// incoming branches and accumulate conditions that uniquely
    	// dominate the current block. If we discover a contradiction,
    	// we can eliminate the entire block and all of its children.
    	// On the way back up, we consider outgoing branches that
    	// haven't already been considered. This way we consider each
    	// branch condition only once.
    	for len(work) > 0 {
    		node := work[len(work)-1]
    		work = work[:len(work)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    			p = s.Prog(ppc64.AADD)
    			p.Reg = v.Args[0].Reg()
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = 64
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = v.Args[0].Reg()
    
    			// Branch back to top of loop
    			// based on CTR
    			// BC with BO_BCTR generates bdnz
    			p = s.Prog(ppc64.ABC)
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = ppc64.BO_BCTR
    			p.Reg = ppc64.REG_CR0LT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
        Entry<K, V>[] entryArray = (Entry[]) Iterables.toArray(entries, EMPTY_ENTRY_ARRAY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
        Entry<K, V>[] entryArray = (Entry[]) Iterables.toArray(entries, EMPTY_ENTRY_ARRAY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  localValue = trusted.value;
                  if (localValue == null | localValue instanceof SetFuture) {
                    abstractFuture = trusted;
                    continue; // loop back up and try to complete the new future
                  }
                } else {
                  // not a TrustedFuture, call cancel directly.
                  futureToPropagateTo.cancel(mayInterruptIfRunning);
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	prag := p.pragma
    	p.pragma = nil
    	return prag
    }
    
    // clearPragma is called at the end of a statement or
    // other Go form that does NOT accept a pragma.
    // It sends the pragma back to the pragma handler
    // to be reported as unused.
    func (p *parser) clearPragma() {
    	if p.pragma != nil {
    		p.pragh(p.pos(), p.scanner.blank, "", p.pragma)
    		p.pragma = nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    			if b == x.Block {
    				goto found
    			}
    		}
    		if len(b.Preds) > 1 {
    			// Don't know which way to go back. Abort.
    			return nil
    		}
    		b = b.Preds[0].b
    		d--
    	}
    	return nil // too far away
    found:
    	// At this point, r is the first value in a that we find by walking backwards.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (TESTLconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTL x x)
    (TESTWconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTW x x)
    (TESTBconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTB x x)
    
    // Convert LEAQ1 back to ADDQ if we can
    (LEAQ1 [0] x y) && v.Aux == nil => (ADDQ x y)
    
    (MOVQstoreconst [c] {s} p1 x:(MOVQstoreconst [a] {s} p0 mem))
      && config.useSSE
      && x.Uses == 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    // details about what was run and exits.
    // Otherwise runGcc returns the data written to standard output and standard error.
    // Note that for some of the uses we expect useful data back
    // on standard error, but for those uses gcc must still exit 0.
    func runGcc(stdin []byte, args []string) (string, string) {
    	if *debugGcc {
    		fmt.Fprintf(os.Stderr, "$ %s <<EOF\n", strings.Join(args, " "))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top