Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for nerede (0.49 sec)

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

    		forEachWrapperABI(fn, makeABIWrapper)
    	}
    }
    
    func forEachWrapperABI(fn *ir.Func, cb func(fn *ir.Func, wrapperABI obj.ABI)) {
    	need := fn.ABIRefs &^ obj.ABISetOf(fn.ABI)
    	if need == 0 {
    		return
    	}
    
    	for wrapperABI := obj.ABI(0); wrapperABI < obj.ABICount; wrapperABI++ {
    		if !need.Get(wrapperABI) {
    			continue
    		}
    		cb(fn, wrapperABI)
    	}
    }
    
    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

    	v = loadBlock.NewValue2(pos, OpLoad, sizeType(n*size), r[0].load.Args[0], mem)
    
    	// Byte swap if needed,
    	if needSwap {
    		v = byteSwap(loadBlock, pos, v)
    	}
    
    	// Extend if needed.
    	if n*size < root.Type.Size() {
    		v = zeroExtend(loadBlock, pos, v, n*size, root.Type.Size())
    	}
    
    	// Shift if needed.
    	if isLittleEndian && shift0 != 0 {
    		v = leftShift(loadBlock, pos, v, shift0)
    	}
    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/walk/assign.go

    			if n.Op() == ir.ONAME && assigned.Has(n.(*ir.Name)) {
    				return true
    			}
    			if memWrite && readsMemory(n) {
    				return true
    			}
    			return false
    		})
    	}
    
    	// If a needed expression may be affected by an
    	// earlier assignment, make an early copy of that
    	// expression and use the copy instead.
    	var early ir.Nodes
    	save := func(np *ir.Node) {
    		if n := *np; affected(n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/testflag.go

    	}
    
    	// Similarly, the test binary defaults -test.outputdir to its own working
    	// directory, but 'go test' defaults it to the working directory of the 'go'
    	// command. Set it explicitly if it is needed due to some other flag that
    	// requests output.
    	if testProfile() != "" && !outputDirSet {
    		injectedFlags = append(injectedFlags, "-test.outputdir="+testOutputDir.getAbs())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    }
    
    // cycleError reports a declaration cycle starting with the object at cycle[start].
    func (check *Checker) cycleError(cycle []Object, start int) {
    	// name returns the (possibly qualified) object name.
    	// This is needed because with generic types, cycles
    	// may refer to imported types. See go.dev/issue/50788.
    	// TODO(gri) This functionality is used elsewhere. Factor it out.
    	name := func(obj Object) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/vendor.go

    )
    
    var cmdVendor = &base.Command{
    	UsageLine: "go mod vendor [-e] [-v] [-o outdir]",
    	Short:     "make vendored copy of dependencies",
    	Long: `
    Vendor resets the main module's vendor directory to include all packages
    needed to build and test all the main module's packages.
    It does not include test code for vendored packages.
    
    The -v flag causes vendor to print the names of vendored
    modules and packages to standard error.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    	// Merge adjacent constants in the argument list.
    	s := n.List
    	need := 0
    	for i := 0; i < len(s); i++ {
    		if i == 0 || !ir.IsConst(s[i-1], constant.String) || !ir.IsConst(s[i], constant.String) {
    			// Can't merge s[i] into s[i-1]; need a slot in the list.
    			need++
    		}
    	}
    	if need == len(s) {
    		return n
    	}
    	if need == 1 {
    		var strs []string
    		for _, c := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/query.go

    		// If the version exists at all, we shouldn't need any extra information
    		// to identify which commit it resolves to.
    		//
    		// It may be associated with a Ref for a semantic-version tag, but if so
    		// we don't expect that tag to change in the future. We also don't need a
    		// TagSum: if a tag is removed from some ancestor commit, the version may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    //
    // During the build, when it's time to build main.a, the gofmt binary has the
    // information needed to decide whether the eventual link would produce
    // the same binary: if the action ID for main.a's inputs matches and then
    // the action ID for the link step matches when assuming the given main.a
    // 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    			}
    			// If the type parameter name is the same as a predeclared object
    			// (say int), point out where it is declared to avoid confusing
    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top