5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3363_inlinedMethods = null; 3393_inlinedMethods = previouslyStashedInlinees; 3396_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3449_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)
3362_stashedInlinedMethods.Push(_inlinedMethods); 3387if (_inlinedMethods != null) 3390foreach (var inlineeInHashSet in _inlinedMethods) 3396_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3397_inlinedMethods.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
505if (_inlinedMethods != null) 507inlineeArray = new MethodDesc[_inlinedMethods.Count]; 508_inlinedMethods.CopyTo(inlineeArray);