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); 3425if (_inlinedMethods != null) 3428foreach (var inlineeInHashSet in _inlinedMethods) 3434_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3435_inlinedMethods.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
508if (_inlinedMethods != null) 510inlineeArray = new MethodDesc[_inlinedMethods.Count]; 511_inlinedMethods.CopyTo(inlineeArray);