5 writes to _inlinedMethods
ILCompiler.ReadyToRun (5)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
3393_inlinedMethods = null; 3423_inlinedMethods = previouslyStashedInlinees; 3426_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3479_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)
3392_stashedInlinedMethods.Push(_inlinedMethods); 3417if (_inlinedMethods != null) 3420foreach (var inlineeInHashSet in _inlinedMethods) 3426_inlinedMethods = _inlinedMethods ?? new HashSet<MethodDesc>(); 3427_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);