-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Improve profiled casts #2 #90735
Merged
Merged
Improve profiled casts #2 #90735
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet-issue-labeler
bot
added
the
area-CodeGen-coreclr
CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
label
Aug 17, 2023
ghost
assigned EgorBo
Aug 17, 2023
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue DetailsSmall clean up + adds new patterns to recognize, e.g.: class Prog
{
static void Main()
{
for (int i = 0; i < 200; i++)
{
Test1<int>(new int[10]);
Test2(new uint[10]);
Thread.Sleep(16);
}
}
[MethodImpl(MethodImplOptions.NoInlining)]
// NOTE: won't kick in for shared T
static bool Test1<T>(object o) => o is IEnumerable<T>;
[MethodImpl(MethodImplOptions.NoInlining)]
static bool Test2(object o) => o is int[];
} Old codegen: ; Assembly listing for method Prog:Test1
sub rsp, 40
mov rdx, rcx
mov rcx, 0x7FF955C08F70 ; IEnumerable`1[int]
call [CORINFO_HELP_ISINSTANCEOFANY]
test rax, rax
setne al
movzx rax, al
add rsp, 40
ret
; Total bytes of code 37
; Assembly listing for method Prog:Test2
sub rsp, 40
mov rdx, rcx
mov rcx, 0x7FF955718230 ; int[]
call [CORINFO_HELP_ISINSTANCEOFARRAY]
test rax, rax
setne al
movzx rax, al
add rsp, 40
ret
; Total bytes of code 37 New codegen: ; Assembly listing for method Prog:Test1
sub rsp, 40
mov rax, rcx
test rax, rax
je SHORT G_M13683_IG05
mov rdx, 0x7FF955728230 ; int[]
cmp qword ptr [rax], rdx
je SHORT G_M13683_IG05
mov rdx, rcx
mov rcx, 0x7FF955BBAAD0 ; IEnumerable`1[int]
call CORINFO_HELP_ISINSTANCEOFANY
G_M13683_IG05:
test rax, rax
setne al
movzx rax, al
add rsp, 40
ret
; Total bytes of code 59
; Assembly listing for method Prog:Test2
sub rsp, 40
mov rax, rcx
test rax, rax
je SHORT G_M19173_IG05
mov rdx, 0x7FF955DC59E0 ; uint[]
cmp qword ptr [rax], rdx
je SHORT G_M19173_IG05
mov rdx, rcx
mov rcx, 0x7FF955748230 ; int[]
call CORINFO_HELP_ISINSTANCEOFARRAY
G_M19173_IG05:
test rax, rax
setne al
movzx rax, al
add rsp, 40
ret
; Total bytes of code 59
|
/azp run runtime-coreclr pgo, runtime-coreclr libraries-pgo, runtime-coreclr pgostress |
Azure Pipelines successfully started running 3 pipeline(s). |
This was referenced Aug 17, 2023
Open
PTAL @AndyAyersMS, I'm going to kick off a perf run with |
AndyAyersMS
approved these changes
Aug 17, 2023
Failure is #90593 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
area-CodeGen-coreclr
CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Small clean up + adds new patterns to recognize, e.g.:
Old codegen:
New codegen:
castclass is also improved.