Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for boundedDotPtr (0.98 sec)

  1. src/cmd/compile/internal/walk/walk.go

    	}
    	return boundedDotPtr(base.Pos, itab, itabTypeField)
    }
    
    var itabTypeField *types.Field
    
    // boundedDotPtr returns a selector expression representing ptr.field
    // and omits nil-pointer checks for ptr.
    func boundedDotPtr(pos src.XPos, ptr ir.Node, field *types.Field) *ir.SelectorExpr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/switch.go

    		// runtime.itab's hash field
    		if itabHashField == nil {
    			itabHashField = runtimeField("hash", rttype.ITab.OffsetOf("Hash"), types.Types[types.TUINT32])
    		}
    		hashField = itabHashField
    	}
    	return boundedDotPtr(pos, itab, hashField)
    }
    
    var rtypeHashField, itabHashField *types.Field
    
    // A typeSwitch walks a type switch.
    type typeSwitch struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top