Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for subsumed (0.27 sec)

  1. src/cmd/compile/internal/ssagen/pgen.go

    	if mls != nil {
    		// Update offsets of followers (subsumed vars) to be the
    		// same as the leader var in their partition.
    		for i := 0; i < len(fn.Dcl); i++ {
    			n := fn.Dcl[i]
    			if !mls.Subsumed(n) {
    				continue
    			}
    			leader := mls.Leader(n)
    			off, ok := leaders[leader]
    			if !ok {
    				panic("internal error missing leader")
    			}
    			// Set the stack offset this subsumed (followed) var
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/stackalloc.go

    				for _, v := range phis {
    					a := v.Args[i]
    					if s.values[a.ID].needSlot {
    						t.add(a.ID)
    					}
    					if spill := s.values[a.ID].spill; spill != nil {
    						//TODO: remove?  Subsumed by SpillUse?
    						t.add(spill.ID)
    					}
    				}
    				if t.size() == len(s.live[p.ID]) {
    					continue
    				}
    				// grow p's live set
    				s.live[p.ID] = append(s.live[p.ID][:0], t.contents()...)
    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/vendor/github.com/google/pprof/profile/profile.go

    	// This is given to us as a suffix in `File` (e.g. "[kernel.kallsyms]_stext").
    	//
    	// Note, this public field is not persisted in the proto. For the purposes of
    	// copying / merging / hashing profiles, it is considered subsumed by `File`.
    	KernelRelocationSymbol string
    }
    
    // Location corresponds to Profile.Location
    type Location struct {
    	ID       uint64
    	Mapping  *Mapping
    	Address  uint64
    	Line     []Line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "SBBLcarrymask", argLength: 1, reg: flagsgp, asm: "SBBL"}, // (int32)(-1) if carry is set, 0 if carry is clear.
    		// Note: SBBW and SBBB are subsumed by SBBL
    
    		{name: "SETEQ", argLength: 1, reg: readflags, asm: "SETEQ"}, // extract == condition from arg0
    		{name: "SETNE", argLength: 1, reg: readflags, asm: "SETNE"}, // extract != condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CollectSpliterators.java

              int topCharacteristics,
              long topSize) {
        checkArgument(
            (topCharacteristics & Spliterator.SUBSIZED) == 0,
            "flatMap does not support SUBSIZED characteristic");
        checkArgument(
            (topCharacteristics & Spliterator.SORTED) == 0,
            "flatMap does not support SORTED characteristic");
        checkNotNull(fromSpliterator);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

      }
    
      private static <E extends @Nullable Object> @Nullable GeneralSpliterator<E> trySplitTestingSize(
          GeneralSpliterator<E> spliterator) {
        boolean subsized = spliterator.hasCharacteristics(Spliterator.SUBSIZED);
        long originalSize = spliterator.estimateSize();
        GeneralSpliterator<E> trySplit = spliterator.trySplit();
        if (spliterator.estimateSize() > originalSize) {
          fail(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Streams.java

          if (spliterator.getExactSizeIfKnown() == 0) {
            continue; // drop this split
          }
    
          // Many spliterators will have trySplits that are SUBSIZED even if they are not themselves
          // SUBSIZED.
          if (spliterator.hasCharacteristics(Spliterator.SUBSIZED)) {
            // we can drill down to exactly the smallest nonempty spliterator
            while (true) {
              Spliterator<T> prefix = spliterator.trySplit();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableCollection.java

    public abstract class ImmutableCollection<E> extends AbstractCollection<E> implements Serializable {
      /*
       * We expect SIZED (and SUBSIZED, if applicable) to be added by the spliterator factory methods.
       * These are properties of the collection as a whole; SIZED and SUBSIZED are more properties of
       * the spliterator implementation.
       */
      static final int SPLITERATOR_CHARACTERISTICS =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableCollection.java

    public abstract class ImmutableCollection<E> extends AbstractCollection<E> implements Serializable {
      /*
       * We expect SIZED (and SUBSIZED, if applicable) to be added by the spliterator factory methods.
       * These are properties of the collection as a whole; SIZED and SUBSIZED are more properties of
       * the spliterator implementation.
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. 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%)`;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top