Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for live_out (3.03 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    				}
    			}
    
    			if !be.liveout.Eq(newliveout) {
    				change = true
    				be.liveout.Copy(newliveout)
    			}
    
    			// A variable is live on input to this block
    			// if it is used by this block, or live on output from this block and
    			// not set by the code in this block.
    			//
    			// in[b] = uevar[b] \cup (out[b] \setminus varkill[b])
    			newlivein.AndNot(be.liveout, be.varkill)
    			be.livein.Or(newlivein, be.uevar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	linesIn := strings.Split(f.Preamble, "\n")
    	linesOut := make([]string, 0, len(linesIn))
    	f.NoCallbacks = make(map[string]bool)
    	f.NoEscapes = make(map[string]bool)
    	for _, line := range linesIn {
    		l := strings.TrimSpace(line)
    		if len(l) < 5 || l[:4] != "#cgo" || !unicode.IsSpace(rune(l[4])) {
    			linesOut = append(linesOut, line)
    		} else {
    			linesOut = append(linesOut, "")
    
    			// #cgo (nocallback|noescape) <function name>
    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