4 writes to _currentBlock
Microsoft.CodeAnalysis (4)
CodeGen\ILBuilder.cs (4)
79
leaderBlock =
_currentBlock
= _scopeManager.CreateBlock(this);
120
_currentBlock
= block;
146
_currentBlock
= null;
200
_currentBlock
= null;
9 references to _currentBlock
Microsoft.CodeAnalysis (9)
CodeGen\ILBuilder.cs (8)
90
Debug.Assert(!_pendingBlockCreate || (
_currentBlock
== null));
92
if (
_currentBlock
== null)
97
return
_currentBlock
;
102
Debug.Assert(
_currentBlock
== null);
131
Debug.Assert(
_currentBlock
== null);
134
Debug.Assert(
_currentBlock
!= null);
143
if (
_currentBlock
!= null)
145
_lastCompleteBlock =
_currentBlock
;
CodeGen\LocalScopeManager.cs (1)
732
Debug.Assert(builder.
_currentBlock
== builder._labelInfos[_endLabel].bb);