1 write to m_exceptions
System.Private.CoreLib (1)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
577
m_exceptions
= ilGenerator.GetExceptions();
11 references to m_exceptions
System.Private.CoreLib (11)
src\System\Reflection\Emit\DynamicILGenerator.cs (11)
727
EHCount = CalculateNumberOfExceptions(
m_exceptions
);
745
Debug.Assert(
m_exceptions
!= null);
748
for (int i = 0; i <
m_exceptions
.Length; i++)
750
int excCount =
m_exceptions
[i].GetNumberOfCatches();
754
exception->Flags =
m_exceptions
[i].GetExceptionTypes()[excNumber];
755
exception->TryOffset =
m_exceptions
[i].GetStartAddress();
757
exception->TryLength =
m_exceptions
[i].GetEndAddress() - exception->TryOffset;
759
exception->TryLength =
m_exceptions
[i].GetFinallyEndAddress() - exception->TryOffset;
760
exception->HandlerOffset =
m_exceptions
[i].GetCatchAddresses()[excNumber];
761
exception->HandlerLength =
m_exceptions
[i].GetCatchEndAddresses()[excNumber] - exception->HandlerOffset;
763
exception->ClassTokenOrFilterOffset =
m_exceptions
[i].GetFilterAddresses()[excNumber];