Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findLastMems (0.25 sec)

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

    	for c := sdom[b.ID].child; c != nil; c = sdom[c.ID].sibling {
    		addDFphis(x, h, c, f, defForUses, newphis, sdom) // TODO: convert to explicit stack from recursion.
    	}
    }
    
    // findLastMems maps block ids to last memory-output op in a block, if any.
    func findLastMems(f *Func) []*Value {
    
    	var stores []*Value
    	lastMems := f.Cache.allocValueSlice(f.NumBlocks())
    	defer f.Cache.freeValueSlice(lastMems)
    	storeUse := f.newSparseSet(f.NumValues())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
Back to top