Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for mheap (0.1 sec)

  1. src/cmd/trace/testdata/go122.test

    String id=179
    	data="net.setKeepAlive"
    String id=180
    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/sockopt_posix.go"
    String id=181
    	data="runtime.(*mheap).alloc"
    String id=182
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mheap.go"
    String id=183
    	data="runtime.(*mcentral).grow"
    String id=184
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mcentral.go"
    String id=185
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-gc-stress.test

    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/asm_amd64.s"
    String id=66
    	data="runtime.traceLocker.GCMarkAssistStart"
    String id=67
    	data="runtime.(*mheap).alloc"
    String id=68
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mheap.go"
    String id=69
    	data="runtime.(*mcache).allocLarge"
    String id=70
    	data="runtime.chanrecv1"
    String id=71
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		return x
    	case Pointer:
    		ptr := v.ptr
    		if v.flag&flagIndir != 0 {
    			if v.typ().IfaceIndir() {
    				// This is a pointer to a not-in-heap object. ptr points to a uintptr
    				// in the heap. That uintptr is the address of a not-in-heap object.
    				// In general, pointers to not-in-heap objects can be total junk.
    				// But Elem() is asking to dereference it, so the user has asserted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	systemstack(func() {
    		for i := 0; i < pp.mspancache.len; i++ {
    			// Safe to call since the world is stopped.
    			mheap_.spanalloc.free(unsafe.Pointer(pp.mspancache.buf[i]))
    		}
    		pp.mspancache.len = 0
    		lock(&mheap_.lock)
    		pp.pcache.flush(&mheap_.pages)
    		unlock(&mheap_.lock)
    	})
    	freemcache(pp.mcache)
    	pp.mcache = nil
    	gfpurge(pp)
    	if raceenabled {
    		if pp.timers.raceCtx != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    "uid":"${datasource}"},"expr":"go_memstats_heap_sys_bytes{app=\"istiod\"}","format":"time_series","hide":true,"intervalFactor":2,"legendFormat":"heap sys","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"go_memstats_heap_alloc_bytes{app=\"istiod\"}","format":"time_series","hide":true,"intervalFactor":2,"legendFormat":"heap alloc","refId":"D"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"go_memstats_alloc_bytes{app=\"istiod\"}","format":"time_ser...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	writeDatblkToOutBuf(ctxt, out, addr, size)
    }
    
    // Used only on Wasm for now.
    func DatblkBytes(ctxt *Link, addr int64, size int64) []byte {
    	buf := make([]byte, size)
    	out := &OutBuf{heap: buf}
    	writeDatblkToOutBuf(ctxt, out, addr, size)
    	return buf
    }
    
    func writeDatblkToOutBuf(ctxt *Link, out *OutBuf, addr int64, size int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    // during compilation to ensure correctness.
    // Take care that overlapping moves are preserved.
    // Restrict this optimization to the stack, to avoid duplicating loads from the heap;
    // see CL 145208 for discussion.
    (Move {t1} [s] dst tmp1 midmem:(Move {t2} [s] tmp2 src _))
    	&& t1.Compare(t2) == types.CMPeq
    	&& isSamePtr(tmp1, tmp2)
    	&& isStackPtr(src) && !isVolatile(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		a.Reg += REG_AX - REG_AL
    		*t = 0
    	}
    }
    
    const (
    	movLit uint8 = iota // Like Zlit
    	movRegMem
    	movMemReg
    	movRegMem2op
    	movMemReg2op
    	movFullPtr // Load full pointer, trash heap (unsupported)
    	movDoubleShift
    	movTLSReg
    )
    
    var ymovtab = []movtab{
    	// push
    	{APUSHL, Ycs, Ynone, Ynone, movLit, [4]uint8{0x0e, 0}},
    	{APUSHL, Yss, Ynone, Ynone, movLit, [4]uint8{0x16, 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	pi.X.Inner = nil
    
    	// Set up an interface value that will cause a crash.
    	// P1 = 1 is a non-zero, so the interface looks non-nil.
    	// P2 = pi ensures that the data word points into the
    	// allocated heap; if not the collection skips the interface
    	// value as irrelevant, without dereferencing P1.
    	pi.P1 = 1
    	pi.P2 = uintptr(unsafe.Pointer(pi))
    }
    
    func TestCallMethodJump(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top