2 writes to m_catchEndAddr
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1284m_catchEndAddr = new int[4]; 1304m_catchEndAddr = RuntimeILGenerator.EnlargeArray(m_catchEndAddr);
13 references to m_catchEndAddr
System.Private.CoreLib (13)
src\System\Reflection\Emit\RuntimeILGenerator.cs (13)
1304m_catchEndAddr = RuntimeILGenerator.EnlargeArray(m_catchEndAddr); 1315Debug.Assert(m_catchEndAddr[currentCatch - 1] == -1, "m_catchEndAddr[m_currentCatch-1] == -1"); 1316m_catchEndAddr[currentCatch - 1] = catchorfilterAddr; 1332Debug.Assert(m_catchEndAddr[currentCatch - 1] == -1, "m_catchEndAddr[m_currentCatch-1] == -1"); 1333m_catchEndAddr[currentCatch - 1] = catchEndAddr; 1336m_catchEndAddr[currentCatch] = -1; 1380Debug.Assert(m_catchEndAddr[m_currentCatch - 1] == -1); 1381m_catchEndAddr[m_currentCatch - 1] = endAddr; 1417return m_catchEndAddr; 1462if (exc.m_catchEndAddr[exclast] < m_catchEndAddr[last]) 1465if (exc.m_catchEndAddr[exclast] != m_catchEndAddr[last])