4 writes to NextBlock
Microsoft.CodeAnalysis (4)
CodeGen\BasicBlock.cs (2)
477
this.
NextBlock
= BranchBlock;
665
this.
NextBlock
= null;
CodeGen\ILBuilder.cs (2)
128
_lastCompleteBlock.
NextBlock
= block;
693
current.
NextBlock
= current.NextBlock.NextBlock;
26 references to NextBlock
Microsoft.CodeAnalysis (26)
CodeGen\BasicBlock.cs (7)
331
offset = branchBlockStart -
NextBlock
.Start;
392
var next = this.
NextBlock
;
397
next = next.
NextBlock
;
445
next.
NextBlock
!= null &&
446
next.
NextBlock
.Start == BranchBlock.Start &&
457
var toRemove = this.
NextBlock
;
465
toRemove = toRemove.
NextBlock
;
CodeGen\ILBuilder.cs (19)
125
Debug.Assert(_lastCompleteBlock.
NextBlock
== null);
303
block = block.
NextBlock
;
309
PushReachableBlockToProcess(reachableBlocks, block.
NextBlock
);
543
targetsTarget = targetBlock.
NextBlock
;
603
targetsTarget = targetBlock.
NextBlock
;
689
while (current.
NextBlock
!= null)
691
if (current.
NextBlock
.Reachability == Reachability.NotReachable)
693
current.NextBlock = current.
NextBlock
.
NextBlock
;
698
current = current.
NextBlock
;
718
current = current.
NextBlock
;
725
while (current.
NextBlock
!= null)
727
current.
NextBlock
.Start = current.Start + current.TotalSize;
728
current = current.
NextBlock
;
764
current = current.
NextBlock
;
793
current = current.
NextBlock
;
855
current = current.
NextBlock
;
903
for (var block = leaderBlock; block != null; block = block.
NextBlock
)
1239
current = current.
NextBlock
;