Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for Stuart (1.14 sec)

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

    	// increases the probability that we will stabilize quickly.
    	po := s.f.postorder()
    	for {
    		changed := false
    		for _, b := range po {
    			// Start with known live values at the end of the block
    			live.clear()
    			live.addAll(s.live[b.ID])
    
    			// Propagate backwards to the start of the block
    			phis = phis[:0]
    			for i := len(b.Values) - 1; i >= 0; i-- {
    				v := b.Values[i]
    				live.remove(v.ID)
    				if v.Op == OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/schedule.go

    	// See issue 18169.
    	if hasNilCheck {
    		start := -1
    		for i, v := range order {
    			if v.Op == OpNilCheck {
    				if start == -1 {
    					start = i
    				}
    			} else {
    				if start != -1 {
    					sort.Sort(bySourcePos(order[start:i]))
    					start = -1
    				}
    			}
    		}
    		if start != -1 {
    			sort.Sort(bySourcePos(order[start:]))
    		}
    	}
    
    	return order
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    			panic("unreachable")
    		}
    	}
    
    	// Count cycle objects.
    	assert(obj.color() >= grey)
    	start := obj.color() - grey // index of obj in objPath
    	cycle := check.objPath[start:]
    	tparCycle := false // if set, the cycle is through a type parameter list
    	nval := 0          // number of (constant or variable) values in the cycle; valid if !generic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	out := goEnv("GOGCCFLAGS")
    	quote := '\000'
    	start := 0
    	lastSpace := true
    	backslash := false
    	s := string(out)
    	for i, c := range s {
    		if quote == '\000' && unicode.IsSpace(c) {
    			if !lastSpace {
    				cc = append(cc, s[start:i])
    				lastSpace = true
    			}
    		} else {
    			if lastSpace {
    				start = i
    				lastSpace = false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.go

    	for _, op := range operands {
    		p.start(op)
    		if name, abi, ok := p.funcAddress(); ok {
    			fmt.Fprintf(w, "ref %s %s\n", name, abi)
    		}
    	}
    }
    
    func (p *Parser) start(operand []lex.Token) {
    	p.input = operand
    	p.inputPos = 0
    }
    
    // address parses the operand into a link address structure.
    func (p *Parser) address(operand []lex.Token) obj.Addr {
    	p.start(operand)
    	addr := obj.Addr{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	// type checker will initialize this field with a newly created context.
    	Context *Context
    
    	// GoVersion describes the accepted Go language version. The string must
    	// start with a prefix of the form "go%d.%d" (e.g. "go1.20", "go1.21rc1", or
    	// "go1.21.0") or it must be empty; an empty string disables Go language
    	// version checks. If the format is invalid, invoking the type checker will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/shell.go

    		cmd.Env = append(cmd.Env, "TOOLEXEC_IMPORTPATH="+a.Package.Desc())
    	}
    
    	cmd.Env = append(cmd.Env, env...)
    	start := time.Now()
    	err = cmd.Run()
    	if a != nil && a.json != nil {
    		aj := a.json
    		aj.Cmd = append(aj.Cmd, joinUnambiguously(cmdline))
    		aj.CmdReal += time.Since(start)
    		if ps := cmd.ProcessState; ps != nil {
    			aj.CmdUser += ps.UserTime()
    			aj.CmdSys += ps.SystemTime()
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck.go

    				}
    				b.Values[i] = v
    				i++
    			}
    		}
    
    		if pendingLines.contains(b.Pos) {
    			b.Pos = b.Pos.WithIsStmt()
    		}
    
    		b.truncateValues(i)
    
    		// TODO: if b.Kind == BlockPlain, start the analysis in the subsequent block to find
    		// more unnecessary nil checks.  Would fix test/nilptr3.go:159.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/build_read.go

    // (Otherwise it found an error or EOF.)
    func (r *importReader) findEmbed(first bool) bool {
    	// The import block scan stopped after a non-space character,
    	// so the reader is not at the start of a line on the first call.
    	// After that, each //go:embed extraction leaves the reader
    	// at the end of a line.
    	startLine := !first
    	var c byte
    	for r.err == nil && !r.eof {
    		c = r.readByteNoBuf()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    // content ID, then the binary as a whole is up-to-date and need not be rebuilt.
    //
    // This is all a bit complex and may be simplified once we can rely on the
    // main cache, but at least at the start we will be using the content-based
    // staleness determination without a cache beyond the usual installed
    // package and binary locations.
    
    const buildIDSeparator = "/"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top