15 references to MethodWithToken
ILCompiler.ReadyToRun (15)
Compiler\DependencyAnalysis\ReadyToRun\ILBodyFixupSignature.cs (1)
106MethodWithToken method = new MethodWithToken(_signatureMethod, moduleToken, null, unboxing: false, genericContextObject: null);
Compiler\DependencyAnalysis\ReadyToRun\InstanceEntryPointTableNode.cs (1)
76new MethodWithToken(method, moduleToken, constrainedType: null, unboxing: false, genericContextObject: null),
Compiler\DependencyAnalysis\ReadyToRun\InstrumentationDataTableNode.cs (1)
150MethodWithToken tok = new MethodWithToken(handle.AsMethod, moduleToken, constrainedType: null, unboxing: false, genericContextObject: null);
Compiler\DependencyAnalysis\ReadyToRun\MethodFixupSignature.cs (2)
121method = new MethodWithToken(method.Method, factory.SignatureContext.GetModuleTokenForMethod(method.Method), method.ConstrainedType, unboxing: _method.Unboxing, null); 127method = new MethodWithToken(method.Method, factory.SignatureContext.GetModuleTokenForMethod(method.Method), method.ConstrainedType, unboxing: _method.Unboxing, null);
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (1)
549IMethodNode methodNodeDebug = MethodEntrypoint(new MethodWithToken(method, moduleToken, constrainedType: null, unboxing: false, genericContextObject: null), false, false, false);
JitInterface\CorInfoImpl.ReadyToRun.cs (7)
994MethodWithToken targetMethod = new MethodWithToken( 1358new MethodWithToken( 1425return new MethodWithToken(method, token, constrainedType: constrainedType, unboxing: unboxing, genericContextObject: context, devirtualizedMethodOwner: devirtualizedMethodOwner, forceOwningTypeFromMethodDesc: strippedInstantiation); 2070MethodWithToken declMethodWithToken = new MethodWithToken(originalMethod, HandleToModuleToken(ref pResolvedToken, out _), null, false, null); 2074MethodWithToken implMethodWithToken = new MethodWithToken(directMethod, moduleToken, null, false, null); 2809helperArg = new MethodWithToken(methodDesc, HandleToModuleToken(ref pResolvedToken, out bool strippedInstantiation), constrainedType, unboxing: false, genericContextObject: sharedMethod, forceOwningTypeFromMethodDesc: strippedInstantiation); 3238MethodWithToken methodWithToken = new MethodWithToken(ecmaMethod, moduleToken, constrainedType: null, unboxing: false, genericContextObject: null);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (2)
1439methodWithTokenDecl = new MethodWithToken(decl, declToken, null, false, null, devirtualizedMethodOwner: decl.OwningType); 1465methodWithTokenImpl = new MethodWithToken(nonUnboxingImpl, resolver.GetModuleTokenForMethod(nonUnboxingImpl.GetTypicalMethodDefinition(), allowDynamicallyCreatedReference: false, throwIfNotFound: true), null, unboxingStub, null, devirtualizedMethodOwner: impl.OwningType);