Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for IsTuple (0.09 sec)

  1. src/cmd/compile/internal/types/type.go

    			return true
    		}
    	}
    	return false
    }
    func (t *Type) IsFlags() bool   { return t == TypeFlags }
    func (t *Type) IsVoid() bool    { return t == TypeVoid }
    func (t *Type) IsTuple() bool   { return t.kind == TTUPLE }
    func (t *Type) IsResults() bool { return t.kind == TRESULTS }
    
    // IsUntyped reports whether t is an untyped type.
    func (t *Type) IsUntyped() bool {
    	if t == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    		}
    		if v.Op == OpPhi {
    			// A Phi implies we have reached the top of the block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			continue
    		}
    		if v.Type.IsTuple() && v.Type.FieldType(1).IsMemory() {
    			// We could handle this situation however it is likely
    			// to be very rare.
    			return false
    		}
    		if v.Op.SymEffect()&SymAddr != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top