5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3366_inlinedMethods = null; 3396_inlinedMethods = previouslyStashedInlinees; 3399_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3452_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)
3365_stashedInlinedMethods.Push(_inlinedMethods); 3390if (_inlinedMethods != null) 3393foreach (var inlineeInHashSet in _inlinedMethods) 3399_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3400_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);