7 writes to Reachability
Microsoft.CodeAnalysis (7)
CodeGen\BasicBlock.cs (3)
464toRemove.Reachability = ILBuilder.Reachability.NotReachable; 468next.Reachability = Reachability.NotReachable; 667this.Reachability = Reachability.NotReachable;
CodeGen\ILBuilder.cs (4)
286block.Reachability = Reachability.Reachable; 365block.BranchBlock.Reachability = Reachability.BlockedByFinally; 446block.Reachability = Reachability.NotReachable; 705current.Reachability = Reachability.NotReachable;
14 references to Reachability
Microsoft.CodeAnalysis (14)
CodeGen\ILBuilder.cs (10)
257Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.NotReachable))); 271if (block.Reachability == Reachability.NotReachable) 284if (block != null && block.Reachability == Reachability.NotReachable) 363if (newBranchBlock.Reachability == Reachability.NotReachable) 442if (handlerBlock.Reachability != Reachability.Reachable) 679if (current.NextBlock.Reachability == Reachability.NotReachable) 691Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.Reachable) || (block.Reachability == Reachability.BlockedByFinally))); 735Debug.Assert(current.Reachability != Reachability.BlockedByFinally || 740if (current.Reachability == Reachability.BlockedByFinally)
CodeGen\LocalScopeManager.cs (4)
439if (block.Reachability != Reachability.NotReachable) 484if (block.Reachability != Reachability.NotReachable) 773var reachability = tryScope.LeaderBlock.Reachability; 777Debug.Assert(_handlers.All(h => (h.LeaderBlock.Reachability == reachability)));