Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for mary (0.26 sec)

  1. 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)
  2. src/cmd/link/internal/ld/elf.go

    		ctxt.Out.Write8(MIPS_FPABI_SOFT) // fpAbi
    	} else {
    		// Go cannot make sure non odd-number-fpr is used (ie, in load a double from memory).
    		// So, we mark the object is MIPS I style paired float/double register scheme,
    		// aka MIPS_FPABI_ANY. If we mark the object as FPXX, the kernel may use FR=1 mode,
    		// then we meet some problem.
    		// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    		//       It is not for 'ANY'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    				m.Errs = m.Errs[:0]
    				mg, err := rs.Graph(ctx)
    				if err != nil {
    					// The module graph is (or may be) incomplete — perhaps we failed to
    					// load the requirements of some module. This is an error in matching
    					// the patterns to packages, because we may be missing some packages
    					// or we may erroneously match packages in the wrong versions of
    					// modules. However, for cases like 'go list -e', the error should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    				// over.
    				//
    				// So omitting a root that was previously present may *reduce* the
    				// selected versions of non-roots, but merely removing a requirement
    				// cannot *increase* the selected versions of other roots as a result —
    				// we don't need to mark this change as an upgrade. (This particular
    				// change cannot invalidate any other roots.)
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	order := make([]*sym.Library, 0, len(libs)) // hold the result
    	mark := make(map[*sym.Library]markKind, len(libs))
    	for _, lib := range libs {
    		dfs(lib, mark, &order)
    	}
    	return order
    }
    
    func dfs(lib *sym.Library, mark map[*sym.Library]markKind, order *[]*sym.Library) {
    	if mark[lib] == visited {
    		return
    	}
    	if mark[lib] == visiting {
    		panic("found import cycle while visiting " + lib.Pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //
    // Once a file descriptor has been returned from Accept, it may be used to
    // perform SHA1 hashing. The descriptor is not safe for concurrent use, but
    // may be re-used repeatedly with subsequent Write and Read operations.
    //
    // When hashing a small byte slice or string, a single Write and Read may
    // be used:
    //
    //	// Assume hashfd is already configured using the setup process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	}
    
    	// Remove target before writing it.
    	xremove(link[targ])
    	bgrun(&wg, "", link...)
    	bgwait(&wg)
    }
    
    // packagefile returns the path to a compiled .a file for the given package
    // path. Paths may need to be resolved with resolveVendor first.
    func packagefile(pkg string) string {
    	return pathf("%s/pkg/obj/go-bootstrap/%s_%s/%s.a", goroot, goos, goarch, pkg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    When 'go test' runs a test binary, it does so from within the
    corresponding package's source code directory. Depending on the test,
    it may be necessary to do the same when invoking a generated test
    binary directly. Because that directory may be located within the
    module cache, which may be read-only and is verified by checksums, the
    test must not write to it or any other directory within the module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    	//	if b.Control != nil && b.Control.Type.IsFlags() {
    	//		flive = true
    	//	}
    	//	for i := len(b.Values) - 1; i >= 0; i-- {
    	//		v := b.Values[i]
    	//		if flive && (v.Op == v.Op == ssa.OpPPC64MOVDconst) {
    	//			// The "mark" is any non-nil Aux value.
    	//			v.Aux = v
    	//		}
    	//		if v.Type.IsFlags() {
    	//			flive = false
    	//		}
    	//		for _, a := range v.Args {
    	//			if a.Type.IsFlags() {
    	//				flive = true
    	//			}
    	//		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    // as PE and XCOFF are based on COFF files.
    // XCOFF files generated are 64 bits.
    
    const (
    	// Total amount of space to reserve at the start of the file
    	// for File Header, Auxiliary Header, and Section Headers.
    	// May waste some.
    	XCOFFHDRRESERVE = FILHSZ_64 + AOUTHSZ_EXEC64 + SCNHSZ_64*23
    
    	// base on dump -o, then rounded from 32B to 64B to
    	// match worst case elf text section alignment on ppc64.
    	XCOFFSECTALIGN int64 = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top