Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for L2 (0.02 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (CMPBload {sym} [off] ptr (MOVLconst [c]) mem) => (CMPBconstload {sym} [makeValAndOff(int32(int8(c)),off)] ptr mem)
    
    (TEST(Q|L|W|B)  l:(MOV(Q|L|W|B)load {sym} [off] ptr mem) l2)
            && l == l2
    	&& l.Uses == 2
    	&& clobber(l) =>
      @l.Block (CMP(Q|L|W|B)constload {sym} [makeValAndOff(0, off)] ptr mem)
    
    // Convert ANDload to MOVload when we can do the AND in a containing TEST op.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	sg := mheap_.sweepgen
    
    	// Find the arena and page index into that arena for this shard.
    	ai := mheap_.markArenas[shard/(pagesPerArena/pagesPerSpanRoot)]
    	ha := mheap_.arenas[ai.l1()][ai.l2()]
    	arenaPage := uint(uintptr(shard) * pagesPerSpanRoot % pagesPerArena)
    
    	// Construct slice of bitmap which we'll iterate over.
    	specialsbits := ha.pageSpecials[arenaPage/8:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// time here is pretty trivial.
    	lock(&mheap_.lock)
    	arenas := mheap_.allArenas
    	unlock(&mheap_.lock)
    	for _, ai := range arenas {
    		ha := mheap_.arenas[ai.l1()][ai.l2()]
    		clear(ha.pageMarks[:])
    	}
    
    	work.bytesMarked = 0
    	work.initialHeapLive = gcController.heapLive.Load()
    }
    
    // Hooks for other packages
    
    var poolcleanup func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top