Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for NotInHeap (0.52 sec)

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

    func PtrDataSize(t *Type) int64 {
    	CalcSize(t)
    	x := t.ptrBytes
    	if t.Kind() == TPTR && t.Elem().NotInHeap() {
    		// Note: this is done here instead of when we're setting
    		// the ptrBytes field, because at that time (in NewPtr, usually)
    		// the NotInHeap bit of the element type might not be set yet.
    		x = 0
    	}
    	return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    // Must be smaller than or equal to workbuf.
    type stackWorkBuf struct {
    	_ sys.NotInHeap
    	stackWorkBufHdr
    	obj [(_WorkbufSize - unsafe.Sizeof(stackWorkBufHdr{})) / goarch.PtrSize]uintptr
    }
    
    // Header declaration must come after the buf declaration above, because of issue #14620.
    type stackWorkBufHdr struct {
    	_ sys.NotInHeap
    	workbufhdr
    	next *stackWorkBuf // linked list of workbufs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/runtime/mranges.go

    	sysStat *sysMemStat
    }
    
    func (a *addrRanges) init(sysStat *sysMemStat) {
    	ranges := (*notInHeapSlice)(unsafe.Pointer(&a.ranges))
    	ranges.len = 0
    	ranges.cap = 16
    	ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), goarch.PtrSize, sysStat))
    	a.sysStat = sysStat
    	a.totalBytes = 0
    }
    
    // findSucc returns the first index in a such that addr is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/runtime/debuglog.go

    		l.w.varint(-1)
    	}
    
    	return l
    }
    
    // A dlogger writes to the debug log.
    //
    // To obtain a dlogger, call dlog(). When done with the dlogger, call
    // end().
    type dlogger struct {
    	_ sys.NotInHeap
    	w debugLogWriter
    
    	// allLink is the next dlogger in the allDloggers list.
    	allLink *dlogger
    
    	// owned indicates that this dlogger is owned by an M. This is
    	// accessed atomically.
    	owned atomic.Uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/runtime/slice.go

    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type slice struct {
    	array unsafe.Pointer
    	len   int
    	cap   int
    }
    
    // A notInHeapSlice is a slice backed by runtime/internal/sys.NotInHeap memory.
    type notInHeapSlice struct {
    	array *notInHeap
    	len   int
    	cap   int
    }
    
    func panicmakeslicelen() {
    	panic(errorString("makeslice: len out of range"))
    }
    
    func panicmakeslicecap() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/subr.go

    	if src.IsPtr() && dst.IsPtr() && dst.Elem().NotInHeap() && !src.Elem().NotInHeap() {
    		why := fmt.Sprintf(":\n\t%v is incomplete (or unallocatable), but %v is not", dst.Elem(), src.Elem())
    		return ir.OXXX, why
    	}
    	// (b) Disallow string to []T where T is not-in-heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/builtin.go

    func walkMakeSlice(n *ir.MakeExpr, init *ir.Nodes) ir.Node {
    	l := n.Len
    	r := n.Cap
    	if r == nil {
    		r = safeExpr(l, init)
    		l = r
    	}
    	t := n.Type()
    	if t.Elem().NotInHeap() {
    		base.Errorf("%v can't be allocated in Go; it is incomplete (or unallocatable)", t.Elem())
    	}
    	if n.Esc() == ir.EscNone {
    		if why := escape.HeapAllocReason(n); why != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/runtime/netpoll.go

    const (
    	pdNil   uintptr = 0
    	pdReady uintptr = 1
    	pdWait  uintptr = 2
    )
    
    const pollBlockSize = 4 * 1024
    
    // Network poller descriptor.
    //
    // No heap pointers.
    type pollDesc struct {
    	_     sys.NotInHeap
    	link  *pollDesc      // in pollcache, protected by pollcache.lock
    	fd    uintptr        // constant for pollDesc usage lifetime
    	fdseq atomic.Uintptr // protects against stale pollDesc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/runtime/mcache.go

    // No locking needed because it is per-thread (per-P).
    //
    // mcaches are allocated from non-GC'd memory, so any heap pointers
    // must be specially handled.
    type mcache struct {
    	_ sys.NotInHeap
    
    	// The following members are accessed on every malloc,
    	// so they are grouped here for better caching.
    	nextSample uintptr // trigger heap sample after allocating this many bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/runtime/mspanset.go

    	return ht
    }
    
    // reset clears the headTailIndex to (0, 0).
    func (h *atomicHeadTailIndex) reset() {
    	h.u.Store(0)
    }
    
    // atomicMSpanPointer is an atomic.Pointer[mspan]. Can't use generics because it's NotInHeap.
    type atomicMSpanPointer struct {
    	p atomic.UnsafePointer
    }
    
    // Load returns the *mspan.
    func (p *atomicMSpanPointer) Load() *mspan {
    	return (*mspan)(p.p.Load())
    }
    
    // Store stores an *mspan.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top