Skip to content
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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open

Conversation

jcouv
Copy link
Member

@jcouv jcouv commented Apr 2, 2025

Analyze the receiver for an extension as an argument.
Properties are already analyzed as invocations.

Relates to test plan #76130

@jcouv jcouv added Area-Compilers Feature - Extension Everything The extension everything feature labels Apr 2, 2025
@jcouv jcouv self-assigned this Apr 2, 2025
@dotnet-issue-labeler dotnet-issue-labeler bot added the untriaged Issues and PRs which have not yet been triaged by a lead label Apr 2, 2025
@jcouv jcouv force-pushed the extensions-escape branch from 9867564 to da69bef Compare April 2, 2025 13:14
@jcouv jcouv force-pushed the extensions-escape branch from da69bef to 2b0180d Compare April 3, 2025 11:06
@jcouv jcouv marked this pull request as ready for review April 3, 2025 12:56
@jcouv jcouv requested a review from a team as a code owner April 3, 2025 12:56
@jcouv jcouv requested review from jjonescz and AlekseyTs April 3, 2025 12:57
@jcouv jcouv marked this pull request as draft April 3, 2025 14:30
@jcouv jcouv marked this pull request as ready for review April 4, 2025 06:34
@jcouv
Copy link
Member Author

jcouv commented Apr 4, 2025

@AlekseyTs @jjonescz for review. Thanks

@@ -2100,6 +2132,57 @@ private SafeContext GetInvocationEscapeWithUpdatedRules(
return escapeScope;
}

private void ReplaceWithExtensionImplementationIfNeeded(ref MethodInfo methodInfo, ref ImmutableArray<ParameterSymbol> parameters,
Copy link
Member

@jjonescz jjonescz Apr 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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);
Copy link
Member

@jjonescz jjonescz Apr 4, 2025

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)
Copy link
Member

@jjonescz jjonescz Apr 4, 2025

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

Copy link
Member Author

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);
Copy link
Member

@jjonescz jjonescz Apr 4, 2025

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

Copy link
Member Author

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Compilers Feature - Extension Everything The extension everything feature untriaged Issues and PRs which have not yet been triaged by a lead
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants