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

Avoid byte[] allocation for IPAddressUtil.IsMulticast #68591

Merged
merged 1 commit into from
May 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ public static bool IsMulticast(IPAddress address)
}
else
{
byte firstByte = address.GetAddressBytes()[0];
#pragma warning disable CS0618 // using Obsolete Address API because it's the more efficient option in this case
byte firstByte = (byte)address.Address;
#pragma warning restore CS0618
return firstByte >= 224 && firstByte <= 239;
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
return firstByte >= 224 && firstByte <= 239;
return firstByte is >= 224 and <= 239;

Once roslyn optimizes this (cf. dotnet/roslyn#60534), codegen improvement comes for free.

Copy link
Member

Choose a reason for hiding this comment

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

I understand these are different constructs as far as Roslyn is concerned, but it's an unfortunate pit of failure if these otherwise identical expressions end up being optimized differently. I'd really like for us to not have to change all such range checks everywhere in order for the right things to happen.

}
}
Expand Down