9 references to GetMethodSpecification
ILCompiler.ReadyToRun (4)
Compiler\DependencyAnalysis\ReadyToRun\ModuleTokenResolver.cs (1)
168MethodSpecification methodSpec = token.MetadataReader.GetMethodSpecification((MethodSpecificationHandle)token.Handle);
Compiler\DependencyAnalysis\ReadyToRun\SignatureBuilder.cs (1)
481MethodSpecification methodSpecification = methodToken.MetadataReader.GetMethodSpecification((MethodSpecificationHandle)methodToken.Handle);
Compiler\ReadyToRunStandaloneMethodMetadata.cs (1)
189var methodSpecification = metadataReader.GetMethodSpecification((MethodSpecificationHandle)handle);
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
179var methodSpecification = moduleToken.MetadataReader.GetMethodSpecification((MethodSpecificationHandle)moduleToken.Handle);
ILCompiler.TypeSystem (3)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaModule.cs (1)
535MethodSpecification methodSpecification = _metadataReader.GetMethodSpecification(handle);
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaType.MethodImpls.cs (2)
32methodDeclCheckHandle = metadataReader.GetMethodSpecification((MethodSpecificationHandle)methodDeclCheckHandle).Method; 77methodDeclCheckHandle = metadataReader.GetMethodSpecification((MethodSpecificationHandle)methodDeclCheckHandle).Method;
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
3309var methodSpec = MetadataReader.GetMethodSpecification(handle);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
45public static MethodSpecification GetMethodSpecification(this MethodSpecificationHandle handle, MetadataReader reader) => reader.GetMethodSpecification(handle);