5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3575
_inlinedMethods
= null;
3605
_inlinedMethods
= previouslyStashedInlinees;
3608
_inlinedMethods
= _inlinedMethods ?? new HashSet<MethodDesc>();
3661
_inlinedMethods
= _stashedInlinedMethods.Pop();
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
737
_inlinedMethods
= null;
8 references to _inlinedMethods
ILCompiler.ReadyToRun (8)
JitInterface\CorInfoImpl.ReadyToRun.cs (5)
3574
_stashedInlinedMethods.Push(
_inlinedMethods
);
3599
if (
_inlinedMethods
!= null)
3602
foreach (var inlineeInHashSet in
_inlinedMethods
)
3608
_inlinedMethods =
_inlinedMethods
?? new HashSet<MethodDesc>();
3609
_inlinedMethods
.Add(inlinee);
parent\parent\Common\JitInterface\CorInfoImpl.cs (3)
529
if (
_inlinedMethods
!= null)
531
inlineeArray = new MethodDesc[
_inlinedMethods
.Count];
532
_inlinedMethods
.CopyTo(inlineeArray);