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)
257
Debug.Assert(AllBlocks(block => (block.Reachability == Reachability.
NotReachable
)));
271
if (block.Reachability == Reachability.
NotReachable
)
284
if (block != null && block.Reachability == Reachability.
NotReachable
)
363
if (newBranchBlock.Reachability == Reachability.
NotReachable
)
446
block.Reachability = Reachability.
NotReachable
;
679
if (current.NextBlock.Reachability == Reachability.
NotReachable
)
705
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
));