5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3533
_inlinedMethods
= null;
3563
_inlinedMethods
= previouslyStashedInlinees;
3566
_inlinedMethods
= _inlinedMethods ?? new HashSet<MethodDesc>();
3619
_inlinedMethods
= _stashedInlinedMethods.Pop();
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
733
_inlinedMethods
= null;
8 references to _inlinedMethods
ILCompiler.ReadyToRun (8)
JitInterface\CorInfoImpl.ReadyToRun.cs (5)
3532
_stashedInlinedMethods.Push(
_inlinedMethods
);
3557
if (
_inlinedMethods
!= null)
3560
foreach (var inlineeInHashSet in
_inlinedMethods
)
3566
_inlinedMethods =
_inlinedMethods
?? new HashSet<MethodDesc>();
3567
_inlinedMethods
.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
526
if (
_inlinedMethods
!= null)
528
inlineeArray = new MethodDesc[
_inlinedMethods
.Count];
529
_inlinedMethods
.CopyTo(inlineeArray);