3 writes to _corDbgStackTrace
System.Private.CoreLib (3)
System\Exception.NativeAot.cs (3)
65
_corDbgStackTrace
= new IntPtr[16];
80
_corDbgStackTrace
= newArray;
182
_corDbgStackTrace
= stackTrace;
11 references to _corDbgStackTrace
System.Private.CoreLib (11)
System\Exception.NativeAot.cs (11)
27
return new StackFrame(
_corDbgStackTrace
[0], needFileInfo: false).GetMethod();
49
if (
_corDbgStackTrace
!= null)
51
Array.Copy(
_corDbgStackTrace
, ips, ips.Length);
67
if (_idxFirstFreeStackTraceEntry >=
_corDbgStackTrace
.Length)
70
_corDbgStackTrace
[_idxFirstFreeStackTraceEntry++] = IP;
75
IntPtr[] newArray = new IntPtr[
_corDbgStackTrace
.Length * 2];
76
for (int i = 0; i <
_corDbgStackTrace
.Length; i++)
78
newArray[i] =
_corDbgStackTrace
[i];
120
if (!isFirstRethrowFrame && isFirstFrame && ex._idxFirstFreeStackTraceEntry > 0 && ex.
_corDbgStackTrace
[ex._idxFirstFreeStackTraceEntry - 1] != EdiSeparator)
154
IntPtr[]? stackTrace =
_corDbgStackTrace
;
241
pStackTraceElements[i] =
_corDbgStackTrace
[i];