2 writes to _allocatedILMarkers
Microsoft.CodeAnalysis (2)
CodeGen\ILBuilder.cs (2)
238
_allocatedILMarkers
= null;
1226
_allocatedILMarkers
= ArrayBuilder<ILMarker>.GetInstance();
13 references to _allocatedILMarkers
Microsoft.CodeAnalysis (13)
CodeGen\ILBuilder.cs (13)
161
_allocatedILMarkers
[_lastCompleteBlock.LastILMarker].BlockOffset == _lastCompleteBlock.RegularInstructionsLength)
167
_allocatedILMarkers
[_lastCompleteBlock.LastILMarker].BlockOffset == _lastCompleteBlock.RegularInstructionsLength)
182
_allocatedILMarkers
[marker] = new ILMarker() { BlockOffset = (int)current.RegularInstructionsLength, AbsoluteOffset = -1 };
235
if (
_allocatedILMarkers
!= null)
237
_allocatedILMarkers
.Free();
892
int blockOffset =
_allocatedILMarkers
[i].BlockOffset;
894
_allocatedILMarkers
[i] = new ILMarker() { BlockOffset = blockOffset, AbsoluteOffset = absoluteOffset };
1224
if (
_allocatedILMarkers
== null)
1232
int marker =
_allocatedILMarkers
.Count;
1235
_allocatedILMarkers
.Add(
1249
Debug.Assert(
_allocatedILMarkers
!= null, "There are not markers in this builder");
1250
Debug.Assert(ilMarker >= 0 && ilMarker <
_allocatedILMarkers
.Count, "Wrong builder?");
1251
return
_allocatedILMarkers
[ilMarker].AbsoluteOffset;