Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for blockAsm (0.15 sec)

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

    		// predecessors do not participate in the intersection.  This
    		// means that for the update, given the prior approximation of
    		// startState, there is no need to re-intersect with unchanged
    		// blocks.  Therefore remove unchanged blocks from the
    		// predecessor list.
    		for i := len(preds) - 1; i >= 0; i-- {
    			pred := preds[i]
    			if blockLocs[pred.ID].lastChangedTime > locs.lastCheckedTime {
    				continue // keep this predecessor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    	uses              *use    // list of uses in this block
    	spill             *Value  // spilled copy of the Value (if any)
    	restoreMin        int32   // minimum of all restores' blocks' sdom.entry
    	restoreMax        int32   // maximum of all restores' blocks' sdom.exit
    	needReg           bool    // cached value of !v.Type.IsMemory() && !v.Type.IsVoid() && !.v.Type.IsFlags()
    	rematerializeable bool    // cached value of v.rematerializeable()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation_test.go

    		newCSR: &capi.CertificateSigningRequest{Status: capi.CertificateSigningRequestStatus{
    			Certificate: []byte(`new - no PEM blocks`),
    		}},
    		oldCSR: &capi.CertificateSigningRequest{Status: capi.CertificateSigningRequestStatus{
    			Certificate: []byte(`old - no PEM blocks`),
    		}},
    		want: certificateValidationOptions{
    			allowArbitraryCertificate: true,
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

        }
    
        private static class ConfigurationStatements<T extends ConfigSelector> implements Statement {
            final ListMultimap<T, Statement> blocks = MultimapBuilder.linkedHashKeys().arrayListValues().build();
    
            void add(T selector, Statement statement) {
                blocks.put(selector, statement);
            }
    
            @Nullable
            @Override
            public String getComment() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		return 2
    	}
    	return 1
    }
    
    // mergePoint finds a block among a's blocks which dominates b and is itself
    // dominated by all of a's blocks. Returns nil if it can't find one.
    // Might return nil even if one does exist.
    func mergePoint(b *Block, a ...*Value) *Block {
    	// Walk backward from b looking for one of the a's blocks.
    
    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    		child := parent.Succs[i].b
    		if getBranch(sdom, parent, child) != unknown {
    			// For edges to uniquely dominated blocks, we
    			// already did this when we visited the child.
    			continue
    		}
    		// For edges to other blocks, this can trim a branch
    		// even if we couldn't get rid of the child itself.
    		ft.checkpoint()
    		addBranchRestrictions(ft, parent, branch)
    		unsat := ft.unsat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    }
    
    var work workType
    
    type workType struct {
    	full  lfstack          // lock-free list of full blocks workbuf
    	_     cpu.CacheLinePad // prevents false-sharing between full and empty
    	empty lfstack          // lock-free list of empty blocks workbuf
    	_     cpu.CacheLinePad // prevents false-sharing between empty and nproc/nwait
    
    	wbufSpans struct {
    		lock mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    			}
    
    			// TODO: suspendG blocks (and spins) until gp
    			// stops, which may take a while for
    			// running goroutines. Consider doing this in
    			// two phases where the first is non-blocking:
    			// we scan the stacks we can and ask running
    			// goroutines to scan themselves; and the
    			// second blocks.
    			stopped := suspendG(gp)
    			if stopped.dead {
    				gp.gcscandone = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    		closeBitrotReaders(readers)
    		if err != nil {
    			// If we have successfully written all the content that was asked
    			// by the client, but we still see an error - this would mean
    			// that we have some parts or data blocks missing or corrupted
    			// - attempt a heal to successfully heal them for future calls.
    			if written == partLength {
    				var scan madmin.HealScanMode
    				switch {
    				case errors.Is(err, errFileNotFound):
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    // If the header's and block's size are "small enough" and the block is "simple enough",
    // the block is printed on the current line, without line breaks, spaced from the header
    // by sep. Otherwise the block's opening "{" is printed on the current line, followed by
    // lines for the block's statements and its closing "}".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top