Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsPtrShaped (0.14 sec)

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

    	return t.kind == TUINTPTR
    }
    
    // IsPtrShaped reports whether t is represented by a single machine pointer.
    // In addition to regular Go pointer types, this includes map, channel, and
    // function types and unsafe.Pointer. It does not include array or struct types
    // that consist of a single pointer shaped type.
    // TODO(mdempsky): Should it? See golang.org/issue/15028.
    func (t *Type) IsPtrShaped() bool {
    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

    func is16BitInt(t *types.Type) bool {
    	return t.Size() == 2 && t.IsInteger()
    }
    
    func is8BitInt(t *types.Type) bool {
    	return t.Size() == 1 && t.IsInteger()
    }
    
    func isPtr(t *types.Type) bool {
    	return t.IsPtrShaped()
    }
    
    // mergeSym merges two symbolic offsets. There is no real merging of
    // offsets, we just pick the non-nil one.
    func mergeSym(x, y Sym) Sym {
    	if x == nil {
    		return y
    	}
    	if y == nil {
    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