1 write to _owningMethod
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\GenericDictionaryNode.cs (1)
280_owningMethod = owningMethod;
19 references to _owningMethod
ILCompiler.Compiler (19)
Compiler\DependencyAnalysis\GenericDictionaryNode.cs (19)
191sb.Append(nameMangler.NodeMangler.MethodGenericDictionary(_owningMethod)); 193protected override int HeaderSize => _owningMethod.Context.Target.PointerSize; 194public override Instantiation TypeInstantiation => _owningMethod.OwningType.Instantiation; 195public override Instantiation MethodInstantiation => _owningMethod.Instantiation; 196protected override TypeSystemContext Context => _owningMethod.Context; 197public override TypeSystemEntity OwningEntity => _owningMethod; 198public MethodDesc OwningMethod => _owningMethod; 203return factory.MetadataManager.GetConditionalDependenciesDueToGenericDictionary(factory, _owningMethod); 210MethodDesc canonicalTarget = _owningMethod.GetCanonMethodTarget(CanonicalFormKind.Specific); 214factory.MetadataManager.GetDependenciesDueToGenericDictionary(ref dependencies, factory, _owningMethod); 216factory.InteropStubManager.AddMarshalAPIsGenericDependencies(ref dependencies, factory, _owningMethod); 219if (factory.LazyGenericsPolicy.UsesLazyGenerics(_owningMethod)) 221foreach (var arg in _owningMethod.OwningType.Instantiation) 231foreach (var arg in _owningMethod.Instantiation) 244dependencies.Add(factory.ShadowConcreteMethod(_owningMethod), "Dictionary contents"); 251return factory.GenericDictionaryLayout(_owningMethod.GetCanonMethodTarget(CanonicalFormKind.Specific)); 259builder.EmitInt(_owningMethod.GetHashCode()); 287return comparer.Compare(_owningMethod, ((MethodGenericDictionaryNode)other)._owningMethod);