Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for contro (1.15 sec)

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

    		// match: (If (Equal cc) yes no)
    		// result: (EQ cc yes no)
    		for b.Controls[0].Op == OpPPC64Equal {
    			v_0 := b.Controls[0]
    			cc := v_0.Args[0]
    			b.resetWithControl(BlockPPC64EQ, cc)
    			return true
    		}
    		// match: (If (NotEqual cc) yes no)
    		// result: (NE cc yes no)
    		for b.Controls[0].Op == OpPPC64NotEqual {
    			v_0 := b.Controls[0]
    			cc := v_0.Args[0]
    			b.resetWithControl(BlockPPC64NE, cc)
    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. src/cmd/compile/internal/ssagen/ssa.go

    	line uint
    }
    
    type ssaLabel struct {
    	target         *ssa.Block // block identified by this label
    	breakTarget    *ssa.Block // block to break to in control flow node identified by this label
    	continueTarget *ssa.Block // block to continue to in control flow node identified by this label
    }
    
    // label returns the label associated with sym, creating it if necessary.
    func (s *state) label(sym *types.Sym) *ssaLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    may be a (possibly <a href="#Labeled_statements">labeled</a>)
    <a href="#Fallthrough_statements">"fallthrough" statement</a> to
    indicate that control should flow from the end of this clause to
    the first statement of the next clause.
    Otherwise control flows to the end of the "switch" statement.
    A "fallthrough" statement may appear as the last statement of all
    but the last clause of an expression switch.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-62691`](https://youtrack.jetbrains.com/issue/KT-62691) K2: optimize getFirForNonKtFileElement for references inside 'where'
    - [`KT-62834`](https://youtrack.jetbrains.com/issue/KT-62834) K2: missing file node level in control flow builder
    - [`KT-62768`](https://youtrack.jetbrains.com/issue/KT-62768) Analysis API: No 'org.jetbrains.kotlin.fir.scopes.impl.FirDelegatedMembersFilter'(44) in array owner: LLFirSourcesSession exception on analysing common code
    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