13 references to NotReachable
Microsoft.CodeAnalysis (13)
CodeGen\BasicBlock.cs (3)
464
toRemove.Reachability = ILBuilder.Reachability.
NotReachable
;
468
next.Reachability = Reachability.
NotReachable
;
667
this.Reachability = Reachability.
NotReachable
;
CodeGen\ILBuilder.cs (7)
269
Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.
NotReachable
)));
283
if (block.Reachability == Reachability.
NotReachable
)
296
if (block != null && block.Reachability == Reachability.
NotReachable
)
375
if (newBranchBlock.Reachability == Reachability.
NotReachable
)
458
block.Reachability = Reachability.
NotReachable
;
691
if (current.NextBlock.Reachability == Reachability.
NotReachable
)
717
current.Reachability = Reachability.
NotReachable
;
CodeGen\LocalScopeManager.cs (3)
439
if (block.Reachability != Reachability.
NotReachable
)
484
if (block.Reachability != Reachability.
NotReachable
)
774
Debug.Assert((reachability == Reachability.Reachable) || (reachability == Reachability.
NotReachable
));