1 write to m_exceptions
System.Private.CoreLib (1)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
571
m_exceptions
= ilGenerator.GetExceptions();
11 references to m_exceptions
System.Private.CoreLib (11)
src\System\Reflection\Emit\DynamicILGenerator.cs (11)
721
EHCount = CalculateNumberOfExceptions(
m_exceptions
);
739
Debug.Assert(
m_exceptions
!= null);
742
for (int i = 0; i <
m_exceptions
.Length; i++)
744
int excCount =
m_exceptions
[i].GetNumberOfCatches();
748
exception->Flags =
m_exceptions
[i].GetExceptionTypes()[excNumber];
749
exception->TryOffset =
m_exceptions
[i].GetStartAddress();
751
exception->TryLength =
m_exceptions
[i].GetEndAddress() - exception->TryOffset;
753
exception->TryLength =
m_exceptions
[i].GetFinallyEndAddress() - exception->TryOffset;
754
exception->HandlerOffset =
m_exceptions
[i].GetCatchAddresses()[excNumber];
755
exception->HandlerLength =
m_exceptions
[i].GetCatchEndAddresses()[excNumber] - exception->HandlerOffset;
757
exception->ClassTokenOrFilterOffset =
m_exceptions
[i].GetFilterAddresses()[excNumber];