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)
298block.Reachability = Reachability.Reachable; 377block.BranchBlock.Reachability = Reachability.BlockedByFinally; 458block.Reachability = Reachability.NotReachable; 717current.Reachability = Reachability.NotReachable;
14 references to Reachability
Microsoft.CodeAnalysis (14)
CodeGen\ILBuilder.cs (10)
269Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.NotReachable))); 283if (block.Reachability == Reachability.NotReachable) 296if (block != null && block.Reachability == Reachability.NotReachable) 375if (newBranchBlock.Reachability == Reachability.NotReachable) 454if (handlerBlock.Reachability != Reachability.Reachable) 691if (current.NextBlock.Reachability == Reachability.NotReachable) 703Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.Reachable) || (block.Reachability == Reachability.BlockedByFinally))); 747Debug.Assert(current.Reachability != Reachability.BlockedByFinally || 752if (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)));