1 write to m_exceptions
System.Private.CoreLib (1)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
593
m_exceptions
= ilGenerator.GetExceptions();
11 references to m_exceptions
System.Private.CoreLib (11)
src\System\Reflection\Emit\DynamicILGenerator.cs (11)
743
EHCount = CalculateNumberOfExceptions(
m_exceptions
);
761
Debug.Assert(
m_exceptions
!= null);
764
for (int i = 0; i <
m_exceptions
.Length; i++)
766
int excCount =
m_exceptions
[i].GetNumberOfCatches();
770
exception->Flags =
m_exceptions
[i].GetExceptionTypes()[excNumber];
771
exception->TryOffset =
m_exceptions
[i].GetStartAddress();
773
exception->TryLength =
m_exceptions
[i].GetEndAddress() - exception->TryOffset;
775
exception->TryLength =
m_exceptions
[i].GetFinallyEndAddress() - exception->TryOffset;
776
exception->HandlerOffset =
m_exceptions
[i].GetCatchAddresses()[excNumber];
777
exception->HandlerLength =
m_exceptions
[i].GetCatchEndAddresses()[excNumber] - exception->HandlerOffset;
779
exception->ClassTokenOrFilterOffset =
m_exceptions
[i].GetFilterAddresses()[excNumber];