4 writes to _currentBlock
Microsoft.CodeAnalysis (4)
CodeGen\ILBuilder.cs (4)
77
leaderBlock =
_currentBlock
= _scopeManager.CreateBlock(this);
118
_currentBlock
= block;
144
_currentBlock
= null;
198
_currentBlock
= null;
9 references to _currentBlock
Microsoft.CodeAnalysis (9)
CodeGen\ILBuilder.cs (8)
88
Debug.Assert(!_pendingBlockCreate || (
_currentBlock
== null));
90
if (
_currentBlock
== null)
95
return
_currentBlock
;
100
Debug.Assert(
_currentBlock
== null);
129
Debug.Assert(
_currentBlock
== null);
132
Debug.Assert(
_currentBlock
!= null);
141
if (
_currentBlock
!= null)
143
_lastCompleteBlock =
_currentBlock
;
CodeGen\LocalScopeManager.cs (1)
732
Debug.Assert(builder.
_currentBlock
== builder._labelInfos[_endLabel].bb);