5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3533_inlinedMethods = null; 3563_inlinedMethods = previouslyStashedInlinees; 3566_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3619_inlinedMethods = _stashedInlinedMethods.Pop();
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
733_inlinedMethods = null;
8 references to _inlinedMethods
ILCompiler.ReadyToRun (8)
JitInterface\CorInfoImpl.ReadyToRun.cs (5)
3532_stashedInlinedMethods.Push(_inlinedMethods); 3557if (_inlinedMethods != null) 3560foreach (var inlineeInHashSet in _inlinedMethods) 3566_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3567_inlinedMethods.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
526if (_inlinedMethods != null) 528inlineeArray = new MethodDesc[_inlinedMethods.Count]; 529_inlinedMethods.CopyTo(inlineeArray);