5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3366
_inlinedMethods
= null;
3396
_inlinedMethods
= previouslyStashedInlinees;
3399
_inlinedMethods
= _inlinedMethods ?? new HashSet<MethodDesc>();
3452
_inlinedMethods
= _stashedInlinedMethods.Pop();
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
712
_inlinedMethods
= null;
8 references to _inlinedMethods
ILCompiler.ReadyToRun (8)
JitInterface\CorInfoImpl.ReadyToRun.cs (5)
3365
_stashedInlinedMethods.Push(
_inlinedMethods
);
3390
if (
_inlinedMethods
!= null)
3393
foreach (var inlineeInHashSet in
_inlinedMethods
)
3399
_inlinedMethods =
_inlinedMethods
?? new HashSet<MethodDesc>();
3400
_inlinedMethods
.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
505
if (
_inlinedMethods
!= null)
507
inlineeArray = new MethodDesc[
_inlinedMethods
.Count];
508
_inlinedMethods
.CopyTo(inlineeArray);