Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for decomposeArrayPhi (0.26 sec)

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

    	// Recursively decompose phis for each field.
    	for _, f := range fields[:n] {
    		decomposeUserPhi(f)
    	}
    }
    
    // decomposeArrayPhi replaces phi-of-array with arraymake(phi-of-array-element),
    // and then recursively decomposes the element phi.
    func decomposeArrayPhi(v *Value) {
    	t := v.Type
    	if t.NumElem() == 0 {
    		v.reset(OpArrayMake0)
    		return
    	}
    	if t.NumElem() != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
Back to top