5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3401
_inlinedMethods
= null;
3431
_inlinedMethods
= previouslyStashedInlinees;
3434
_inlinedMethods
= _inlinedMethods ?? new HashSet<MethodDesc>();
3487
_inlinedMethods
= _stashedInlinedMethods.Pop();
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
715
_inlinedMethods
= null;
8 references to _inlinedMethods
ILCompiler.ReadyToRun (8)
JitInterface\CorInfoImpl.ReadyToRun.cs (5)
3400
_stashedInlinedMethods.Push(
_inlinedMethods
);
3425
if (
_inlinedMethods
!= null)
3428
foreach (var inlineeInHashSet in
_inlinedMethods
)
3434
_inlinedMethods =
_inlinedMethods
?? new HashSet<MethodDesc>();
3435
_inlinedMethods
.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
508
if (
_inlinedMethods
!= null)
510
inlineeArray = new MethodDesc[
_inlinedMethods
.Count];
511
_inlinedMethods
.CopyTo(inlineeArray);