3 implementations of MaxStack
Microsoft.CodeAnalysis (3)
CodeGen\MethodBody.cs (1)
130ushort Cci.IMethodBody.MaxStack => _maxStack;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
133ushort Cci.IMethodBody.MaxStack => 0;
PEWriter\RootModuleStaticConstructor.cs (1)
128public ushort MaxStack => 0;
2 references to MaxStack
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
2996bool isSmallBody = ilLength < 64 && methodBody.MaxStack <= 8 && localSignatureHandleOpt.IsNil && exceptionRegions.Length == 0; 3013maxStack: methodBody.MaxStack,