Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for baseState (0.45 sec)

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

    			}
    			return locs.startState, blockChanged
    		}
    	}
    
    	baseID := preds[0].ID
    	baseState := p0
    
    	// Choose the predecessor with the smallest endState for intersection work
    	for _, pred := range preds[1:] {
    		if blockLocs[pred.ID].endState.Size() < baseState.Size() {
    			baseState = blockLocs[pred.ID].endState
    			baseID = pred.ID
    		}
    	}
    
    	if state.loggingLevel > 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top