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); 3373if (_inlinedMethods != null) 3376foreach (var inlineeInHashSet in _inlinedMethods) 3382_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3383_inlinedMethods.Add(inlinee);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
507if (_inlinedMethods != null) 509inlineeArray = new MethodDesc[_inlinedMethods.Count]; 510_inlinedMethods.CopyTo(inlineeArray);