-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[X86] Truncate i64 add to i32 when upper 33 bits are zeros #144066
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py | ||
| ; RUN: llc < %s -mtriple=i686-unknown-unknown | FileCheck %s --check-prefix=X86 | ||
| ; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s --check-prefix=X64 | ||
|
|
||
| define i64 @test1(i16 %a) nounwind { | ||
| ; X86-LABEL: test1: | ||
| ; X86: # %bb.0: | ||
| ; X86-NEXT: movzwl {{[0-9]+}}(%esp), %eax | ||
| ; X86-NEXT: addl $42, %eax | ||
| ; X86-NEXT: xorl %edx, %edx | ||
| ; X86-NEXT: retl | ||
| ; | ||
| ; X64-LABEL: test1: | ||
| ; X64: # %bb.0: | ||
| ; X64-NEXT: movzwl %di, %eax | ||
| ; X64-NEXT: addl $42, %eax | ||
| ; X64-NEXT: retq | ||
| %zext_a = zext i16 %a to i64 | ||
| %sum = add nuw nsw i64 %zext_a, 42 | ||
| ret i64 %sum | ||
| } | ||
|
|
||
| ; First 48 bits are all zeros so we can safely truncate to 32 bit additon | ||
| define i64 @test2(i16 %a, i16 %b) nounwind { | ||
| ; X86-LABEL: test2: | ||
| ; X86: # %bb.0: | ||
| ; X86-NEXT: movzwl {{[0-9]+}}(%esp), %ecx | ||
| ; X86-NEXT: movzwl {{[0-9]+}}(%esp), %eax | ||
| ; X86-NEXT: addl %ecx, %eax | ||
| ; X86-NEXT: xorl %edx, %edx | ||
| ; X86-NEXT: retl | ||
| ; | ||
| ; X64-LABEL: test2: | ||
| ; X64: # %bb.0: | ||
| ; X64-NEXT: movzwl %si, %ecx | ||
| ; X64-NEXT: movzwl %di, %eax | ||
| ; X64-NEXT: addl %ecx, %eax | ||
| ; X64-NEXT: retq | ||
| %zext_a = zext i16 %a to i64 | ||
| %zext_b = zext i16 %b to i64 | ||
| %sum = add nuw nsw i64 %zext_a, %zext_b | ||
| ret i64 %sum | ||
| } | ||
|
|
||
| ; Set the 32nd bit of a to force 64 bit addition, we do not truncate to 32 bit addition in this case | ||
| define i64 @test3(i16 %a) nounwind { | ||
| ; X86-LABEL: test3: | ||
| ; X86: # %bb.0: | ||
| ; X86-NEXT: movzwl {{[0-9]+}}(%esp), %eax | ||
| ; X86-NEXT: addl $42, %eax | ||
| ; X86-NEXT: movl $1, %edx | ||
| ; X86-NEXT: retl | ||
| ; | ||
| ; X64-LABEL: test3: | ||
| ; X64: # %bb.0: | ||
| ; X64-NEXT: movzwl %di, %ecx | ||
| ; X64-NEXT: movabsq $4294967338, %rax # imm = 0x10000002A | ||
| ; X64-NEXT: addq %rcx, %rax | ||
| ; X64-NEXT: retq | ||
| %zext_a = zext i16 %a to i64 | ||
| %or_a = or i64 %zext_a, 4294967296 | ||
| %sum = add nuw nsw i64 %or_a, 42 | ||
| ret i64 %sum | ||
| } | ||
|
|
||
| ; We don't truncate to 32 bit addition in case of sign extension | ||
| define i64 @test4(i16 %a, i16 %b) nounwind { | ||
| ; X86-LABEL: test4: | ||
| ; X86: # %bb.0: | ||
| ; X86-NEXT: pushl %esi | ||
| ; X86-NEXT: movswl {{[0-9]+}}(%esp), %ecx | ||
| ; X86-NEXT: movl %ecx, %esi | ||
| ; X86-NEXT: sarl $31, %esi | ||
| ; X86-NEXT: movswl {{[0-9]+}}(%esp), %eax | ||
| ; X86-NEXT: movl %eax, %edx | ||
| ; X86-NEXT: sarl $31, %edx | ||
| ; X86-NEXT: addl %ecx, %eax | ||
| ; X86-NEXT: adcl %esi, %edx | ||
| ; X86-NEXT: popl %esi | ||
| ; X86-NEXT: retl | ||
| ; | ||
| ; X64-LABEL: test4: | ||
| ; X64: # %bb.0: | ||
| ; X64-NEXT: # kill: def $esi killed $esi def $rsi | ||
| ; X64-NEXT: # kill: def $edi killed $edi def $rdi | ||
| ; X64-NEXT: movswq %di, %rcx | ||
| ; X64-NEXT: movswq %si, %rax | ||
| ; X64-NEXT: addq %rcx, %rax | ||
| ; X64-NEXT: retq | ||
| %sext_a = sext i16 %a to i64 | ||
| %sext_b = sext i16 %b to i64 | ||
| %sum = add nuw nsw i64 %sext_a, %sext_b | ||
| ret i64 %sum | ||
| } | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Of course :)