5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3349
_inlinedMethods
= null;
3379
_inlinedMethods
= previouslyStashedInlinees;
3382
_inlinedMethods
= _inlinedMethods ?? new HashSet<MethodDesc>();
3435
_inlinedMethods
= _stashedInlinedMethods.Pop();
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
714
_inlinedMethods
= null;
8 references to _inlinedMethods
ILCompiler.ReadyToRun (8)
JitInterface\CorInfoImpl.ReadyToRun.cs (5)
3348
_stashedInlinedMethods.Push(
_inlinedMethods
);
3373
if (
_inlinedMethods
!= null)
3376
foreach (var inlineeInHashSet in
_inlinedMethods
)
3382
_inlinedMethods =
_inlinedMethods
?? new HashSet<MethodDesc>();
3383
_inlinedMethods
.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
507
if (
_inlinedMethods
!= null)
509
inlineeArray = new MethodDesc[
_inlinedMethods
.Count];
510
_inlinedMethods
.CopyTo(inlineeArray);