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)
288block.Reachability = Reachability.Reachable; 367block.BranchBlock.Reachability = Reachability.BlockedByFinally; 448block.Reachability = Reachability.NotReachable; 707current.Reachability = Reachability.NotReachable;
14 references to Reachability
Microsoft.CodeAnalysis (14)
CodeGen\ILBuilder.cs (10)
259Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.NotReachable))); 273if (block.Reachability == Reachability.NotReachable) 286if (block != null && block.Reachability == Reachability.NotReachable) 365if (newBranchBlock.Reachability == Reachability.NotReachable) 444if (handlerBlock.Reachability != Reachability.Reachable) 681if (current.NextBlock.Reachability == Reachability.NotReachable) 693Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.Reachable) || (block.Reachability == Reachability.BlockedByFinally))); 737Debug.Assert(current.Reachability != Reachability.BlockedByFinally || 742if (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)));