Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Wijden (1.76 sec)

  1. doc/go_spec.html

    package are considered. If other, hidden, data dependencies exists between
    variables, the initialization order between those variables is unspecified.
    </p>
    
    <p>
    For instance, given the declarations
    </p>
    
    <pre>
    var x = I(T{}).ab()   // x has an undetected, hidden dependency on a and b
    var _ = sideEffect()  // unrelated to x, a, or b
    var a = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	// 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
    		// are no longer reachable from top-level functions following
    		// inlining. See #59404 and #59638 for more context.
    		inline.GarbageCollectUnreferencedHiddenClosures()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// Movement between float and integer registers with no change in bits; accomplished with stores+loads on PPC.
    		// Because the 32-bit load-literal-bits instructions have impoverished addressability, always widen the
    		// data instead and use FMOVDload and FMOVDstore instead (this will also dodge endianess issues).
    		// There are optimizations that should apply -- (Xi2f64 (MOVWload (not-ADD-ptr+offset) ) ) could use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    package are considered. If other, hidden, data dependencies exists between
    variables, the initialization order between those variables is unspecified.
    </p>
    
    <p>
    For instance, given the declarations
    </p>
    
    <pre>
    var x = I(T{}).ab()   // x has an undetected, hidden dependency on a and b
    var _ = sideEffect()  // unrelated to x, a, or b
    var a = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_test.go

    // in the debugging histories.  This deals both with inlined library code once
    // the compiler is generating clean inline records, and also deals with
    // runtime code between return from main and process exit.  This is hidden
    // so that those files (in the runtime/library) can change without affecting
    // this test.
    //
    // These choices can be reversed with -i (inlining on) and -r (repeats detected) which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top