4 writes to NextBlock
Microsoft.CodeAnalysis (4)
CodeGen\BasicBlock.cs (2)
477
this.
NextBlock
= BranchBlock;
665
this.
NextBlock
= null;
CodeGen\ILBuilder.cs (2)
122
_lastCompleteBlock.
NextBlock
= block;
683
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)
121
Debug.Assert(_lastCompleteBlock.
NextBlock
== null);
293
block = block.
NextBlock
;
299
PushReachableBlockToProcess(reachableBlocks, block.
NextBlock
);
533
targetsTarget = targetBlock.
NextBlock
;
593
targetsTarget = targetBlock.
NextBlock
;
679
while (current.
NextBlock
!= null)
681
if (current.
NextBlock
.Reachability == Reachability.NotReachable)
683
current.NextBlock = current.
NextBlock
.
NextBlock
;
688
current = current.
NextBlock
;
708
current = current.
NextBlock
;
715
while (current.
NextBlock
!= null)
717
current.
NextBlock
.Start = current.Start + current.TotalSize;
718
current = current.
NextBlock
;
754
current = current.
NextBlock
;
783
current = current.
NextBlock
;
845
current = current.
NextBlock
;
893
for (var block = leaderBlock; block != null; block = block.
NextBlock
)
1227
current = current.
NextBlock
;