-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extensions: ref safety analysis #77967
base: main
Are you sure you want to change the base?
Conversation
@AlekseyTs @jjonescz for review. Thanks |
@@ -2100,6 +2132,57 @@ private SafeContext GetInvocationEscapeWithUpdatedRules( | |||
return escapeScope; | |||
} | |||
|
|||
private void ReplaceWithExtensionImplementationIfNeeded(ref MethodInfo methodInfo, ref ImmutableArray<ParameterSymbol> parameters, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private void ReplaceWithExtensionImplementationIfNeeded(ref MethodInfo methodInfo, ref ImmutableArray<ParameterSymbol> parameters, | |
private static void ReplaceWithExtensionImplementationIfNeeded(ref MethodInfo methodInfo, ref ImmutableArray<ParameterSymbol> parameters, | |
``` #Pending |
var extensionParameter = symbol.ContainingType.ExtensionParameter; | ||
Debug.Assert(extensionParameter is not null); | ||
Debug.Assert(receiver is not null); | ||
methodInfo = methodInfo.ReplaceWithExtensionImplementation(out bool wasError); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it intentional to change the ref MethodInfo methodInfo
even if the replacement is an error? #Pending
|
||
if (argRefKindsOpt.IsDefault) | ||
{ | ||
if (extensionParameter.RefKind == RefKind.Ref) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we handle only Ref
and not other ref kinds? #Pending
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was because of the logic in GetInvocationArgumentsForEscape
, but I suspect that logic my be wrong for the receiver parameter of classic or new extension methods. I'm still trying to isolate a scenario that would confirm... Let's discuss on Monday
if (!argsToParamsOpt.IsDefault) | ||
{ | ||
var argsToParamsBuilder = ArrayBuilder<int>.GetInstance(argsToParamsOpt.Length + 1); | ||
argsToParamsBuilder.Add(0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't there some extension method like ImmutableArray.Prepend that does all this for us? Or perhaps
argsToParamsOpt = [0, .. argsToParamsOpt];
``` #ByDesign
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're also trying to shift the values (+1
on line 2179)
Analyze the receiver for an extension as an argument.
Properties are already analyzed as invocations.
Relates to test plan #76130