2 writes to _lazyRegularInstructions
Microsoft.CodeAnalysis (2)
CodeGen\BasicBlock.cs (2)
89
_lazyRegularInstructions
= Cci.PooledBlobBuilder.GetInstance();
161
_lazyRegularInstructions
= null;
7 references to _lazyRegularInstructions
Microsoft.CodeAnalysis (7)
CodeGen\BasicBlock.cs (7)
87
if (
_lazyRegularInstructions
== null)
92
return
_lazyRegularInstructions
;
158
if (
_lazyRegularInstructions
!= null)
160
_lazyRegularInstructions
.Free();
256
public BlobBuilder RegularInstructions =>
_lazyRegularInstructions
;
261
public bool HasNoRegularInstructions =>
_lazyRegularInstructions
== null;
263
public int RegularInstructionsLength =>
_lazyRegularInstructions
?.Count ?? 0;