Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dumpGCProg (0.26 sec)

  1. src/runtime/mbitmap.go

    	runGCProg(addb(prog, 4), (*byte)(unsafe.Pointer(s.startAddr)))
    	return s
    }
    func dematerializeGCProg(s *mspan) {
    	mheap_.freeManual(s, spanAllocPtrScalarBits)
    }
    
    func dumpGCProg(p *byte) {
    	nptr := 0
    	for {
    		x := *p
    		p = add1(p)
    		if x == 0 {
    			print("\t", nptr, " end\n")
    			break
    		}
    		if x&0x80 == 0 {
    			print("\t", nptr, " lit ", x, ":")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top