Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for mary (0.72 sec)

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

    	// need to allocate stack space, so it should be OK to mark them
    	// as NOSPLIT in these cases. In addition, my assumption is that
    	// functions written in assembly are NOSPLIT in most (but not all)
    	// cases. In the case of an ABIInternal target that has too many
    	// parameters to fit into registers, the wrapper would need to
    	// allocate stack space, but this seems like an unlikely scenario.
    	// Hence: mark these wrappers NOSPLIT.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/memcombine.go

    	}
    	return true
    }
    
    func memcombineStores(f *Func) {
    	mark := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(mark)
    	var order []*Value
    
    	for _, b := range f.Blocks {
    		// Mark all stores which are not last in a store sequence.
    		mark.clear()
    		for _, v := range b.Values {
    			if v.Op == OpStore {
    				mark.add(v.MemoryArg().ID)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    	// to black (pre-declared objects are painted black from the start).
    	// A black object (i.e., its type) can only depend on (refer to) other black
    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    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/compile/internal/types2/alias.go

    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    	}
    
    	return t
    }
    
    // asNamed returns t as *Named if that is t's
    // actual type. It returns nil otherwise.
    func asNamed(t Type) *Named {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    			// Issue 59680: if the closure we're looking at was produced
    			// by inlining, it could be marked as hidden, which we don't
    			// want (moving the func to a static init will effectively
    			// hide it from escape analysis). Mark as non-hidden here.
    			// so that it will participated in escape analysis.
    			r.Func.SetIsHiddenClosure(false)
    			// Closures with no captured variables are globals,
    			// so the assignment can be done at link time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    			}
    			// Note: needReg is false for values returning Tuple types.
    			// Instead, we mark the corresponding Selects as needReg.
    		}
    	}
    	s.computeLive()
    
    	s.endRegs = make([][]endReg, f.NumBlocks())
    	s.startRegs = make([][]startReg, f.NumBlocks())
    	s.spillLive = make([][]ID, f.NumBlocks())
    	s.sdom = f.Sdom()
    
    	// wasm: Mark instructions that can be optimized to have their values only on the WebAssembly stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/robustio/robustio.go

    package robustio
    
    // Rename is like os.Rename, but on Windows retries errors that may occur if the
    // file is concurrently read or overwritten.
    //
    // (See golang.org/issue/31247 and golang.org/issue/32188.)
    func Rename(oldpath, newpath string) error {
    	return rename(oldpath, newpath)
    }
    
    // ReadFile is like os.ReadFile, but on Windows retries errors that may
    // occur if the file is concurrently replaced.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    			G = append(G, n)
    		}
    	}
    
    	// remove function nodes and collect remaining graph nodes in G
    	// (Mutually recursive functions may introduce cycles among themselves
    	// which are permitted. Yet such cycles may incorrectly inflate the dependency
    	// count for variables which in turn may not get scheduled for initialization
    	// in correct order.)
    	//
    	// Note that because we recursively copy predecessors and successors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue8517_windows.go

    		t.Fatal(err)
    	}
    	return int(c)
    }
    
    func test8517(t *testing.T) {
    	c1 := processHandleCount(t)
    	C.testHandleLeaks()
    	c2 := processHandleCount(t)
    	if c1+issue8517counter <= c2 {
    		t.Fatalf("too many handles leaked: issue8517counter=%v c1=%v c2=%v", issue8517counter, c1, c2)
    	}
    }
    
    //export testHandleLeaksCallback
    func testHandleLeaksCallback() {
    	issue8517counter++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 990 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api.go

    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Pos  syntax.Pos // error position
    	Msg  string     // default error message, user-friendly
    	Full string     // full error message, for debugging (may contain internal details)
    	Soft bool       // if set, error is "soft"
    	Code Code       // error code
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top