2 writes to _lazyRegularInstructions
Microsoft.CodeAnalysis (2)
CodeGen\BasicBlock.cs (2)
88
_lazyRegularInstructions
= Cci.PooledBlobBuilder.GetInstance();
160
_lazyRegularInstructions
= null;
7 references to _lazyRegularInstructions
Microsoft.CodeAnalysis (7)
CodeGen\BasicBlock.cs (7)
86
if (
_lazyRegularInstructions
== null)
91
return
_lazyRegularInstructions
;
157
if (
_lazyRegularInstructions
!= null)
159
_lazyRegularInstructions
.Free();
255
public BlobBuilder RegularInstructions =>
_lazyRegularInstructions
;
260
public bool HasNoRegularInstructions =>
_lazyRegularInstructions
== null;
262
public int RegularInstructionsLength =>
_lazyRegularInstructions
?.Count ?? 0;