Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for here (0.25 sec)

  1. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    stderr 'preprofile.*-i.*a(/|\\\\)default\.pgo'
    stderr 'preprofile.*-i.*b(/|\\\\)default\.pgo'
    
    # a and b built once each with PGO.
    # Ideally we would check that the passed profile is the expected profile (here
    # and for dependencies). Unfortunately there is no nice way to map the expected
    # paths after preprocessing.
    stderr -count=1 'compile.*-pgoprofile=.*a(/|\\\\)a\.go'
    stderr -count=1 'compile.*-pgoprofile=.*b(/|\\\\)b\.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64latelower.rules

    L6:(SAR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SARX(Q|L) x y)
    L7:(SHL(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHLX(Q|L) x y)
    L8:(SHR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHRX(Q|L) x y)
    L9:
    L10:// See comments in ARM64latelower.rules for why these are here.
    L11:(MOVLQZX x) && zeroUpper32Bits(x,3) => x
    L12:(MOVWQZX x) && zeroUpper48Bits(x,3) => x
    L13:(MOVBQZX x) && zeroUpper56Bits(x,3) => x
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 636 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_predicates.go

    //     as a type constraint in Go code
    //   - if T is an uninstantiated generic type
    func AssertableTo(V *Interface, T Type) bool {
    	// Checker.newAssertableTo suppresses errors for invalid types, so we need special
    	// handling here.
    	if !isValid(T.Underlying()) {
    		return false
    	}
    	return (*Checker)(nil).newAssertableTo(nopos, V, T, nil)
    }
    
    // AssignableTo reports whether a value of type V is assignable to a variable
    // of type T.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_swigcxx.txt

    [!exec:swig] skip
    [!exec:g++] skip
    [!cgo] skip
    
    # CompiledGoFiles should contain 4 files:
    #  a.go
    #  _cgo_import.go [gc only]
    #  _cgo_gotypes.go
    #  a.cgo1.go
    #
    # These names we see here, other than a.go, will be from the build cache,
    # so we just count them.
    
    go list -f '{{.CompiledGoFiles}}' -compiled=true example/swig
    
    stdout a\.go
    [compiler:gc] stdout -count=3 $GOCACHE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 04:04:13 UTC 2024
    - 581 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/type.go

    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "go/constant"
    
    // A Type represents a type of Go.
    // All types implement the Type interface.
    // (This type originally lived in types2. We moved it here
    // so we could depend on it from other packages without
    // introducing an import cycle.)
    type Type interface {
    	// Underlying returns the underlying type of a type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/asm/main.go

    	ctxt.Pkgpath = *flags.Importpath
    	switch *flags.Spectre {
    	default:
    		log.Printf("unknown setting -spectre=%s", *flags.Spectre)
    		os.Exit(2)
    	case "":
    		// nothing
    	case "index":
    		// known to compiler; ignore here so people can use
    		// the same list with -gcflags=-spectre=LIST and -asmflags=-spectrre=LIST
    	case "all", "ret":
    		ctxt.Retpoline = true
    	}
    
    	ctxt.Bso = bufio.NewWriter(os.Stdout)
    	defer ctxt.Bso.Flush()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    			}
    		})
    	}
    }
    
    // libFuzzerSupported is a copy of the function internal/platform.FuzzInstrumented,
    // because the internal package can't be used here.
    func libFuzzerSupported(goos, goarch string) bool {
    	switch goarch {
    	case "amd64", "arm64":
    		// TODO(#14565): support more architectures.
    		switch goos {
    		case "darwin", "freebsd", "linux", "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/errors_test.go

    			if bytes.HasSuffix(line, []byte("ERROR HERE")) {
    				re := regexp.MustCompile(regexp.QuoteMeta(fmt.Sprintf("%s:%d:", file, i+1)))
    				errors = append(errors, re)
    				continue
    			}
    
    			if _, frag, ok := bytes.Cut(line, []byte("ERROR HERE: ")); ok {
    				re, err := regexp.Compile(fmt.Sprintf(":%d:.*%s", i+1, frag))
    				if err != nil {
    					t.Errorf("Invalid regexp after `ERROR HERE: `: %#q", frag)
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	}
    
    	// First compute inlinability of all functions in the package.
    	inline.CanInlineFuncs(pkg.Funcs, inlProfile)
    
    	// Now we make a second pass to do devirtualization and inlining of
    	// calls. Order here should not matter.
    	for _, fn := range pkg.Funcs {
    		DevirtualizeAndInlineFunc(fn, inlProfile)
    	}
    
    	if base.Flag.LowerL != 0 {
    		// Perform a garbage collection of hidden closures functions that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    }
    
    func ABC(i, j int) int {
    	r := 0
    
    	// here v2 and v3 can be overlapped.
    	clobber()
    	if i < 101 {
    		var v2 Vanilla
    		v2.x[i] = j
    		r += v2.x[j]
    	}
    	if j != 303 {
    		var v3 Vanilla2
    		v3.x[i] = j
    		r += v3.x[j]
    	}
    	clobber()
    
    	// not an overlap candidate (only one var of this size).
    	var s Single
    	s.x[i] = j
    	r += s.x[j]
    
    	// Here p1 and p2 interfere, but p1 could be overlapped with xp3 + xp4.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top