Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for liveValues (0.17 sec)

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

    // The caller should call f.Cache.freeBoolSlice(live) when it is done with it.
    func findlive(f *Func) (reachable []bool, live []bool) {
    	reachable = ReachableBlocks(f)
    	var order []*Value
    	live, order = liveValues(f, reachable)
    	f.Cache.freeValueSlice(order)
    	return
    }
    
    // ReachableBlocks returns the reachable blocks in f.
    func ReachableBlocks(f *Func) []bool {
    	reachable := make([]bool, f.NumBlocks())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top