3 implementations of AreLocalsZeroed
Microsoft.CodeAnalysis (3)
CodeGen\MethodBody.cs (1)
122
bool Cci.IMethodBody.
AreLocalsZeroed
=> _areLocalsZeroed;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
126
bool Cci.IMethodBody.
AreLocalsZeroed
=> false;
PEWriter\RootModuleStaticConstructor.cs (1)
136
public bool
AreLocalsZeroed
=> false;
2 references to AreLocalsZeroed
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
3001
var smallBodyKey = (methodBody.IL, methodBody.
AreLocalsZeroed
);
3021
attributes: (methodBody.
AreLocalsZeroed
? MethodBodyAttributes.InitLocals : 0),