2 writes to m_catchEndAddr
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1278m_catchEndAddr = new int[4]; 1298m_catchEndAddr = RuntimeILGenerator.EnlargeArray(m_catchEndAddr);
13 references to m_catchEndAddr
System.Private.CoreLib (13)
src\System\Reflection\Emit\RuntimeILGenerator.cs (13)
1298m_catchEndAddr = RuntimeILGenerator.EnlargeArray(m_catchEndAddr); 1309Debug.Assert(m_catchEndAddr[currentCatch - 1] == -1, "m_catchEndAddr[m_currentCatch-1] == -1"); 1310m_catchEndAddr[currentCatch - 1] = catchorfilterAddr; 1326Debug.Assert(m_catchEndAddr[currentCatch - 1] == -1, "m_catchEndAddr[m_currentCatch-1] == -1"); 1327m_catchEndAddr[currentCatch - 1] = catchEndAddr; 1330m_catchEndAddr[currentCatch] = -1; 1374Debug.Assert(m_catchEndAddr[m_currentCatch - 1] == -1, "m_catchEndAddr[m_currentCatch-1] == -1"); 1375m_catchEndAddr[m_currentCatch - 1] = endAddr; 1411return m_catchEndAddr; 1456if (exc.m_catchEndAddr[exclast] < m_catchEndAddr[last]) 1459if (exc.m_catchEndAddr[exclast] != m_catchEndAddr[last])