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