2 writes to m_catchEndAddr
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1288m_catchEndAddr = new int[4]; 1308m_catchEndAddr = RuntimeILGenerator.EnlargeArray(m_catchEndAddr);
13 references to m_catchEndAddr
System.Private.CoreLib (13)
src\System\Reflection\Emit\RuntimeILGenerator.cs (13)
1308m_catchEndAddr = RuntimeILGenerator.EnlargeArray(m_catchEndAddr); 1319Debug.Assert(m_catchEndAddr[currentCatch - 1] == -1, "m_catchEndAddr[m_currentCatch-1] == -1"); 1320m_catchEndAddr[currentCatch - 1] = catchorfilterAddr; 1336Debug.Assert(m_catchEndAddr[currentCatch - 1] == -1, "m_catchEndAddr[m_currentCatch-1] == -1"); 1337m_catchEndAddr[currentCatch - 1] = catchEndAddr; 1340m_catchEndAddr[currentCatch] = -1; 1384Debug.Assert(m_catchEndAddr[m_currentCatch - 1] == -1); 1385m_catchEndAddr[m_currentCatch - 1] = endAddr; 1421return m_catchEndAddr; 1466if (exc.m_catchEndAddr[exclast] < m_catchEndAddr[last]) 1469if (exc.m_catchEndAddr[exclast] != m_catchEndAddr[last])