Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for FwdRef (0.5 sec)

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

    		// Otherwise, give up and insert a new FwdRef and resolve it later.
    		if len(b.Preds) != 1 {
    			break
    		}
    		b = b.Preds[0].Block()
    		if !s.reachable[b.ID] {
    			// This is rare; it happens with oddly interleaved infinite loops in dead code.
    			// See issue 19783.
    			break
    		}
    	}
    	// Generate a FwdRef for the variable and return that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "StoreReg", argLength: 1},
    	{name: "LoadReg", argLength: 1},
    
    	// Used during ssa construction. Like Copy, but the arg has not been specified yet.
    	{name: "FwdRef", aux: "Sym", symEffect: "None"},
    
    	// Unknown value. Used for Values whose values don't matter because they are dead code.
    	{name: "Unknown"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	vars map[ir.Node]*ssa.Value
    
    	// fwdVars are variables that are used before they are defined in the current block.
    	// This map exists just to coalesce multiple references into a single FwdRef op.
    	// *Node is the unique identifier (an ONAME Node) for the variable.
    	fwdVars map[ir.Node]*ssa.Value
    
    	// all defined variables at the end of each block. Indexed by block ID.
    	defvars []map[ir.Node]*ssa.Value
    
    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. hack/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    reviewers:
      - bentheelder
      - cblecker
      - dchen1107
      - hwdef
      - justaugustus
      - liggitt
      - mikedanese
      - pohly
      - SataQiu
      - smarterclayton
      - spiffxp
      - sttts
      - thockin
      - wojtek-t
    approvers:
      - bentheelder
      - cblecker
      - dchen1107
      - deads2k
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 16:43:38 UTC 2023
    - 777 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:    "StoreReg",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "LoadReg",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:      "FwdRef",
    		auxType:   auxSym,
    		argLen:    0,
    		symEffect: SymNone,
    		generic:   true,
    	},
    	{
    		name:    "Unknown",
    		argLen:  0,
    		generic: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    - Kubelet: Fixed the bug of getting the number of cpu when the number of cpu logical processors is more than 64 in windows ([#97378](https://github.com/kubernetes/kubernetes/pull/97378), [@hwdef](https://github.com/hwdef)) [SIG Node and Windows]
    - Limits lease to have 1000 maximum attached objects. ([#98257](https://github.com/kubernetes/kubernetes/pull/98257), [@lingsamuel](https://github.com/lingsamuel))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    - Optimization of kubectl Chinese translation ([#110538](https://github.com/kubernetes/kubernetes/pull/110538), [@hwdef](https://github.com/hwdef)) [SIG CLI]
    
    ### Failing Test
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.23.md

    - Kubeadm: switch the preflight check (called 'Swap') that verifies if swap is enabled on Linux hosts to report a warning instead of an error. This is related to the graduation of the NodeSwap...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top