Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for NumBlocks (0.24 sec)

  1. src/cmd/compile/internal/ssa/stackalloc.go

    // basic blocks. Figure out a way to make this function (or, more precisely, the user
    // of this function) require only linear size & time.
    func (s *stackAllocState) computeLive(spillLive [][]ID) {
    	s.live = make([][]ID, s.f.NumBlocks())
    	var phis []*Value
    	live := s.f.newSparseSet(s.f.NumValues())
    	defer s.f.retSparseSet(live)
    	t := s.f.newSparseSet(s.f.NumValues())
    	defer s.f.retSparseSet(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sccp.go

    	t.edges = append(t.edges, Edge{f.Entry, 0})
    	t.defUse = make(map[*Value][]*Value)
    	t.defBlock = make(map[*Value][]*Block)
    	t.latticeCells = make(map[*Value]lattice)
    	t.visitedBlock = f.Cache.allocBoolSlice(f.NumBlocks())
    	defer f.Cache.freeBoolSlice(t.visitedBlock)
    
    	// build it early since we rely heavily on the def-use chain later
    	t.buildDefUses()
    
    	// pick up either an edge or SSA value from worklist, process it
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/archive/tar/common.go

    	paxSchilyXattr = "SCHILY.xattr."
    
    	// Keywords for GNU sparse files in a PAX extended header.
    	paxGNUSparse          = "GNU.sparse."
    	paxGNUSparseNumBlocks = "GNU.sparse.numblocks"
    	paxGNUSparseOffset    = "GNU.sparse.offset"
    	paxGNUSparseNumBytes  = "GNU.sparse.numbytes"
    	paxGNUSparseMap       = "GNU.sparse.map"
    	paxGNUSparseName      = "GNU.sparse.name"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top