Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for selects (0.72 sec)

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

    	typ := &b.Func.Config.Types
    	// match: (Select0 (Mul64uhilo x y))
    	// result: (MULHDU x y)
    	for {
    		if v_0.Op != OpMul64uhilo {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpPPC64MULHDU)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Select0 (Add64carry x y c))
    	// result: (Select0 <typ.UInt64> (ADDE x y (Select1 <typ.UInt64> (ADDCconst c [-1]))))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </li>
    
    <li>
    The statement list of the selected case is executed.
    </li>
    </ol>
    
    <p>
    Since communication on <code>nil</code> channels can never proceed,
    a select with only <code>nil</code> channels and no default case blocks forever.
    </p>
    
    <pre>
    var a []int
    var c, c1, c2, c3, c4 chan int
    var i1, i2 int
    select {
    case i1 = &lt;-c1:
    	print("received ", i1, " from c1\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	aux := c.Aux.(*ssa.AuxCall)
    	pa := aux.ParamAssignmentForResult(which)
    	// TODO(register args) determine if in-memory TypeOK is better loaded early from SelectNAddr or later when SelectN is expanded.
    	// SelectN is better for pattern-matching and possible call-aware analysis we might want to do in the future.
    	if len(pa.Registers) == 0 && !ssa.CanSSA(t) {
    		addr := s.newValue1I(ssa.OpSelectNAddr, types.NewPtr(t), which, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-63840`](https://youtrack.jetbrains.com/issue/KT-63840) Builder inference fails on calls to identity-shaped functions with postponed type variables inside select-constructions
    - [`KT-65262`](https://youtrack.jetbrains.com/issue/KT-65262) K2: Exception in DFA for combination of try-finally + PCLA + DI
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top