Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for notinheap (0.15 sec)

  1. src/runtime/mfinal.go

    // must be specially handled. GC currently assumes that the finalizer
    // queue does not grow during marking (but it can shrink).
    type finblock struct {
    	_       sys.NotInHeap
    	alllink *finblock
    	next    *finblock
    	cnt     uint32
    	_       int32
    	fin     [(_FinBlockSize - 2*goarch.PtrSize - 2*4) / unsafe.Sizeof(finalizer{})]finalizer
    }
    
    var fingStatus atomic.Uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    // See https://golang.org/s/go12symtab.
    // Keep in sync with linker (../cmd/link/internal/ld/pcln.go:/pclntab)
    // and with package debug/gosym and with symtab.go in package runtime.
    type _func struct {
    	sys.NotInHeap // Only in static data
    
    	entryOff uint32 // start pc, as offset from moduledata.text/pcHeader.textStart
    	nameOff  int32  // function name, as index into moduledata.funcnametab.
    
    	args        int32  // in/out args size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    //
    // None of the fields in this bucket header are modified after
    // creation, including its next and allnext links.
    //
    // No heap pointers.
    type bucket struct {
    	_       sys.NotInHeap
    	next    *bucket
    	allnext *bucket
    	typ     bucketType // memBucket or blockBucket (includes mutexProfile)
    	hash    uintptr
    	size    uintptr
    	nstk    uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    		// However, types2 does not know about build constraints.
    		"bug514.go",
    		"issue40954.go",
    		"issue42032.go",
    		"issue42076.go",
    		"issue46903.go",
    		"issue51733.go",
    		"notinheap2.go",
    		"notinheap3.go",
    	)
    }
    
    func TestStdKen(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test", "ken"))
    }
    
    // Package paths of excluded packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	switch {
    	case t.IsBoolean() || t.IsInteger() || t.IsFloat() || t.IsComplex():
    		s.store(t, left, right)
    	case t.IsPtrShaped():
    		if t.IsPtr() && t.Elem().NotInHeap() {
    			s.store(t, left, right) // see issue 42032
    		}
    		// otherwise, no scalar fields.
    	case t.IsString():
    		if skip&skipLen != 0 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top