Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for welcome (0.48 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    		// 	func importedAdd(a, b uint) uint
    		//
    		// will roughly become
    		//
    		// 	(import "gojs" "add" (func (param i32)))
    		wi.Params = []obj.WasmField{{Type: obj.WasmI32}}
    	} else {
    		// All other imported functions use the normal WASM ABI.
    		// Example:
    		//
    		// 	//go:wasmimport a_module add
    		// 	func importedAdd(a, b uint) uint
    		//
    		// will roughly become
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/assign.go

    //	    panicmakeslicelen()
    //	  }
    //	  s := l1
    //	  if l2 != 0 {
    //	    n := len(s) + l2
    //	    // Compare n and s as uint so growslice can panic on overflow of len(s) + l2.
    //	    // cap is a positive int and n can become negative when len(s) + l2
    //	    // overflows int. Interpreting n when negative as uint makes it larger
    //	    // than cap(s). growslice will check the int n arg and panic if n is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp.go

    // lattice of a value is changed, we need to update lattices of use. But we don't
    // need all uses of it, only uses that can become constants would be added into
    // re-visit worklist since no matter how many times they are revisited, uses which
    // can't become constants lattice remains unchanged, i.e. Bottom.
    func (t *worklist) buildDefUses() {
    	for _, block := range t.f.Blocks {
    		for _, val := range block.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    	// They join back together at the roots of the graph: if a root r1 with pruned
    	// requirements depends on a root r2 with unpruned requirements, then
    	// selecting r1 would cause r2 to become a root and pull in all of its
    	// unpruned dependencies.
    	//
    	// The dqTracker type implements the logic for propagating conflict paths
    	// through the pruned and unpruned parts of the module graph.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Const64", aux: "Int64"}, // value is auxint
    	// Note: for both Const32F and Const64F, we disallow encoding NaNs.
    	// Signaling NaNs are tricky because if you do anything with them, they become quiet.
    	// Particularly, converting a 32 bit sNaN to 64 bit and back converts it to a qNaN.
    	// See issue 36399 and 36400.
    	// Encodings of +inf, -inf, and -0 are fine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top