Uh oh!
There was an error while loading. Please reload this page.
Eliminate bound checks for "arr[arr.Length - cns]" - #84213
Merged
Conversation
ghost
commented
Apr 1, 2023
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch, @kunalspathak Issue DetailsvoidTest(int[]arr){if(arr.Length==0||arr[arr.Length-1]==0){Console.WriteLine();}}Was: ; Method Prog:Test(int[]):thissubrsp,40moveax, dword ptr [rdx+08H]testeax,eaxje SHORT G_M2580_IG04leaecx,[rax-01H]cmpecx,eaxjae SHORT G_M2580_IG07moveax,ecxcmp dword ptr [rdx+4*rax+10H],0jne SHORT G_M2580_IG05G_M2580_IG04:call[System.Console:WriteLine()]G_M2580_IG05:nopaddrsp,40retG_M2580_IG07:call CORINFO_HELP_RNGCHKFAILint3; Total bytes of code: 45New: ; Method Prog:Test(int[]):thissubrsp,40moveax, dword ptr [rdx+08H]testeax,eaxje SHORT G_M2580_IG04deceaxcmp dword ptr [rdx+4*rax+10H],0jne SHORT G_M2580_IG05G_M2580_IG04:call[System.Console:WriteLine()]G_M2580_IG05:nopaddrsp,40ret; Total bytes of code: 32
|
EgorBo
commented
Apr 1, 2023
MemberAuthor
@AndyAyersMS@jakobbotsch @dotnet/jit-contrib PTAL |
EgorBo
commented
Apr 1, 2023
MemberAuthor
Diffs, no TP impact. |
This file contains hidden or 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
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Motivation: #84210 (comment)
Previous codegen:
New codegen: