Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Reback (0.72 sec)

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

    // a spill (a StoreReg) for v. We can't determine the correct place for
    // the spill at this point, so we allocate the spill as blockless initially.
    // The restore is then generated to load v back into a register so it can
    // be used. Subsequent uses of v will use the restored value c instead.
    //
    // What remains is the question of where to schedule the spill.
    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/dist/build.go

    	// using toolchain1 with dist as the build system, we need to
    	// override this to keep the experiments assumed by the
    	// toolchain and by dist consistent. Once go_bootstrap takes
    	// over the build process, we'll set this back to the original
    	// GOEXPERIMENT.
    	os.Setenv("GOEXPERIMENT", "none")
    
    	if debug {
    		// cmd/buildid is used in debug mode.
    		toolchain = append(toolchain, "cmd/buildid")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // To create a file descriptor that provides access to a hash or cipher, both
    // Bind and Accept must be used. Once the setup process is complete, input
    // data can be written to the socket, processed by the kernel, and then read
    // back as hash output or ciphertext.
    //
    // Here is an example of using an AF_ALG socket with SHA1 hashing.
    // The initial socket setup process is as follows:
    //
    //	// Open a socket to perform SHA1 hashing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    	// Normal execution.
    	for {
    		r1, _, err := r.ReadRune()
    		if err != nil {
    			if err != io.EOF {
    				t.Error("unexpected error on ReadRune:", err)
    			}
    			break
    		}
    		got += string(r1)
    		// Put it back and read it again.
    		if err = r.UnreadRune(); err != nil {
    			t.Fatal("unexpected error on UnreadRune:", err)
    		}
    		r2, _, err := r.ReadRune()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (TESTLconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTL x x)
    (TESTWconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTW x x)
    (TESTBconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTB x x)
    
    // Convert LEAQ1 back to ADDQ if we can
    (LEAQ1 [0] x y) && v.Aux == nil => (ADDQ x y)
    
    (MOVQstoreconst [c] {s} p1 x:(MOVQstoreconst [a] {s} p0 mem))
      && config.useSSE
      && x.Uses == 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	// previous version was a direct dependency. That assumption might not hold in
    	// rare cases (such as if a dependency splits out a nested module, or merges a
    	// nested module back into a parent module).
    	direct map[string]bool
    
    	graphOnce sync.Once // guards writes to (but not reads from) graph
    	graph     atomic.Pointer[cachedGraph]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    			p = s.Prog(ppc64.AADD)
    			p.Reg = v.Args[0].Reg()
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = 64
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = v.Args[0].Reg()
    
    			// Branch back to top of loop
    			// based on CTR
    			// BC with BO_BCTR generates bdnz
    			p = s.Prog(ppc64.ABC)
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = ppc64.BO_BCTR
    			p.Reg = ppc64.REG_CR0LT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    	// in a module.
    	// If the toolchain running right now is a dev toolchain (like "go1.21")
    	// writing 'toolchain go1.21' will not be useful, since that's not an actual
    	// toolchain you can download and run. In that case fall back to at least
    	// checking that the toolchain is new enough for the Go version.
    	toolchain := "go" + old
    	if wf.Toolchain != nil {
    		toolchain = wf.Toolchain.Name
    	}
    	if gover.IsLang(gover.Local()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    		if c.blitrl != nil {
    			// Emit the constant pool just before p if p
    			// would push us over the immediate size limit.
    			if c.checkpool(op, pc+int32(m)) {
    				// Back up to the instruction just
    				// before the pool and continue with
    				// the first instruction of the pool.
    				p = op
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    				// Note that whether a directory corresponds to an import path
    				// changes as the build list is updated, and a directory can change
    				// from not being in the build list to being in it and back as
    				// the exact version of a particular module increases during
    				// the loader iterations.
    				m.Pkgs = m.Pkgs[:0]
    				for _, dir := range m.Dirs {
    					pkg, err := resolveLocalPackage(ctx, dir, rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top