Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Wijden (0.19 sec)

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

    			cv = root.Block.Func.ConstInt64(types.Types[types.TUINT64], c)
    		}
    
    		// Move all the stores to the root.
    		for i := int64(0); i < n; i++ {
    			v := a[i].store
    			if v == root {
    				v.Aux = cv.Type // widen store type
    				v.Pos = pos
    				v.SetArg(0, ptr)
    				v.SetArg(1, cv)
    				v.SetArg(2, mem)
    			} else {
    				clobber(v)
    				v.Type = types.Types[types.TBOOL] // erase memory type
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/cmd/go/scriptreadme_test.go

    	        script_test.go:73: failed at testdata/script/install_rebuild_gopath.txt:15 in $WORK/gopath/src
    
    	FAIL
    	exit status 1
    	FAIL	cmd/go	4.875s
    	$
    
    Note that the commands in earlier phases have been hidden, so that the relevant
    commands are more easily found, and the elapsed time for a completed phase
    is shown next to the phase heading. To see the entire execution, use "go test -v",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. 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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	}
    	if s.f.Config.ctxt.Flag_dynlink {
    		switch s.f.Config.arch {
    		case "386":
    			// nothing to do.
    			// Note that for Flag_shared (position independent code)
    			// we do need to be careful, but that carefulness is hidden
    			// in the rewrite rules so we always have a free register
    			// available for global load/stores. See _gen/386.rules (search for Flag_shared).
    		case "amd64":
    			s.allocatable &^= 1 << 15 // R15
    		case "arm":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			breal := s.newValue1(ssa.OpComplexReal, pt, b)
    			aimag := s.newValue1(ssa.OpComplexImag, pt, a)
    			bimag := s.newValue1(ssa.OpComplexImag, pt, b)
    
    			if pt != wt { // Widen for calculation
    				areal = s.newValueOrSfCall1(ssa.OpCvt32Fto64F, wt, areal)
    				breal = s.newValueOrSfCall1(ssa.OpCvt32Fto64F, wt, breal)
    				aimag = s.newValueOrSfCall1(ssa.OpCvt32Fto64F, wt, aimag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	Root          string                `json:",omitempty"` // Go root, Go path dir, or module root dir containing this package
    	ConflictDir   string                `json:",omitempty"` // Dir is hidden by this other directory
    	ForTest       string                `json:",omitempty"` // package is only for use in named test
    	Export        string                `json:",omitempty"` // file containing export data (set by go list -export)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	// imported all the correct requirements above, we're probably missing
    	// some sums, so the next build command in -mod=readonly will likely fail.
    	//
    	// We look for non-hidden .go files or subdirectories to determine whether
    	// this is an existing project. Walking the tree for packages would be more
    	// accurate, but could take much longer.
    	empty := true
    	files, _ := os.ReadDir(modRoot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	-all
    //		Show all the documentation for the package.
    //	-c
    //		Respect case when matching symbols.
    //	-cmd
    //		Treat a command (package main) like a regular package.
    //		Otherwise package main's exported symbols are hidden
    //		when showing the package's top-level documentation.
    //	-short
    //		One-line representation for each symbol.
    //	-src
    //		Show the full source code for the symbol. This will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/build.go

    }
    
    var defaultToolTags, defaultReleaseTags []string
    
    // NoGoError is the error used by Import to describe a directory
    // containing no buildable Go source files. (It may still contain
    // test files, files hidden by build tags, and so on.)
    type NoGoError struct {
    	Dir string
    }
    
    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  10. src/cmd/cover/cover.go

    			return nil
    		}
    		// The elses are special, because if we have
    		//	if x {
    		//	} else if y {
    		//	}
    		// we want to cover the "if y". To do this, we need a place to drop the counter,
    		// so we add a hidden block:
    		//	if x {
    		//	} else {
    		//		if y {
    		//		}
    		//	}
    		elseOffset := f.findText(n.Body.End(), "else")
    		if elseOffset < 0 {
    			panic("lost else")
    		}
    		f.edit.Insert(elseOffset+4, "{")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top