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)
259
Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.
NotReachable
)));
273
if (block.Reachability == Reachability.
NotReachable
)
286
if (block != null && block.Reachability == Reachability.
NotReachable
)
365
if (newBranchBlock.Reachability == Reachability.
NotReachable
)
448
block.Reachability = Reachability.
NotReachable
;
681
if (current.NextBlock.Reachability == Reachability.
NotReachable
)
707
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
));