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