2 writes to OwningType
ILCompiler.ReadyToRun (2)
JitInterface\CorInfoImpl.ReadyToRun.cs (2)
162OwningType = GetMethodTokenOwningType(this, constrainedType, genericContextObject, devirtualizedMethodOwner, out OwningTypeNotDerivedFromToken); 166OwningType = method.OwningType;
12 references to OwningType
ILCompiler.ReadyToRun (12)
Compiler\DependencyAnalysis\ReadyToRun\GenericLookupSignature.cs (1)
153sb.Append(nameMangler.GetMangledTypeName(_methodArgument.OwningType));
Compiler\DependencyAnalysis\ReadyToRun\MethodFixupSignature.cs (1)
37compilerContext.EnsureLoadableType(_method.OwningType);
Compiler\DependencyAnalysis\ReadyToRun\SignatureBuilder.cs (1)
522EmitTypeSignature(method.OwningType, context);
Compiler\RuntimeDeterminedTypeHelper.cs (3)
133&& Equals(methodWithToken1.OwningType, methodWithToken2.OwningType) 201return unchecked(GetHashCode(method.Method) + 31 * GetHashCode(method.OwningType) + 97 * GetHashCode(method.ConstrainedType));
JitInterface\CorInfoImpl.ReadyToRun.cs (5)
349&& OwningType == methodWithToken.OwningType 370sb.Append(nameMangler.GetMangledTypeName(OwningType)); 432return comparer.Compare(OwningType, other.OwningType);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
1536result.hClass = jitInterface.ObjectToHandle(methodWithToken.OwningType);