Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mightBeHeapPointer (0.15 sec)

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

    // is known to be zero.
    type ZeroRegion struct {
    	base *Value
    	mask uint64
    }
    
    // mightBeHeapPointer reports whether v might point to the heap.
    // v must have pointer type.
    func mightBeHeapPointer(v *Value) bool {
    	if IsGlobalAddr(v) {
    		return false
    	}
    	return true
    }
    
    // mightContainHeapPointer reports whether the data currently at addresses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top