-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Unnecessary sign-extension for (nuint)span.Length
#84564
Comments
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch, @kunalspathak Issue Details
Originally posted by @xtqqczze in #84524 (comment) static nuint Span0(ReadOnlySpan<byte> span) => (nuint)span.Length;
static nuint Span1(ReadOnlySpan<byte> span) => (uint)span.Length; // crossgen2 8.0.0-preview.4.23208.99+07f00dc2f624946c54dbf85fea79c600a690f634
C:Span0(System.ReadOnlySpan`1[ubyte]):ulong:
; Emitting BLENDED_CODE for X64 CPU with AVX - Windows
;; size=0 bbWeight=1 PerfScore 0.00
movsxd rax, dword ptr [rcx+08H]
;; size=4 bbWeight=1 PerfScore 4.00
ret
;; size=1 bbWeight=1 PerfScore 1.00
C:Span1(System.ReadOnlySpan`1[ubyte]):ulong:
; Emitting BLENDED_CODE for X64 CPU with AVX - Windows
;; size=0 bbWeight=1 PerfScore 0.00
mov eax, dword ptr [rcx+08H]
;; size=3 bbWeight=1 PerfScore 2.00
ret
;; size=1 bbWeight=1 PerfScore 1.00
|
Should be a simple fix since Span.Length can be recognized via |
We already do: runtime/src/coreclr/jit/morph.cpp Lines 10190 to 10194 in 00dbf84
The snippets in the issue are cases of an un-promoted span, which should be rare in practice. |
Originally posted by @xtqqczze in #84524 (comment)
The text was updated successfully, but these errors were encountered: