1 instantiation of __ExceptionInfo
System.Private.CoreLib (1)
src\System\Reflection\Emit\RuntimeILGenerator.cs (1)
941__ExceptionInfo exceptionInfo = new __ExceptionInfo(m_length, endLabel);
36 references to __ExceptionInfo
System.Private.CoreLib (36)
src\System\Reflection\Emit\DynamicILGenerator.cs (7)
341__ExceptionInfo current = CurrExcStack![CurrExcStackCount - 1]; 355__ExceptionInfo current = CurrExcStack![CurrExcStackCount - 1]; 359if (current.GetCurrentState() == __ExceptionInfo.State_Filter) 580private readonly __ExceptionInfo[]? m_exceptions; 708private static int CalculateNumberOfExceptions(__ExceptionInfo[]? excp) 772if ((exception->Flags & __ExceptionInfo.Finally) != __ExceptionInfo.Finally)
src\System\Reflection\Emit\RuntimeILGenerator.cs (23)
55private __ExceptionInfo[]? m_exceptions; // This is the list of all of the exceptions in this ILStream. 56private __ExceptionInfo[]? m_currExcStack; // This is the stack of exceptions which we're currently in. 74internal __ExceptionInfo[]? CurrExcStack => m_currExcStack; 232internal __ExceptionInfo[]? GetExceptions() 244var temp = new __ExceptionInfo[m_exceptionCount]; 336private static void SortExceptions(__ExceptionInfo[] exceptions) 352__ExceptionInfo temp = exceptions[i]; 927m_exceptions ??= new __ExceptionInfo[DefaultExceptionArraySize]; 928m_currExcStack ??= new __ExceptionInfo[DefaultExceptionArraySize]; 941__ExceptionInfo exceptionInfo = new __ExceptionInfo(m_length, endLabel); 963__ExceptionInfo current = m_currExcStack![m_currExcStackCount - 1]; 969if (state == __ExceptionInfo.State_Filter || 970state == __ExceptionInfo.State_Try) 975if (state == __ExceptionInfo.State_Catch) 979else if (state == __ExceptionInfo.State_Finally || state == __ExceptionInfo.State_Fault) 1003__ExceptionInfo current = m_currExcStack![m_currExcStackCount - 1]; 1021__ExceptionInfo current = m_currExcStack![m_currExcStackCount - 1]; 1023if (current.GetCurrentState() == __ExceptionInfo.State_Filter) 1052__ExceptionInfo current = m_currExcStack![m_currExcStackCount - 1]; 1069__ExceptionInfo current = m_currExcStack![m_currExcStackCount - 1]; 1073if (state != __ExceptionInfo.State_Try) 1457internal bool IsInner(__ExceptionInfo exc)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (6)
140__ExceptionInfo[] excp; 207case __ExceptionInfo.None: 208case __ExceptionInfo.Fault: 209case __ExceptionInfo.Filter: 213case __ExceptionInfo.Finally: 326internal static int CalculateNumberOfExceptions(__ExceptionInfo[]? excp)