4 implementations of AreLocalsZeroed
Microsoft.CodeAnalysis (4)
CodeGen\MethodBody.cs (1)
124
bool Cci.IMethodBody.
AreLocalsZeroed
=> _areLocalsZeroed;
Emit\EditAndContinue\DeletedMethodBody.cs (1)
24
public bool
AreLocalsZeroed
=> false;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
127
bool Cci.IMethodBody.
AreLocalsZeroed
=> false;
PEWriter\MethodDefinitionBase.cs (1)
135
public bool
AreLocalsZeroed
=> false;
3 references to AreLocalsZeroed
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
3013
var smallBodyKey = (methodBody.IL, methodBody.
AreLocalsZeroed
);
3033
attributes: (methodBody.
AreLocalsZeroed
? MethodBodyAttributes.InitLocals : 0),
Microsoft.CodeAnalysis.Test.Utilities (1)
CompilationVerifier.cs (1)
798
return _visualizeRealIL(_lazyModuleSymbol, methodData, markers, emitData.TestData.Module!.GetMethodBody(methodData.Method)!.
AreLocalsZeroed
);